@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

*:focus {
  outline: none;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: justify;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #111;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
}
a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
}

.black {
  color: #111 !important;
}

.white {
  color: #fff !important;
}

.yellow {
  color: #EB7E02 !important;
}

.bg-black {
  background: #111 !important;
}

.bg-white {
  background: #fff !important;
}

.normal {
  font-size: 1rem !important;
}

.big {
  font-size: 1.5rem !important;
}

.large {
  font-size: 2rem !important;
}

.tiny {
  font-size: 16px !important;
}

.left {
  text-align: left !important;
}

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

.right {
  text-align: right !important;
}

.bold {
  font-weight: 600 !important;
}

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

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px;
  background: #fff;
  z-index: 5;
}
.header_wrap nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header_wrap nav {
    display: block;
    position: fixed;
    top: 0;
    right: -320px;
    padding-top: 65px;
    width: 70%;
    max-width: 320px;
    min-height: 100vh;
    background: #F7F6F4;
    z-index: 10;
    transition: all 0.6s;
  }
}
.header_wrap nav a {
  padding: 20px 8px;
  color: #111;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header_wrap nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 2px solid #e2e2e2;
  }
  .header_wrap nav a:nth-child(1) {
    border-bottom: none;
  }
}
.header_wrap nav .button_h {
  display: table;
  margin-left: 20px;
  padding: 12px 30px;
  color: #fff;
  border-radius: 8px;
  background: #EB7E02;
}
@media (max-width: 768px) {
  .header_wrap nav .button_h {
    margin-top: 15px;
  }
}
.header_wrap nav.active {
  right: 0;
}
@media (max-width: 768px) {
  .header_wrap .menu_back {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    transition: all 0.6s;
  }
}
.header_wrap .menu_back.active {
  opacity: 0.8;
  visibility: visible;
  background: #111;
}
.header_wrap .nav_logo {
  position: absolute;
  padding: 20px;
  top: 0;
  left: 0;
}

.header_logo {
  display: block;
  width: 150px;
}
.header_logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.header_menu li {
  padding-left: 15px;
}
.header_menu a {
  display: block;
}
@media (max-width: 768px) {
  .header_menu {
    width: 100%;
  }
  .header_menu li {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .header_menu li a {
    padding: 10px 0;
  }
}

.header_bars {
  position: relative;
  width: 30px;
  height: 25px;
  z-index: 11;
}
.header_bars span {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  background: #111;
  border-radius: 5px;
  opacity: 1;
  transition: all 0.6s;
}
.header_bars span:nth-child(1) {
  top: 0;
}
.header_bars span:nth-child(2) {
  top: 11px;
}
.header_bars span:nth-child(3) {
  bottom: 0;
  left: 15px;
}
.header_bars:hover {
  cursor: pointer;
}

.header_bars.active span:nth-child(1) {
  top: 10px;
  transform: rotate(230deg);
}
.header_bars.active span:nth-child(2) {
  opacity: 0;
  transform: rotate(280deg);
}
.header_bars.active span:nth-child(3) {
  transform: rotate(315deg);
  left: 0;
  bottom: 12px;
}

footer {
  padding: 88px 0 68px;
  background: #F0EFED;
}
@media (max-width: 768px) {
  footer {
    padding: 68px 0;
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer {
    display: block;
  }
}
.footer img {
  display: block;
  margin-top: 40px;
  width: 20%;
  max-width: 250px;
}
@media (max-width: 768px) {
  .footer img {
    margin: 0 auto 48px auto;
    width: 150px;
  }
}
.footer .f_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .footer .f_menu {
    display: block;
  }
}
.footer .f_menu a {
  display: block;
  padding: 20px 12px;
  text-align: center;
  color: #111;
}
@media (max-width: 768px) {
  .footer .f_menu a {
    padding: 12px;
  }
}
.footer .f_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  border-top: 1px solid #DAD9D7;
}
@media (max-width: 768px) {
  .footer .f_list {
    display: block;
  }
}
.footer .f_list a {
  display: block;
  padding: 20px 12px;
  color: #111;
  font-size: 15px;
}
@media (max-width: 768px) {
  .footer .f_list a {
    padding: 12px;
    text-align: center;
  }
}
.footer p {
  margin-top: 68px;
  text-align: right;
}
@media (max-width: 768px) {
  .footer p {
    margin-top: 48px;
    text-align: center;
  }
}

.totop {
  display: table;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.totop img {
  width: 25px;
}
.totop:hover {
  cursor: pointer;
}

.sec_ttl {
  margin-bottom: 68px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .sec_ttl {
    margin-bottom: 48px;
    font-size: 24px;
  }
}

.sub_ttl {
  margin: 68px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .sub_ttl {
    margin: 48px 0;
  }
}

.sec_padi {
  padding: 100px 0 88px;
}
@media (max-width: 768px) {
  .sec_padi {
    padding: 80px 0;
  }
}

.button {
  text-align: center;
  border-radius: 12px;
  transition: all 0.4s;
}
.button:hover {
  opacity: 0.6;
}

.button_c {
  display: table;
  padding: 20px 40px;
  margin: 0 auto;
}

.button_orange {
  color: #fff;
  background: #EB7E02;
}

.button_white {
  color: #EB7E02;
  border: 3px solid #EB7E02;
  background: #fff;
}

.fv {
  position: relative;
  padding: 220px 0 180px;
  background: #F7F6F4;
  z-index: 1;
}
@media (max-width: 768px) {
  .fv {
    padding: 150px 0 20px 0;
  }
}
.fv::before, .fv::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  max-width: 400px;
  width: 25%;
  height: 600px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .fv::before, .fv::after {
    height: 270px;
  }
}
.fv::before {
  top: 70%;
  left: 0;
  background-image: url(../img/fv1.png);
}
.fv::after {
  top: 60%;
  right: 0;
  background-image: url(../img/fv2.png);
  object-position: 100% 50%;
}
.fv img {
  position: absolute;
  display: block;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 25%;
  z-index: -1;
}
@media (max-width: 768px) {
  .fv img {
    width: 45%;
    top: 90%;
  }
}
.fv img:nth-child(1) {
  top: 60%;
  left: 0;
}
.fv img:nth-child(2) {
  top: 50%;
  right: 0;
}
.fv h1 {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .fv h1 {
    font-size: 24px;
  }
}
.fv h1 span {
  font-size: 50px;
}
@media (max-width: 768px) {
  .fv h1 span {
    font-size: 32px;
  }
}
.fv p {
  margin: 40px 0 68px;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .fv p {
    margin: 28px 0 68px;
  }
}
.fv .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .fv .button_wrap {
    display: block;
  }
}
.fv .button_wrap .button {
  display: block;
  padding: 12px;
  width: 200px;
  border-radius: 8px;
  font-weight: bold;
}
.fv .button_wrap .button_w {
  margin-right: 20px;
  color: #EB7E02;
  border: 1px solid #EB7E02;
}
@media (max-width: 768px) {
  .fv .button_wrap .button_w {
    margin: 0 auto;
  }
}
.fv .button_wrap .button_y {
  margin-left: 20px;
  color: #fff;
  border: 1px solid #EB7E02;
  background: #EB7E02;
}
@media (max-width: 768px) {
  .fv .button_wrap .button_y {
    margin: 20px auto 0;
  }
}

.worry {
  position: relative;
  padding: 80px 0 40px;
  background: #F7F6F4;
}
.worry::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  left: 0;
  height: 60px;
  width: 100vw;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #F7F6F4;
  z-index: 2;
}
@media (max-width: 768px) {
  .worry::after {
    height: 16px;
    bottom: -16px;
  }
}
.worry ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.worry li {
  width: 23%;
}
.worry li:nth-child(n+5) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .worry li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }
  .worry li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .worry li:nth-child(n+2) {
    margin-top: 18px;
  }
}
.worry li div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 130px;
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 768px) {
  .worry li div {
    flex: 1;
  }
}
.worry li img {
  display: block;
  margin: 0 auto;
  width: 100px;
}
@media (max-width: 768px) {
  .worry li img {
    width: 120px;
  }
}

