@charset "UTF-8";
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto:wght@100;400;900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 変数宣言 */
/* 変数宣言 */
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
.toggleSwitch {
  position: relative;
  margin-bottom: 10px;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  background-color: #f6f6f6;
  font-size: 1.3em;
  font-weight: 700;
  vertical-align: middle;
  cursor: pointer;
}

.toggleSwitch:after {
  position: absolute;
  display: inline-block;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Material Icons";
  content: "add";
}

.toggleSwitch.on:after {
  display: inline-block;
  font-family: "Material Icons";
  content: "remove";
}

.toggleSwitch p {
  margin-bottom: 0;
  margin-right: 40px;
  text-align: justify;
}

.toggleBox {
  display: none;
  text-align: justify;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  font-size: 1rem;
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  z-index: 99;
}

#page-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  background: #D32D52;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.05em;
  font-size: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page-top a i {
  font-size: 2rem;
}

#page-top a p {
  margin-bottom: 0;
}

#page-top a:hover {
  background: rgba(211, 45, 81, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.parallax-window {
  min-height: 40vh;
  background: transparent;
}

/* SCSS Document */
/*---------------------------
変数
----------------------------*/
/*---------------------------
tag
----------------------------*/
/***** h2-h4 *****/
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  margin-bottom: 1.2em;
}

a,
a:active,
a:visited {
  color: #D32D52;
}

@media screen and (min-width: 1025px) {
  a:hover {
    /* 1024px以下のとき */
    color: #374f65;
    text-decoration: none;
  }
}

em {
  font-size: 1.05em;
  font-weight: 700;
  font-style: normal;
}

ul,
ol {
  padding-left: 1.5rem;
}

form {
  font-size: 1.2rem;
}

form input,
form button {
  margin-top: .5rem;
  padding-top: 1ex;
  padding-right: 1ex;
  padding-bottom: 1ex;
  padding-left: 1ex;
  width: 22rem;
}

@media screen and (max-width: 640px) {
  form input,
  form button {
    /* 640px以下のとき */
    width: 100%;
  }
}

form button {
  background-color: #D32D52;
  color: #ffffff;
  font-weight: 700;
  border: none;
}

/*
-------------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
  /*Scrollテキストの描写*/
  /* 線の描写 */
}

.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/* profile_area
-------------------------------*/
.profile_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 4rem;
}

