@charset "UTF-8";
/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
@include
//////////////////////////////////　*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
ボーダー
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix, .table-styleA dl, .table-type-a dl, .table-a table tbody td dl {
  zoom: 1;
}
.clearfix:after, .table-styleA dl:after, .table-type-a dl:after, .table-a table tbody td 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;
  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;
  }
}

.br-tb2 {
  display: none;
}
@media (min-width: 480px) {
  .br-tb2 {
    display: block;
  }
}
@media (min-width: 768px) {
  .br-tb2 {
    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: #5faa5f;
  color: #fff;
}
::selection {
  background: #5faa5f;
  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: #5faa5f;
  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;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
.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: block;
  text-align: center;
}
.more-btnA a {
  text-align: left;
  font-weight: 400;
  padding: 11px 0px 9px 20px;
  color: #fff;
  display: inline-block;
  line-height: 1.6;
  background-color: #c30d23;
  position: relative;
  width: 300px;
  position: relative;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
}
.more-btnA .arrow {
  display: inline-block;
  right: 22px;
  position: absolute;
  top: 22px;
}
.more-btnA .arrow::before,
.more-btnA .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.more-btnA .arrow:before {
  width: 11px;
  height: 11px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.more-btnA a:hover {
  border-radius: 100px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.more-btnB {
  display: block;
  text-align: center;
}
.more-btnB a {
  font-weight: 400;
  padding: 5px 30px;
  color: #000;
  display: inline-block;
  border: 2px solid #5faa5f;
  background-color: #fff;
}
.more-btnB a:hover {
  color: #fff;
  background-color: #5faa5f;
  border: 2px solid #5faa5f;
  border-radius: 30px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

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

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

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

/*
<div class="table-a">
<table>
<tbody>
<tr>
<th>社 名</th>
<td>data</td>
</tr>
</tbody>
</table>
</div>
*/
.table-a {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .table-a {
    margin-bottom: 30px;
  }
}
.table-a table {
  width: 100%;
}
.table-a table tbody td,
.table-a table tbody th {
  border-collapse: collapse;
  padding: 10px;
}
.table-a table tbody th {
  background-color: #f6f6f6;
  width: 100%;
  display: block;
  border-top: 1px solid #a0a0a0;
  border-bottom: 1px solid #a0a0a0;
}
@media (min-width: 768px) {
  .table-a table tbody th {
    display: table-cell;
    width: 30%;
    border-right: 1px solid #a0a0a0;
  }
}
.table-a table tbody td {
  vertical-align: top;
  display: block;
  border-top: none;
  padding: 20px 0px;
}
@media (min-width: 768px) {
  .table-a table tbody td {
    padding: 20px 0px 20px 40px;
    display: table-cell;
    border-top: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
  }
}
.table-a table tbody td dl dt {
  float: left;
  width: 80%;
}
@media (min-width: 768px) {
  .table-a table tbody td dl dt {
    width: 50%;
  }
}
.table-a table tbody td dl dd {
  float: left;
}
.table-a table tr:last-child {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .table-a table tr:last-child {
    border-bottom: name;
  }
}

.table-type-a dl dd {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .table-type-a dl dt {
    float: left;
    width: 30%;
  }
  .table-type-a dl dd {
    float: right;
    width: 70%;
    margin-bottom: 0px;
  }
}

.table-styleA {
  border-bottom: 1px solid #ddd;
}
.table-styleA dl,
.table-styleA dt,
.table-styleA dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table-styleA dl {
  background: #fff8ec;
}
.table-styleA dl dt,
.table-styleA dl dd {
  border-top: 1px solid #ccc;
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table-styleA dl dt,
  .table-styleA dl dd {
    font-size: 1.6rem;
  }
}
.table-styleA dl dt {
  width: 100%;
  float: none;
  padding: 10px 0;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .table-styleA dl dt {
    text-align: left;
    width: 30%;
    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: 30%;
    border-left: 1px solid #ccc;
    padding: 10px 0 10px 20px;
  }
}
.table-styleA dl dd:after {
  content: "";
  display: block;
  clear: both;
}

/*　////////////////////////////////
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: #5faa5f;
}
@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.4rem;
  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: #5faa5f;
  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: #5faa5f;
  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 {
  display: inline-block;
  position: fixed;
  top: 18px;
  right: 10px;
  width: 50px;
  height: 60px;
  z-index: 120;
  background: none;
  background-color: #fff;
  border: solid 1px #5faa5f;
}
@media (min-width: 987px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle p {
  font-size: 13px;
  margin-top: 33px;
  color: #5faa5f;
  letter-spacing: 1px;
}
.menu-toggle span {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #5faa5f;
  z-index: 120;
}
.menu-toggle span:nth-of-type(1) {
  top: 10px;
}
.menu-toggle span:nth-of-type(2) {
  top: 35%;
}
.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(4px) rotate(45deg);
  transform: translateY(4px) 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: #5faa5f;
  -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;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#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: 10px 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: #fffb00;
}

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

body {
  font-size: 1.6rem;
  color: #3e3a39;
  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: "Zen Maru Gothic", serif;
  line-height: 1.7;
}
@media (min-width: 768px) {
  body {
    line-height: 2;
  }
}
body ul {
  margin: 0;
}
body ul li {
  list-style-type: none;
}
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: 0px;
  padding: 0px;
}

.all-wrapper {
  background-color: #fffdeb;
  border-image-slice: 1;
  overflow: hidden;
  font-weight: bold;
  /*　--------------------------------------------------------------
  共通
  --------------------------------------------------------------　*/
  /*　////////////////////////////////
  flex 設定
  //////////////////////////////////　*/
  /*左右逆*/
  /*　////////////////////////////////
  header
  //////////////////////////////////　*/
  /*　////////////////////////////////
  footer
  //////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  top
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
}
.all-wrapper .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .all-wrapper .container {
    padding-left: 15px;
    padding-right: 15px;
    width: 730px;
  }
}
@media (min-width: 987px) {
  .all-wrapper .container {
    width: 730px;
  }
}
@media (min-width: 1220px) {
  .all-wrapper .container {
    width: 730px;
  }
}
@media (min-width: 1460px) {
  .all-wrapper .container {
    width: 730px;
  }
}
.all-wrapper .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .all-wrapper .logo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
  }
}
.all-wrapper .logo img {
  width: 75px;
  height: auto;
}
.all-wrapper .logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.all-wrapper .logo .yumenoki,
.all-wrapper .logo h1 {
  font-size: 3.5rem;
  margin-left: 10px;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
}
.all-wrapper .logo .yumenoki span,
.all-wrapper .logo h1 span {
  display: block;
  font-size: 1.8rem;
}
.all-wrapper .logo h2 {
  font-size: 1.6rem;
  margin-left: 20px;
}
.all-wrapper .h-dec {
  text-align: center;
  margin-bottom: 30px;
}
.all-wrapper .h-dec span {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 30px;
  line-height: 1;
}
.all-wrapper .h-dec span::before, .all-wrapper .h-dec span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 21px;
  background: url("/img/apple.svg") no-repeat center/contain;
}
.all-wrapper .h-dec span::before {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.all-wrapper .h-dec span::after {
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.all-wrapper .cooperation {
  margin-bottom: 80px;
  text-align: center;
}
.all-wrapper .dec-text {
  color: #ec694b;
  text-align: center;
  margin-bottom: 20px;
}
.all-wrapper .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 20px;
  width: 240px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #442a18;
  border: 4px solid #ec694b;
  border-radius: 50px;
  background: white;
  position: relative;
}
.all-wrapper .button::after {
  content: "▶";
  font-size: 18px;
  color: #ec694b;
  position: absolute;
  right: 20px;
}
.all-wrapper .button:hover {
  background: #fbe9e7;
}
@media (min-width: 768px) {
  .all-wrapper .button {
    width: 380px;
  }
}
.all-wrapper .circle {
  color: #ec694b;
}
.all-wrapper header.header .header-inner {
  padding: 10px 20px;
}
@media (min-width: 987px) {
  .all-wrapper header.header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.all-wrapper header.header .header-inner h2 {
  font-size: 1.6rem;
  text-align: center;
}
.all-wrapper header.header .header-inner .menu_left .TEL-a {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
.all-wrapper header.header .header-inner .menu_left .TEL-a a {
  text-decoration: none;
  color: #5faa5f;
  line-height: 2rem;
}
.all-wrapper header.header .header-inner .menu_left .menu {
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 987px) {
  .all-wrapper header.header .header-inner .menu_left .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.all-wrapper header.header .header-inner .menu_left .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: auto;
}
.all-wrapper header.header .header-inner .menu_left .menu ul li {
  margin-left: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4rem;
  border-right: 1px solid #3e3a39;
  padding-right: 20px;
}
.all-wrapper header.header .header-inner .menu_left .menu ul li:last-child {
  border: none;
  padding-right: 0px;
}
@media (min-width: 987px) {
  .all-wrapper header.header .header-inner .menu_left .menu ul {
    margin: 0;
  }
  .all-wrapper header.header .header-inner .menu_left .menu ul li {
    font-size: 1.8rem;
    padding-right: 20px;
  }
  .all-wrapper header.header .header-inner .menu_left .TEL-a {
    font-size: 2.8rem;
    text-align: right;
    margin: 10px 0;
  }
}
.all-wrapper footer.footer {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 60px 0 0 0;
  border-top: solid 3px #ec694b;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer {
    background-position: center;
  }
}
.all-wrapper footer.footer .footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.all-wrapper footer.footer .logo {
  margin: auto;
}
.all-wrapper footer.footer .TEL-b {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.all-wrapper footer.footer .TEL-b a {
  text-decoration: none;
  color: #ec694b;
  line-height: 2rem;
}
.all-wrapper footer.footer .copyright {
  margin-top: 60px;
  background-color: #5faa5f;
  color: #fff;
  padding: 10px 0;
  font-weight: 300;
  font-size: 1.4rem;
}
.all-wrapper footer.footer::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 107px;
  background: url("/img/dec_1.png") no-repeat center/contain;
  left: 140px;
  top: -57px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.all-wrapper footer.footer::after {
  content: "";
  position: absolute;
  width: 136px;
  height: 105px;
  background: url("/img/dec_2.png") no-repeat center/contain;
  right: 150px;
  top: -58px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (min-width: 768px) {
  .all-wrapper footer.footer::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 170px;
    background: url("/img/dec_1.png") no-repeat center/contain;
    left: 250px;
    top: -130px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .all-wrapper footer.footer::after {
    content: "";
    position: absolute;
    width: 224px;
    height: 174px;
    background: url("/img/dec_2.png") no-repeat center/contain;
    right: 250px;
    top: -130px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.all-wrapper .sp-tel {
  text-align: center;
  display: block;
  margin-top: 20px;
}
.all-wrapper .sp-tel .tel-area {
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", serif;
}
.all-wrapper .sp-tel .tel-area .TEL {
  color: #000;
}
@media (min-width: 768px) {
  .all-wrapper .sp-tel {
    display: none;
  }
}
.all-wrapper .pc-tel {
  display: none;
}
@media (min-width: 768px) {
  .all-wrapper .pc-tel {
    display: block;
  }
}
.all-wrapper .main-visual-top {
  text-align: center;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 253, 235)), color-stop(rgb(255, 255, 255)), to(rgb(255, 253, 235)));
  background: linear-gradient(0deg, rgb(255, 253, 235), rgb(255, 255, 255), rgb(255, 253, 235));
}
@media (min-width: 768px) {
  .all-wrapper .main-visual-top {
    margin-bottom: 60px;
  }
}
.all-wrapper .main-visual-top ul {
  margin: 0px;
}
.all-wrapper .main-visual-top .main-view {
  max-width: 1400px;
  margin: 20px auto 40px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .all-wrapper .main-visual-top .main-view {
    margin: 20px auto 0;
    padding: 0;
  }
}
.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: none;
    display: block;
  }
}
.all-wrapper #top .section1 {
  margin-bottom: 80px;
}
.all-wrapper #top .section1 .btn-a {
  text-align: center;
  margin: 30px 0 0 0;
}
.all-wrapper #top .section2 {
  margin-bottom: 80px;
}
.all-wrapper #top .section2 ul li {
  position: relative;
  padding-left: 20px;
}
.all-wrapper #top .section2 ul li .circle {
  position: absolute;
  left: 0px;
}
.all-wrapper #top .section3 {
  margin-bottom: 80px;
}
.all-wrapper #top .section3 h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.all-wrapper #top .section3 h3 span {
  font-size: 1.8rem;
  display: block;
  margin: 0;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .all-wrapper #top .section3 h3 {
    text-align: left;
  }
  .all-wrapper #top .section3 h3 span {
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 15px;
  }
}
.all-wrapper #top .section3 ul {
  line-height: 2.4rem;
}
.all-wrapper #top .section3 ul li.time {
  line-height: 2rem;
  margin: 8px 0;
}
.all-wrapper #top .section3 .phot img {
  border-radius: 20px;
  border: solid 3px #fff;
}
.all-wrapper #top .section3 .box-2a {
  margin-bottom: 20px;
}
.all-wrapper #top .section3 .facility {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .all-wrapper #top .section3 .box-2a {
    margin-bottom: 0px;
  }
  .all-wrapper #top .section3 .flex-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .all-wrapper #top .section3 .flex-style .box-2a,
  .all-wrapper #top .section3 .flex-style .box-2b {
    margin-bottom: 0px;
  }
  .all-wrapper #top .section3 .flex-style .box-2a {
    width: 40%;
    margin-right: 6%;
  }
  .all-wrapper #top .section3 .flex-style .box-2b {
    width: 54%;
  }
  .all-wrapper #top .section3 .col-reverse .box-2a {
    margin-right: 0;
  }
  .all-wrapper #top .section3 .col-reverse .box-2b {
    margin-right: 6%;
  }
}
.all-wrapper #top .section4 {
  margin-bottom: 80px;
}
.all-wrapper #lower .lower-heading {
  margin-top: 15px;
}
.all-wrapper #lower .lower-heading h1 {
  font-size: 2.8rem;
  background-color: #fff;
  border-top: 2px solid #ec694b;
  border-bottom: 2px solid #ec694b;
  position: relative;
  background-image: url("/img/lower_h.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px 0px 20px 50px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .lower-heading h1 {
    font-size: 3.4rem;
  }
}
.all-wrapper #lower .section1 {
  margin: 80px 0;
}
.all-wrapper #lower table {
  border-collapse: collapse;
  width: 100%;
}
.all-wrapper #lower .table-style th,
.all-wrapper #lower .table-style td {
  border-bottom: solid 1px #ec694b;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .all-wrapper #lower .table-style th,
  .all-wrapper #lower .table-style td {
    padding: 15px 10px;
  }
}
.all-wrapper #lower .table-style tr {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .table-style tr {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 640px) {
  .all-wrapper #lower .table-style {
    width: 100%;
  }
  .all-wrapper #lower table.table-style th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .all-wrapper #lower table.table-style td {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

/* .all-wrapper */