.solution {
  position: relative;
  padding: 128px 0 88px;
  background: #fff;
  z-index: 1;
}
.solution::before, .solution::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.solution::before {
  top: 128px;
  right: 0;
  width: 230px;
  height: 550px;
  background-image: url(../img/solution1.png);
}
@media (max-width: 768px) {
  .solution::before {
    top: 64px;
  }
}
.solution::after {
  bottom: 0;
  left: 0;
  width: 220px;
  height: 600px;
  background-image: url(../img/solution2.png);
}
@media (max-width: 768px) {
  .solution {
    padding: 64px 0 80px;
  }
}
.solution .back {
  position: absolute;
  z-index: 0;
}
.solution .back:nth-of-type(1) {
  top: 128px;
  right: 0;
}
.solution .back:nth-of-type(2) {
  bottom: 0;
  left: 0;
}
.solution .solution_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.solution .sec_ttl .small {
  font-size: 28px;
}
.solution .sec_ttl .tiny {
  font-size: 16px;
}
.solution .sub_ttl {
  margin: 68px 0 48px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .solution .sub_ttl {
    margin: 48px 0 28px;
  }
}
.solution .text {
  display: table;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .solution .text {
    text-align: left;
  }
  .solution .text:nth-of-type(n+2) {
    margin-top: 12px;
  }
}
.solution .item_list {
  margin-top: 100px;
  width: 31%;
}
@media (max-width: 768px) {
  .solution .item_list {
    margin-top: 68px;
    width: 100%;
  }
  .solution .item_list:nth-child(n+2) {
    margin-top: 28px;
  }
}
.solution .item_ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.solution .item_ttl p {
  margin-left: 20px;
  font-size: 19px;
}
.solution .item_ttl img {
  display: block;
  height: 45px;
}
.solution ul {
  margin-top: 12px;
}
.solution li {
  position: relative;
  padding: 12px 20px;
  background: #F7F6F4;
}
.solution li:nth-child(n+2) {
  margin-top: 28px;
}
.solution li:nth-child(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 5px;
  height: 28px;
  background: #EB7E02;
}
.solution li p {
  margin-bottom: 8px;
}
.solution li img {
  display: block;
  height: 84px;
  margin: 0 auto;
}
.solution li.half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  background: none;
}
.solution li.half::before {
  display: none;
}
.solution li.half div {
  position: relative;
  padding: 12px 20px;
  width: 49%;
  background: #F7F6F4;
}
.solution li.half div::before {
  content: "";
  display: block;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 5px;
  height: 28px;
  background: #EB7E02;
}
.solution li.half .none {
  padding: 0;
}
.solution li.half .none::before {
  display: none;
}

