@charset "UTF-8";
/* ====================================================================================================
   import
==================================================================================================== */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
/* ====================================================================================================
   foundation
==================================================================================================== */
/* --------------------------------------------------
variables
*/
/* maxWidth */
/* mediaScreen */
/* font */
/* color */
/* colorBg */
/* colorBorder */
/* colorFont */
/* other */
/* --------------------------------------------------
reset
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/* --------------------------------------------------
basic
*/
html {
  position: relative;
  overflow-y: scroll;
  font-size: 2.0833333333vw;
}
@media (min-width: 720px) {
  html {
    font-size: 1.2195121951vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-family: "M PLUS 1", sans-serif;
  color: #000;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  background: url(../images/bg_body01.svg) no-repeat;
  background-position: center center;
  background-size: cover;
}

hr {
  border: none;
}

a {
  color: #000;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* scrollbar */
::-webkit-scrollbar {
  display: none;
}

/* fontSet */
h1,
h2,
h3,
h4,
h5 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
}

p,
ul,
ol,
table,
span,
a {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: justify;
  line-height: 2rem;
  letter-spacing: 0.05em;
}
p > strong,
ul > strong,
ol > strong,
table > strong,
span > strong,
a > strong {
  font-weight: 500;
  color: #000;
}
p > em,
ul > em,
ol > em,
table > em,
span > em,
a > em {
  font-weight: 500;
  text-decoration: underline;
}
p > a,
ul > a,
ol > a,
table > a,
span > a,
a > a {
  text-decoration: underline;
  color: #b71c1c;
}

/* ====================================================================================================
   layout
==================================================================================================== */
/* --------------------------------------------------
l-header
*/
.l-header {
  position: relative;
  z-index: 1010;
}
.l-header .l-header__top {
  padding: 1rem 0;
  background-color: white;
}
.l-header .l-header__top .l-header__top__in {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.l-header .l-header__top .l-header__top__in .l-header__logo {
  width: auto;
}
.l-header .l-header__top .l-header__top__in .l-header__nav {
  display: none;
}
@media (min-width: 720px) {
  .l-header .l-header__top .l-header__top__in .l-header__nav {
    display: block;
    margin-left: auto;
  }
}
.l-header .l-header__top .l-header__top__in .l-header__btn {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin-left: auto;
  background-color: #335caa;
  border-radius: 100%;
}
@media (min-width: 720px) {
  .l-header .l-header__top .l-header__top__in .l-header__btn {
    margin-left: 2rem;
  }
}
.l-header .l-header__top .l-header__top__in .l-header__btn > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-header__spNav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: #335caa;
}
.l-header__spNav > ul {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 4rem;
}
.l-header__spNav > ul > li + li {
  border-top: solid 1px white;
}
.l-header__spNav > ul > li > a {
  display: block;
  padding: 2rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
}

/* --------------------------------------------------
l-contents
*/
.l-contents {
  overflow: hidden;
}

/* --------------------------------------------------
l-footer
*/
.l-footer {
  position: relative;
  z-index: 10;
  width: auto;
  padding: 4rem 0;
  background-color: #335caa;
}
.l-footer small {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

/* --------------------------------------------------
l-section
*/
.l-section {
  position: relative;
  padding: 10rem 0;
}

.l-section--white {
  background-color: rgba(255, 255, 255, 0.7);
}

.l-section--gradation {
  position: relative;
  z-index: 10;
  padding-bottom: 5rem;
}
.l-section--gradation:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -10;
  display: block;
  background: url(../images/bg_section01.svg) no-repeat;
  background-position: top center;
  background-size: cover;
}

.l-section--mainimg {
  position: relative;
  padding: 4rem 0;
}
.l-section--mainimg .l-section--mainimg__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-mask-image: url("../images/img_mainimgMask01.svg");
          mask-image: url("../images/img_mainimgMask01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.l-section--mainimg .l-section--mainimg__slide > img {
  width: 110%;
  height: auto;
}
.l-section--mainimg .l-section--mainimg__slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: url(../images/img_mainimgMask02.svg) no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.75;
}
.l-section--mainimg .l-section--mainimg__chatch {
  position: relative;
  z-index: 10;
}
.l-section--mainimg .l-section--mainimg__chatch h1 {
  position: relative;
  display: inline-block;
  padding: 5rem;
  font-size: 6rem;
  font-weight: bold;
  line-height: 8rem;
  color: white;
  text-shadow: 0.5rem 0.5rem 0.5rem rgba(234, 255, 0, 0.25);
}
.l-section--mainimg .l-section--mainimg__chatch h1:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100rem;
  z-index: -10;
  background: url(../images/bg_mainimgCnt01.svg) no-repeat;
  background-position: center right;
  background-size: auto 100%;
}
.l-section--mainimg .l-section--mainimg__chatch .c-panel {
  max-width: 43rem;
}
.l-section--mainimg .l-section--mainimg__concept {
  position: relative;
  z-index: 10;
}

