/*!*** Base Rules *****/
/*!
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*!*** Base Rules(Custom) *****/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

li {
  list-style-type: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

#page-top {
  display: block;
  z-index: 10;
  line-height: 1;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #336FAB;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #page-top {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #page-top {
    right: 20px;
    bottom: 20px;
  }
}

#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page-top a::before {
  font: var(--fa-font-solid);
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#menu-button {
  width: 32px;
  height: 44px;
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
#menu-button .top {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .bottom {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .text {
  position: absolute;
  bottom: 0;
  width: 32px;
  left: 50%;
  margin-left: -16px;
}
#menu-button.open .top {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menu-button.open .bottom {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.scroll-up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll-up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.delay2s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay3s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay4s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay5s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#form-wrap form#mail_form * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#form-wrap form#mail_form {
  width: 100%;
  margin: 20px auto;
  background: #ffffff;
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 1.8;
}
#form-wrap form#mail_form dl {
  width: 100%;
  margin: 0 auto;
  border-bottom: none;
}
#form-wrap form#mail_form dl dd {
  padding-bottom: 0;
}
#form-wrap form#mail_form input {
  font-size: 18px;
  padding: 0.5em;
}
@media screen and (max-width: 768px) {
  #form-wrap form#mail_form input {
    font-size: 16px;
  }
}
#form-wrap form#mail_form input[name=company] {
  width: 100%;
}
#form-wrap form#mail_form input[name=phone] {
  width: 100%;
}
#form-wrap form#mail_form input[name=mail_address], #form-wrap form#mail_form input[name=mail_address_confirm] {
  width: 100%;
}
#form-wrap form#mail_form input[type=text], #form-wrap form#mail_form input[type=email], #form-wrap form#mail_form input[type=tel], #form-wrap form#mail_form textarea {
  border-radius: 0;
  border: 1px solid #707070;
  width: 96%;
}
#form-wrap form#mail_form input[type=button] {
  padding: 0.5em 3em;
  border: 1px solid #4cae4c;
  border: none;
  border-radius: 5px;
  background: #0097d7;
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#form-wrap form#mail_form p#form_submit {
  width: inherit;
  text-align: center;
}
#form-wrap form#mail_form dl dt i {
  display: none;
}
@media screen and (min-width: 768px) {
  #form-wrap form#mail_form dl dt {
    width: inherit;
    float: none;
    padding: 0;
    text-align: left;
  }
  #form-wrap form#mail_form dl dd {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 1em;
  }
  #form-wrap form#mail_form {
    width: 535px;
    margin-right: auto;
    margin-left: auto;
  }
  #form-wrap form#mail_form input[type=button] {
    margin-left: auto;
  }
  #form-wrap .required-text {
    text-align: center;
  }
}

/*!*** Module Rules *****/
.header {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #ccc;
  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;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
  }
}
.header .header-title {
  font-size: 30px;
  font-weight: 700;
  color: #0097D7;
  padding-left: 1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header .header-title {
    font-size: 16px;
    padding-left: 2%;
    line-height: 1.5;
  }
}

.mv-wrap {
  width: 100%;
  height: 733px;
  background-image: url("../images/mv.webp");
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .mv-wrap {
    height: 500px;
  }
}
.mv-wrap .mv-inner {
  position: relative;
  width: 1000px;
  height: 733px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .mv-wrap .mv-inner {
    width: 100%;
    height: 500px;
    padding-right: 2%;
    padding-left: 2%;
  }
}
.mv-wrap .mv-title {
  max-width: 1078px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .mv-wrap .mv-title {
    max-width: 100%;
    padding-right: 2%;
    padding-left: 2%;
    padding-top: 50px;
  }
}
.mv-wrap .mv-title img {
  width: 100%;
}
.mv-wrap .guest-list {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  right: 20px;
  bottom: 0;
}
.mv-wrap .guest-list li {
  width: 130px;
  margin-right: 20px;
}
.mv-wrap .guest-list li img {
  width: 100%;
}

.lead-wrap {
  background-image: url("../images/binary-bg.png");
  background-size: cover;
  background-position: center center;
}
.lead-wrap .lead-inner {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3em 5em;
  text-indent: 1em;
  margin-top: 3em;
  border: 1px solid #F1F1F1;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .lead-wrap .lead-inner {
    margin-top: 0;
  }
}
.lead-wrap .lead-inner p {
  margin-bottom: 0.5em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .lead-wrap .lead-inner {
    width: 100%;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.heading-line {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .heading-line {
    font-size: 20px;
  }
}

.heading-line:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 40px);
  width: 80px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #0097D7;
}
@media screen and (max-width: 768px) {
  .heading-line:before {
    bottom: -2px;
  }
}

