@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Pacifico&display=swap");
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/*---COLOR SCSS----*/
/*---Gradation SCSS----*/
/*---写真アニメーション---*/
@media screen and (max-width: 767px) {
  .animate {
    margin: 30px 0;
  }
}

.overlay,
.animate-elm.-max-width:before,
.animate-elm.-transform:before {
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.overlay-max-width,
.animate-elm.-max-width:before {
  max-width: 100%;
}

.overlay-transform,
.animate-elm.-transform:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.animate-elm {
  margin: 0 auto;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  overflow: hidden;
}

.animate-elm.-max-width:before,
.animate-elm.-transform:before {
  content: "";
}

.animate-elm.show.-max-width:before,
.animate-elm.show .overlay-max-width {
  max-width: 0;
}

.animate-elm.show.-transform:before,
.animate-elm.show .overlay-transform {
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

@media only screen and (min-width: 769px) {
  .animate-elm {
    height: 400px;
  }
}
.image01 {
  background-image: url("../img/contents01_image.png");
}

.wakayama_image {
  background-image: url("../img/wakayama_image.png");
}
@media screen and (max-width: 767px) {
  .wakayama_image {
    height: 150px;
  }
}

.bounce_img {
  width: 10%;
  display: inline-block;
}

.animation-bounce {
  animation: bounce 2s ease infinite normal 0s none running;
  -webkit-animation: bounce 2s ease infinite normal 0s none running;
  -ms-animation: bounce 2s ease infinite normal 0s none running;
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
html {
  overflow-x: hidden;
  letter-spacing: .05em;
}

body {
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif !important;
  background: url("../img/bg.png") repeat;
  color: #212529 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  br {
    display: none;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  margin: 1rem 0;
  color: #212529;
}

p {
  line-height: 1.75;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
  }
}

a:hover {
  text-decoration: none;
}

input, textarea, select {
  margin: 0;
  padding: 0;
  background: none !important;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::placeholder {
  color: #999;
}
input:-ms-input-placeholder {
  color: #999;
}
input::-ms-input-placeholder {
  color: #999;
}

/*---Fadein CSS---*/
.up_list {
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  -o-transition: transform 0.5s;
}

.text_bg {
  background: #0398e3;
  animation-timing-function: linear;
  animation: fadeOut 1000ms forwards;
  position: absolute;
  z-index: 999;
  height: 100%;
  display: block;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@keyframes fadeOut {
  0% {
    opacity: 0;
    width: 0;
  }
  10% {
    opacity: 1;
    width: 10%;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}
.inline_text {
  display: inline-block;
  line-height: 1.8;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.vegas-slide, .vegas-slide-inner {
  background-position: right center !important;
}

.btn {
  display: block;
  margin: 40px auto 0;
  padding: 3px;
  border: solid 2px crimson;
  border-radius: 0;
}
.btn p {
  background: crimson;
  font-size: 14px;
  padding: 10px 30px;
  color: white;
  letter-spacing: .1em;
}
.btn:hover {
  border: solid 2px white;
}

.contents_title {
  text-align: center;
  margin-bottom: 4em;
}
.contents_title p {
  font-weight: 600;
  margin-bottom: 5px;
}
.contents_title p span {
  font-weight: 600;
  font-size: 70%;
}
.contents_title h3 {
  font-family: 'Pacifico', cursive;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .contents_title h3 {
    font-size: 32px;
  }
}

header {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  header {
    height: 50vh;
  }
}
header .container {
  width: 100%;
  height: 100vh;
  position: relative;
}

#bg_slider {
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #bg_slider {
    height: 50vh;
  }
}
#bg_slider .logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 15%;
}
@media screen and (max-width: 767px) {
  #bg_slider .logo {
    width: 30%;
  }
}
#bg_slider .inner_contents img {
  width: 50%;
  position: absolute;
  top: 25%;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #bg_slider .inner_contents img {
    width: 90%;
    left: 15px;
  }
}

.ap_area {
  color: #F19EC2;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  margin-top: -200px;
}
@media screen and (max-width: 767px) {
  .ap_area {
    margin-top: 0;
  }
}
.ap_area .title {
  width: 90%;
  margin: 0 auto;
  display: block;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .ap_area img {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  #contents01 h2 {
    margin-top: 2em;
  }
}