.available {
  position: relative;
  background: #F0EFED;
  z-index: 0;
}
@media (max-width: 768px) {
  .available {
    padding: 80px 0;
  }
}
.available::before, .available::after {
  content: "";
  display: block;
  position: absolute;
  width: 360px;
  height: 360px;
  z-index: -1;
}
.available::before {
  top: 120px;
  right: 0;
  background-image: url(../img/available_back1.png);
}
.available::after {
  bottom: 0;
  left: 0;
  background-image: url(../img/available_back2.png);
}
.available ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.available ul::after {
  content: "";
  display: block;
  width: 24%;
  height: 0;
}
.available li {
  padding: 24px 20px 28px;
  width: 24%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(17, 17, 17, 0.05);
}
@media (max-width: 768px) {
  .available li {
    width: 100%;
  }
  .available li:nth-child(n+2) {
    margin-top: 12px;
  }
}
.available li:nth-child(n+5) {
  margin-top: 28px;
}
.available li img {
  display: table;
  margin: 0 auto;
}
.available li dt {
  margin: 24px 0 20px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.achive {
  background: #F0EFED;
}

.flow {
  background: #F7F6F4;
}
.flow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.flow li {
  position: relative;
  padding: 28px 20px;
  width: 24%;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .flow li {
    padding: 24px 16px;
    width: 100%;
  }
  .flow li:nth-child(n+2) {
    margin-top: 12px;
  }
}
.flow li dl {
  position: relative;
  z-index: 1;
}
.flow li dl dt {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.flow li .item_img {
  position: relative;
  display: block;
  margin: 0 auto;
  height: 160px;
  z-index: 1;
  object-fit: contain;
}
.flow li .num {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 140px;
  z-index: 0;
}
.flow dd {
  margin: 20px 0 24px;
}

.event {
  background-image: url(../img/event.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.event .sub_ttl p {
  text-align: center;
}
@media (max-width: 768px) {
  .event .sub_ttl p:nth-child(2) {
    margin-top: 12px;
  }
}
.event .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.event .button_wrap .button {
  display: block;
  padding: 25px 20px;
  max-width: 420px;
  width: 40%;
  font-size: 28px;
}
@media (max-width: 768px) {
  .event .button_wrap .button {
    width: 100%;
    font-size: 20px;
  }
}
.event .button_wrap .button_white {
  margin-right: 34px;
}
@media (max-width: 768px) {
  .event .button_wrap .button_white {
    margin: 0;
  }
}
.event .button_wrap .button_orange {
  margin-left: 34px;
}
@media (max-width: 768px) {
  .event .button_wrap .button_orange {
    margin: 20px 0 0 0;
  }
}

.faq dl {
  position: relative;
  padding: 28px 40px;
  background: #F7F6F4;
  border-radius: 8px;
  transition: all 0.6s;
  cursor: pointer;
}
.faq dl:nth-of-type(n+2) {
  margin-top: 20px;
}
.faq dl::before, .faq dl::after {
  content: "";
  display: block;
  position: absolute;
  background: #111;
  opacity: 1;
  transform: rotate(0);
  transition: all 0.6s;
}
.faq dl::before {
  top: 41px;
  right: 40px;
  width: 14px;
  height: 2px;
}
.faq dl::after {
  top: 35px;
  right: 46px;
  width: 2px;
  height: 14px;
}
.faq dl dt {
  position: relative;
  padding: 0 40px 0 30px;
  font-size: 18px;
  font-weight: bold;
}
.faq dl dt::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
}
.faq dl dd {
  display: none;
  position: relative;
  padding: 0 40px 0 30px;
  margin-top: 12px;
}
.faq dl dd::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  color: #EB7E02;
  font-weight: bold;
}
.faq dl.caution p {
  margin-top: 12px;
  font-size: 14px;
}
.faq dl.active::before, .faq dl.active::after {
  transform: rotate(180deg);
}
.faq dl.active::before {
  opacity: 1;
}
.faq dl.active::after {
  opacity: 0;
}

.price {
  background: #F7F6F4;
}
.price .figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 68px 0;
}
@media (max-width: 768px) {
  .price .figure {
    margin-bottom: 48px;
  }
}
.price .figure li:nth-child(1) {
  color: #EB7E02;
}
.price .figure li:nth-child(odd) {
  padding: 40px 20px;
  width: 26%;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(17, 17, 17, 0.05);
  background: #fff;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .price .figure li:nth-child(odd) {
    padding: 20px 4px;
    font-size: 13px;
  }
}
.price table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 768px) {
  .price table:nth-child(n+2) {
    margin-top: 8px;
  }
}
.price table th, .price table td {
  padding: 28px 20px;
  text-align: center;
  width: 25%;
}
@media (max-width: 768px) {
  .price table th, .price table td {
    padding: 24px 10px;
  }
}
.price table th .star, .price table td .star {
  margin-left: 10px;
  font-weight: normal;
  font-size: 12px;
  color: #111;
}
.price thead th {
  line-height: 1.1;
  font-size: 20px;
  font-weight: bold;
  background: #F0EFED;
}
.price thead th .red {
  color: #EB2502;
  font-weight: normal;
  font-size: 16px;
}
.price thead td {
  font-size: 20px;
  font-weight: bold;
  background: #F0EFED;
}
.price tbody th, .price tbody td {
  border: 2px solid #F0EFED;
  background: #fff;
}
@media (max-width: 768px) {
  .price tbody th, .price tbody td {
    font-size: 14px;
  }
}
.price tbody th {
  font-size: 18px;
  color: #EB7E02;
  font-weight: bold;
}
@media (max-width: 768px) {
  .price tbody th {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .price tbody th span {
    font-weight: normal;
  }
}
@media (max-width: 768px) {
  .price tbody td {
    font-size: 14px;
  }
}
.price tbody td span {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .price tbody td span {
    font-size: 20px;
  }
}
.price tbody td div {
  display: table;
  position: relative;
  margin: 0 auto;
}
.price tbody td div p {
  text-align: right;
}
.price tbody td div p:nth-child(1) {
  text-decoration: line-through;
}
@media (max-width: 768px) {
  .price tbody td div p {
    text-align: center;
  }
  .price tbody td div p:nth-child(2) {
    font-weight: bold;
  }
}
.price tbody td div p .strong {
  color: #EB2502;
  font-size: 24px;
  font-weight: bold;
}
.price tbody td div p .cancel {
  text-decoration: line-through;
}
.price .caution {
  margin-top: 28px;
}
.price .caution li {
  font-size: 14px;
}
.price .caution li:nth-child(n+2) {
  margin-top: 12px;
}

.contact {
  background: #F7F6F4;
}
.contact .wrap {
  padding: 68px 80px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contact .wrap {
    padding: 28px 16px;
  }
}
.contact .wrap #cf7-area {
  width: 100%;
  /*　必須ラベル　*/
}
.contact .wrap #cf7-area .cf7-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 1.75em;
}
.contact .wrap #cf7-area .cf7-q {
  width: 30%;
}
.contact .wrap #cf7-area .cf7-q.text {
  margin-top: 20px;
}
.contact .wrap #cf7-area .cf7-a {
  flex: 1;
}
.contact .wrap #cf7-area input[type=text], .contact .wrap #cf7-area input[type=email], .contact .wrap #cf7-area input[type=tel], .contact .wrap #cf7-area textarea {
  display: block;
  padding: 16px;
  margin-left: 10px;
  width: 100%;
  background: #fff;
  color: #111;
  border: 1px solid #CFCFCF;
  border-radius: 8px;
}
.contact .wrap #cf7-area input[type=text]::placeholder, .contact .wrap #cf7-area input[type=email]::placeholder, .contact .wrap #cf7-area input[type=tel]::placeholder, .contact .wrap #cf7-area textarea::placeholder {
  color: #CFCFCF;
}
.contact .wrap #cf7-area select {
  margin-left: 10px;
  padding: 16px;
  border: 1px solid #CFCFCF;
  border-radius: 8px;
  background: #fff;
}
.contact .wrap #cf7-area input[type=checkbox], .contact .wrap #cf7-area input[type=radio] {
  appearance: auto;
}
.contact .wrap #cf7-area .wpcf7-list-item {
  display: block;
}
.contact .wrap #cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}
.contact .wrap #cf7-area .cf7-accept-check {
  display: table;
  margin: 50px auto;
  text-align: center;
}
.contact .wrap #cf7-area .cf7-submit {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.contact .wrap #cf7-area input[type=submit] {
  padding: 1em 10px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  background-color: #EB7E02;
  transition: all 0.4s;
  border: 2px solid #EB7E02;
}
.contact .wrap #cf7-area input[type=submit]:hover {
  background-color: #ffffff;
  color: #EB7E02;
}
.contact .wrap #cf7-area .cf7-btn {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
.contact .wrap #cf7-area .wpcf7-not-valid-tip {
  margin: 5px 0 0 10px;
}
.contact .wrap #cf7-area .cf7-req {
  font-size: 0.8em;
  padding: 4px 8px;
  background: #EB7E02;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
  border-radius: 8px;
}
.contact .wrap #cf7-area .caution {
  margin-bottom: 68px;
}
.contact .wrap #cf7-area .caution p {
  text-align: left;
  font-size: 15px;
}
.contact .wrap #cf7-area .caution p:nth-child(n+2) {
  margin-top: 24px;
}
.contact .wrap #cf7-area .caution p a {
  color: #111;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact .wrap #cf7-area .cf7-item {
    display: block;
  }
  .contact .wrap #cf7-area label {
    display: block;
    margin-bottom: 10px;
  }
  .contact .wrap #cf7-area .cf7-q {
    margin: 0;
    width: 100%;
  }
  .contact .wrap #cf7-area .cf7-a {
    width: 100%;
  }
  .contact .wrap #cf7-area input[type=text], .contact .wrap #cf7-area input[type=email], .contact .wrap #cf7-area input[type=tel], .contact .wrap #cf7-area textarea {
    margin-left: 0;
  }
  .contact .wrap #cf7-area select {
    margin-left: 0;
  }
  .contact .wrap #cf7-area .cf7-submit {
    width: 90%;
  }
}

