@charset "UTF-8";
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, caption, tfoot, thead, th, 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;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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 #000;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

ol li, ul li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #333;
  -webkit-text-size-adjust: 100%;
  max-width: 1920px;
}

section {
  padding: 70px 0;
}

section .s_hdr {
  display: flex;
  width: 100%;
  align-items: center;
}

section .inner {
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 70px;
}

@media screen and (max-width: 768px) {
  section {
    padding: 5% 0;
  }
  section .inner {
    padding: 0 5%;
  }
}

figure {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 0;
}

figure img {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
}

figure:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  figure {
    margin-bottom: 20px;
  }
}

p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  line-height: 1.65em;
}

p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.box_video {
  position: relative;
  width: 100%;
  height: 56.25%;
  padding: 56.25% 0 0 0;
  text-align: center;
}

.box_video .video_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  margin: 0 auto;
}

.box_video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ripple {
  position: relative;
  display: block;
}

.ripple img {
  max-width: 100%;
  margin: 0 auto;
}

.ripple span {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 90%;
  height: 100%;
  margin: auto;
  -webkit-animation-name: rippleAnimation;
  animation-name: rippleAnimation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 100px;
  background-color: #fff072;
  box-shadow: 0 0 5px white;
}

@-webkit-keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: .5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}

@keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: .5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}

.ripple2 {
  position: relative;
  display: block;
}

.ripple2 img {
  max-width: 100%;
  margin: 0 auto;
}

.ripple2 span.clr_1, .ripple2 span.clr_2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
  -webkit-animation-name: rippleAnimation2;
  animation-name: rippleAnimation2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 100%;
  box-shadow: 0 0 45px 1px #ff004a inset;
}

.ripple2 span.clr_2 {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@media screen and (max-width: 768px) {
  .ripple2 span.clr_1, .ripple2 span.clr_2 {
    width: 35px;
    height: 35px;
  }
}

@-webkit-keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

@keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

.bounce {
  position: relative;
}

.bounce::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto auto;
  content: '';
  background: url(../img/down.png) no-repeat center top;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.Fade-In {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.Fade-In.Fade-In-2 {
  transition-delay: 0.2s;
}

.Fade-In.Fade-In-3 {
  transition-delay: 0.3s;
}

.Fade-In.Fade-In-4 {
  transition-delay: 0.4s;
}

.Fade-In-Down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s;
}

.Fade-In-Down.Fade-In-Down-2 {
  transition-delay: 0.2s;
}

.Fade-In-Down.Fade-In-Down-3 {
  transition-delay: 0.3s;
}

.Fade-In-Down.Fade-In-Down-4 {
  transition-delay: 0.4s;
}

.Fade-In-Left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}

.Fade-In-Left.Fade-In-Left-2 {
  transition-delay: 0.2s;
}

.Fade-In-Left.Fade-In-Left-3 {
  transition-delay: 0.3s;
}

.Fade-In-Left.Fade-In-Left-4 {
  transition-delay: 0.4s;
}

.Fade-In-Right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}

.Fade-In-Right.Fade-In-Right-2 {
  transition-delay: 0.2s;
}

.Fade-In-Right.Fade-In-Right-3 {
  transition-delay: 0.3s;
}

.Fade-In-Right.Fade-In-Right-4 {
  transition-delay: 0.4s;
}

.t_1 {
  color: #e00;
}

.t_2 {
  color: #05c;
}

.t_3 {
  color: #05c;
}

.t_4 {
  color: #c00;
}

.t_5 {
  color: #c00;
}

.t_1_b {
  padding: .1em;
  color: #e00;
  background-color: #ff0;
}

.t_2_b {
  padding: .1em;
  color: #000;
  background-color: #ff0;
}

.t_3_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_4_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_5_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_lrg {
  font-size: 130%;
}

.t_xlrg {
  font-size: 180%;
}

.t_stg {
  font-weight: bold;
}

.t_ul {
  text-decoration: underline;
}

.t_c {
  text-align: center;
}

.t_r {
  text-align: right;
}

.t_l {
  text-align: left;
}

.f_l {
  float: left;
  margin-right: 1em;
}

.f_r {
  float: right;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .f_l, .f_r {
    float: none;
    margin: 0 0 1em;
  }
}

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

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mb210 {
  margin-bottom: 210px !important;
}

.mb220 {
  margin-bottom: 220px !important;
}

.mb230 {
  margin-bottom: 230px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}

.mb250 {
  margin-bottom: 250px !important;
}

.mb260 {
  margin-bottom: 260px !important;
}

.mb270 {
  margin-bottom: 270px !important;
}

.mb280 {
  margin-bottom: 280px !important;
}

.mb290 {
  margin-bottom: 290px !important;
}