#contents02 {
  padding: 80px 0 0;
}
#contents02 .row {
  background: url("../img/svg/fire_flower.svg") no-repeat;
  background-position: right top;
  background-size: 15%;
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  #contents02 .row {
    padding: 40px 0 0;
  }
}
#contents02 .row:last-of-type {
  background: url("../img/svg/fire_flower.svg") no-repeat;
  background-position: left bottom;
  background-size: 10%;
  padding-bottom: 120px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #contents02 .row:last-of-type {
    padding-bottom: 40px;
  }
}
#contents02 h4 {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #contents02 h4 {
    margin-top: 2em;
  }
}
#contents02 h5 {
  width: 60%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #contents02 h5 {
    width: 100%;
  }
}
#contents02 .color_contents {
  background: linear-gradient(180deg, #f19ec2, #f19ea6) fixed;
  padding: 80px 0;
  position: relative;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  #contents02 .color_contents {
    padding: 40px 0;
  }
}
#contents02 .color_contents::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  display: block;
  background: linear-gradient(135deg, #ffffff 4px, rgba(0, 0, 0, 0) 0%) 0 4px, linear-gradient(-135deg, #ffffff 4px, #f19ec2 0%) 0 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 8px;
  height: 8px;
}
#contents02 .color_contents::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  display: block;
  background: linear-gradient(45deg, #ffffff 4px, rgba(0, 0, 0, 0) 0%) 0 4px, linear-gradient(-45deg, #ffffff 4px, #f19ea6 0%) 0 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 8px;
  height: 8px;
}
#contents02 .color_contents .row {
  background: none;
  padding-bottom: 0;
}
#contents02 .color_contents h5 {
  width: 70%;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
  #contents02 .color_contents h5 {
    width: 100%;
  }
}
#contents02 .color_contents p {
  color: white;
  text-align: center;
  display: block;
  position: relative;
  margin-bottom: 16px;
  font-size: 18px;
}
#contents02 .color_contents p::after {
  counter-increment: number;
  content: counter(number,decimal-leading-zero);
  font-size: 150%;
  margin-left: 3px;
}
#contents02 .color_contents p::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid white;
  width: 30px;
  display: block;
  left: calc(50% - 15px);
  bottom: 0;
}
#contents02 .color_contents h3 {
  color: white;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #contents02 .color_contents h3 {
    font-size: 16px;
  }
}
#contents02 .color_contents .ap_mtbox {
  margin-bottom: 24px;
}
#contents02 .color_contents .ap_mtbox img {
  width: 60%;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
  #contents02 .color_contents .ap_mtbox img {
    width: 100%;
  }
}

#contents03 {
  padding: 120px 0;
  position: relative;
}
#contents03 smoll {
  display: block;
  margin-top: 16px;
  font-size: 12px;
}
#contents03 .text_box {
  position: relative;
}
@media screen and (max-width: 767px) {
  #contents03 .text_box .bounce_img {
    position: absolute;
    top: -25px;
    right: 0;
    width: 20%;
    border: 2px solid #ccc;
  }
}
#contents03 h2 {
  font-size: 28px;
  margin: 2rem 0 1rem;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #contents03 h2 {
    font-size: 23px;
  }
}
#contents03 h2 big {
  font-size: 120%;
  color: crimson;
}
#contents03 h2 span {
  font-size: 70%;
  display: block;
  letter-spacing: .1em;
}