@media screen and (max-width: 640px) {
  .profile_area {
    /* 640px以下のとき */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 640px) {
  .profile_area figure {
    /* 640px以下のとき */
    max-width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .profile_area figure {
    /* 1024px以上のとき */
    max-width: 30%;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  .profile_area figure {
    /* 640px以上1024px以下のとき */
    max-width: 40%;
  }
}

.profile_area figure img {
  width: 100%;
}

.profile_area h3 {
  padding-top: 1rem;
  padding-right: 1em;
  padding-left: 1em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

/* button animation class
-------------------------------*/
.btn_no-anime {
  background-color: #1a3452;
  border-radius: 5px;
}

.btn_no-anime:hover {
  background-color: #00a7e4;
}

@-webkit-keyframes sheen {
  0% {
    -webkit-transform: skewX(-35deg) translateX(-20px);
            transform: skewX(-35deg) translateX(-20px);
  }
  15% {
    -webkit-transform: skewX(-45deg) translateX(390px);
            transform: skewX(-45deg) translateX(390px);
  }
  to {
    -webkit-transform: skewX(-45deg) translateX(390px);
            transform: skewX(-45deg) translateX(390px);
  }
}

@keyframes sheen {
  0% {
    -webkit-transform: skewX(-35deg) translateX(-20px);
            transform: skewX(-35deg) translateX(-20px);
  }
  15% {
    -webkit-transform: skewX(-45deg) translateX(390px);
            transform: skewX(-45deg) translateX(390px);
  }
  to {
    -webkit-transform: skewX(-45deg) translateX(390px);
            transform: skewX(-45deg) translateX(390px);
  }
}

.btn_anime {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn_anime:after {
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 40px;
  top: 0;
  left: 0;
  -webkit-transform: skewX(-35deg) translateX(-60px);
          transform: skewX(-35deg) translateX(-60px);
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-animation-name: sheen;
          animation-name: sheen;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  animation-animation-fill-mode: backwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes circle {
  0% {
    top: -20%;
    left: -50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  25% {
    top: -20%;
    left: -50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  50% {
    top: -20%;
    left: -50%;
    -webkit-transform: scale(150, 150);
            transform: scale(150, 150);
  }
  75% {
    top: 120%;
    left: 150%;
    -webkit-transform: scale(150, 150);
            transform: scale(150, 150);
  }
  to {
    top: 120%;
    left: 150%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}

@keyframes circle {
  0% {
    top: -20%;
    left: -50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  25% {
    top: -20%;
    left: -50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  50% {
    top: -20%;
    left: -50%;
    -webkit-transform: scale(150, 150);
            transform: scale(150, 150);
  }
  75% {
    top: 120%;
    left: 150%;
    -webkit-transform: scale(150, 150);
            transform: scale(150, 150);
  }
  to {
    top: 120%;
    left: 150%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}

@-webkit-keyframes center {
  from {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  to {
    -webkit-transform: scale(600, 120);
            transform: scale(600, 120);
  }
}

@keyframes center {
  from {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  to {
    -webkit-transform: scale(600, 120);
            transform: scale(600, 120);
  }
}

.btn_anime_c {
  position: relative;
  overflow: hidden;
  background-color: #1a3452;
  border-radius: 5px;
  z-index: 1;
}

.btn_anime_c:before {
  display: inline-block;
  position: absolute;
  height: 10px;
  width: 10px;
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
  background-color: rgba(0, 126, 172, 0.4);
  border-radius: 100%;
  -webkit-animation-name: circle;
          animation-name: circle;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.btn_anime_c:hover:after {
  display: inline-block;
  position: absolute;
  content: "";
  z-index: -1;
  height: 1px;
  width: 1px;
  top: 50%;
  left: 50%;
  background-color: #00a7e4;
  -webkit-animation-name: center;
          animation-name: center;
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/* movie-wrap
----------------------------*/
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin-top: 3rem;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  height: 80%;
}

@media screen and (max-width: 640px) {
  .movie-wrap iframe {
    /* 640px以下のとき */
    width: 100%;
    height: 100%;
  }
}

/*---------------------------
class
----------------------------*/
.emp01 {
  font-size: 1.2em;
  font-weight: 700;
}

.emp02 {
  display: inline-block;
  padding: 3px;
  background-color: #000000;
  font-weight: 700;
}

.emp03 {
  display: inline-block;
  padding: 3px;
  color: #333333;
  text-shadow: 1px 1px 1px #ffffff, -1px -1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff;
  font-weight: 400;
}

.font_200 {
  font-size: 2em;
}

.font_170 {
  font-size: 1.7em;
}

.font_150 {
  font-size: 1.5em;
}

.font_120 {
  font-size: 1.2em;
}

.font_100 {
  font-size: 1em;
}

.font_80 {
  font-size: .8em;
}

.font_60 {
  font-size: .6em;
}

.font_we400 {
  font-weight: 400;
}

.font_we100 {
  font-weight: 100;
}

.al_center {
  text-align: center;
}

.al_right {
  text-align: right;
}

.al_left {
  text-align: left;
}

.txt_line-through {
  text-decoration: line-through;
}

.m_btm_0rem {
  margin-bottom: 0;
}

.m_btm_1rem {
  margin-bottom: 1rem;
}

.m_btm_2rem {
  margin-bottom: 2rem;
}

.m_lr_center {
  margin-right: auto;
  margin-left: auto;
}

.clr_kc {
  color: #D32D52;
}

.clr_pnk {
  color: #f20066;
}

.clr_grn {
  color: #26bcd0;
}

.clr_grn02 {
  color: #00d4ad;
}

.clr_gry01 {
  color: #333333;
}

.clr_gry02 {
  color: #666666;
}

.clr_gry03 {
  color: #999999;
}

@media screen and (max-width: 640px) {
  .d-pc {
    /* 640px以下のとき */
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .br_mo {
    /* 640px以下のとき */
    display: inline;
  }
}

@media screen and (min-width: 1025px) {
  .br_mo {
    /* 1024px以上のとき */
    display: none;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  .br_mo {
    /* 640px以上1024px以下のとき */
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .br_pc {
    /* 640px以下のとき */
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .br_pc {
    /* 1024px以上のとき */
    display: inline;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  .br_pc {
    /* 640px以上1024px以下のとき */
    display: none;
  }
}

.btn01 {
  display: block;
  margin-top: 2rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  text-align: center;
}

.btn01 a {
  position: relative;
  display: inline-block;
  padding-top: .7rem;
  padding-right: .7rem;
  padding-bottom: .7rem;
  padding-left: .7rem;
  background-color: #f20066;
  border-style: solid;
  border-width: 6px;
  border-color: #ff539c;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.btn01 a:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  content: "launch";
  padding-left: .5rem;
  font-size: 1.6rem;
  vertical-align: text-bottom;
}

@media screen and (min-width: 1025px) {
  .btn01 a:hover {
    /* 1024px以上のとき */
    background-color: #ffffff;
    color: #f20066;
  }
}

.btn02 {
  display: block;
  margin-top: 2rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  text-align: center;
}

.btn02 a {
  position: relative;
  display: inline-block;
  padding-top: .7rem;
  padding-right: 2.5rem;
  padding-bottom: .7rem;
  padding-left: .7rem;
  background-color: #f20066;
  border-style: solid;
  border-width: 6px;
  border-color: #ff539c;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.btn02 a:after {
  position: absolute;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  content: "keyboard_arrow_down";
  padding-left: .5rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 1025px) {
  .btn02 a:hover {
    /* 1024px以上のとき */
    background-color: #ffffff;
    color: #f20066;
  }
}

.btn_off {
  display: block;
  margin-top: 2rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  text-align: center;
}

.btn_off a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-top: .7rem;
  padding-right: .7rem;
  padding-bottom: .7rem;
  padding-left: .7rem;
  background-color: #bebebe;
  border-style: solid;
  border-width: 6px;
  border-color: #e0e0e0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.btn_off a:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  content: "launch";
  padding-left: .5rem;
  font-size: 1.6rem;
  vertical-align: text-bottom;
}

.container {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

@media screen and (max-width: 640px) {
  .container {
    /* 640px以下のとき */
    width: 100vw;
  }
}

@media screen and (min-width: 1025px) {
  .container {
    /* 1024px以上のとき */
    width: 60vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  .container {
    /* 640px以上1024px以下のとき */
    width: 80vw;
  }
}

.box_100vh_c {
  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;
  min-height: 100vh;
}

.border_solid_1px {
  border-style: solid;
  border-width: 1px;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
}

.border_solid_1px_wh {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
}

.border_solid_3px_red {
  border-style: solid;
  border-width: 3px;
  border-color: #D32D52;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
}

.border_dashed_2px {
  border-style: dashed;
  border-width: 2px;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
}

.material-icons {
  vertical-align: text-bottom;
  font-size: 1em;
}

.float_reset {
  clear: both;
}

.internal_link {
  position: relative;
  display: block;
}

.internal_link a {
  padding-right: 1rem;
}

.internal_link a:after {
  position: absolute;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  margin-top: 5px;
  margin-left: 1ex;
  content: "launch";
  font-size: 1.2rem;
}

.box-comment {
  padding-top: .5em;
  padding-right: .5em;
  padding-bottom: .5em;
  padding-left: .5em;
  margin-bottom: 1em;
  font-size: .9em;
  background-color: #f0eeea;
  color: #666666;
}

.box-comment .comment-area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3em 1fr;
      grid-template-columns: 3em 1fr;
  grid-row: repeat(1fr);
  margin-top: 1em;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*---------------------------
Page Tag
----------------------------*/
body {
  margin: 0;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.75rem;
}

/* body > footer
---------------------------*/
body > footer {
  background-color: #223445;
  /* nav */
}

body > footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* a */
}

body > footer nav a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1rem;
  position: relative;
  padding-right: .3rem;
  padding-left: .3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body > footer nav a:nth-child(n+2) {
  border-left: solid 1px #ffffff;
}

body > footer nav a:active, body > footer nav a:visited {
  color: #ffffff;
}

@media screen and (min-width: 1025px) {
  body > footer nav a:hover {
    /* 1024px以下のとき */
    color: #D32D52;
  }
}

body > footer small {
  display: block;
  margin-top: 3rem;
  text-align: center;
  color: #ffffff;
}

/* body > footer */
/* body > .close
---------------------------*/
body > .close {
  position: fixed;
  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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(208, 208, 227, 0.7);
}

body > .close > div {
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1rem;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.78);
  text-align: center;
  color: #000;
}

body > .close > div:before {
  position: absolute;
  display: block;
  content: url("../img/icon_neko.svg");
  height: 160px;
  width: 142px;
  top: -200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body > .close > div h1 {
  line-height: 1.2;
  font-weight: 900;
}

@media screen and (max-width: 640px) {
  body > .close > div h1 {
    /* 640px以下のとき */
    font-size: 1.5em;
  }
}

@media screen and (min-width: 1025px) {
  body > .close > div h1 {
    /* 1024px以上のとき */
    font-size: 3em;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > .close > div h1 {
    /* 640px以上1024px以下のとき */
    font-size: 2em;
  }
}

body > .close > div small {
  display: block;
  padding-top: 2em;
}

/*---------------------------
Page Tag
----------------------------*/
/* body > header
---------------------------*/
body > header {
  /* section ed */
}

body > header > header {
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: #0589b1;
}

body > header > header p {
  margin-bottom: auto;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 640px) {
  body > header > header {
    /* 640px以下のとき */
  }
  body > header > header p {
    font-size: 1em;
  }
}

body > header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  /* ttl ed */
}

@media screen and (max-width: 640px) {
  body > header section {
    /* 640px以下のとき */
    min-height: 20vh;
    background-position: 50% 50%;
    background-size: auto 100vh;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 1025px) {
  body > header section {
    /* 1024px以上のとき */
    min-height: 30vh;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > header section {
    /* 640px以上1024px以下のとき */
    min-height: 30vh;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

body > header section.ttl {
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  /* div ed */
}

body > header section.ttl > div:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 60vw;
  height: 100vh;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 640px) {
  body > header section.ttl > div:nth-child(1) {
    /* 640px以下のとき */
    width: 100vw;
  }
}

@media screen and (min-width: 1025px) {
  body > header section.ttl > div:nth-child(1) {
    /* 1024px以上のとき */
    width: 60vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > header section.ttl > div:nth-child(1) {
    /* 640px以上1024px以下のとき */
    width: 80vw;
  }
}

body > header section.ttl > div:nth-child(1) p {
  margin-bottom: 1em;
}

body > header section.ttl > div:nth-child(1) > div {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgba(31, 63, 87, 0.6);
  /* h1 */
}

body > header section.ttl > div:nth-child(1) > div h1 {
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 1.2em;
}

@media screen and (max-width: 640px) {
  body > header section.ttl > div:nth-child(1) > div h1 {
    /* 640px以下のとき */
    padding-top: 1em;
    padding-right: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  body > header section.ttl > div:nth-child(1) > div h1 {
    /* 1024px以上のとき */
    padding-top: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
    padding-left: 2em;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > header section.ttl > div:nth-child(1) > div h1 {
    /* 640px以上1024px以下のとき */
    padding-top: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
    padding-left: 2em;
    font-size: 1.8rem;
  }
}

body > header section.ttl > div:nth-child(1) > div h1 p {
  font-weight: 700;
  line-height: 1.2;
}

body > header section.ttl > div:nth-child(1) > div h1 svg#smt_logo02svg {
  display: block;
  height: 1em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1em;
  fill: #aaaaaa;
}

body > header section.ttl > div:nth-child(1) > div h1 ol {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body > header section.ttl > div:nth-child(1) > div h1 ol li {
  margin-bottom: .2rem;
  font-size: .8em;
  text-align: left;
}

body > header section.ttl > div:nth-child(1) > div h1 > figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 40%;
  max-width: 120px;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0rem;
}

body > header section.ttl > div:nth-child(1) > div h1 > figure img {
  width: 100%;
}

body > header section.ttl > div:nth-child(1) > div h1.mouse_icon::after {
  position: absolute;
  display: inline-block;
  content: url(../img/scroll.svg);
  width: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  body > header section.ttl > div:nth-child(1) > div h1.mouse_icon::after {
    /* 640px以下のとき */
    bottom: 10px;
  }
}

@media screen and (min-width: 1025px) {
  body > header section.ttl > div:nth-child(1) > div h1.mouse_icon::after {
    /* 1024px以上のとき */
    bottom: 50px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > header section.ttl > div:nth-child(1) > div h1.mouse_icon::after {
    /* 640px以上1024px以下のとき */
    bottom: 50px;
  }
}

body > header section.ttl > div:nth-child(1) > form {
  display: block;
  width: 100%;
}

body > header section.ttl .scrolldown1 {
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  body > header section.ttl .scrolldown1 {
    /* 640px以下のとき */
    display: none;
  }
}

body > header section:nth-child(2) {
  background-image: url(../img/header.jpg);
}

body > header section:nth-child(3) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body > header section:nth-child(3) p {
  margin-left: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-family: "roboto", sans-serif;
  font-weight: 100;
  line-height: 1.2;
}

/* header ed */
/* body > main
---------------------------*/
body > main {
  color: #000000;
  /* article */
  /* footer */
}

body > main header {
  background-color: #ffffff;
}

body > main header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80vh;
}

body > main header section > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

@media screen and (max-width: 640px) {
  body > main header section {
    /* 640px以下のとき */
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body > main header section > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

@media screen and (min-width: 1025px) {
  body > main header section {
    /* 1024px以上のとき */
    width: 80vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > main header section {
    /* 640px以上1024px以下のとき */
    width: 80vw;
  }
}

body > main header section figure {
  height: 100%;
}

body > main header section figure img {
  height: inherit;
}

body > main header section .txt_area {
  font-size: 1.4rem;
}

body > main header section .txt_area em {
  display: inline-block;
  margin-right: 6px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-radius: 100%;
  background-color: #ff8400;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

body > main article {
  padding-top: 5em;
  padding-bottom: 5em;
  font-size: 1rem;
  /* header */
}

body > main article ul {
  padding-left: 2em !important;
  margin-top: 2rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}

@media screen and (max-width: 640px) {
  body > main article ul {
    /* 640px以下のとき */
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  body > main article ul {
    /* 1024px以上のとき */
    width: 70%;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > main article ul {
    /* 640px以上1024px以下のとき */
    width: 70%;
  }
}

body > main article header h3 > img {
  height: 3em;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
}

body > main article header > p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

body > main article.main_content {
  color: #ffffff;
  background-color: #0589b1;
}

body > main article.main_content .remote_list {
  position: relative;
  padding-top: 3rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff;
  margin-left: -2rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 640px) {
  body > main article.main_content .remote_list {
    /* 640px以下のとき */
    margin-left: 0;
    padding-top: 5rem;
  }
}

body > main article.main_content .remote_list:nth-child(2n) {
  margin-left: 0rem;
  margin-right: -2rem;
}

@media screen and (max-width: 640px) {
  body > main article.main_content .remote_list:nth-child(2n) {
    /* 640px以下のとき */
    margin-right: 0;
  }
}

body > main article.main_content .remote_list h3 {
  position: absolute;
  left: -1px;
  top: 0;
  max-width: 90%;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  background-color: #ffffff;
  color: #0589b1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 640px) {
  body > main article.main_content .remote_list h3 {
    /* 640px以下のとき */
    right: -1px;
    max-width: 101%;
  }
}

body > main article.main_content > .container ul {
  width: 100%;
}

body > main article.main_content > .container ul li {
  margin-bottom: 1.5rem;
  font-size: 1.5em;
  font-weight: 700;
}

body > main article.main_content .form_box {
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  border-style: dashed;
  border-color: #ffffff;
  border-width: 2px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  body > main article.main_content .form_box input {
    /* 640px以下のとき */
    font-size: .8em;
  }
}

@media screen and (min-width: 1025px) {
  body > main article.main_content .form_box input {
    /* 1024px以上のとき */
    margin-top: 0;
    font-size: 1em;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > main article.main_content .form_box input {
    /* 640px以上1024px以下のとき */
    margin-top: 0;
    font-size: 1em;
  }
}

body > main article.main_content .form_box input:nth-child(2) {
  color: #ffffff;
  background-color: #79aa0b;
}

body > main article.main_content .form_box input:nth-child(2):hover {
  color: #79aa0b;
  background-color: #ffffff;
}

body > main article.corp_area header {
  text-align: center;
  margin-bottom: 3rem;
}

body > main article.corp_area header h2 {
  margin-bottom: 3em;
}

body > main > section.parallax-window {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body > main > section.parallax-window figure {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (max-width: 640px) {
  body > main > section.parallax-window figure {
    /* 640px以下のとき */
    width: 60vw;
  }
}

@media screen and (min-width: 1025px) {
  body > main > section.parallax-window figure {
    /* 1024px以上のとき */
    width: 30vw;
  }
}

@media screen and (min-width: 640px) and (max-width: 1025px) {
  body > main > section.parallax-window figure {
    /* 640px以上1024px以下のとき */
    width: 40vw;
  }
}

body > main > section.parallax-window figure img {
  width: 100%;
  -webkit-filter: drop-shadow(0 0 10px #666666);
          filter: drop-shadow(0 0 10px #666666);
}

body > main > footer {
  padding-bottom: 5rem;
}

body > main > footer h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

body > main > footer section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6rem 1fr;
      grid-template-columns: 6rem 1fr;
  font-size: 1rem;
}

body > main > footer section div {
  margin-bottom: 1ex;
  padding-top: 1ex;
  padding-bottom: 1ex;
  border-bottom: dashed 1px #000000;
}

body > main > footer section div.gttl {
  font-weight: 700;
}

/* body > section
---------------------------*/
body > section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

body > section.protection_area {
  background-color: #eeeeee;
  color: #000000;
}

/* protection_area */
body > section.item_list_area {
  background-color: #999999;
}

body > section.item_list_area .grid_con {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-row-gap: 1ex;
}

body > section.item_list_area .grid_con div {
  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;
  padding-top: .5rem;
  padding-right: .5rem;
  padding-bottom: .5rem;
  padding-left: .5rem;
  background-color: #ffffff;
  color: #000000;
  border-style: solid;
  border-width: 2px;
  border-color: #D32D52;
}

body > section.item_list_area .grid_con div:nth-child(2n) {
  background-color: #e2e9f0;
}

/* item_list_area */
body > section.form_area {
  background-color: #374f65;
}

body > section.form_area .container {
  text-align: center;
}

body > section.form_area .container h2 p {
  margin-bottom: 0;
}

body > section.form_area .container h2 svg {
  width: 300px;
  fill: #ffffff;
}

body > section.form_area .container ol {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body > section.form_area .container ol li {
  margin-bottom: 1ex;
}

body > section.form_area .container figure {
  width: 200px;
  margin: 2em auto;
}

body > section.form_area .container form input:nth-child(2) {
  cursor: pointer;
  color: #ffffff;
  background-color: #D32D52;
}

body > section.form_area .container form input:nth-child(2):hover {
  color: #D32D52;
  background-color: #ffffff;
}

/* form_area */
/* body > footer
---------------------------*/
body > footer {
  background-color: #223445;
  /* nav */
}

body > footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* a */
}

body > footer nav a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1rem;
  position: relative;
  padding-right: .3rem;
  padding-left: .3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body > footer nav a:nth-child(n+2) {
  border-left: solid 1px #ffffff;
}

body > footer nav a:active, body > footer nav a:visited {
  color: #ffffff;
}

@media screen and (min-width: 1025px) {
  body > footer nav a:hover {
    /* 1024px以下のとき */
    color: #D32D52;
  }
}

body > footer small {
  display: block;
  margin-top: 3rem;
  text-align: center;
}

/* body > footer */
/*# sourceMappingURL=index.css.map */