@charset "UTF-8";
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

figure {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

/* ========== すべて共通 ========== */
.os_wrapper {
  width: 740px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}

.sec1, .sec2, .sec3, .sec4, .sec5 {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.full__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.bar_title {
  background: #FFFF00;
  padding: 10px 40px;
  font-size: 22px;
  position: relative;
  width: 93%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.bar_title::before {
  position: absolute;
  content: '';
  top: 25%;
  left: 20px;
  width: 6px;
  height: 50%;
  background: #FBB03B;
}

.move_title {
  font-size: 22px;
  padding: 10px 50px;
}

.img_p {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0 30px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
}

.img_p .green {
  color: #39B04A;
  font-size: 1rem;
}

.img_p .bar {
  width: 100%;
  border-bottom: 1px solid #000;
  display: block;
  margin-bottom: 10px;
}

.img_p h1 {
  font-size: 1.6rem;
}

.img_p h1::first-line {
  font-size: 1.2rem;
}

.twin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.twin figure {
  padding: 20px 5px 0;
}

.twin figure img {
  max-width: 100%;
}

.move {
  position: relative;
  width: 80%;
  padding-top: 45%;
  margin: 10px auto;
}

.move video,
.move iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.m__bottom {
  padding-bottom: 20px;
}

.l__bottom {
  padding-bottom: 50px;
}

.btn_img {
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
}

.back_btn {
  text-align: center;
  font-size: 1.2rem;
}

.back_btn a {
  border-bottom: 2px solid #006837;
  padding: 5px 20px;
  text-decoration: none;
  color: #000;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #ccc;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
          animation: sk-scaleout 1.0s infinite ease-in-out;
}

/* ローディングアニメーション */
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 739px) {
  /* ========== すべて共通 ========== */
  .os_wrapper {
    width: 100%;
  }
  .full__img {
    width: 100%;
  }
  .img_p {
    width: 90%;
    padding: 10px 0 20px;
    font-size: 1rem;
  }
  .img_p h1 {
    font-size: 1.2rem;
  }
  .img_p h1::first-line {
    font-size: 1.1rem;
  }
  .twin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px 0 0;
  }
  .twin figure {
    width: calc(100% / 3);
    padding: 0 3px;
  }
  .bar_title {
    padding: 10px 20px;
    font-size: 16px;
    width: 93%;
  }
  .bar_title::before {
    top: 25%;
    left: 10px;
    width: 6px;
    height: 50%;
    background: #FBB03B;
  }
  .move_title {
    font-size: 18px;
    padding: 10px 20px;
  }
  .m__bottom {
    padding-bottom: 10px;
  }
  .move {
    width: 100%;
    padding-top: 56.25%;
  }
  .btn_img {
    max-width: 60%;
  }
}
/*# sourceMappingURL=1_styles.css.map */