@charset "UTF-8";

/*----------------------------------------リセットCSS---------------------------------------*/
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, font, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  max-height: 999999px;
}

body {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-size: 100%;
  font-weight: normal;
  overflow: hidden;
  line-height: 100%;
}

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
}

a img {
  border: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: text-bottom;
}

object {
  pointer-events: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*----------------------------------------レイアウト基礎----------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
}

a {
  color: white;
}

a:hover {
  opacity: 0.7;
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.neverleft {
  float: left;
}

.neverright {
  float: right;
}

.left {
  float: left;
}

.right {
  float: right;
}

.tac {
  text-align: center;
}

.clearfix {
  /* margin: 0; */
}

.clearfix:after {
  content: ".";
  /* display: block; */
  /* clear: both; */
  /* height: 0; */
  visibility: hidden;
}

footer .clearfix:after {
  content: ".";
  display: block;
  clear: both;
  /* height: 0; */
  visibility: hidden;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

table {
  width: 100%;
}

table th {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid;
}

table td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid;
}

@media screen and (max-width: 920px) {
  .left {
    float: none;
  }
  .right {
    float: none;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  table th, table td {
    display: block;
  }
}

/*---------------------------------------画像の基礎----------------------------------------*/
body {
  /* background-image: url("../img/common/bg.svg"); */
  /*svgを背景に入れる方法*/
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

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

@media screen and (min-width:1100px) {
  body {
    overflow-x: hidden;
    /*下のwidth分広がるのを見せないように*/
    overflow-y: scroll;
    /*ドロワーが出たときにガクッとならないように常に出している*/
    width: calc(100vw - 15px);
  }
}

/*---------------------------------------フォントの基礎----------------------------------------*/
html {
  font-size: 62.5%;
  /*基準を10pxを1emに*/
}

body {
  font-family: 'メイリオ', 'Meiryo', 'Lucida Grande', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', Verdana, Helvetica, Arial, Sans-serif;
  color: #000;
  font-size: 1.6rem;
  /* 16px*/
  line-height: 1.8;
}

h1 {
  font-size: 36px;
  /* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
  /* 24px~36pxで可変*/
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  /* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
  /* 20px~24pxで可変*/
  line-height: 1.3;
}

p {
  line-height: 1.8;
}

dt {
  float: left;
}

dt::after {
  content: "："
}

.bold {
  font-weight: bold;
}

@media (min-width: 1100px) {
  h1 {
    font-size: 3.6rem;
  }
  h2 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.5;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2rem;
  }
  p {
    line-height: 1.5;
  }
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

/*----------------------------------------header----------------------------------------*/
header {
  background: #fff;
}

/*----------------------------------------共通----------------------------------------*/
.container {
  min-height: 100vh;
  /*フッターを底に固定するのに必要*/
  position: relative;
  /*←相対位置。フッターを底に固定するのに必要*/
  /* padding-bottom: 120px; */
  /*←footerの高さ*/
  box-sizing: border-box;
  /*←全て含めてmin-height:100vhに*/
}

.container2 {
  min-height: 70vh;
  position: relative;
  box-sizing: border-box;
}

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: -60px;
  background: #c6c6c6;
  opacity: 0.8;
  text-align: center;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

#link_btn {
  width: 120px;
  height: 120px;
  border-radius: 80px;
  position: fixed;
  right: 30px;
  top: -120px;
  background: #9f0101;
  opacity: 1;
  text-align: center;
  transition-duration: 0.3s;
}

#link_btn a {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  text-decoration: none;
  transition-duration: 0.3s;
}

#link_btn p {
  margin: 35px 0 0;
  font-weight: bold;
}


.scrollicon {
  width: 35px;
  margin: 14px auto;
}



/*----------------------------------------トップ----------------------------------------*/
.head{
  height: 565px;
  overflow: hidden;
}

.head .absolute{
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
}

.head h1{
  text-align: center;
  margin: 8% 0 0 0;
}

.head h1 object{
  width: 90%;
  max-width: 670px;
}

.head h1 svg {
    width: 90%;
    max-width: 670px;
}

.head h1 .cls-1 {
  isolation: isolate;
}
.head h1 .cls-2 {
  opacity: 0.75;
}
.head h1 .cls-2,
.head h1 .cls-3 {
  mix-blend-mode: multiply;
}
.head h1 .cls-4 {
  fill: #a2d9f0;
}









.system{
  width: 100%;
  overflow: hidden;
}

.system .neverleft{
  padding: 3% 5%;
  width: 65%;
}

.system .neverright{
  width: 35%;
}

.system .neverleft object{
  width: 78%;
}

.system .neverright img{
  width: 100%;
}




@media screen and (max-width: 767px) {
  .system{
    clear: both;
  }

  .system .neverleft{
    width: 100%;
  }

  .system .neverright{
    width: 50%;
    margin: 0 auto 2%;
    float: initial;
  }

  .system .neverleft object{
    width: 65%;
  }

  .system .neverright img{
    width: 100%;
  }
}





.example{
  background-color: #ffdc24;
  padding: 3% 8%;
  overflow: hidden;
  width: 100%;
}

.example .left{
  width: 42%;
}

.example .right{
  width: 58%;
  padding: 0 0 0 4%;
}

.example .left img{

}

.example h2{
  background-color: white;
  width: 100%;
  max-width: 380px;
  padding: 3% 5%;
  margin: 0 0 3%;
  border-radius: 20px;
}

.example ul.text{

}
.example ul.text li{
  list-style: disc;
}

.example ul.photo{
  display: flex;
  flex-wrap: wrap;
  clear: both;
}
.example ul.photo li{
  width: 23%;
  margin: 1%;
}

@media screen and (max-width: 920px) {
  .example .left{
    width: 100%;
  }
  .example .right{
    width: 100%;
    padding: 0 0 0 0%;
    margin: 0 0 0 5%;
  }
}

@media screen and (max-width: 767px) {
  .example{
    padding: 3% 8%;
    overflow: hidden;
  }

  .example .left{
    width: 100%;
  }

  .example .right{
    width: 100%;
    padding: 0 0 0 5%;
  }

  .example .left img{

  }
  .example h2 {
    background-color: white;
    width: 90%;
    max-width: 500px;
    padding: 2% 6%;
    margin: 5% auto;
  }
  .example ul.photo li{
    width: 31.33333%;
    margin: 1%;
  }
}

@media screen and (max-width: 500px) {
  .example{
    padding: 3% 8%;
    overflow: hidden;
  }

  .example .left{
    width: 100%;
  }

  .example .right{
    width: 100%;
    padding: 0 0 0 5%;
  }

  .example .left img{
  }
  .example h2 {
    width: 100%;
    padding: 4%;
  }
  .example ul.photo li{
    width: 49%;
  }
  .example ul.photo li:nth-child(odd){
    margin: 2% 1% 1% 0;
  }
  .example ul.photo li:nth-child(even){
    margin: 2% 0 1% 1%;
  }
}

@media screen and (max-width: 400px) {
  .example ul.photo li{
    width: 99%;
  }
  .example ul.photo li:nth-child(odd){
    margin: 5%;
  }
  .example ul.photo li:nth-child(even){
    margin: 5%;
  }
}

.button{
  margin: 3% auto 5%;
  padding: 1.3% 3%;
  text-align: center;
  background-color: #9f0101;
  color: white;
  font-weight: bold;
  width: 240px;
  /* position: sticky;
  position: -webkit-sticky; */
  top: 0;
}












.demo{
  text-align: center;
  margin: 5% 0;
}

.demo iframe{
    width: 90%;
    height: 600px;
}

.demo object{
  width: 90%;
  max-width: 250px;
  margin: 1% 0 2%;
}

.democomment{
  margin: 0% auto 2%;
}

.demotxt{
  width: 90%;
  max-width: 555px;
  margin: 5% auto;
  text-align: left;
}

.option{
  margin: 0 auto;
  width: 90%;
}

.option img{
  width: 100%;
}

.option_pc{display: block !important;}
.option_sp{display: none !important;}

@media screen and (max-width: 750px){
  .option_pc{display: none !important;}
  .option_sp{display: block !important;}
  .option{
    margin: 0 auto;
    width: 70%;
    max-width: 350px;
  }
}

.panja_bg{
  background-color: #dedede;
}

.panja{
  width: 90%;
  max-width: 800px;
  text-align:center;
  margin: 0 auto;
}

.panja1{
  width: 100%;
  max-width: 600px;
}

.panja2{
  width: 100%;
  max-width: 700px;
}

.panja3{
  width: 100%;
  max-width: 200px;
}