#contents04 {
  background: #77BFF8;
  padding: 80px 0;
  position: relative;
}
#contents04::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  display: block;
  background: linear-gradient(135deg, #ffffff 4px, rgba(0, 0, 0, 0) 0%) 0 4px, linear-gradient(-135deg, #ffffff 4px, #77bff8 0%) 0 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 8px;
  height: 8px;
}
#contents04::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  background: linear-gradient(45deg, #ffffff 4px, rgba(0, 0, 0, 0) 0%) 0 4px, linear-gradient(-45deg, #ffffff 4px, #77bff8 0%) 0 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 8px;
  height: 8px;
}
#contents04 .program_box {
  padding: 30px;
  position: relative;
  counter-reset: number;
}
#contents04 .program_box h3 {
  position: relative;
  text-align: center;
  display: block;
  width: 300px;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto 2rem;
  background: white;
  border: solid 2px black;
  padding: 10px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #contents04 .program_box h3 {
    width: 80%;
  }
}
#contents04 .program_box h3 span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #contents04 .program_box h3 span {
    font-size: 20px;
  }
}
#contents04 .program_box .mtbox {
  margin: 15px 0;
  height: 115px;
  padding: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #contents04 .program_box .mtbox {
    height: 110px;
  }
}
#contents04 .program_box .mtbox h5 {
  font-size: 20px;
  font-weight: 700;
  color: #FFEE93 !important;
}
#contents04 .program_box .mtbox h5::before {
  counter-increment: number;
  content: counter(number,decimal-leading-zero) ".";
  margin-right: 6px;
  font-size: 130%;
}
@media screen and (max-width: 767px) {
  #contents04 .program_box .mtbox h5 {
    font-size: 18px;
  }
}
#contents04 .program_box .mtbox p {
  color: white;
}
#contents04 .text_box {
  background: white;
  padding: 15px;
  margin-bottom: 40px;
}
#contents04 .text_box img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #contents04 .text_box img {
    width: 100%;
  }
}
#contents04 .text_box h3 {
  border-bottom: 1px dotted black;
  padding-bottom: 8px;
}
#contents04 .rule {
  background: rgba(255, 255, 255, 0.5);
  margin: 80px 0;
  width: 80%;
  margin: 80px auto;
  border: 2px solid white;
}
@media screen and (max-width: 767px) {
  #contents04 .rule {
    width: 100%;
  }
}
#contents04 .rule img {
  width: 70%;
  display: block;
}
@media screen and (max-width: 767px) {
  #contents04 .rule img {
    width: 100%;
  }
}
#contents04 .rule .left {
  float: right;
}
#contents04 .rule .right {
  float: left;
}

.flow {
  background: url("../img/b134.gif") repeat;
  padding-top: 120px;
}

.timeline {
  padding: 80px 0;
}
.timeline:first-of-type {
  padding-bottom: 0px;
}
.timeline:last-of-type {
  padding-top: 0px;
}
.timeline h3 {
  width: 60%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .timeline h3 {
    width: 100%;
  }
}
.timeline .title_image02 {
  width: 65%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .timeline .title_image02 {
    width: 95%;
  }
}
.timeline h5 {
  text-align: center;
  font-size: 18px;
  position: relative;
  font-weight: 700;
}
.timeline h5::after {
  content: "";
  border-bottom: 2px solid white;
  width: 80px;
  display: block;
  margin: 8px auto;
}
.timeline ul {
  padding: 16px 0;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #F19EC2;
}
.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
}
.timeline ul li:nth-child(odd) div {
  left: 45px;
}
.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent white transparent transparent;
}
.timeline ul li:nth-child(even) div {
  left: -439px;
}
.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #fff;
}
.timeline ul div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
}
.timeline ul div smoll {
  text-align: center;
  display: block;
  font-weight: bold;
  margin-top: 8px;
}

/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline ul li::after {
  transition: background .5s ease-in-out;
}
.timeline ul li.in-view::after {
  background: white;
  border: 2px solid #F19EC2;
}
.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}
.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}
.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}
.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}
@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #fff transparent transparent;
  }
}
#loop .simply-scroll-list li {
  float: left;
  /* Horizontal scroll only */
  padding: 0;
  margin: 0;
  width: 400px;
  height: auto;
}
#loop .simply-scroll-list li img {
  height: 300px;
}

#loopSlide {
  margin: 5% 0 0;
}

.simply-scroll-container {
  position: relative;
}

.simply-scroll-clip {
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.simply-scroll-list li {
  float: left;
  /* Horizontal scroll only */
  padding: 0;
  margin: 0;
  width: 300px;
  height: auto;
}
.simply-scroll-list li img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .simply-scroll-list li img {
    height: 150px;
  }
}