.mb300 {
  margin-bottom: 300px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pb210 {
  padding-bottom: 210px !important;
}

.pb220 {
  padding-bottom: 220px !important;
}

.pb230 {
  padding-bottom: 230px !important;
}

.pb240 {
  padding-bottom: 240px !important;
}

.pb250 {
  padding-bottom: 250px !important;
}

.pb260 {
  padding-bottom: 260px !important;
}

.pb270 {
  padding-bottom: 270px !important;
}

.pb280 {
  padding-bottom: 280px !important;
}

.pb290 {
  padding-bottom: 290px !important;
}

.pb300 {
  padding-bottom: 300px !important;
}

.w2 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w3 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w4 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w5 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w6 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w7 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w8 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w9 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w33 {
  width: 33%;
}

.f_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.f_box.gtr .w2 {
  width: 18%;
}

.f_box.gtr .w3 {
  width: 28%;
}

.f_box.gtr .w4 {
  width: 38%;
}

.f_box.gtr .w5 {
  width: 48%;
}

.f_box.gtr .w6 {
  width: 58%;
}

.f_box.gtr .w7 {
  width: 68%;
}

.f_box.gtr .w8 {
  width: 78%;
}

.f_box.gtr .w9 {
  width: 88%;
}

.f_box.gtr .w25 {
  width: 23%;
}

.f_box.gtr .w35 {
  width: 33%;
}

.f_box.gtr .w45 {
  width: 43%;
}

.f_box.gtr .w55 {
  width: 53%;
}

.f_box.gtr .w65 {
  width: 63%;
}

.f_box.gtr .w75 {
  width: 73%;
}

.f_box.gtr .w85 {
  width: 83%;
}

.f_box.gtr .w95 {
  width: 93%;
}

.f_box.gtr .w33 {
  width: 31%;
}

.f_box.flw {
  flex-flow: wrap;
}

.f_box.r_rvs {
  flex-flow: row-reverse;
}

.f_box.w_rvs {
  flex-flow: wrap-reverse;
}

@media screen and (max-width: 767px) {
  .f_box {
    flex-flow: column;
  }
  .f_box.gtr .w2, .f_box.gtr .w3, .f_box.gtr .w4, .f_box.gtr .w5, .f_box.gtr .w6, .f_box.gtr .w7, .f_box.gtr .w8, .f_box.gtr .w9, .f_box.gtr .w25, .f_box.gtr .w35, .f_box.gtr .w45, .f_box.gtr .w55, .f_box.gtr .w65, .f_box.gtr .w75, .f_box.gtr .w85, .f_box.gtr .w95, .f_box.gtr .w33 {
    width: 100%;
    margin-bottom: 30px;
  }
  .f_box.flw {
    flex-flow: wrap;
  }
  .f_box.r_rvs {
    flex-flow: column;
  }
  .f_box.w_rvs {
    flex-flow: column;
  }
}

footer {
  text-align: center;
  background-color: #c00;
  padding: 1em;
  line-height: 1.65em;
}

body {
  position: relative;
}

@media screen and (max-width: 768px) {
  body::after {
    position: fixed;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/bg_01a.jpg) no-repeat 65% top;
    background-size: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
  }
}