.movie {
  background-color: #F5F5F5;
  padding-top: 5px;
  padding-bottom: 50px;
}

.movie-wrap {
  width: 667px;
  aspect-ratio: 16/9;
  margin-right: auto;
  margin-left: auto;
}
.movie-wrap .embed {
  width: 100%;
  aspect-ratio: 16/9;
}
.movie-wrap iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .movie-wrap {
    width: 90%;
  }
}

.download .required-text, #dl-wrap .required-text, #form-wrap .required-text {
  text-align: center;
  margin-bottom: 1em;
  text-indent: none;
}
.download .document-image, #dl-wrap .document-image, #form-wrap .document-image {
  text-align: center;
}
.download .document-image img, #dl-wrap .document-image img, #form-wrap .document-image img {
  width: 400px;
  border: 1px solid #ccc;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .download .document-image img, #dl-wrap .document-image img, #form-wrap .document-image img {
    width: 90%;
  }
}
.download .dl-button, #dl-wrap .dl-button, #form-wrap .dl-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.download .dl-button a, #dl-wrap .dl-button a, #form-wrap .dl-button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 288px;
  height: 70px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#0097D7), to(#0071A0)) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(top, #0097D7 0%, #0071A0 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #0097D7 0%, #0071A0 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .download .dl-button a, #dl-wrap .dl-button a, #form-wrap .dl-button a {
    font-size: 16px;
  }
}

.footer {
  background-color: #0097D7;
  padding-top: 2em;
  padding-bottom: 2em;
  margin-top: 5em;
  text-align: center;
  color: #fff;
}
.footer .footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer .footer-title {
    font-size: 16px;
  }
}
.footer .footer-contact {
  background-color: #fff;
  color: #0097D7;
  width: 470px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer .footer-contact {
    width: 90%;
    font-size: 14px;
  }
}
.footer .footer-address {
  margin-bottom: 1em;
}

/*!*** Helper Rules *****/
.fz10 {
  font-size: 10px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz23 {
  font-size: 23px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz27 {
  font-size: 27px;
}

.fz28 {
  font-size: 28px;
}

.fz30 {
  font-size: 30px;
}

.fz32 {
  font-size: 32px;
}

.fz33 {
  font-size: 33px;
}

.fz34 {
  font-size: 34px;
}

.fz35 {
  font-size: 35px;
}

.fz42 {
  font-size: 42px;
}

.fz49 {
  font-size: 49px;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh15 {
  line-height: 1.5;
}

.lh2 {
  line-height: 2;
}

.lh47 {
  line-height: 47px;
}

.lh60 {
  line-height: 60px;
}

.va20 {
  letter-spacing: 0.02em;
}

.ltsp100 {
  letter-spacing: 0.1em;
}

.tdu {
  text-decoration: underline;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pt1em {
  padding-top: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pr2p {
  padding-right: 2%;
}
@media (min-width: 768px) {
  .pr2p {
    padding-right: 0;
  }
}

.plr2p {
  padding-right: 2%;
  padding-left: 2%;
}

.plr5p {
  padding-right: 5%;
  padding-left: 5%;
}

.plr1em {
  padding-right: 1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml1em {
  margin-left: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.mt1em {
  margin-top: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mt2em {
  margin-top: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.br-sp, .sp {
  display: inherit;
}

.br-tb {
  display: inherit;
}

.br-pc, .pc {
  display: none;
}

.text-sp {
  display: inline;
}

.text-pc {
  display: none;
}

@media (min-width: 600px) {
  .br-sp, .sp {
    display: none;
  }
  .br-tb {
    display: inherit;
  }
  .br-pc, .pc {
    display: inline-block;
  }
  .text-sp {
    display: none;
  }
  .text-pc {
    display: inline;
  }
  .pc-fz14 {
    font-size: 14px;
  }
  .pc-fz18 {
    font-size: 18px;
  }
  .pc-fz26 {
    font-size: 26px;
  }
  .pc-fz27 {
    font-size: 27px;
  }
  .pc-fz30 {
    font-size: 30px;
  }
  .pc-fz36 {
    font-size: 36px;
  }
  .pc-fz38 {
    font-size: 38px;
  }
  .pc-fz40 {
    font-size: 40px;
  }
  .pc-fz49 {
    font-size: 49px;
  }
  .plr2p {
    padding-left: inherit;
    padding-right: inherit;
  }
  .pc-tac {
    text-align: center;
  }
  .pc-lh12 {
    line-height: 1.2;
  }
  .pc-w780 {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w730 {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w265 {
    max-width: 265px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-w410 {
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mb2em {
    margin-bottom: 2em;
  }
  .pc-mb3em {
    margin-bottom: 3em;
  }
}
@media (min-width: 1000px) {
  .br-tb {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */