@charset "UTF-8";
/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
@include
//////////////////////////////////　*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
ボーダー $border-gray: 1px solid #808080;
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix, .table-styleA dl {
  zoom: 1;
}
.clearfix:after, .table-styleA dl:after {
  display: block;
  content: "";
  clear: both;
}

html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-weight: 100;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

/*　////////////////////////////////
テキスト
//////////////////////////////////　*/
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }

  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #528dbf;
  color: #fff;
}
::selection {
  background: #528dbf;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover, a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #000;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background-color: #b34747;
  color: #fff;
  padding: 10px;
  display: inline-block;
  font-family: "Century Gothic", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic;
}

/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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;
}

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;
  vertical-align: baseline;
  background: transparent;
}

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

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

input, select {
  vertical-align: middle;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
}

.container02 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1080px;
}

@media (min-width: 1220px) {
  .container {
    width: 1200px;
  }

  .container02 {
    width: 1080px;
  }
}
.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.txet-center {
  text-align: center;
}

.section-info ul.news-list li {
  border-bottom: 1px solid #999999;
  padding-bottom: 15px;
}
.section-info .title {
  font-size: 1.8rem;
}
.section-info .data {
  font-size: 1.3rem;
  color: #F7931E;
}
.section-info .text {
  font-size: 1.4rem;
  line-height: 1.4;
}

.more-btnA {
  display: inline-block;
  text-align: left;
}
.more-btnA a {
  font-weight: 400;
  padding: 8px 10px;
  margin: 10px 0;
  color: #fff;
  display: inline-block;
  line-height: 1.6;
  background-color: #b34747;
  position: relative;
  border: solid 1px #b34747;
  width: 260px;
  font-family: "Noto Sans JP", sans-serif;
}
.more-btnA .arrow {
  display: inline-block;
  float: right;
  color: #fff;
  margin-left: 20px;
}
.more-btnA a:hover {
  border-radius: 100px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.online-link {
  display: block;
  text-align: center;
  padding: 0 15px;
}
.online-link a {
  position: relative;
  font-weight: 400;
  padding: 20px 40px;
  color: #fff;
  display: inline-block;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  background-image: url("../img/wave_bk.jpg");
  font-size: 2rem;
  font-weight: 100;
  background-size: 100px;
}
.online-link a span {
  color: #e8a24d;
  font-size: 1.4rem;
  margin: 10px 0 0 0;
  vertical-align: 3px;
  display: block;
}
.online-link a i {
  position: absolute;
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .online-link a {
    padding: 30px 70px 30px 40px;
    font-size: 2.4rem;
  }
  .online-link a span {
    display: inline-block;
    margin: 0 0 0 40px;
  }
  .online-link a i {
    top: 50%;
    right: 3%;
  }
}

.more-btnB {
  padding: 0px;
}
.more-btnB a {
  padding: 10px 40px;
  background-color: #b34747;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
.more-btnB a i {
  color: #fff;
  right: 3%;
  font-size: 1.8rem;
}
.more-btnB a:hover {
  color: #b34747;
  border: 3px solid #b34747;
  background-color: #fff;
}
.more-btnB a:hover i {
  color: #b34747;
}

.more-btnC {
  text-align: center;
}
.more-btnC a {
  color: #528dbf;
}
.more-btnC a i {
  margin-left: 10px;
}

ul.list-styleA li {
  position: relative;
  padding-left: 20px;
}
ul.list-styleA li:before {
  color: #e8a24d;
  margin-right: 5px;
  content: "■";
  font-size: 1.6rem;
  position: absolute;
  left: 0px;
  top: 0px;
}

.dotted-line {
  border-bottom: 3px dotted #f2f2f2;
}

.under-line {
  border-bottom: 1px solid #f2f2f2;
}

.table-a table {
  width: 100%;
}
.table-a table tbody td, .table-a table tbody th {
  border-collapse: collapse;
}
.table-a table tbody th {
  background-color: #528dbf;
  display: block;
  border-top: 1px solid #b34747;
  border-bottom: 1px solid #b34747;
  color: #fff;
  font-weight: 400;
  padding: 10px;
}
@media (min-width: 768px) {
  .table-a table tbody th {
    width: 100%;
    display: table-cell;
    width: 30%;
    border-right: 1px solid #b34747;
  }
}
.table-a table tbody td {
  vertical-align: top;
  display: block;
  border-top: none;
  padding: 10px;
}
@media (min-width: 768px) {
  .table-a table tbody td {
    padding: 10px 10px 10px 40px;
    display: table-cell;
    border-top: 1px solid #b34747;
    border-bottom: 1px solid #b34747;
  }
}
.table-a table tr:last-child {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .table-a table tr:last-child {
    border-bottom: name;
  }
}

/*
<div class="table-a"><table>
<tbody>
<tr>
<th></th>
<td></td>
</tr>
</tbody>
</table></div>
*/
.table-styleA {
  margin: 0 auto;
}
@media (min-width: 987px) {
  .table-styleA {
    width: 80%;
    border-bottom: 1px solid #b34747;
  }
}
.table-styleA dl, .table-styleA dt, .table-styleA dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table-styleA dl {
  background: #e9efff;
}
.table-styleA dl dt, .table-styleA dl dd {
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table-styleA dl dt, .table-styleA dl dd {
    border-top: 1px solid #b34747;
    font-size: 1.6rem;
  }
}
.table-styleA dl dt {
  width: 100%;
  float: none;
  padding: 5px 0;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
  color: #b34747;
}
@media (min-width: 768px) {
  .table-styleA dl dt {
    text-align: left;
    width: 27%;
    float: left;
    padding: 10px 0 0 20px;
  }
}
.table-styleA dl dd {
  background: #fff;
  margin-left: 0;
  padding: 10px 0;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .table-styleA dl dd {
    margin-left: 27%;
    border-left: 1px solid #e7f4ff;
    padding: 10px 0 10px 20px;
  }
}
.table-styleA dl dd:after {
  content: "";
  display: block;
  clear: both;
}

/*
<div class="table-styleA">
<dl>
<dt></dt>
<dd></dd>
</dl>
</div>
*/
/*　////////////////////////////////
form共通
//////////////////////////////////　*/
.form-closed {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .form-closed {
    text-align: center;
  }
}
.form-closed h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f2f2f2;
}
@media (min-width: 768px) {
  .form-closed h3 {
    font-size: 3.4rem;
  }
}
.form-closed p {
  font-size: 1.6rem;
}
@media (min-width: 987px) {
  .form-closed p {
    font-size: 2.4rem;
    line-height: 2.4;
  }
}

#form .mw_wp_form_complete {
  background-color: #ffb;
  padding: 20px;
  margin-bottom: 40px;
}
#form .form {
  margin-bottom: 60px;
}
#form .form .table-styleA {
  margin-bottom: 50px;
}
#form .form .table-styleA dd.address input {
  margin: 10px 0;
}
#form .form dd {
  vertical-align: middle;
}
#form .form dd input[type=checkbox] {
  width: auto;
}
#form .form dd input[type=radio] {
  width: auto;
}
#form .required-text {
  font-size: 1.2rem;
}
#form .required-text span.required {
  margin: 0 10px 20px 0;
}
#form span.required {
  background-color: #f7931e;
  color: #fff;
  padding: 5px 6px;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
#form .table-styleA dd {
  padding: 10px 10px 10px 20px;
}
#form .table-styleA span.required {
  margin-left: 10px;
}
#form .table-styleA input, #form .table-styleA textarea {
  width: 80%;
  font-size: 1.6rem;
  line-height: 1.6;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Chrome, Safari */
}
#form .table-styleA ::-webkit-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::-moz-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA :-ms-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::-ms-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .privacy {
  overflow-y: scroll;
  height: 200px;
  background-color: #eee;
  padding: 20px;
  border: 1px solid #c5c5c5;
}
#form .privacy dl dt {
  margin-bottom: 10px;
  font-size: 16px;
}
#form .privacy dl dd {
  margin-bottom: 30px;
}
#form .form-button {
  text-align: center;
  margin: 30px 0 0 0;
}
#form .form-button input[type=submit] {
  background-color: #f2f2f2;
  color: #fff;
  border-radius: 0px;
  padding: 10px 50px;
  font-size: 24px;
  border: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#form .form-button input[type=submit]:hover {
  background-color: #b34747;
  border-radius: 100px;
}
#form .tel {
  font-size: 2.2rem;
}
@media (min-width: 1220px) {
  #form .tel {
    font-size: 3rem;
  }
}
#form .tel img {
  width: 36px;
  margin-right: 10px;
}
@media (min-width: 1220px) {
  #form .tel img {
    width: 43px;
  }
}
#form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}

.menu-toggle, .menu-toggle span {
  display: inline-block;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-toggle {
  position: fixed;
  top: 40px;
  right: 13px;
  width: 55px;
  height: 70px;
  z-index: 120;
  background: none;
  background-color: #fff;
  border: solid 1px #b34747;
}
.menu-toggle p {
  font-size: 13px;
  margin-top: 46px;
  color: #b34747;
  letter-spacing: 1px;
}
.menu-toggle span {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #b34747;
  z-index: 120;
}
.menu-toggle span:nth-of-type(1) {
  top: 14px;
}
.menu-toggle span:nth-of-type(2) {
  top: 40%;
}
.menu-toggle span:nth-of-type(3) {
  bottom: 26px;
}

.menu-toggle.active {
  opacity: 1;
  background-color: initial;
  border: none;
}
.menu-toggle.active p {
  color: #fff;
}
.menu-toggle.active span {
  background-color: #fff;
}
.menu-toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
  bottom: 33px;
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #b34747;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
#nav ul {
  margin: 20px 0;
  padding: 20px 0;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#nav ul li {
  list-style-type: none;
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.6s ease;
  transition: transform 0.8s ease, opacity 0.6s ease, -webkit-transform 0.8s ease;
  will-change: transform, animation, position;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
#nav ul li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
#nav ul li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#nav ul li:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
#nav ul li:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#nav ul li:nth-child(6) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
#nav ul li:nth-child(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
#nav ul li:nth-child(8) {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
#nav ul li:nth-child(9) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
#nav ul li:nth-child(10) {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
#nav ul li a {
  display: block;
  padding: 20px 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
}
#nav ul li a:hover {
  color: #f2f2f2;
}

#nav.active {
  right: 0;
  opacity: 0.98;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
#nav.active li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

button:focus:not(.focus-visible) {
  outline: none;
}