.flash {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.sec_1 {
  padding: 0;
  background: #fff url(../img/bg_01a.jpg) no-repeat center 223px;
}

.sec_1 .s_hdr {
  background: url(../img/s_hdr_1.png) no-repeat center top;
  height: 223px;
  margin-bottom: 30px;
}

.sec_1 .inner {
  padding-bottom: 70px;
  background: url(../img/bg_01b.png) no-repeat center 270px;
  max-width: none;
}

.sec_1 .ripple span {
  max-width: 740px;
  background-color: #3d758a;
}

@media screen and (max-width: 768px) {
  .sec_1 {
    background-position: center 90px;
   
    background-size: 197% auto;

  }
  .sec_1 .s_hdr {
    background-size: auto 100%;
    height: 90px;
    padding: 0 3%;
    margin-bottom: 15px;
  }
  .sec_1 .inner {
    background-size: auto 22%;
    background-position: center 22%;
    /* padding-bottom: 5%; */
    padding: 0 1% 5%;
  }
}

.sec_2 {
  background: url(../img/bg_02.jpg) no-repeat center top;
}

.sec_2 figure {
  margin-bottom: 5%;
}

@media screen and (max-width: 768px) {
  .sec_2 {
    background-size: cover;
  }
  .sec_2 figure:last-of-type {
    margin-bottom: 5%;
  }
}

.sec_3 {
  background: url(../img/bg_03.jpg) no-repeat center top;
  background-attachment: fixed;
}

.sec_3 .f_box {
  margin-bottom: 8%;
}

@media screen and (max-width: 768px) {
  .sec_3 {
    background: url(../img/bg_03.jpg) repeat-y center top;
    background-size: 180% auto;
  }
  .sec_3 .t_r img {
    width: 20%;
  }
}

.box_1 {
  width: 100%;
  max-width: 914px;
  margin: 0 auto 5%;
}

.box_1 figure {
  margin-bottom: 5px;
}

.box_1 .txt {
  border: #000 solid 2px;
  background-color: #fff;
  padding: 5%;
}

.box_1 .txt p {
  margin-bottom: 2em;
  line-height: 1.8em;
}

@media screen and (max-width: 768px) {
  .box_1 figure {
    margin-bottom: 2px;
  }
  .box_1 .txt {
    border: #000 solid 1px;
  }
}

.box_2 {
  padding: 7px;
  width: 100%;
  max-width: 914px;
  margin: 0 auto 5%;
}

.box_2 .inn {
  border: #fff solid 2px;
  padding: 5%;
}

.box_2 .inn p {
  color: #fff;
  margin-bottom: 2em;
}

.box_2.item_1 {
  background-color: #0d3c21;
}

.box_2.item_1 .inn {
  background: linear-gradient(90deg, #0d3c21 0%, #076930 100%);
}

.box_2.item_2 {
  background-color: #97114a;
}

.box_2.item_2 .inn {
  background: linear-gradient(90deg, #97114a 0%, #df166c 100%);
}

.box_2.item_3 {
  background-color: #980702;
}

.box_2.item_3 .inn {
  background: linear-gradient(90deg, #3a0200 0%, #980702 100%);
}

.sec_4 {
  background: #1b1b1b url(../img/bg_04.jpg) no-repeat center top;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  .sec_4 {
    background-attachment: unset;
    background-size: 180% auto;
  }
}

.box_3 {
  padding: 0 0 1px;
  width: 100%;
  max-width: 934px;
  margin: 0 auto 10%;
}

.box_3:last-of-type {
  margin-bottom: 0;
}

.box_3 .ttl {
  margin-bottom: 28%;
}

.box_3 .txt {
  background-color: #1b1b1b;
  max-width: 93%;
  margin: 0 auto 3%;
  padding: 5% 2%;
}

.box_3 .txt figure {
  position: relative;
  margin-bottom: 10%;
}

.box_3 .txt figure img {
  margin-top: -30%;
}

.box_3 .txt p {
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
}

.box_3.item_1 {
  background-color: #a80601;
}

.box_3.item_2 {
  background-color: #601986;
}

.box_3.item_3 {
  background-color: #dd8700;
}

.box_3.item_4 {
  background-color: #034c10;
}

.box_3.item_5 {
  background-color: #ab0561;
}

.box_3.item_6 {
  background-color: #dd8700;
}

.box_3.item_7 {
  background-color: #034c10;
}

@media screen and (max-width: 768px) {
  .box_3 .txt {
    padding: 5%;
  }
  .box_3 .txt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec_5 {
  background: url(../img/bg_05.jpg) no-repeat center top;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  .sec_5 {
    background: url(../img/bg_05.jpg) repeat-y center top;
    background-size: 180% auto;
  }
  .sec_5 .inner {
    overflow: visible;
  }
}

.box_4 {
  background: url(../img/bg_06.jpg) no-repeat center top;
  background-size: 100% 100%;
  padding: 7px;
  width: 100%;
  max-width: 934px;
  margin: 0 auto 8%;
}

.box_4:last-of-type {
  margin-bottom: 0;
}

.box_4 .inn {
  padding: 1% 5% 5%;
  background-color: #a80601;
}

.box_4 .inn .ttl {
  position: relative;
  text-align: left;
}

.box_4 .inn .ttl img {
  margin-left: -8%;
}

@media screen and (max-width: 768px) {
  .box_4 {
    padding: 4px;
  }
  .box_4 .inn {
    padding: 2% 5% 5%;
  }
  .box_4 .inn .ttl img {
    margin-left: -9%;
  }
}

.sec_7 {
  padding-top: 0;
  background: #fff url(../img/bg_01a.jpg) no-repeat center 223px;
  /* background-attachment: fixed; */
}

.sec_7 .s_hdr {
  background: url(../img/s_hdr_2.png) no-repeat center top;
  height: 244px;
  margin-bottom: 30px;
}

.sec_7 .inner {
  padding-bottom: 70px;
  background: url(../img/bg_01b.png) no-repeat center 270px;
  max-width: none;
}

.sec_7 .inner.mw {
  max-width: 930px;
  padding: 2%;
  background: none;
  background-color: #1b1b1b;
}

@media screen and (max-width: 768px) {
  .sec_7 {
    /* background: none; */
    background-position: center 90px;
   
    background-size: 197% auto;
  }
  .sec_7 .s_hdr {
    height: 100px;
    padding: 0 5%;
    background-size: auto 100%;
    margin-bottom: 15px;
  }
  .sec_7 .inner {
    background-size: auto 28%;
    background-position: center 30%;
    padding-bottom: 3%;
  }
  .sec_7 .inner.mw {
    max-width: 930px;
    width: 94%;
    padding: 4%;
    background: none;
    background-color: #1b1b1b;
  }
}

.box_5 {
  background: url(../img/bg_07.jpg) no-repeat center;
  background-size: 100% 100%;
  padding: 12% 3% 7%;
  max-width: 866px;
  margin-bottom: 4%;
}

@media screen and (max-width: 768px) {
  .box_5 .ttl img {
    width: 45%;
  }
}

.box_6 {
  margin: 0 auto;
  padding: 0 20px 20px;
}

.box_6 figure {
  margin-bottom: 30px;
}

.box_6 .txt_box {
  height: 150px;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 3%;
}

.box_6 .txt_box p {
  font-size: 12px;
  text-align: left;
}

.box_6 .txt_box h2 {
  font-size: 16px;
  margin-bottom: 0.5em;
  text-align: center;
}

.box_6 .txt_box h3 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 0.5em;
}

.box_6 .t_c {
  margin-bottom: 30px;
}

.box_6 .t_c input {
  font-size: 30px;
  padding: 3px;
  width: 18px;
  height: 18px;
}

.box_6 .t_c label {
  font-size: 30px;
  color: #fff;
  padding-left: .5em;
}

.box_6 #btn_1 a, .box_6 #btn_2 a {
  opacity: .5;
  pointer-events: none;
}

.box_6 #btn_1 a span, .box_6 #btn_2 a span {
  display: none;
  top: -20px;
  width: 100%;
  height: 90%;
}

.box_6 #btn_1 a span {
  background-color: #4872f6;
}

