@charset "UTF-8";
/*共通事項*/
html {
  overflow-y: scroll;
}

fieldset, img {
  border: none;
  vertical-align: top;
}

a {
  outline: none;
}

/*-----------------------------------------------------------
    余白初期設定
-----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
html, body, div,
p, ul, ol, li, dl, dt, dd,
pre, blockquote,
form, fieldset, input, textarea,
table, th, td, figure {
  margin: 0;
  padding: 0;
}

/*-----------------------------------------------------------
    その他初期設定
-----------------------------------------------------------*/

body {
  color: #000;
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  word-wrap: break-word;
  font-weight: 400;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img {
  width: 100%;
  height: auto;
}

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

.wrap {
  position: relative;
  max-width: 1040px;
  margin: 0px auto;
  box-sizing: border-box;
}

@media (min-width: 1100px) {
  a:hover {
    color: #000;
    text-decoration: underline;
  }
  a:visited {
    color: #000;
  }
  a:active {
    text-decoration: none;
  }
}
@media (max-width: 1099px) {
  .wrap {
    width: auto;
    margin: 0px 30px;
  }
}
@media (max-width: 995px) {
  body {
    text-size-adjust: 100%;
  }
  img {
    max-height: none;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 3.5vw;
  }
  .wrap {
    margin: 0px 5vw;
  }
}

/*header*/
header .logo {
  width: 224px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2000;
  padding: 40px 0px 0px 40px;
  box-sizing: border-box;
}
header .qr {
  width: 224px;
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: 2000;
  padding: 40px 40px 0px 0px;
  box-sizing: border-box;
}

/*mainvisual*/
.top {
  height: 100vh;
  position: relative;
  background-color: #73bee3;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img//mainbg01.png);
}
.top .main {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%,-50%);
  width: 1220px;
}
.top .wrap {
  height: 100vh;
}
.top .textbox {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 20;
  color: #fff;
}
.top .textbox .sub {
  margin-bottom: 1.5em;
  text-shadow: 2px 2px 8px #000;
  font-size: 3.2rem;
  font-weight: bold;
  font-family: system-ui;
  font-style: italic;
}
.top .textbox .sub span {
  margin-top: 0.5rem;
  display: block;
  line-height: 1.2;
  font-size: 2rem;
}
.top .textbox .more {
  text-align: center;
  padding-right: 1em;
}
.top .textbox .more a {
  display: inline-block;
  padding: 0.7em 2.75em;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 2em;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: system-ui;
  text-decoration: none;
}
@media (min-width: 1100px) {
  .top .textbox .more a {
    transition: 0.3s;
  }
  .top .textbox .more a:hover {
    background-color: #fff;
    color: #000;
  }
}
@media (max-width: 1220px) {
  .top .main {
    width: 100%;
  }
}
@media (max-width: 995px) {
  header .logo,
  header .qr {
    width: 15vw;
  }
}
@media (max-width: 767px) {
  header .logo,
  header .qr {
    width: 20vw;
    padding: 2.5vw;
  }
  .top {
    background-size: 350vw;
  }
  .top .main {
    width: 150vw;
    margin: 0 calc(50% - 50vw);
  }
  .top .wrap {
    /*height: 115vw;*/
  }
  .top .textbox {
    text-align: center;
    top: 85%;
    width: 100%;
  }
  .top .textbox .sub {
    font-size: 5vw;
  }
  .top .textbox .sub span {
    font-size: 3vw;
  }
  .top .textbox .more {
    text-align: center;
  }
}