/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
@include
//////////////////////////////////　*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
ボーダー $border-gray: 1px solid #808080;
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix, .table-styleA dl {
  zoom: 1;
}
.clearfix:after, .table-styleA dl:after {
  display: block;
  content: "";
  clear: both;
}

html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-weight: 100;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

/*　////////////////////////////////
テキスト
//////////////////////////////////　*/
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }

  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #528dbf;
  color: #fff;
}
::selection {
  background: #528dbf;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover, a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #000;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background-color: #b34747;
  color: #fff;
  padding: 10px;
  display: inline-block;
  font-family: "Century Gothic", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic;
}

/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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;
}

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;
  vertical-align: baseline;
  background: transparent;
}

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

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

input, select {
  vertical-align: middle;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
}

.container02 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1080px;
}

@media (min-width: 1220px) {
  .container {
    width: 1200px;
  }

  .container02 {
    width: 1080px;
  }
}
.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.txet-center {
  text-align: center;
}

.section-info ul.news-list li {
  border-bottom: 1px solid #999999;
  padding-bottom: 15px;
}
.section-info .title {
  font-size: 1.8rem;
}
.section-info .data {
  font-size: 1.3rem;
  color: #F7931E;
}
.section-info .text {
  font-size: 1.4rem;
  line-height: 1.4;
}

.more-btnA {
  display: inline-block;
  text-align: left;
}
.more-btnA a {
  font-weight: 400;
  padding: 8px 10px;
  margin: 10px 0;
  color: #fff;
  display: inline-block;
  line-height: 1.6;
  background-color: #b34747;
  position: relative;
  border: solid 1px #b34747;
  width: 260px;
  font-family: "Noto Sans JP", sans-serif;
}
.more-btnA .arrow {
  display: inline-block;
  float: right;
  color: #fff;
  margin-left: 20px;
}
.more-btnA a:hover {
  border-radius: 100px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.online-link {
  display: block;
  text-align: center;
  padding: 0 15px;
}
.online-link a {
  position: relative;
  font-weight: 400;
  padding: 20px 40px;
  color: #fff;
  display: inline-block;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  background-image: url("../img/wave_bk.jpg");
  font-size: 2rem;
  font-weight: 100;
  background-size: 100px;
}
.online-link a span {
  color: #e8a24d;
  font-size: 1.4rem;
  margin: 10px 0 0 0;
  vertical-align: 3px;
  display: block;
}
.online-link a i {
  position: absolute;
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .online-link a {
    padding: 30px 70px 30px 40px;
    font-size: 2.4rem;
  }
  .online-link a span {
    display: inline-block;
    margin: 0 0 0 40px;
  }
  .online-link a i {
    top: 50%;
    right: 3%;
  }
}

.more-btnB {
  padding: 0px;
}
.more-btnB a {
  padding: 10px 40px;
  background-color: #b34747;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
.more-btnB a i {
  color: #fff;
  right: 3%;
  font-size: 1.8rem;
}
.more-btnB a:hover {
  color: #b34747;
  border: 3px solid #b34747;
  background-color: #fff;
}
.more-btnB a:hover i {
  color: #b34747;
}

.more-btnC {
  text-align: center;
}
.more-btnC a {
  color: #528dbf;
}
.more-btnC a i {
  margin-left: 10px;
}

ul.list-styleA li {
  position: relative;
  padding-left: 20px;
}
ul.list-styleA li:before {
  color: #e8a24d;
  margin-right: 5px;
  content: "■";
  font-size: 1.6rem;
  position: absolute;
  left: 0px;
  top: 0px;
}

.dotted-line {
  border-bottom: 3px dotted #f2f2f2;
}

.under-line {
  border-bottom: 1px solid #f2f2f2;
}

.table-a table {
  width: 100%;
}
.table-a table tbody td, .table-a table tbody th {
  border-collapse: collapse;
}
.table-a table tbody th {
  background-color: #528dbf;
  display: block;
  border-top: 1px solid #b34747;
  border-bottom: 1px solid #b34747;
  color: #fff;
  font-weight: 400;
  padding: 10px;
}
@media (min-width: 768px) {
  .table-a table tbody th {
    width: 100%;
    display: table-cell;
    width: 30%;
    border-right: 1px solid #b34747;
  }
}
.table-a table tbody td {
  vertical-align: top;
  display: block;
  border-top: none;
  padding: 10px;
}
@media (min-width: 768px) {
  .table-a table tbody td {
    padding: 10px 10px 10px 40px;
    display: table-cell;
    border-top: 1px solid #b34747;
    border-bottom: 1px solid #b34747;
  }
}
.table-a table tr:last-child {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .table-a table tr:last-child {
    border-bottom: name;
  }
}

/*
<div class="table-a"><table>
<tbody>
<tr>
<th></th>
<td></td>
</tr>
</tbody>
</table></div>
*/
.table-styleA {
  margin: 0 auto;
}
@media (min-width: 987px) {
  .table-styleA {
    width: 80%;
    border-bottom: 1px solid #b34747;
  }
}
.table-styleA dl, .table-styleA dt, .table-styleA dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table-styleA dl {
  background: #e9efff;
}
.table-styleA dl dt, .table-styleA dl dd {
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table-styleA dl dt, .table-styleA dl dd {
    border-top: 1px solid #b34747;
    font-size: 1.6rem;
  }
}
.table-styleA dl dt {
  width: 100%;
  float: none;
  padding: 5px 0;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
  color: #b34747;
}
@media (min-width: 768px) {
  .table-styleA dl dt {
    text-align: left;
    width: 27%;
    float: left;
    padding: 10px 0 0 20px;
  }
}
.table-styleA dl dd {
  background: #fff;
  margin-left: 0;
  padding: 10px 0;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .table-styleA dl dd {
    margin-left: 27%;
    border-left: 1px solid #e7f4ff;
    padding: 10px 0 10px 20px;
  }
}
.table-styleA dl dd:after {
  content: "";
  display: block;
  clear: both;
}

/*
<div class="table-styleA">
<dl>
<dt></dt>
<dd></dd>
</dl>
</div>
*/
/*　////////////////////////////////
form共通
//////////////////////////////////　*/
.form-closed {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .form-closed {
    text-align: center;
  }
}
.form-closed h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f2f2f2;
}
@media (min-width: 768px) {
  .form-closed h3 {
    font-size: 3.4rem;
  }
}
.form-closed p {
  font-size: 1.6rem;
}
@media (min-width: 987px) {
  .form-closed p {
    font-size: 2.4rem;
    line-height: 2.4;
  }
}

#form .mw_wp_form_complete {
  background-color: #ffb;
  padding: 20px;
  margin-bottom: 40px;
}
#form .form {
  margin-bottom: 60px;
}
#form .form .table-styleA {
  margin-bottom: 50px;
}
#form .form .table-styleA dd.address input {
  margin: 10px 0;
}
#form .form dd {
  vertical-align: middle;
}
#form .form dd input[type=checkbox] {
  width: auto;
}
#form .form dd input[type=radio] {
  width: auto;
}
#form .required-text {
  font-size: 1.2rem;
}
#form .required-text span.required {
  margin: 0 10px 20px 0;
}
#form span.required {
  background-color: #f7931e;
  color: #fff;
  padding: 5px 6px;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
