@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/* -----------------------------------
Color
------------------------------------ */
/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Anaheim&family=Readex+Pro:wght@500&family=Roboto:ital,wght@1,&display=swap);
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@800&display=swap");
/*
 * _reset.scss
 */
/* -----------------------------------
reset
------------------------------------ */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

form {
  display: inline;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 60%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.15em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

ol,
ul {
  list-style: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

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

fieldset {
  border: 0;
}

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

/*
 * _base.scss
 */
/* -----------------------------------
base Setting
------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2e404c;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 1.2rem;
  line-height: 1.6;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a.notActive {
  pointer-events: none;
}

input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  display: inline;
}

figcaption {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 10px;
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
/* -----------------------------------
wrapper
------------------------------------ */
.l-wrapper {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

/* -----------------------------------
header
------------------------------------ */
.l-header {
  position: absolute;
  z-index: 1;
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.l-header_in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header_in ._cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .l-header_in ._cnt {
    padding: 10px;
  }
}
.l-header_in ._cnt ._logo {
  max-width: 400px;
  min-width: 250px;
  margin: 30px 0px 0px 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .l-header_in ._cnt ._logo {
    width: 35%;
    margin: 10px;
    min-width: 175px;
  }
}
.l-header_in ._cnt ._logo > a > img {
  width: 100%;
}
.l-header_in ._cnt ._icon {
  margin: 35px 15px 0px 0px;
  max-width: 30px;
  width: 30px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .l-header_in ._cnt ._icon {
    margin: 5px 4px 0px 4px;
    width: 25px;
  }
}
.l-header_in ._cnt ._icon:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/* -----------------------------------
section
------------------------------------ */
.l-sec {
  padding: 0px 0px;
  margin: 0 auto;
}
.l-sec_in {
  padding: 0px 0px;
  margin: 0 auto;
}
/* -----------------------------------
footer
------------------------------------ */
.l-footer {
  background-color: #2e404c;
  position: relative;
}
.l-footer ._cnt {
  padding: 8px 12px;
  background-color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-footer ._cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.l-footer ._cnt ._links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .l-footer ._cnt ._links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer ._cnt ._links > div {
  color: #fff;
  margin-left: 5px;
}
.l-footer ._cnt ._links > div > a {
  color: #fff;
  font-size: 1.2rem;
}
.l-footer ._cnt ._copy {
  margin-top: 4px;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer ._cnt ._copy {
    text-align: center;
    margin-top: 10px;
  }
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
/* -----------------------------------
btn

div.c-btn>(a|button|input)>span

ここのwidth,color,bgColorは必要に応じて各_btnスタイルで上書きする
(例)_btn>(button|a|input)のpadding
------------------------------------ */
.c-btn {
  position: relative;
}
.c-btn.-btnStyle1 {
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #e2007f;
  padding: 20px 65px 18px 55px;
  border-radius: 25px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px;
}
@media screen and (max-width: 768px) {
  .c-btn.-btnStyle1 {
    padding: 20px 30px 20px 15px;
  }
}
.c-btn.-btnStyle1 > img {
  max-width: 27px;
  margin-top: -10px;
}
.c-btn.-btnStyle1 span {
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.4rem;
  padding-left: 20px;
  color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .c-btn.-btnStyle1 span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .c-btn.-btnStyle1 span {
    font-size: 1.4rem;
  }
}
.c-btn.-btnStyle1::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 55%;
  right: 10px;
  border-top: 4px solid #fff;
  -webkit-transform: translateY(-55%) rotate(25deg);
          transform: translateY(-55%) rotate(25deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.c-btn.-btnStyle1::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  right: 10px;
  border-top: 4px solid #fff;
  -webkit-transform: translateY(-55%) rotate(150deg);
          transform: translateY(-55%) rotate(150deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.c-btn.-btnStyle1:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.c-btn.-btnStyle1:hover span {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.c-btn.-btnStyle1:hover::before {
  right: 6px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.c-btn.-btnStyle1:hover::after {
  right: 6px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
*/
.p-fixedBtn {
  position: fixed;
  z-index: 9999;
  bottom: 5%;
  right: 3%;
}
.p-fixedBtn > a > img {
  max-width: 180px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .p-fixedBtn > a > img {
    max-width: 100px;
  }
}
.p-fixedBtn > a:hover > img {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/* 
  .p-secKv
 */
.p-secKv_in ._bg {
  position: relative;
  z-index: -1;
}
.p-secKv_in ._bg ._title {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-secKv_in ._bg ._title {
    bottom: 40%;
    width: 85%;
  }
}
.p-secKv_in ._bg ._title > img {
  width: 100%;
}

/*
  .p-sec1
*/
.p-sec1 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-sec1 {
    padding-bottom: 0;
  }
}
.p-sec1_in ._bg {
  position: relative;
}
.p-sec1_in ._bg > img {
  position: absolute;
  z-index: -1;
}
.p-sec1_in ._bg ._subsidyList {
  width: 80%;
  margin: 0 auto;
}
.p-sec1_in ._bg ._subsidyList > picture > img {
  width: 100%;
}
.p-sec1_in ._bg ._scheduleList {
  width: 80%;
  margin: 40px auto 0;
}
.p-sec1_in ._bg ._scheduleList ._item {
  margin-top: 40px;
}
.p-sec1_in ._bg ._scheduleList ._item ._itemTitle {
  font-size: 2.4rem;
  font-family: "M PLUS 1p", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  padding: 5px 20px;
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .p-sec1_in ._bg ._scheduleList ._item ._itemTitle {
    margin-left: 0;
    font-size: 1.8rem;
  }
}
.p-sec1_in ._bg ._scheduleList ._item ._itemTitle.-color1 {
  background-color: rgba(157, 215, 244, 0.8);
  color: #182986;
}
.p-sec1_in ._bg ._scheduleList ._item ._itemTitle.-color2 {
  background-color: rgba(162, 212, 191, 0.8);
  color: #006934;
}
.p-sec1_in ._bg ._scheduleList ._item ._list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-sec1_in ._bg ._scheduleList ._item ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-sec1_in ._bg ._scheduleList ._item ._list ._listItem {
  width: 45%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-sec1_in ._bg ._scheduleList ._item ._list ._listItem {
    width: 100%;
  }
}
.p-sec1_in ._bg ._scheduleList ._item ._list ._listItem ._scheduleTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 18px;
}
.p-sec1_in ._bg ._scheduleList ._item ._list ._listItem ._scheduleTitle > img {
  max-width: 40px;
  margin-top: 10px;
}
.p-sec1_in ._bg ._scheduleList ._item ._list ._listItem ._scheduleTitle > span {
  font-size: 3rem;
  font-family: "M PLUS 1p", sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #ffef00));
  background: -webkit-linear-gradient(transparent 50%, #ffef00 0%);
  background: linear-gradient(transparent 50%, #ffef00 0%);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .p-sec1_in ._bg ._scheduleList ._item ._list ._listItem ._scheduleTitle > span {
    font-size: 2.2rem;
  }
}
.p-sec1_in ._bg ._scheduleList ._text {
  font-size: 1.2rem;
  font-family: "M PLUS 1p", sans-serif;
  margin-top: 20px;
}
.p-sec1_in ._bg ._scheduleList ._btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 500px;
  margin: 12% auto 0;
}
@media screen and (max-width: 768px) {
  .p-sec1_in ._bg ._scheduleList ._btn {
    position: static;
    -webkit-transform: none;
            transform: none;
    min-width: unset;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
.p-sec1_in ._bg ._scheduleList ._btn ._text {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.8rem;
  color: #e2007f;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-sec1_in ._bg ._scheduleList ._btn ._text {
    font-size: 1.3rem;
  }
}
.p-sec1_in ._bg ._scheduleList ._btn > a {
  width: 100%;
  margin-top: 20px;
}

/*
.p-sec2
*/
.p-sec2 {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .p-sec2 {
    margin-top: 8%;
  }
}
.p-sec2_in ._cnt {
  width: 90%;
  margin: 0 auto;
}
.p-sec2_in ._cnt ._title {
  font-size: 3.2rem;
  font-family: "M PLUS 1p", sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #ffef00));
  background: -webkit-linear-gradient(transparent 50%, #ffef00 0%);
  background: linear-gradient(transparent 50%, #ffef00 0%);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-sec2_in ._cnt ._title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._cnt ._title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .p-sec2_in ._cnt ._title {
    font-size: 1.2rem;
  }
}
.p-sec2_in ._cnt ._text {
  font-size: 1.2rem;
  font-family: "M PLUS 1p", sans-serif;
  text-align: center;
  margin-top: 20px;
}
.p-sec2_in ._cnt ._img {
  width: 45%;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._cnt ._img {
    width: 80%;
  }
}
.p-sec2_in ._bg {
  position: relative;
  margin-top: 15%;
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._bg {
    margin-top: 30%;
  }
}
.p-sec2_in ._bg ._wrapper {
  position: absolute;
  width: 80%;
  top: -12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-sec2_in ._bg ._wrapper > ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-sec2_in ._bg ._wrapper > ul > li {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._bg ._wrapper > ul > li {
    width: 50%;
  }
}
.p-sec2_in ._bg ._img {
  width: 65%;
  margin: 0 auto;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._bg ._img {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
    width: 80%;
  }
}
.p-sec2_in ._bg ._img:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.p-sec2_in ._btn {
  width: 40%;
  margin: 0 auto;
  min-width: 500px;
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._btn {
    min-width: unset;
    width: 80%;
    margin-top: 30%;
  }
}
.p-sec2_in ._btn ._text {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.8rem;
  color: #e2007f;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-sec2_in ._btn ._text {
    font-size: 1.3rem;
  }
}
.p-sec2_in ._btn > a {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 60px;
}
.p-sec2_in ._logo {
  width: 30%;
  margin: 80px auto;
}
@media screen and (max-width: 425px) {
  .p-sec2_in ._logo {
    width: 55%;
  }
}

/*
js animation
*/
.js-animation.-fadein {
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  opacity: 0;
}
.js-animation.-fadein.is-animation {
  opacity: 1;
}
.js-animation.-slideup {
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.js-animation.-slideup.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.js-animation.-slideInTop {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  opacity: 0;
  mix-blend-mode: normal;
}
.js-animation.-slideInTop.is-animation {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  mix-blend-mode: normal;
}
.js-animation.-slideInTop2 {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  opacity: 0;
  mix-blend-mode: multiply;
}
.js-animation.-slideInTop2.is-animation {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  mix-blend-mode: multiply;
}
.js-animation.-slideInLeft {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
}
.js-animation.-slideInLeft.is-animation {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-animation.-slideInRight {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
}
.js-animation.-slideInRight.is-animation {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-animation.-slideInLeft2 {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}
.js-animation.-slideInLeft2.is-animation {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-animation.-slideInRight2 {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}
.js-animation.-slideInRight2.is-animation {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 769px) {
  .js-animation.-delay1 {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .js-animation.-delay2 {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .js-animation.-delay3 {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .js-animation.-delay4 {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .js-animation.-delay5 {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .js-animation.-delay6 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .js-animation.-delay7 {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .js-animation.-delay8 {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .js-animation.-delay9 {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .js-animation.-delay10 {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ---------------------------------------
animation index
--------------------------------------- */
.js-animation-main_child.-slider {
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  opacity: 0;
}
.js-animation-main_child.-slider.is-animation {
  opacity: 1;
}

/* ---------------------------------------
animation page
--------------------------------------- */
.js-animation-page_child.-thc {
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  opacity: 0;
  margin-left: -20px;
}
.js-animation-page_child.-thc.is-animation {
  opacity: 1;
  margin-left: 0;
}
.js-animation-page_child.-title {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  opacity: 0;
  margin-top: 40px;
}
.js-animation-page_child.-title.is-animation {
  opacity: 1;
  margin-top: 0;
}

/* -----------------------------------
Utility
------------------------------------ */
/*
 * _utility.scss
 */
/* -----------------------------------
print
------------------------------------ */
@media print {
  .u-printHidden {
    display: none;
  }
}

.u-printVisible {
  display: none;
}
@media print {
  .u-printVisible {
    display: block;
  }
}

/* -----------------------------------
font
------------------------------------ */
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

/* -----------------------------------
align
------------------------------------ */
.u-tc {
  text-align: center !important;
}

.u-tl {
  text-align: left !important;
}

.u-tr {
  text-align: right !important;
}

/* -----------------------------------
padding
------------------------------------ */
.u-mt5 {
  margin-top: 5px !important;
}

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

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

.u-pr5 {
  padding-right: 5px !important;
}

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

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

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

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

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

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

.u-pr40 {
  padding-right: 40px !important;
}

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

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

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

/* -----------------------------------
font-size rem
------------------------------------ */
.u-fz10px {
  font-size: 1rem;
}

.u-fz11px {
  font-size: 1.1rem;
}

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

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

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

/* -----------------------------------
font-size em
------------------------------------ */
.u-fz09em {
  font-size: 0.9em;
}

.u-fz10em {
  font-size: 1em;
}

.u-fz11em {
  font-size: 1.1em;
}

.u-fz12em {
  font-size: 1.2em;
}

.u-fz13em {
  font-size: 1.3em;
}

.u-fz14em {
  font-size: 1.4em;
}

/* -----------------------------------
clerfix
------------------------------------ */
.sec::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
display
------------------------------------ */
.u-d_b {
  display: block !important;
}

.u-d_n {
  display: none !important;
}

.u-d_ib {
  display: inline-block !important;
}

/* -----------------------------------
display adjust
------------------------------------ */
.u-smhide, .u-sphide, .u-middlehide, .u-tablethide, .u-basehide {
  display: block;
}

.u-smblock, .u-spblock, .u-middleblock, .u-tabletblock, .u-baseblock {
  display: none;
}

@media screen and (max-width: 1499px) {
  .u-baseblock {
    display: block;
  }
  .u-basehide {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .u-tabletblock {
    display: block;
  }
  .u-tablethide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-middleblock {
    display: block;
  }
  .u-middlehide {
    display: none !important;
  }
}
@media screen and (max-width: 589px) {
  .u-spblock {
    display: block;
  }
  .u-sphide {
    display: none !important;
  }
}
@media screen and (max-width: 374px) {
  .u-smblock {
    display: block;
  }
  .u-smhide {
    display: none !important;
  }
}
/* -----------------------------------
Page
------------------------------------ */
/*
 * _page.scss
 */
/* -----------------------------------
index
------------------------------------ *//*# sourceMappingURL=style.css.map */