/* --------------------------------------------------
l-grid
*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  margin: -0.5rem;
}
.l-grid > * {
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  transition: all 0.4s ease-out;
}
@media (min-width: 720px) {
  .l-grid > * {
    width: 100%;
  }
}
@media (min-width: 1080px) {
  .l-grid > * {
    width: 100%;
  }
}
.l-grid .l-grid--rev {
  flex-direction: row-reverse;
}

@media (min-width: 720px) {
  .l-grid--M {
    margin: -1rem;
  }
}
@media (min-width: 720px) {
  .l-grid--M > * {
    padding: 1rem;
  }
}

@media (min-width: 720px) {
  .l-grid--L {
    margin: -2rem;
  }
}
@media (min-width: 720px) {
  .l-grid--L > * {
    padding: 2rem;
  }
}

@media (min-width: 720px) {
  .l-grid--two > * {
    width: 50%;
  }
}
@media (min-width: 1080px) {
  .l-grid--two > * {
    width: 50%;
  }
}

@media (min-width: 720px) {
  .l-grid--three > * {
    width: 50%;
  }
}
@media (min-width: 1080px) {
  .l-grid--three > * {
    width: 33.333%;
  }
}

@media (min-width: 720px) {
  .l-grid--four > * {
    width: 50%;
  }
}
@media (min-width: 1080px) {
  .l-grid--four > * {
    width: 25%;
  }
}

@media (min-width: 720px) {
  .l-grid--five > * {
    width: 33.333%;
  }
}
@media (min-width: 1080px) {
  .l-grid--five > * {
    width: 20%;
  }
}

/* ====================================================================================================
   object
==================================================================================================== */
/* --------------------------------------------------
c-breadCrumb
*/
.c-breadCrumb > * {
  display: inline-block;
}
.c-breadCrumb > * + *:before {
  content: "｜";
  margin: 0 0.5em;
}

/* --------------------------------------------------
c-badge
*/
.c-badge {
  display: inline-block;
  padding: 0.5rem 2rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  color: white;
  background-color: #0A0807;
  border: solid 1px #eee;
  border-radius: 1rem;
  box-shadow: none;
}

a.c-badge {
  transition: all 0.4s ease-out;
}
a.c-badge:hover {
  color: white;
  background-color: #335caa;
  cursor: pointer;
}

/* --------------------------------------------------
c-button
*/
.c-button, .c-form input[type=submit] {
  display: inline-block;
  padding: 2rem 4rem;
  text-align: center;
  color: white;
  background-color: #335caa;
  border: solid 1px #eee;
  border-radius: 1rem;
  box-shadow: none;
  overflow: hidden;
}

.c-buttonLink {
  position: relative;
  display: inline-block;
  padding-right: 4rem;
  font-size: 2rem;
  font-weight: bold;
  list-style: 3rem;
}
.c-buttonLink:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(../images/icon_arrow01.svg) no-repeat;
  background-position: center center;
  background-size: cover;
}

.c-buttonLink--white {
  color: white;
}