.program {
  padding: 80px 0;
}
.program .inner_contents {
  border: 5px solid black;
  padding-bottom: 36px;
  position: relative;
}
.program .inner_contents::before {
  content: "PROGRAM";
  background: #fff;
  position: absolute;
  display: block;
  top: -15px;
  left: 0;
  right: 0;
  width: 215px;
  margin: 0 auto;
  font-size: 24px;
  padding: 0 40px;
  font-weight: 600;
}
.program .inner_contents h3 {
  font-size: 14px;
  padding: 2em 0 1em;
  text-align: center;
  padding-left: 15px;
  border-radius: 50%;
}
.program .inner_contents dl {
  counter-reset: number;
  text-align: center;
}
.program .inner_contents dl dt {
  font-size: 20px;
  margin: 8px 0;
  line-height: 1.5;
  color: #f08300;
}
.program .inner_contents dl dt::before {
  counter-increment: number;
  content: counter(number,decimal-leading-zero) ",";
  margin-right: 6px;
}
.program .inner_contents dl dd {
  margin-bottom: 1em;
}

#contents05 {
  padding: 120px 0;
}
#contents05 h2 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  #contents05 p {
    margin-top: 2em;
  }
}
#contents05 figure {
  position: relative;
}
#contents05 figure figcaption {
  position: absolute;
  bottom: 0px;
  right: 0;
}
#contents05 figure figcaption h3 {
  color: white;
  font-size: 20px;
  text-shadow: 0px 0px 1px #eee;
}
@media screen and (max-width: 767px) {
  #contents05 figure figcaption h3 {
    font-size: 18px;
  }
}
#contents05 figure figcaption h3 span {
  display: block;
  margin: 1rem 0;
  font-size: 70%;
}
#contents05 .p_voice {
  background: url("../img/comeon.svg") no-repeat;
  padding: 80px 0 120px;
}
#contents05 .voice_contents {
  padding: 80px 0;
  background: url("../img/syugou.png") repeat;
  background-size: contain;
  position: relative;
  background-attachment: fixed;
  z-index: -1;
}
#contents05 .voice_contents::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#contents05 .voice_contents .contents_title {
  position: relative;
  z-index: 66;
  color: white !important;
}
#contents05 .voice_contents .contents_title h3 {
  color: white !important;
}
#contents05 .voice_contents .voice_bg {
  background: rgba(255, 255, 255, 0.93);
  position: relative;
  border-radius: 5px;
  z-index: 1;
}
#contents05 .voice_contents .voice_bg .mtbox {
  padding: 16px;
}
#contents05 .voice_contents .voice_bg .mtbox img {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #contents05 .voice_contents .voice_bg .mtbox img {
    width: 50%;
  }
}
#contents05 .voice_contents .voice_bg .mtbox h3 {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #contents05 .voice_contents .voice_bg .mtbox h3 {
    font-size: 20px;
  }
}
#contents05 .voice_contents .voice_bg .mtbox h4 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #contents05 .voice_contents .voice_bg .mtbox h4 {
    font-size: 18px;
  }
}
#contents05 .voice_contents .voice_bg .mtbox h4 span {
  font-size: 70%;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  #contents05 .voice_contents .voice_bg .mtbox h4 span {
    display: block;
    margin-top: 8px;
  }
}

#contents06 {
  padding: 40px 0 0px;
}
#contents06 h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#contents06 h5 {
  font-size: 18px;
  color: #F19EC2;
  font-weight: 700;
  text-align: center;
}
#contents06 h4 {
  display: block;
  margin: 0 auto 4em;
  width: 40%;
}
@media screen and (max-width: 767px) {
  #contents06 h4 {
    width: 70%;
  }
}
#contents06 p {
  margin-bottom: 2rem;
}
#contents06 .staff {
  margin-top: 80px;
  padding: 80px 0;
  background: #f2f2f2;
}
#contents06 .staff h2 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  position: relative;
}
#contents06 .staff h2::after {
  content: "";
  border-bottom: 1px solid black;
  width: 100px;
  margin: 0 auto;
  display: block;
  padding-top: 8px;
}
#contents06 .staff h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0 1rem;
}
#contents06 .staff h3 span {
  display: block;
  font-size: 50%;
  margin-bottom: 8px;
}
#contents06 .staff .staff_box {
  margin: 40px 0 0px;
}
#contents06 .staff .staff_box img {
  width: 50%;
  display: block;
  margin: 0 auto;
}

