@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: #52b0b6;
  color: #fff;
}
::selection {
  background: #52b0b6;
  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 {
  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: #f19c8f;
  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 #52b0b6;
  background-color: #fff;
}
.more-btnB a:hover {
  color: #fff;
  background-color: #52b0b6;
  border: 2px solid #52b0b6;
  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: #f19c8f;
}
.more-btnC a i {
  margin-left: 10px;
}

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

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

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

/*
<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: #52b0b6;
}
@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: #52b0b6;
  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: #52b0b6;
  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: 10px;
  width: 50px;
  height: 60px;
  z-index: 120;
  background: none;
  background-color: #fff;
  border: solid 1px #f19c8f;
}
.menu-toggle p {
  font-size: 13px;
  margin-top: 33px;
  color: #52b0b6;
  letter-spacing: 1px;
}
.menu-toggle span {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #f19c8f;
  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: #52b0b6;
  -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: #595757;
  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;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (min-width: 768px) {
  body {
    line-height: 1.8;
  }
}
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 {
  border-image-slice: 1;
  overflow: hidden;
  font-weight: bold;
  /*　--------------------------------------------------------------
  共通
  --------------------------------------------------------------　*/
  /*　////////////////////////////////
  flex 設定
  //////////////////////////////////　*/
  /*左右逆*/
  /*　////////////////////////////////
  header
  //////////////////////////////////　*/
  /*　////////////////////////////////
  footer
  //////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  top
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  lower
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
}
.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: 800px;
  }
}
.all-wrapper .h-dec-pink,
.all-wrapper .h-dec {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .all-wrapper .h-dec-pink,
  .all-wrapper .h-dec {
    margin-bottom: 80px;
    font-size: 2.7rem;
  }
}
.all-wrapper .h-dec-pink::after,
.all-wrapper .h-dec::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90px;
  height: 7px;
  background-color: #52b0b6;
}
.all-wrapper .h-dec-pink::after {
  background-color: #f19c8f;
}
.all-wrapper .h-dec-b,
.all-wrapper .h-dec-b-pink {
  font-size: 2rem;
  border-left: 10px solid #52b0b6;
  padding: 3px 0 3px 10px;
}
.all-wrapper .h-dec-b-pink {
  border-left: 10px solid #f19c8f;
}
.all-wrapper .btn-a {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.all-wrapper .button-c,
.all-wrapper .button_pink,
.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: 10px 20px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  color: #595757;
  border: 3px solid #52b0b6;
  border-radius: 50px;
  background: white;
  position: relative;
  width: 100%; /* 親要素の幅に合わせて伸縮 */
  max-width: 100%; /* 必要に応じて制限 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.all-wrapper .button-c::after,
.all-wrapper .button_pink::after,
.all-wrapper .button::after {
  content: "▶";
  font-size: 1.6rem;
  color: #52b0b6;
  position: absolute;
  right: 20px;
}
.all-wrapper .button-c:hover,
.all-wrapper .button_pink:hover,
.all-wrapper .button:hover {
  background: #c8ebff;
}
.all-wrapper .button_pink {
  border: 3px solid #f19c8f;
  position: relative;
}
.all-wrapper .button_pink::after {
  content: "▶";
  color: #f19c8f;
}
.all-wrapper .button_pink:hover {
  background: #ffe3e3;
}
.all-wrapper .button-c {
  color: #52b0b6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
}
.all-wrapper .button-c span.mail-ico {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.all-wrapper .button-c span.mail-ico::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 19px;
  background: url("/img/mail_blue.svg") no-repeat center center;
  background-size: contain;
}
.all-wrapper .button-c::after {
  content: none;
}
.all-wrapper .circle {
  color: #f19c8f;
}
.all-wrapper header.header .header-inner h1 {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: -1px;
  text-align: center;
  margin: 10px 0 20px;
}
@media (min-width: 768px) {
  .all-wrapper header.header .header-inner h1 {
    font-size: 1.6rem;
    letter-spacing: 0px;
  }
}
.all-wrapper header.header .header-inner .logo {
  text-align: center;
  margin-bottom: 30px;
}
.all-wrapper header.header .header-inner .logo img {
  width: 170px;
  height: auto;
}
.all-wrapper .sns {
  max-width: 1000px;
  margin: 80px auto 40px;
  border-top: 2px solid #52b0b6;
  padding-top: 50px;
}
.all-wrapper .sns h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.all-wrapper .sns .recruit {
  text-align: center;
  margin: 40px 0;
}
.all-wrapper .sns .recruit span {
  display: inline-block;
  padding: 20px 0;
  text-align: center;
  color: #52b0b6;
  letter-spacing: -0.1rem;
  border-top: 2px solid #52b0b6;
  border-bottom: 2px solid #52b0b6;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .all-wrapper .sns .recruit span {
    letter-spacing: 0rem;
    font-size: 1.6rem;
  }
}
.all-wrapper .sns .box-2a,
.all-wrapper .sns .box-2b {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .all-wrapper .sns .box-2a,
  .all-wrapper .sns .box-2b {
    margin-bottom: 0px;
  }
}
.all-wrapper .sns .box-2a ul,
.all-wrapper .sns .box-2b ul {
  list-style: none;
  padding: 0;
  width: 100%;
}
.all-wrapper .sns .box-2a ul li,
.all-wrapper .sns .box-2b ul li {
  margin-bottom: 15px;
}
.all-wrapper .sns .box-2a .text,
.all-wrapper .sns .box-2b .text {
  font-size: 1.6rem;
  line-height: 1.5;
}
.all-wrapper .sns .box-2a .qr,
.all-wrapper .sns .box-2b .qr {
  display: none;
}
@media (min-width: 768px) {
  .all-wrapper .sns .box-2a ul,
  .all-wrapper .sns .box-2b ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .all-wrapper .sns .box-2a .text,
  .all-wrapper .sns .box-2b .text {
    -webkit-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
  }
  .all-wrapper .sns .box-2a .qr,
  .all-wrapper .sns .box-2b .qr {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: inline-block;
  }
  .all-wrapper .sns .box-2a .qr img,
  .all-wrapper .sns .box-2b .qr img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}
.all-wrapper .sns .box-2a a.button,
.all-wrapper .sns .box-2b a.button {
  margin-top: auto;
}
.all-wrapper .sns .flex-style {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .all-wrapper .sns .flex-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 上下中央揃え */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (min-width: 768px) {
  .all-wrapper .sns .flex-style .box-2a,
  .all-wrapper .sns .flex-style .box-2b {
    margin-bottom: 0px;
  }
  .all-wrapper .sns .flex-style .box-2a {
    width: 48%;
    margin-right: 4%;
  }
  .all-wrapper .sns .flex-style .box-2b {
    width: 48%;
  }
  .all-wrapper .sns .col-reverse .box-2a {
    margin-right: 0;
  }
  .all-wrapper .sns .col-reverse .box-2b {
    margin-right: 4%;
  }
}
.all-wrapper .f-img {
  position: relative;
  max-width: 500px;
  margin: 0 auto 50px;
  padding: 0 15px;
}
.all-wrapper .dec-text {
  font-size: 1.8rem;
  text-align: center;
  color: #52b0b6;
  margin: 20px auto;
  letter-spacing: 4px;
}
.all-wrapper footer.footer {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 60px 0 0 0;
  border-top: solid 2px #52b0b6;
}
.all-wrapper footer.footer::before {
  content: "";
  position: absolute;
  width: 91px;
  height: 49px;
  background: url("/img/dec_02.png") no-repeat center/contain;
  left: 110px;
  top: -90px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.all-wrapper footer.footer::after {
  content: "";
  position: absolute;
  width: 91px;
  height: 49px;
  background: url("/img/dec_01.png") no-repeat center/contain;
  right: 110px;
  top: -90px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (min-width: 480px) {
  .all-wrapper footer.footer::before {
    left: 120px;
    top: -90px;
  }
  .all-wrapper footer.footer::after {
    right: 120px;
    top: -90px;
  }
}
.all-wrapper footer.footer .copyright {
  margin-top: 60px;
  background-color: #52b0b6;
  color: #fff;
  padding: 10px 0;
  font-weight: 300;
  font-size: 1.4rem;
}
.all-wrapper footer.footer h3 {
  font-size: 2.4rem;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 20px;
  padding: 0 15px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer h3 {
    text-align: left;
  }
}
.all-wrapper footer.footer .tel {
  line-height: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 15px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .tel {
    text-align: left;
  }
}
.all-wrapper footer.footer .tel a {
  font-size: 2.4rem;
  color: #52b0b6;
}
.all-wrapper footer.footer .footer-content {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 10px;
  width: 100%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .footer-content {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
  }
}
.all-wrapper footer.footer .footer-content .left,
.all-wrapper footer.footer .footer-content .center {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.all-wrapper footer.footer .footer-content .center {
  margin: 20px auto;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .footer-content .center {
    margin: 0 auto;
  }
}
.all-wrapper footer.footer .footer-content .right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .footer-content .right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.all-wrapper footer.footer .footer-content .right img {
  max-width: 80px;
  height: auto;
  display: block;
}
.all-wrapper footer.footer .footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.all-wrapper footer.footer .footer-content li {
  font-size: 1.6rem;
  line-height: 1.5;
}
.all-wrapper footer.footer .footer-content .tel {
  margin-top: auto;
}
.all-wrapper footer.footer .footer-content .tel a {
  font-size: 2.4rem;
  color: #52b0b6;
}
.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 {
  background-color: #52b0b6;
  border-radius: 20px;
  max-width: 1000px;
  height: 500px;
  margin: 0 15px 60px 15px;
  position: relative;
}
@media (min-width: 987px) {
  .all-wrapper .main-visual-top {
    margin: 0 auto 60px;
  }
}
.all-wrapper .main-visual-top::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 170px;
  height: 250px;
  background-image: url("/img/main_01_1.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .all-wrapper .main-visual-top::after {
    bottom: 10px;
    right: 10px;
    width: 220px;
    height: 310px;
  }
}
.all-wrapper .main-visual-top .main-view .main-text {
  font-size: 1.8rem;
  color: #fff;
  position: absolute;
  top: 40px;
  left: 40px;
}
@media (min-width: 768px) {
  .all-wrapper .main-visual-top .main-view .main-text {
    color: #fff;
    position: absolute;
    top: 80px;
    left: 90px;
    font-size: 2.2rem;
  }
}
.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 p span {
  display: block;
  text-align: right;
  margin-top: 20px;
}
.all-wrapper #top .section1 .phot {
  text-align: center;
}
.all-wrapper #top .section1 .phot img {
  max-width: 330px;
  margin-bottom: 55px;
}
.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 .section2 {
  margin-bottom: 80px;
}
.all-wrapper #top .section2 .flex-style {
  margin-bottom: 50px;
}
.all-wrapper #top .section2 .btn-a {
  margin: 15px 0 0 0;
}
.all-wrapper #top .section2 .box-2a {
  border-radius: 15px;
}
.all-wrapper #top .section2 .box-2a.blue {
  background-color: #52b0b6;
}
.all-wrapper #top .section2 .box-2a.pink {
  background-color: #f19c8f;
}
.all-wrapper #top .section2 .box-2a.green {
  background-color: #52ac7d;
}
.all-wrapper #top .section2 h3 {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  padding: 40px 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .all-wrapper #top .section2 h3 {
    margin-bottom: 0;
    padding: 0;
  }
}
.all-wrapper #top .section2 h3 span {
  font-size: 1.8rem;
  display: block;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .all-wrapper #top .section2 h3 {
    font-size: 2.7rem;
  }
}
@media (min-width: 768px) {
  .all-wrapper #top .section2 .box-2a {
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .all-wrapper #top .section2 .flex-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 上下中央揃え */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .all-wrapper #top .section2 .flex-style .box-2a,
  .all-wrapper #top .section2 .flex-style .box-2b {
    margin-bottom: 0px;
  }
  .all-wrapper #top .section2 .flex-style .box-2a {
    width: 34%;
    margin-right: 6%;
  }
  .all-wrapper #top .section2 .flex-style .box-2b {
    width: 60%;
  }
  .all-wrapper #top .section2 .col-reverse .box-2a {
    margin-right: 0;
  }
  .all-wrapper #top .section2 .col-reverse .box-2b {
    margin-right: 6%;
  }
}
.all-wrapper #top .section3 {
  border-top: 2px solid #52b0b6;
  border-bottom: 2px solid #52b0b6;
  padding: 40px 0 80px 0;
  position: relative;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .all-wrapper #top .section3 {
    padding: 40px 0 40px 0;
  }
}
.all-wrapper #top .section3::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 161px;
  height: 67px;
  background-image: url("/img/image_02.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.all-wrapper #top .section3 p {
  max-width: 380px;
  margin: 30px auto 0;
}
.all-wrapper #top .section4 .btn-a {
  position: relative;
}
@media (min-width: 768px) {
  .all-wrapper #top .section4 .btn-a {
    padding-right: 150px;
  }
}
.all-wrapper #top .section4 .btn-a .button-c {
  margin-bottom: 20px;
}
.all-wrapper #top .section4 .btn-a img {
  display: block;
  width: 90px;
  margin: auto;
}
@media (min-width: 768px) {
  .all-wrapper #top .section4 .btn-a img {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: -10px;
  }
}
.all-wrapper #top .section4 .flow {
  margin-bottom: 40px;
}
.all-wrapper #top .section4 .flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  width: 100%;
}
.all-wrapper #top .section4 .flow li {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 20px;
  background: white;
  border: 2px solid #52b0b6;
  border-radius: 10px;
  font-size: 1.4rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.all-wrapper #top .section4 .flow li + li {
  margin-top: 40px;
}
.all-wrapper #top .section4 .flow li + li::before {
  content: "▼";
  display: block;
  text-align: center;
  color: #52b0b6;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .all-wrapper #top .section4 .flow ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5%;
  }
  .all-wrapper #top .section4 .flow li {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 32%;
  }
  .all-wrapper #top .section4 .flow li + li {
    margin-top: 0px;
  }
  .all-wrapper #top .section4 .flow li + li::before {
    content: "▶";
    position: absolute;
    left: -12%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
    text-align: center;
  }
}
.all-wrapper #lower {
  /*　////////////////////////////////
  相談室つぐみ
  //////////////////////////////////　*/
  /*　////////////////////////////////
  ご利用者の声・事業評価
  //////////////////////////////////　*/
  /*　////////////////////////////////
  お問い合わせ
  //////////////////////////////////　*/
}
.all-wrapper #lower .lower-heading {
  margin: 15px auto;
  max-width: 830px;
  text-align: center;
  padding: 0 15px;
}
.all-wrapper #lower .lower-heading h2.bule,
.all-wrapper #lower .lower-heading h2.pink {
  font-size: 2.4rem;
  background-color: #52b0b6;
  border-radius: 15px;
  padding: 30px 0;
  color: #fff;
  line-height: 1;
  margin-bottom: 60px;
}
.all-wrapper #lower .lower-heading h2.bule span,
.all-wrapper #lower .lower-heading h2.pink span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .lower-heading h2.bule,
  .all-wrapper #lower .lower-heading h2.pink {
    font-size: 2.7rem;
    margin-bottom: 80px;
  }
  .all-wrapper #lower .lower-heading h2.bule span,
  .all-wrapper #lower .lower-heading h2.pink span {
    font-size: 2.4rem;
  }
}
.all-wrapper #lower .lower-heading h2.pink {
  background-color: #f19c8f;
  font-size: 2.7rem;
}
.all-wrapper #lower .lower-heading h2.pink span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .lower-heading h2.pink {
    font-size: 3.4rem;
  }
  .all-wrapper #lower .lower-heading h2.pink span {
    font-size: 2.4rem;
  }
}
.all-wrapper #lower .soudan .section1 {
  margin-bottom: 40px;
}
.all-wrapper #lower .soudan .section2 {
  margin-bottom: 40px;
}
.all-wrapper #lower .soudan .section2 .h-dec-b-pink {
  margin-bottom: 20px;
}
.all-wrapper #lower .soudan .section2 p {
  margin-bottom: 30px;
}
.all-wrapper #lower .soudan .section3 {
  margin-bottom: 40px;
}
.all-wrapper #lower .soudan .section3 p {
  margin-bottom: 30px;
}
.all-wrapper #lower .soudan .information {
  border-top: 1px solid #595757;
  padding: 40px 0 0;
}
.all-wrapper #lower .soudan .information h4 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.all-wrapper #lower .soudan .information dl {
  margin-bottom: 15px;
}
.all-wrapper #lower .evaluation .voice {
  margin-bottom: 60px;
}
.all-wrapper #lower .evaluation .voice ul li {
  padding-bottom: 30px;
  border-bottom: 2px solid #52b0b6;
  margin-bottom: 30px;
}
.all-wrapper #lower .evaluation .hyoka {
  width: 100%;
}
.all-wrapper #lower .evaluation .hyoka ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .all-wrapper #lower .evaluation .hyoka {
    margin-bottom: 120px;
  }
  .all-wrapper #lower .evaluation .hyoka ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.all-wrapper #lower .evaluation .hyoka li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.all-wrapper #lower .form h5 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .form h5 {
    text-align: center;
  }
}
.all-wrapper #lower .form .required {
  color: #f19c8f;
}
.all-wrapper #lower .form .privacy {
  overflow-y: scroll;
  height: 300px;
  background-color: #f3f3f3;
  padding: 20px;
}
.all-wrapper #lower .form .privacy dt {
  margin-bottom: 15px;
}
.all-wrapper #lower .form .privacy dd {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.all-wrapper #lower .form .check {
  margin: 20px 0;
  text-align: center;
}
.all-wrapper #lower .form .contact-btn {
  text-align: center;
  margin-top: 30px;
}
.all-wrapper #lower .form .contact-btn input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  width: 200px;
  padding: 10px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  border: #6f6f6f 1px solid;
}
.all-wrapper #lower .form .contact-btn span.wpcf7-spinner {
  display: none;
}
.all-wrapper #lower .form .complete h3 {
  margin-bottom: 30px;
}
.all-wrapper #lower .form .red_txt {
  margin-bottom: 20px;
  color: red;
}
.all-wrapper #lower .form textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required,
.all-wrapper #lower .form input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.all-wrapper #lower .form input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel,
.all-wrapper #lower .form input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-number {
  width: 80%;
  padding: 10px;
}
.all-wrapper #lower .btn_wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.all-wrapper #lower .btnB,
.all-wrapper #lower .reset_btn {
  width: auto;
  text-align: center;
}
.all-wrapper #lower .btnB input[type=submit],
.all-wrapper #lower .btnB input[type=reset],
.all-wrapper #lower .btnB input[type=button],
.all-wrapper #lower .reset_btn input[type=submit],
.all-wrapper #lower .reset_btn input[type=reset],
.all-wrapper #lower .reset_btn input[type=button] {
  display: block;
  padding: 10px 30px;
  border: 1px solid #52b0b6;
  background-color: #52b0b6;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .btnB input[type=submit],
  .all-wrapper #lower .btnB input[type=reset],
  .all-wrapper #lower .btnB input[type=button],
  .all-wrapper #lower .reset_btn input[type=submit],
  .all-wrapper #lower .reset_btn input[type=reset],
  .all-wrapper #lower .reset_btn input[type=button] {
    font-size: 1.6rem;
    padding: 10px 60px;
  }
}
.all-wrapper #lower .btnB input[type=reset],
.all-wrapper #lower .btnB input[type=button],
.all-wrapper #lower .reset_btn input[type=reset],
.all-wrapper #lower .reset_btn input[type=button] {
  background-color: #fff;
  color: #52b0b6;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  margin-bottom: 30px;
}
.all-wrapper #lower .btnB input[type=reset]:hover,
.all-wrapper #lower .btnB input[type=button]:hover,
.all-wrapper #lower .reset_btn input[type=reset]:hover,
.all-wrapper #lower .reset_btn input[type=button]:hover {
  background-color: #52b0b6;
  color: #fff;
}
.all-wrapper #lower .btnB input[type=submit]:hover,
.all-wrapper #lower .reset_btn input[type=submit]:hover {
  color: #52b0b6;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.all-wrapper #lower .reset_btn {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .all-wrapper #lower .reset_btn {
    margin-right: 40px;
  }
}
.all-wrapper #lower .complete h3 {
  text-align: center;
}
.all-wrapper #lower .complete p {
  text-align: left;
  max-width: 900px;
  margin: auto;
}
.all-wrapper #lower .wpcf7-list-item {
  margin: 0 1em 0 0;
}
.all-wrapper #lower .first {
  display: inline-block;
  font-weight: normal;
  padding: 0px;
}
.all-wrapper #lower .wpcf7-form-control-wrap {
  margin-right: 10px;
}
.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 #f19c8f;
  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 {
  margin: 10px auto 30px;
}
.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;
    padding: 20px 0 10px 0;
  }
}
@media screen and (max-width: 640px) and (min-width: 768px) {
  .all-wrapper #lower table.table-style th {
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .all-wrapper #lower table.table-style td {
    display: block;
    width: 100%;
    padding: 0 0 20px 0;
  }
}
@media screen and (max-width: 640px) and (min-width: 768px) {
  .all-wrapper #lower table.table-style td {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

/* .all-wrapper */