/* --------------------------------------------------
c-navBar
*/
.c-navBar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}
.c-navBar > * {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
.c-navBar > * > a {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.c-navBar > * + *:before {
  content: "/";
  margin: 0 2rem;
  font-size: 1.4rem;
  font-weight: bold;
}

/* --------------------------------------------------
c-panel
*/
.c-panel {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3rem;
  background-color: rgba(10, 8, 7, 0.8);
  border-radius: 1rem;
  box-shadow: none;
  overflow: hidden;
}

.c-panel--white {
  background-color: rgba(255, 255, 255, 0.7);
}

.c-panel--accent {
  background-color: white;
  border: solid 3px #335caa;
}

.c-panel--env {
  padding: 3rem;
  background: url(../images/bg_env01.svg) no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}

.c-panel--large {
  padding: 6rem 2rem;
}
@media (min-width: 720px) {
  .c-panel--large {
    padding: 6rem;
  }
}

.c-panel--widthM {
  max-width: 40rem;
}

.c-panel--concept {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* --------------------------------------------------
c-media
*/
.c-media {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.c-media > .c-media__img > img {
  display: block;
}
.c-media > .c-media__body {
  width: auto;
}

/* rev */
.c-media--rev {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* --------------------------------------------------
c-tableView
*/
.c-tableView {
  display: block;
  overflow: hidden;
  overflow: hidden;
}
.c-tableView > * {
  padding: 2rem;
}
.c-tableView > * + * {
  border-top: solid 1px #eee;
}

.c-tableView--qa {
  background-color: white;
  border-radius: 1rem;
}
.c-tableView--qa li > * {
  position: relative;
  padding-left: 4rem;
}
.c-tableView--qa li > * > img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: 3rem;
}
.c-tableView--qa h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2rem;
}
.c-tableView--qa p {
  font-size: 1.4rem;
  line-height: 2rem;
}

/* --------------------------------------------------
c-card
*/
.c-card {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0A0807;
  border: solid 1px #eee;
  border-radius: 1rem;
  box-shadow: none;
  overflow: hidden;
}
.c-card > .c-card__img {
  width: auto;
}
.c-card > .c-card__body {
  padding: 1rem 2rem 3rem;
}

/* --------------------------------------------------
c-hamburger
*/
.c-hamburgerBtn {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  transition: all 0.4s ease-out;
}
.c-hamburgerBtn > * {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.4s ease-out;
}
.c-hamburgerBtn > *:nth-of-type(1) {
  top: 0;
}
.c-hamburgerBtn > *:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-hamburgerBtn > *:nth-of-type(3) {
  bottom: 0;
}
.c-hamburgerBtn:hover {
  cursor: pointer;
}

/* animation */
.c-hamburgerBtn.active *:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.c-hamburgerBtn.active *:nth-of-type(2) {
  opacity: 0;
}

.c-hamburgerBtn.active *:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* --------------------------------------------------
c-form
*/
.c-form {
  /* placeholder */
}
.c-form * {
  /* reset */
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form *:-ms-clear {
  visibility: hidden;
}
.c-form *:-ms-reveal {
  visibility: hidden;
}
.c-form *::-moz-placeholder {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #999;
}
.c-form *::placeholder {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #999;
}
.c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form textarea {
  width: 100%;
  padding: 1.5rem;
  font-family: "M PLUS 1", sans-serif;
  background-color: #0A0807;
  border: solid 1px #eee;
  border-radius: 1rem;
}
.c-form select {
  width: 100%;
  padding: 1.5rem;
  background-color: #0A0807;
  border: solid 1px #eee;
  border-radius: 1rem;
}
.c-form select:hover {
  cursor: pointer;
}
.c-form input[type=checkbox],
.c-form input[type=radio] {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: #0A0807;
  border: solid 1px #eee;
  transition: all 0.4s ease-out;
}
.c-form input[type=checkbox]:before,
.c-form input[type=radio]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  transition: all 0.4s ease-out;
}
.c-form input[type=checkbox]:hover,
.c-form input[type=radio]:hover {
  cursor: pointer;
}
.c-form input[type=checkbox]:checked:before,
.c-form input[type=radio]:checked:before {
  background-color: #000;
}
.c-form input[type=radio] {
  border-radius: 100%;
}
.c-form input[type=radio]:before {
  border-radius: 100%;
}
/* --------------------------------------------------
c-title
*/
.c-title {
  display: block;
  width: 100%;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  line-height: 6rem;
  color: #335caa;
}
.c-title span {
  display: block;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 2rem;
  color: #000;
}

.c-title--out {
  position: absolute;
  top: -2rem;
  left: 0;
}

.c-titleSub {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  padding-left: 1em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 4rem;
}
.c-titleSub:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -10;
  transform: translateY(-50%);
  display: block;
  width: 10rem;
  height: 10rem;
  background: url(../images/bg_titleSub01.svg) no-repeat;
  background-position: center left;
  background-size: contain;
  opacity: 0.25;
}

/* --------------------------------------------------
c-fontSet
*/
.c-fontSetSub h1,
.c-fontSetSub h2,
.c-fontSetSub h3,
.c-fontSetSub h4,
.c-fontSetSub h5 {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 4rem;
  color: #E3D732;
}
.c-fontSetSub p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.c-fontSetSub em {
  color: #E3D732;
}
.c-fontSetSub strong {
  font-size: 1.6rem;
  font-weight: bold;
  color: #335caa;
}

.c-fontSet--white * {
  color: white;
}

.c-fontSet p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.c-fontSet strong {
  font-weight: bold;
  color: #335caa;
}
.c-fontSet em {
  color: #335caa;
}
.c-fontSet small {
  font-size: 1.2rem;
  list-style: 2rem;
}
.c-fontSet a {
  color: #b71c1c;
  text-decoration: underline;
}
.c-fontSet a:hover {
  text-decoration: none;
}
.c-fontSet h3 {
  display: block;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
  background-color: #335caa;
  border-radius: 100rem;
}
.c-fontSet h4 {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: #335caa;
}
.c-fontSet ul li,
.c-fontSet ol li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: justify;
  line-height: 2rem;
}
.c-fontSet ul li + li,
.c-fontSet ol li + li {
  margin-top: 1rem;
}
.c-fontSet ul li:before,
.c-fontSet ol li:before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: #b71c1c;
}
.c-fontSet table {
  width: 100%;
}
.c-fontSet table tr th,
.c-fontSet table tr td {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
  border-bottom: solid 1px #eee;
}
.c-fontSet table tr th {
  white-space: nowrap;
  vertical-align: middle;
  color: #335caa;
  border-color: #335caa;
}
.c-fontSet img {
  max-width: 100%;
  height: auto;
}
.c-fontSet iframe {
  width: 100%;
  height: 50vh;
  border-radius: 1rem;
}