.box_6 #btn_2 a span {
  background-color: #117c6a;
}

@media screen and (max-width: 768px) {
  .box_6 {
    padding: 0;
  }
  .box_6 .t_c {
    margin-bottom: 20px;
  }
  .box_6 .t_c input {
    font-size: 20px;
  }
  .box_6 .t_c label {
    font-size: 20px;
  }
  .box_6 #btn_1 a span, .box_6 #btn_2 a span {
    display: none;
    top: -10px;
    width: 100%;
    height: 100%;
  }
  .box_6 #btn_1 {
    margin-bottom: 10px;
  }
}

.sec_8 {
  background: #000 url(../img/bg_02.jpg) repeat-y center top;
  padding: 10% 0 5%;
}

.sec_8 dl {
  background-color: #fff;
  padding: 2%;
  line-height: 1.65em;
  margin-top: 7%;
}

.sec_8 dl dt {
  font-weight: bold;
  padding: .8em 0 0 4em;
  background: url(../img/icon_q.png) no-repeat left top;
  font-size: 25px;
  margin-bottom: 1em;
  min-height: 82px;
}

.sec_8 dl dd {
  padding: 0 0 1.2em 6.5em;
  background: url(../img/icon_a.png) no-repeat left top;
  margin-bottom: 2em;
  min-height: 82px;
}

.sec_8 dl dd:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sec_8 .ttl img {
    width: 50%;
  }
  .sec_8 dl{
    padding: 3%;
  }
  .sec_8 dl dt {
    background-size: 40px auto;
    padding: .4em 0 0 3em;
    font-size: 18px;
    min-height: 55px;
  }
  .sec_8 dl dd {
    background-size: 40px auto;
    padding: 0 0 0 3.5em;
  }
}

.sec_9 {
  background-color: #000;
  color: #fff;
}

.sec_9 .txt_box {
  max-height: 240px;
  overflow-y: scroll;
  color: #000;
  background-color: #fff;
  padding: 3%;
}

.sec_9 .txt_box .t_c {
  font-weight: bold;
}


.cta {
  position: fixed;
  padding: 0 0px 5px;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 350px;
  z-index: 3;
  background: none;
}

.cta .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0 0;
  overflow: visible;
}

.cta .inner figure {
  margin: 0 0 0px;
}

.cta .inner figure.btn a::after {
  width: 35px;
  height: 15px;
}

@media screen and (max-width: 767px) {
  .cta {
    width: 50%;
    padding: 0!important;
    /* max-width: 425px; */
  }
  .cta .inner {
    /* justify-content: flex-end; */
}
}

footer {
  background-color: #000;
  color: #fff;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 12px;
  }
}
/*# sourceMappingURL=map/style.css.map */