#form .table-styleA dd {
  padding: 10px 10px 10px 20px;
}
#form .table-styleA span.required {
  margin-left: 10px;
}
#form .table-styleA input, #form .table-styleA textarea {
  width: 80%;
  font-size: 1.6rem;
  line-height: 1.6;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Chrome, Safari */
}
#form .table-styleA ::-webkit-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::-moz-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA :-ms-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::-ms-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .privacy {
  overflow-y: scroll;
  height: 200px;
  background-color: #eee;
  padding: 20px;
  border: 1px solid #c5c5c5;
}
#form .privacy dl dt {
  margin-bottom: 10px;
  font-size: 16px;
}
#form .privacy dl dd {
  margin-bottom: 30px;
}
#form .form-button {
  text-align: center;
  margin: 30px 0 0 0;
}
#form .form-button input[type=submit] {
  background-color: #f2f2f2;
  color: #fff;
  border-radius: 0px;
  padding: 10px 50px;
  font-size: 24px;
  border: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#form .form-button input[type=submit]:hover {
  background-color: #b34747;
  border-radius: 100px;
}
#form .tel {
  font-size: 2.2rem;
}
@media (min-width: 1220px) {
  #form .tel {
    font-size: 3rem;
  }
}
#form .tel img {
  width: 36px;
  margin-right: 10px;
}
@media (min-width: 1220px) {
  #form .tel img {
    width: 43px;
  }
}
#form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 987px) {
  .container {
    width: 980px;
  }
}
@media (min-width: 1220px) {
  .container {
    width: 1200px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xxs-1, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xxs-2, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xxs-3, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xxs-4, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xxs-5, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xxs-6, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xxs-7, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xxs-8, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xxs-9, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xxs-10, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xxs-11, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xxs-12, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xxs-1, .col-xxs-2, .col-xxs-3, .col-xxs-4, .col-xxs-5, .col-xxs-6, .col-xxs-7, .col-xxs-8, .col-xxs-9, .col-xxs-10, .col-xxs-11, .col-xxs-12 {
  float: left;
}

.col-xxs-1 {
  width: 8.33333%;
}

.col-xxs-2 {
  width: 16.66667%;
}

.col-xxs-3 {
  width: 25%;
}

.col-xxs-4 {
  width: 33.33333%;
}

.col-xxs-5 {
  width: 41.66667%;
}

.col-xxs-6 {
  width: 50%;
}

.col-xxs-7 {
  width: 58.33333%;
}

.col-xxs-8 {
  width: 66.66667%;
}

.col-xxs-9 {
  width: 75%;
}

.col-xxs-10 {
  width: 83.33333%;
}

.col-xxs-11 {
  width: 91.66667%;
}

.col-xxs-12 {
  width: 100%;
}

.col-xxs-pull-0 {
  right: auto;
}

.col-xxs-pull-1 {
  right: 8.33333%;
}

.col-xxs-pull-2 {
  right: 16.66667%;
}

.col-xxs-pull-3 {
  right: 25%;
}

.col-xxs-pull-4 {
  right: 33.33333%;
}

.col-xxs-pull-5 {
  right: 41.66667%;
}

.col-xxs-pull-6 {
  right: 50%;
}

.col-xxs-pull-7 {
  right: 58.33333%;
}

.col-xxs-pull-8 {
  right: 66.66667%;
}

.col-xxs-pull-9 {
  right: 75%;
}

.col-xxs-pull-10 {
  right: 83.33333%;
}

.col-xxs-pull-11 {
  right: 91.66667%;
}

.col-xxs-pull-12 {
  right: 100%;
}

.col-xxs-push-0 {
  left: auto;
}

.col-xxs-push-1 {
  left: 8.33333%;
}

.col-xxs-push-2 {
  left: 16.66667%;
}

.col-xxs-push-3 {
  left: 25%;
}

.col-xxs-push-4 {
  left: 33.33333%;
}

.col-xxs-push-5 {
  left: 41.66667%;
}

.col-xxs-push-6 {
  left: 50%;
}

.col-xxs-push-7 {
  left: 58.33333%;
}

.col-xxs-push-8 {
  left: 66.66667%;
}

.col-xxs-push-9 {
  left: 75%;
}

.col-xxs-push-10 {
  left: 83.33333%;
}

.col-xxs-push-11 {
  left: 91.66667%;
}

.col-xxs-push-12 {
  left: 100%;
}

.col-xxs-offset-0 {
  margin-left: 0%;
}

.col-xxs-offset-1 {
  margin-left: 8.33333%;
}

.col-xxs-offset-2 {
  margin-left: 16.66667%;
}

.col-xxs-offset-3 {
  margin-left: 25%;
}

.col-xxs-offset-4 {
  margin-left: 33.33333%;
}

.col-xxs-offset-5 {
  margin-left: 41.66667%;
}

.col-xxs-offset-6 {
  margin-left: 50%;
}

.col-xxs-offset-7 {
  margin-left: 58.33333%;
}

.col-xxs-offset-8 {
  margin-left: 66.66667%;
}

.col-xxs-offset-9 {
  margin-left: 75%;
}

.col-xxs-offset-10 {
  margin-left: 83.33333%;
}

.col-xxs-offset-11 {
  margin-left: 91.66667%;
}

.col-xxs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 480px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
  }

  .col-xs-12 {
    width: 100%;
  }

  .col-xs-11 {
    width: 91.66666667%;
  }

  .col-xs-10 {
    width: 83.33333333%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-8 {
    width: 66.66666667%;
  }

  .col-xs-7 {
    width: 58.33333333%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-5 {
    width: 41.66666667%;
  }

  .col-xs-4 {
    width: 33.33333333%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-2 {
    width: 16.66666667%;
  }

  .col-xs-1 {
    width: 8.33333333%;
  }

  .col-xs-pull-12 {
    right: 100%;
  }

  .col-xs-pull-11 {
    right: 91.66666667%;
  }

  .col-xs-pull-10 {
    right: 83.33333333%;
  }

  .col-xs-pull-9 {
    right: 75%;
  }

  .col-xs-pull-8 {
    right: 66.66666667%;
  }

  .col-xs-pull-7 {
    right: 58.33333333%;
  }

  .col-xs-pull-6 {
    right: 50%;
  }

  .col-xs-pull-5 {
    right: 41.66666667%;
  }

  .col-xs-pull-4 {
    right: 33.33333333%;
  }

  .col-xs-pull-3 {
    right: 25%;
  }

  .col-xs-pull-2 {
    right: 16.66666667%;
  }

  .col-xs-pull-1 {
    right: 8.33333333%;
  }

  .col-xs-pull-0 {
    right: auto;
  }

  .col-xs-push-12 {
    left: 100%;
  }

  .col-xs-push-11 {
    left: 91.66666667%;
  }

  .col-xs-push-10 {
    left: 83.33333333%;
  }

  .col-xs-push-9 {
    left: 75%;
  }

  .col-xs-push-8 {
    left: 66.66666667%;
  }

  .col-xs-push-7 {
    left: 58.33333333%;
  }

  .col-xs-push-6 {
    left: 50%;
  }

  .col-xs-push-5 {
    left: 41.66666667%;
  }

  .col-xs-push-4 {
    left: 33.33333333%;
  }

  .col-xs-push-3 {
    left: 25%;
  }

  .col-xs-push-2 {
    left: 16.66666667%;
  }

  .col-xs-push-1 {
    left: 8.33333333%;
  }

  .col-xs-push-0 {
    left: auto;
  }

  .col-xs-offset-12 {
    margin-left: 100%;
  }

  .col-xs-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-xs-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xs-offset-9 {
    margin-left: 75%;
  }

  .col-xs-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xs-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xs-offset-6 {
    margin-left: 50%;
  }

  .col-xs-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xs-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xs-offset-3 {
    margin-left: 25%;
  }

  .col-xs-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xs-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xs-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 970px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1187px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before, .table-styleA dl:before,
.clearfix:after,
.table-styleA dl:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after, .table-styleA dl:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1-5 {
  width: 20%;
  float: left;
}

.col-xs-2-5 {
  width: 40%;
  float: left;
}

.col-xs-3-5 {
  width: 60%;
  float: left;
}

.col-xs-4-5 {
  width: 80%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }

  .col-sm-2-5 {
    width: 40%;
    float: left;
  }

  .col-sm-3-5 {
    width: 60%;
    float: left;
  }

  .col-sm-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }

  .col-md-2-5 {
    width: 40%;
    float: left;
  }

  .col-md-3-5 {
    width: 60%;
    float: left;
  }

  .col-md-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }

  .col-lg-2-5 {
    width: 40%;
    float: left;
  }

  .col-lg-3-5 {
    width: 60%;
    float: left;
  }

  .col-lg-4-5 {
    width: 80%;
    float: left;
  }
}
body {
  font-size: 1.6rem;
  color: #e8a24d;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
body ul {
  margin: 0;
}
body ul li {
  list-style-type: none;
}
body a span:hover,
body a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

.all-wrapper {
  font-weight: normal;
  color: #3e3a39;
  overflow: hidden;
  /*　////////////////////////////////
  header
  //////////////////////////////////　*/
  /*パンくず*/
  /*　////////////////////////////////
  footer
  //////////////////////////////////　*/
  /* ウィジェットボックスフッター用
  ---------------------------------------------------- */
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  共通
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*
  .slideshow{
      position: relative;
      height: 500px;
  }

  .slideshow img{
      position: absolute;
      display: none;
  }
  */
  /*row 高さ揃える*/
  /*下層ページタイトル*/
  /*------------------------
  テーブルスタイル変更
  -------------------------*/
  /*------------------------
  電話番号
  -------------------------*/
  /*------------------------
  ページナビ
  -------------------------*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  top
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  404
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  contact
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
}
.all-wrapper h2,
.all-wrapper h3,
.all-wrapper h4 {
  font-weight: normal;
  font-weight: bold;
}
.all-wrapper p {
  font-weight: bold;
}
.all-wrapper header.header {
  text-align: center;
  margin-bottom: 0;
  border-bottom: 5px solid #528dbf;
}
.all-wrapper header.header h1 {
  background-color: #b34747;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
  margin-bottom: 30px;
  padding: 7px 0;
}
.all-wrapper header.header .inner .head-logo .site-name a img {
  display: inline-block;
  max-width: 50px;
  height: auto;
}
.all-wrapper header.header .inner .head-logo .site-name a p {
  display: inline-block;
}
.all-wrapper header.header .main-visual-top {
  border-top: 5px solid #528dbf;
  border-bottom: 5px solid #528dbf;
  background: url("/img/back.jpg");
  background-repeat: repeat-x;
}
.all-wrapper header.header .sp-nav {
  display: none;
}
.all-wrapper header.header .sp-nav li {
  text-align: center;
}
@media (max-width: 768px) {
  .all-wrapper header.header .sp-nav {
    display: inline;
  }
}
.all-wrapper header.header .pc-nav {
  display: inline-block;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .all-wrapper header.header .pc-nav {
    display: none;
  }
}
.all-wrapper header.header .pc-nav ul {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .all-wrapper header.header .pc-nav ul {
    float: right;
    margin: 0;
  }
}
.all-wrapper header.header .pc-nav ul li {
  display: inline-block;
}
.all-wrapper header.header .pc-nav ul li a {
  font-weight: bold;
  display: block;
  padding: 10px 20px;
}
@media (max-width: 987px) {
  .all-wrapper header.header .pc-nav ul li a {
    padding: 10px 12px;
    font-size: 1.5rem;
  }
}
.all-wrapper header.header .pc-nav ul li a:hover {
  background-color: #b34747;
  color: #fff;
  opacity: 1;
}
.all-wrapper header.header .pc-nav ul li:last-child {
  margin-right: 0;
}
.all-wrapper .breadcrumb-wrap {
  margin: 0 0 20px;
  padding: 15px 0;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li a {
  text-decoration: none;
  color: #000;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li a:hover {
  text-decoration: underline;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li:after {
  content: ">";
  padding: 0 3px;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li:last-child:after {
  content: "";
}
.all-wrapper footer.footer {
  background-color: #f2f2f2;
  margin-top: 50px;
}
.all-wrapper footer.footer .inner {
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}
.all-wrapper footer.footer .copyright {
  text-align: center;
  background-color: #b34747;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  padding: 5px 0;
}
.all-wrapper .foot-area {
  margin: 0;
  padding: 60px 0;
}
.all-wrapper .footerbox {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .all-wrapper .footerbox {
    margin-bottom: 40px;
  }
}
.all-wrapper .footerbox h4 {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-style: normal;
  margin: 0 0 15px;
  padding: 0 0 5px;
  border-bottom: 1px solid #e8a24d;
}
.all-wrapper .footerbox ul {
  margin: 0;
  padding: 0;
}
.all-wrapper .footerbox ul li {
  margin: 0;
  padding: 7px 0 6px;
  list-style: none;
  border-bottom: 1px solid #ddd;
}
.all-wrapper .footerbox ul li a {
  font-size: 13px;
  line-height: 160%;
  color: #444;
  margin: 0;
  padding: 7px 0 6px;
  list-style: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
.all-wrapper .footerbox ul li a:hover {
  color: #999;
}
.all-wrapper .container02 {
  max-width: 1200px;
}
.all-wrapper .main-visual-top {
  text-align: center;
}
.all-wrapper .main-visual-top img {
  margin: 0 auto;
  width: 80%;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .all-wrapper .main-visual-top img {
    width: 100%;
  }
}
.all-wrapper .btnA {
  display: block;
  text-align: center;
}
.all-wrapper .btnA a {
  display: inline-block;
  padding: 10px 20px;
  margin: 40px 0 20px;
  border: 3px solid #e8a24d;
  background-color: #e8a24d;
  border-radius: 30px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .all-wrapper .btnA a {
    font-size: 1.6rem;
  }
}
.all-wrapper .btnA a:hover {
  color: #e8a24d;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.all-wrapper .center {
  text-align: center;
}
.all-wrapper .right {
  text-align: right;
}
.all-wrapper .left {
  text-align: left;
}
.all-wrapper .pc-none {
  display: block;
}
@media (min-width: 768px) {
  .all-wrapper .pc-none {
    display: none;
  }
}
.all-wrapper .sp-none {
  display: none;
}
@media (min-width: 768px) {
  .all-wrapper .sp-none {
    display: block;
  }
}
.all-wrapper .row-eq-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.all-wrapper .table-base table {
  width: 100%;
  border-collapse: collapse;
}
.all-wrapper .table-base table tbody {
  border-left: 1px solid #a3a4a5;
  border-top: 1px solid #a3a4a5;
}
.all-wrapper .table-base table tbody tr th {
  width: 30%;
  background-color: #fffde9;
  font-weight: bold;
}
.all-wrapper .table-base table tbody tr td {
  width: 70%;
  text-align: left;
}
.all-wrapper .table-base table tbody tr td,
.all-wrapper .table-base table tbody tr th {
  padding: 10px 15px;
  border-right: 1px solid #a3a4a5;
  border-bottom: 1px solid #a3a4a5;
}
@media (max-width: 768px) {
  .all-wrapper .table-base table tbody tr td,
.all-wrapper .table-base table tbody tr th {
    display: block;
    width: 100%;
  }
}
.all-wrapper section {
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  .all-wrapper section {
    margin-bottom: 60px;
  }
}
.all-wrapper section#first-sec {
  margin-top: 60px;
}
.all-wrapper section#page-first {
  margin-bottom: 50px;
}
.all-wrapper h2 {
  max-width: 360px;
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 40px;
  border-bottom: 1px solid #b34747;
}
.all-wrapper h2.kasou-title {
  margin-bottom: 80px;
}
.all-wrapper .widget-title {
  margin: 0;
  max-width: initial;
}
.all-wrapper h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
}
.all-wrapper .midashi {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #b34747;
  border-left: 10px solid #b34747;
  padding: 5px 0 5px 10px;
  margin-bottom: 30px;
}
.all-wrapper .midashi2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e8a24d;
  margin-bottom: 10px;
}
.all-wrapper .g-map {
  text-align: center;
  margin-top: 15px;
}
.all-wrapper .g-map a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #528dbf;
}
.all-wrapper .kome {
  color: #c23939;
}
.all-wrapper .hissu {
  color: #ed1c24;
  margin-left: 10px;
}
.all-wrapper .attend {
  color: #ed1c24;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .all-wrapper .sm-mt {
    margin-top: 30px;
  }
}
@media (max-width: 987px) {
  .all-wrapper .md-mt {
    margin-top: 30px;
  }
}
.all-wrapper .table-styleA {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.all-wrapper .table-styleA dl {
  background: #f2f2f2;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.all-wrapper .table-styleA dl dd,
.all-wrapper .table-styleA dl dt {
  border-top: 1px solid #ccc;
}
.all-wrapper .table-styleA dl dt {
  color: #000;
  font-weight: bold;
  padding: 10px 20px 0;
}
@media (max-width: 768px) {
  .all-wrapper .table-styleA dl dt {
    padding: 10px 20px 5px;
  }
}
.all-wrapper .table-styleA dl dd {
  padding: 10px 20px;
  border-left: 1px solid #ccc;
}
@media (max-width: 768px) {
  .all-wrapper .table-styleA dl dd {
    border-left: none;
  }
}
.all-wrapper .table-styleA dl dd textarea {
  resize: vertical;
  width: 100%;
  height: 150px;
}
.all-wrapper a.tel-call {
  font-size: 2.2rem;
  margin: 20px 0 50px;
  color: #528dbf;
  font-weight: bold;
  pointer-events: none;
}
@media (max-width: 768px) {
  .all-wrapper a.tel-call {
    font-size: 2.5rem;
    pointer-events: initial;
  }
}
.all-wrapper .pagenavi {
  text-align: center;
}
.all-wrapper .pagenavi a.page-numbers {
  padding: 5px 7px;
  border: 1px solid #e8a24d;
  color: #e8a24d;
}
.all-wrapper .pagenavi .current {
  padding: 5px 7px;
  border: 1px solid #b34747;
  background-color: #b34747;
  color: #fff;
}
.all-wrapper .pagenavi2 {
  text-align: center;
}
.all-wrapper .pagenavi2 h2.screen-reader-text {
  display: none;
}
.all-wrapper .pagenavi2 ul li {
  display: inline-block;
  margin-bottom: 20px;
}
.all-wrapper .pagenavi2 ul li a {
  padding: 5px 7px;
  border: 1px solid #e8a24d;
  color: #e8a24d;
}
.all-wrapper .pagenavi2 ul li span.current {
  background-color: #b34747;
  color: #fff;
  border: 1px solid #b34747;
  padding: 5px 7px;
}
.all-wrapper .pagenavi2 ul li span.dots {
  border: 1px solid #808080;
  color: #808080;
  padding: 5px 10px;
}
.all-wrapper #top #top-info-a {
  padding: 20px;
  border: 2px solid #528dbf;
  border-radius: 5px;
}
@media (min-width: 987px) {
  .all-wrapper #top #top-info-a .inner {
    width: 100%;
    margin: 0 auto;
  }
}
.all-wrapper #top #top-info-a li {
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #B4B4B5;
  font-size: 1.6rem;
  font-weight: bold;
}
.all-wrapper #top #top-info-a li span {
  color: #528dbf;
}
.all-wrapper #top #top-info-a li span.category {
  background-color: #e8a24d;
  line-height: 1;
  padding: 2px 10px;
  font-size: 1.3rem;
  margin: 0 10px;
}
.all-wrapper #top #top-info-a li span.category a {
  color: #fff;
}
.all-wrapper #top #top-info-a li .news-title {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .all-wrapper #top #top-info-a li .news-title {
    margin-left: 0;
  }
}
.all-wrapper #top #top-info-a li p {
  display: block;
  color: #000;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .all-wrapper #top #top-info-a li p {
    display: inline-block;
    margin-top: 0;
  }
}
.all-wrapper #top #top-info-a li:nth-child(n+6) {
  display: none;
}
.all-wrapper #notfound {
  text-align: center;
}
.all-wrapper #contact .tel-area {
  text-align: center;
  margin-bottom: 30px;
}
.all-wrapper #contact .tel-area p {
  margin-bottom: 10px;
}
.all-wrapper #contact .tel-area a {
  font-size: 2.2rem;
  color: #528dbf;
  font-weight: bold;
  pointer-events: none;
}
@media (max-width: 768px) {
  .all-wrapper #contact .tel-area a {
    font-size: 2.5rem;
    pointer-events: initial;
  }
}
.all-wrapper #contact .table-styleA dl dd input {
  width: 100%;
}
@media (max-width: 768px) {
  .all-wrapper #contact .table-styleA dl dd.input-tel {
    text-align: center;
  }
}
.all-wrapper #contact .table-styleA dl dd.input-tel input {
  width: 20%;
}
.all-wrapper #contact h4 {
  text-align: center;
  margin: 50px 0 10px;
}
.all-wrapper #contact .privacy {
  overflow-y: scroll;
  height: 200px;
  background-color: #eee;
  padding: 20px;
  border: 1px solid #c5c5c5;
}
.all-wrapper #contact .privacy dl dt {
  font-size: 1.6rem;
  text-align: left;
}
.all-wrapper #contact .privacy dl dd {
  font-size: 1.4rem;
  padding: 5px 0 20px;
}
.all-wrapper #contact p.kojin {
  text-align: center;
  margin: 10px 0;
}
.all-wrapper #contact .btnA input[type=submit] {
  display: inline-block;
  padding: 10px 40px;
  margin: 20px 0;
  border: 3px solid #b34747;
  background-color: #b34747;
  border-radius: 30px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .all-wrapper #contact .btnA input[type=submit] {
    font-size: 1.6rem;
  }
}
.all-wrapper #contact .btnA input[type=submit]:hover {
  color: #b34747;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

/* .all-wrapper */
/*　////////////////////////////////
single
//////////////////////////////////　*/
#single img {
  max-width: 642px;
  height: auto;
}

.info-title .h2-title-a {
  margin: 80px 0;
}

#lower .info-wrapper {
  margin: 0 0 100px;
}
#lower .info-wrapper #primary .page .entry-content h3 {
  color: #b34747;
  margin-bottom: 15px;
}
#lower .info-wrapper #primary .page .entry-content a img {
  margin-right: 20px;
}
#lower .info-wrapper #primary .page .entry-content hr {
  margin: 50px 0;
  border-color: #b34747;
}
#lower .info-wrapper #primary .results-cat {
  background-color: #b34747;
  color: #fff;
  padding: 3px 4px;
  font-size: 1.2rem;
  margin-right: 5px;
}
#lower .info-wrapper #primary .mw_wp_form.mw_wp_form_send_error {
  margin: 30px 0;
  color: #f00;
  font-size: 1.6rem;
}
#lower .info-wrapper #primary .entry-title {
  border-left: 10px solid #528dbf;
  padding: 5px 0 5px 10px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #lower .info-wrapper #primary .entry-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#lower .info-wrapper #primary .entry-meta {
  font-weight: 500;
  font-size: 1.4rem;
  color: #b34747;
}
#lower .info-wrapper #primary .entry-meta a {
  color: #b34747;
}
#lower .info-wrapper #primary .entry-content {
  margin-top: 20px;
}
#lower .info-wrapper #primary h2.archive-title {
  font-weight: 500;
}
#lower .info-wrapper #primary .nav-links {
  font-weight: 500;
}

/*info 3列レイアウト*/
#info .main .row .box {
  margin-bottom: 40px;
}
#info .main .row .box .thumbnail-wap {
  margin-bottom: 10px;
}
#info .main .row .box .thumbnail-wap .thumbnail {
  height: 220px;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 987px) {
  #info .main .row .box .thumbnail-wap .thumbnail {
    height: 180px;
  }
}
@media (max-width: 480px) {
  #info .main .row .box .thumbnail-wap .thumbnail {
    height: 140px;
  }
}
#info .main .row .box .thumbnail-wap .thumbnail span {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 100%;
  height: 100%;
}