#contents07 {
  background: linear-gradient(180deg, #f19ec2, #f19ea6) fixed;
  padding: 80px 0 120px;
  position: relative;
}
#contents07::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  display: block;
  background: linear-gradient(135deg, #f2f2f2 4px, rgba(0, 0, 0, 0) 0%) 0 4px, linear-gradient(-135deg, #f2f2f2 4px, #f19ec2 0%) 0 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 8px;
  height: 8px;
}
#contents07 .contents_title {
  color: white !important;
}
#contents07 .contents_title h3 {
  color: white !important;
}
#contents07 .btn {
  margin-bottom: 40px;
  width: 40%;
}
@media screen and (max-width: 767px) {
  #contents07 .btn {
    width: 80%;
  }
}
#contents07 .price_box {
  background: white;
  padding: 40px 0 16px;
  text-align: center;
}
#contents07 .price_box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 1em 0;
}

#contents08 {
  padding: 80px 0;
  background: url("../img/access_bg.jpg") no-repeat;
  background-size: cover;
}
#contents08 h4, #contents08 p {
  text-align: center;
}
#contents08 h4 {
  font-size: 20px;
  font-weight: 700;
}
#contents08 iframe {
  margin: 80px 0;
  border: 2px solid #ccc !important;
}
#contents08 h5 {
  width: 70%;
  display: block;
  margin: 0 auto 2rem;
}
#contents08 .btn {
  display: block;
  margin: 24px auto 0;
  padding: 3px 30px;
  border: solid 2px black;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
#contents08 .icon {
  width: 15%;
  display: block;
  margin: 40px auto;
}
#contents08 .company {
  margin: 80px 0;
}
#contents08 .company th {
  font-weight: 600;
  letter-spacing: 5px;
}
#contents08 .company th::before {
  content: "[";
}
#contents08 .company th::after {
  content: "]";
}
#contents08 .company tr {
  border-bottom: 1px solid #f2f2f2;
}
#contents08 .company th, #contents08 .company td {
  height: 50px;
}
@media screen and (max-width: 767px) {
  #contents08 .company th, #contents08 .company td {
    display: block;
  }
}

#question {
  background: #f2f2f2;
  padding: 80px 0 40px;
}
#question #accordion1 {
  padding: 80px 0;
}
#question .card {
  border: none;
  margin: 24px auto;
  text-align: left;
}
#question .card-header {
  background-color: transparent;
  border: none;
}
#question .card-header h5 {
  margin: 0;
}
#question .card-header a {
  color: #222;
  padding-bottom: 8px;
  display: block;
  line-height: 1.5;
}
#question .card-header a::before {
  content: "Q.";
  font-size: 150%;
  color: crimson;
  margin-right: 8px;
  font-weight: 500;
}
#question .card-body::before {
  content: "A.";
  font-size: 150%;
  color: deepskyblue;
  margin-right: 8px;
  font-weight: 500;
}

#contents09 {
  padding: 80px 0;
}
#contents09 .schedule {
  border: 5px solid #77BFF8;
  padding-bottom: 40px;
}
#contents09 .schedule .col-md-5 {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  #contents09 .schedule .col-md-5 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#contents09 h3 {
  background: #77BFF8;
  padding: 16px;
  margin: 0 0 2rem;
  color: white;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #contents09 h3 {
    font-size: 18px;
  }
}
#contents09 h4 {
  padding: 16px;
  padding-left: 0;
  display: block;
  border: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  #contents09 h4 {
    font-size: 14px;
    margin: 0 15px;
  }
}
#contents09 h4 span {
  background: #77BFF8;
  padding: 13px 40px;
  margin-right: 16px;
  color: white;
  border: 1px solid #eee;
}