.panja p{
  padding: 2% 0;

}

.panja p.text{
  text-align: left;
}

.panja a{
  color: black;
}

@media screen and (max-width: 767px) {
  .panja {
    font-size: 14px;
  }
  .demo iframe{
      width: 90%;
      height: 500px;
  }
}



@media screen and (max-width: 1100px) {
  .head {
    height: 520px;
  }
}

@media screen and (max-width: 1000px) {
  .head {
    height: 450px;
  }
}
@media screen and (max-width: 900px) {
  .head {
    height: 415px;
  }
}
@media screen and (max-width: 800px) {
  .head {
    height: 365px;
  }
  .panja p {
    padding: 4% 0;
  }
}
@media screen and (max-width: 700px) {
  .head {
    height: 310px;
  }
  .button {
    margin: 8% auto;
    padding: 3% 3%;
  }
}
@media screen and (max-width: 600px) {
  .head {
    height: 290px;
  }
}
@media screen and (max-width: 500px) {
  .head {
    height: 250px;
  }
  .panja p {
    padding: 6% 0;
  }
}
@media screen and (max-width: 400px) {
  .head {
    height: 210px;
  }
}



/*----------------------------------------footer----------------------------------------*/
.gate{
  text-align: center;
  margin: 5% 0;
}

.gate a{
  display: inline-block;
}

.gate object{
  width: 100%;
  max-width: 300px;
}

footer {
  width: 100%;
  background: #9f0101;
  color: #fff;
  text-align: center;
  bottom: 0;
  padding: 0 0 1.5%;
  /*下に固定フッターを底に固定するのに必要*/
}

.finner{
  width: 95%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.finner img {
  width: 100%;
  max-width: 230px;
  margin: 3.5% auto;
}

.finner p {
  padding: 10px 0 30px;
  font-size: small;
  text-align: left;
}

.finner .neverleft{
  padding: 10px 5px 30px 0;
  font-size: small;
  width: 50%;
  text-align: left;
}

.finner .neverright{
  padding: 10px 0 30px 5px;
  font-size: small;
  width: 50%;
  text-align: left;
}

.finner .neverleft p{
  margin: 1% 0;
}

.finner .neverright p{
  margin: 1% 0;
}

.finner p {
  padding: 5% 0 1%;
  font-size: small;
}

.EU{
  clear: both;
}

.EU p{
  padding: 0% 0 1%;
}

.copyright {
  background: #211614;
  padding: 20px;
}

@media screen and (max-width: 800px) {
  .copyright {
    padding: 6px;
    font-size: 14px;
  }
  footer {
    margin: 0 auto;
  }
  .gate object{
    width: 70%;
    max-width: 300px;
  }
}

@media screen and (max-width: 500px) {
  .copyright {
    padding: 6px;
    font-size: 12px;
  }
}

/*----------------------------------------drawer----------------------------------------*/
.hamburgerBox button {}

.hamburgerBox .drawer-hamburger {
  position: absolute;
  margin-top: 0px;
}

.drawer-hamburger {
  padding: 18px 1rem 30px !important;
}

.hamburgerBox .drawer-hamburger-icon,
.hamburgerBox .drawer-hamburger-icon:before,
.hamburgerBox .drawer-hamburger-icon:after {
  background-color: #000;
  height: 0.5px;
}

.hamburgerBox .drawer-hamburger-icon:before {
  top: 10px;
}

.hamburgerBox .drawer-hamburger-icon:after {
  top: -10px;
}

.drawer-toggle p {
  margin-top: 15px;
  color: #000;
  text-align: center;
}

nav.drawer-nav, .drawer-menu {
  background: #fff;
  z-index: 9999999999;
}

.drawer-menu li {
  margin: 30px 0;
  border-bottom: 1px solid;
  width: 80%;
  font-size: 1.1em;
}

.drawer-menu a {
  color: #000;
  padding: 0px 5px 0 25px;
  font-weight: 500;
}

.drawer-menu a:hover {
  color: #000;
}

.hamburgerBox .drawer-hamburger {
  width: 2.2rem;
}

.drawer-overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6) !important;
}










/*----------------------------------------メールフォーム----------------------------------------*/
.formbox{

}

.formbox h1{
  text-align: center;
  margin: 7%;
}

.formbox p{
  margin: 0 0 2%;
}

.black{
  color: black;
}

.black a{
  color: black;
}