.page_padi {
  padding: 140px 0 88px;
}
.page_padi h1 {
  text-align: center;
}
.page_padi .wp-block-group {
  padding: 32px 0;
}
.page_padi .wp-block-group:nth-of-type(1) {
  padding-top: 0;
}
.page_padi .wp-block-group:nth-of-type(n+2) {
  border-top: 3px solid #F0EFED;
}
.page_padi .wp-block-group h2 {
  margin-bottom: 16px;
  font-size: 24px;
}
.page_padi .wp-block-group h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.page_padi .wp-block-group ul {
  margin-top: 16px;
  padding-left: 16px;
  list-style-type: disc;
}
.page_padi .wp-block-group ul li:nth-child(n+2) {
  margin-top: 8px;
}
.page_padi .wp-block-group table {
  margin-top: 16px;
}
.page_padi .wp-block-group .has-text-align-right {
  margin-top: 30px;
}
.page_padi table tr:nth-child(even) {
  background: #F7F6F4;
}
.page_padi table td {
  border: 1px solid #d1d1d1;
}
.page_padi ol {
  margin-top: 20px;
  counter-reset: number 0;
}
.page_padi ol li {
  position: relative;
  padding-left: 28px;
}
.page_padi ol li:nth-child(n+2) {
  margin-top: 8px;
}
.page_padi ol li::before {
  content: counter(number) " ";
  counter-increment: number 1;
  position: absolute;
  top: 0;
  left: 0;
}