.contents10 {
  padding: 80px 0;
}
.contents10 h4 {
  text-align: center;
}
.contents10 .contact_table {
  margin: 5% 0;
}
.contents10 .contact_table input[type="radio"] {
  margin: 10px 0;
  vertical-align: length;
}
.contents10 .contact_table input[type="radio"]:nth-of-type(even) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .contents10 .contact_table input[type="radio"]:nth-of-type(even) {
    margin-left: 0;
  }
}
.contents10 .contact_table input[type="checkbox"]:last-of-type {
  margin-left: 16px;
}
.contents10 .contact_table th, .contents10 .contact_table td {
  height: 50px;
  padding: 30px 0;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .contents10 .contact_table th, .contents10 .contact_table td {
    display: block;
    height: auto;
    padding: 5px 0;
  }
}
.contents10 .contact_table th {
  width: 20%;
  letter-spacing: 2px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .contents10 .contact_table th {
    width: 100%;
    font-weight: bold;
  }
}
.contents10 .contact_table td {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .contents10 .contact_table td {
    width: 100%;
  }
}
.contents10 .contact_table tr {
  border-bottom: solid 1px #f2f2f2;
  padding: 15px 0;
}
.contents10 .contact_table .required::before {
  content: "*";
  color: red;
}
.contents10 .contact_table label {
  margin-left: 8px;
}
.contents10 .contact_table .notdisp {
  display: none;
}
.contents10 .contact_table input[type="text"], .contents10 .contact_table input[type="email"], .contents10 .contact_table input[type="tel"], .contents10 .contact_table textarea {
  background: #fafafa;
  font-size: 14px;
  height: 50px;
}
.contents10 .contact_table input.pluralBtn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  padding: 0;
  margin: 0;
}
.contents10 .contact_table #input-people {
  width: 50%;
}
.contents10 .contact_table #form_add_area input[type="text"], .contents10 .contact_table #form_add input[type="text"] {
  display: inline-block;
  width: 90%;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .contents10 .contact_table #form_add_area input[type="text"], .contents10 .contact_table #form_add input[type="text"] {
    width: 75%;
  }
}
.contents10 .btn {
  width: 80%;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 15px 0;
  text-decoration: none;
  color: black;
  background: white;
  border-radius: 4px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border: solid 2px #ccc;
}
.contents10 .btn:active {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

#Confirmation, #Confirmation_form {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: scroll;
  position: relative;
  padding: 5% 0 15%;
}
#Confirmation h3, #Confirmation p, #Confirmation_form h3, #Confirmation_form p {
  text-align: center;
}
#Confirmation h3, #Confirmation_form h3 {
  margin: 5vh 0;
}
#Confirmation a, #Confirmation_form a {
  text-align: center;
  display: block;
  margin: 3vh 0;
}
#Confirmation .formTable, #Confirmation_form .formTable {
  margin: 5vh auto;
  width: 80%;
}
#Confirmation .formTable th, #Confirmation .formTable td, #Confirmation_form .formTable th, #Confirmation_form .formTable td {
  height: 30px;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  #Confirmation .formTable th, #Confirmation .formTable td, #Confirmation_form .formTable th, #Confirmation_form .formTable td {
    display: block;
    height: 40px;
  }
}
#Confirmation .formTable tr, #Confirmation_form .formTable tr {
  border-bottom: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
}
#Confirmation .formTable th, #Confirmation_form .formTable th {
  width: 200px;
}
#Confirmation input[type="submit"], #Confirmation_form input[type="submit"] {
  background: #ff9b33;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  padding: 5px 30px;
}
@media screen and (max-width: 350px) {
  #Confirmation input[type="submit"], #Confirmation_form input[type="submit"] {
    margin: 15px 0;
  }
}
#Confirmation input[type="button"], #Confirmation_form input[type="button"] {
  background: #4F95E9;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  padding: 5px 30px;
}

#Confirmation_form h3, #Confirmation_form h4, #Confirmation_form p {
  text-align: center;
}

.Confirmation_form h3, .Confirmation_form h4, .Confirmation_form p {
  text-align: center;
}
.Confirmation_form p {
  color: red;
}
.Confirmation_form input[type="button"] {
  display: block;
  margin: 3vh auto;
}

footer {
  background: #a2d08c;
  position: relative;
  margin-top: 80px;
}
footer::before {
  width: 100%;
  height: 20px;
  content: "";
  background: url("../img/footer_bg.png") repeat-x;
  top: -20px;
  background-size: 50%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  footer::before {
    top: -10px;
    height: 25px;
    background-size: 100%;
  }
}
footer p {
  color: white;
  text-align: center;
  padding: 2em 0;
}

.floating {
  position: fixed;
  top: 25%;
  right: -10px;
  display: none;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .floating {
    right: -10px;
    top: auto;
    bottom: 15px;
  }
}
.floating a {
  display: block;
  padding: 16px 8px;
  height: auto;
}
.floating a img {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.floating a:hover {
  opacity: 1;
}
