/* 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+Serif+JP:400,500,600,700,900&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;
}

body {
  background: black;
  color: white;
  font-family: 'Noto Serif JP', serif;
}

p {
  line-height: 2.2;
  font-weight: 300;
  font-size: 87.5%;
  letter-spacing: .8px;
}

h1, h2, h3, h4, h5 {
  line-height: 1.8;
  font-weight: 600;
}

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

.text {
  display: inline-block;
}

.container {
  position: relative;
  height: 100%;
}

header {
  background: url("../img/header_bg.png") no-repeat;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  header {
    height: 80vh;
  }
}
header .btn {
  position: absolute;
  top: 15px;
  right: 8px;
  font-size: 12px;
  background: crimson;
  color: white;
  font-weight: 700;
  letter-spacing: 1.5px;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  header .btn {
    padding: .3rem .8rem;
    border-radius: 0px;
  }
}
@media screen and (max-width: 767px) {
  header .btn span {
    display: none;
  }
}
header .btn::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 8px;
  font-size: 120%;
}
@media screen and (max-width: 767px) {
  header .btn::before {
    margin-right: 0px;
    font-size: 150%;
  }
}
header .main_image {
  background: url("../img/bg01.png") no-repeat;
  position: relative;
  z-index: 2;
  height: 100vh;
  background-position: 80% bottom;
  background-size: 40%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  header .main_image {
    background-size: 100%;
    height: 80vh;
  }
}
header .main_image img {
  position: relative;
  display: block;
  margin: 16px 0;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  header .main_image img {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 1199px) {
  header .main_image img {
    max-width: 45%;
  }
}
@media screen and (max-width: 1399px) {
  header .main_image img {
    max-width: 50%;
  }
}
header .main_image .main_text {
  top: 10vh;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  header .main_image .main_text {
    top: 10vh;
  }
}
header .main_image h2 {
  font-size: 34px;
  letter-spacing: 1.5px;
  margin: 0 0 40px;
  padding-left: 5%;
  font-weight: 700;
  color: #FFFF00;
}
@media screen and (max-width: 767px) {
  header .main_image h2 {
    line-height: 1.5;
    font-size: 24px;
    text-align: center;
  }
}
header .main_image .scroll {
  position: absolute;
  color: white;
  bottom: 20px;
  left: 50%;
  z-index: 4;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  header .main_image .scroll {
    bottom: -30px;
  }
}
header .main_image .scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
header .main_image .scroll span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

.contents_title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 2em;
  color: #FFFF00;
}
.contents_title span {
  display: block;
  font-size: 40%;
  margin: 16px 0;
  color: white;
  letter-spacing: .8px;
}

.contents01 {
  padding: 40px 0;
}
.contents01 h2 {
  text-align: center;
  margin: 40px 0;
}
.contents01 img {
  margin: 40px 0;
}

.contents02 {
  margin: 40px 0;
}
.contents02 .box01 {
  border: 1px solid #D2B48C;
  position: relative;
  z-index: -1;
}
.contents02 .box01::after {
  display: block;
  clear: both;
  content: "";
}
.contents02 .box01 img {
  width: 40%;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .contents02 .box01 img {
    float: none !important;
    width: 100%;
    padding-right: 0;
    display: inline;
    position: relative;
    z-index: -1;
  }
}
.contents02 .box_bg {
  background: url("../img/lt.png") no-repeat, url("../img/bl.png") no-repeat, url("../img/rt.png") no-repeat, url("../img/br.png") no-repeat;
  background-position: left top, left bottom, right top, right bottom;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .contents02 .box_bg {
    background: none;
  }
}
.contents02 .box_bg::after {
  display: block;
  clear: both;
  content: "";
}
.contents02 .box_inner {
  position: relative;
  z-index: 0;
  padding-top: 8%;
}
.contents02 .box_inner::after {
  display: block;
  clear: both;
  content: "";
}
.contents02 .box_inner h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 8px 0;
  color: #FFFF00;
}
.contents02 .box_inner h3::after {
  content: "";
  display: block;
  border-bottom: 1px solid #fff;
  width: 60%;
  margin: 0 0 16px auto;
  height: 1px;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .contents02 .box_inner h3::after {
    width: calc(100% - 8px);
    margin: 0 auto;
  }
}

.contents03 {
  margin: 80px 0;
}
.contents03 h5 {
  font-size: 24px;
  margin-bottom: 1em;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .contents03 h5 {
    text-align: center;
  }
}
.contents03 .row {
  margin: 40px 0;
}
.contents03 .image_box01 {
  -webkit-clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .contents03 .image_box01 {
    -webkit-clip-path: none;
    clip-path: none;
    margin-bottom: 16px;
  }
}
.contents03 .image_box02 {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}
@media screen and (max-width: 767px) {
  .contents03 .image_box02 {
    -webkit-clip-path: none;
    clip-path: none;
    margin-bottom: 16px;
  }
}

.contents04 {
  background: #282829;
  padding: 80px 0;
}
.contents04 .btn {
  cursor: pointer;
  display: inline-block;
  background-origin: border-box;
  position: relative;
  font-weight: bold;
  text-shadow: 1px -1px rgba(0, 0, 0, 0.1);
  background-color: #DC143C;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFEB1F48', endColorstr='#FFDC143C');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViMWY0OCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjMTQzYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eb1f48), color-stop(100%, #dc143c));
  background-image: -moz-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: -webkit-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: linear-gradient(#eb1f48 0%, #dc143c 100%);
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 0, rgba(255, 255, 255, 0.2) -1px 1px 0 inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 0, rgba(255, 255, 255, 0.2) -1px 1px 0 inset;
  box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 0, rgba(255, 255, 255, 0.2) -1px 1px 0 inset;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 16px;
  padding: 0 32px;
  height: 48px;
  line-height: 48px;
  display: block;
  margin: 20px auto;
  width: 50%;
  font-size: 14px;
  color: white;
  letter-spacing: .2em;
}
.contents04 .btn i {
  font-size: 130%;
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.5);
}
.contents04 .btn:hover {
  background-color: #eb1f48;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFED365B', endColorstr='#FFEB1F48');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkMzY1YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViMWY0OCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed365b), color-stop(100%, #eb1f48));
  background-image: -moz-linear-gradient(#ed365b 0%, #eb1f48 100%);
  background-image: -webkit-linear-gradient(#ed365b 0%, #eb1f48 100%);
  background-image: linear-gradient(#ed365b 0%, #eb1f48 100%);
  text-decoration: none;
  color: white;
}
.contents04 .btn:hover i {
  color: white;
}
.contents04 .btn:active {
  background-color: #DC143C;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFEB1F48', endColorstr='#FFDC143C');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViMWY0OCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjMTQzYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eb1f48), color-stop(100%, #dc143c));
  background-image: -moz-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: -webkit-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: linear-gradient(#eb1f48 0%, #dc143c 100%);
  top: 1px;
}
@media screen and (max-width: 767px) {
  .contents04 .btn {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contents04 .detile {
    margin-top: 40px;
  }
}
.contents04 .detile th, .contents04 .detile td {
  height: 40px;
  padding: 8px 0;
  font-size: 14px;
}
.contents04 .detile tr {
  border-bottom: 1px solid #fff;
}
.contents04 .detile th {
  letter-spacing: 1.5px;
  line-height: 1.5;
}
.contents04 .detile td {
  letter-spacing: .8px;
}
.contents04 .detile td span {
  display: block;
  margin: 16px 0;
}
.contents04 .detile td .big {
  font-size: 125%;
  color: #fff000;
  font-weight: 700;
}

.contents05 {
  margin: 80px 0;
}
.contents05 img {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.contents05 .btn {
  cursor: pointer;
  display: inline-block;
  background-origin: border-box;
  position: relative;
  font-weight: bold;
  text-shadow: 1px -1px rgba(0, 0, 0, 0.1);
  background-color: #DC143C;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFEB1F48', endColorstr='#FFDC143C');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViMWY0OCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjMTQzYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eb1f48), color-stop(100%, #dc143c));
  background-image: -moz-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: -webkit-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: linear-gradient(#eb1f48 0%, #dc143c 100%);
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 0, rgba(255, 255, 255, 0.2) -1px 1px 0 inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 0, rgba(255, 255, 255, 0.2) -1px 1px 0 inset;
  box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 0, rgba(255, 255, 255, 0.2) -1px 1px 0 inset;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 16px;
  padding: 0 32px;
  height: 48px;
  line-height: 48px;
  display: block;
  margin: 20px auto;
  width: 50%;
  font-size: 14px;
  color: white;
  letter-spacing: .2em;
}
.contents05 .btn i {
  font-size: 130%;
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.5);
}
.contents05 .btn:hover {
  background-color: #eb1f48;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFED365B', endColorstr='#FFEB1F48');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkMzY1YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViMWY0OCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed365b), color-stop(100%, #eb1f48));
  background-image: -moz-linear-gradient(#ed365b 0%, #eb1f48 100%);
  background-image: -webkit-linear-gradient(#ed365b 0%, #eb1f48 100%);
  background-image: linear-gradient(#ed365b 0%, #eb1f48 100%);
  text-decoration: none;
  color: white;
}
.contents05 .btn:hover i {
  color: white;
}
.contents05 .btn:active {
  background-color: #DC143C;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFEB1F48', endColorstr='#FFDC143C');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViMWY0OCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjMTQzYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eb1f48), color-stop(100%, #dc143c));
  background-image: -moz-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: -webkit-linear-gradient(#eb1f48 0%, #dc143c 100%);
  background-image: linear-gradient(#eb1f48 0%, #dc143c 100%);
  top: 1px;
}
@media screen and (max-width: 767px) {
  .contents05 .btn {
    width: 80%;
  }
}

.contents06 {
  padding: 80px 0;
  background: #282829;
}
.contents06 img {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.contents07 {
  padding: 80px 0;
}
.contents07 img {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.contents08 {
  padding: 80px 0;
  background: #282829;
  text-align: center;
}
.contents08 h4 {
  font-size: 24px;
  margin: 16px 0;
}
.contents08 p {
  margin: 16px 0;
  color: #FFFF00;
  letter-spacing: 1.5px;
}
.contents08 a {
  font-size: 36px;
  color: white;
}
.contents08 a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  font-weight: 900;
  margin-right: 10px;
}

.contents09 {
  padding: 80px 0;
}
.contents09 .contact_table {
  margin: 5% 0;
}
.contents09 .contact_table input[type="radio"] {
  margin: 10px 0;
  vertical-align: length;
}
.contents09 .contact_table input[type="radio"]:nth-of-type(even) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .contents09 .contact_table input[type="radio"]:nth-of-type(even) {
    margin-left: 0;
  }
}
.contents09 .contact_table th, .contents09 .contact_table td {
  height: 30px;
  padding: 15px 0;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .contents09 .contact_table th, .contents09 .contact_table td {
    display: block;
    height: auto;
    padding: 5px 0;
  }
}
.contents09 .contact_table th {
  width: 20%;
  letter-spacing: 2px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .contents09 .contact_table th {
    width: 100%;
    font-weight: bold;
  }
}
.contents09 .contact_table td {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .contents09 .contact_table td {
    width: 100%;
  }
}
.contents09 .contact_table tr {
  border-bottom: solid 1px #f2f2f2;
  padding: 15px 0;
}
.contents09 .contact_table .required::before {
  content: "*";
  color: red;
}
.contents09 .contact_table .notdisp {
  display: none;
}
.contents09 .contact_table input[type="text"], .contents09 .contact_table input[type="email"], .contents09 .contact_table input[type="tel"], .contents09 .contact_table textarea {
  background: #fafafa;
  font-size: 14px;
}
.contents09 .contact_table input.pluralBtn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  padding: 0;
  margin: 0;
}
.contents09 .contact_table #input-people {
  width: 50%;
}
.contents09 .contact_table #form_add_area input[type="text"], .contents09 .contact_table #form_add input[type="text"] {
  display: inline-block;
  width: 90%;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .contents09 .contact_table #form_add_area input[type="text"], .contents09 .contact_table #form_add input[type="text"] {
    width: 75%;
  }
}
.contents09 .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;
}
.contents09 .btn:active {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

footer {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #D2B48C;
  padding-top: 40px;
}
footer h2 {
  font-size: 18px;
  margin: 16px 0;
}
footer p {
  letter-spacing: .8px;
}
footer p span {
  margin-right: 8px;
}
footer smoll {
  margin: 8px 0;
  display: block;
}