/* ====================================================================================================
   utility
==================================================================================================== */
/* --------------------------------------------------
u-taX
*/
.u-taR {
  text-align: right;
}

.u-taC {
  text-align: center;
}

.u-taL {
  text-align: left;
}

/* --------------------------------------------------
u-clearfix
*/
.u-clearfix, .u-innerL, .u-innerM, .u-innerS {
  display: block;
  min-height: 1%;
}
.u-clearfix:after, .u-innerL:after, .u-innerM:after, .u-innerS:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

* html .u-clearfix, * html .u-innerL, * html .u-innerM, * html .u-innerS {
  height: 1%;
}

/* --------------------------------------------------
u-flX
*/
.u-flL {
  float: left;
}

.u-flR {
  float: right;
}

/* --------------------------------------------------
u-hover
*/
.u-hover, .c-button, .c-buttonLink, .c-form input[type=submit] {
  transition: all 0.4s ease-out;
}
.u-hover:hover, .c-button:hover, .c-buttonLink:hover, .c-form input[type=submit]:hover {
  cursor: pointer;
}
@media (min-width: 1080px) {
  .u-hover:hover, .c-button:hover, .c-buttonLink:hover, .c-form input[type=submit]:hover {
    opacity: 0.5;
  }
}

/* --------------------------------------------------
u-img
*/
.u-imgMaxW {
  max-width: 100%;
  height: auto;
}

.u-imgThumb {
  display: block;
  padding: 1rem;
  border: solid 1px #eee;
}

.u-imgCrop {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-imgHeaderLogo {
  width: auto;
  height: 6rem;
}

.u-imgConceptLogo {
  width: auto;
  height: 15rem;
}

.u-imgEnvIcon {
  width: auto;
  height: 6rem;
}

/* --------------------------------------------------
u-inner
*/
.u-innerS {
  box-sizing: content-box;
  max-width: 67rem;
  margin: 0 auto;
}

.u-innerM {
  box-sizing: content-box;
  max-width: 84rem;
  margin: 0 auto;
}

.u-innerL {
  box-sizing: content-box;
  max-width: 110rem;
  margin: 0 auto;
}

.u-innerGarterS {
  padding: 0 1rem;
}

.u-innerGarterM {
  padding: 0 2rem;
}

.u-innerGarterL {
  padding: 0 4rem;
}

/* --------------------------------------------------
u-vr
*/
.u-vrS > * + * {
  margin-top: 1rem;
}

.u-vrM > * + * {
  margin-top: 2rem;
}

.u-vrL > * + * {
  margin-top: 4rem;
}

/* --------------------------------------------------
u-color
*/
/* ====================================================================================================
   vender
==================================================================================================== *//*# sourceMappingURL=common.css.map */