@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;600&family=Noto+Serif+JP:wght@600;700&family=Roboto:wght@400;700&display=swap");
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

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

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

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

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

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

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

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

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.scrollin {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.scrollin {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.scrollin {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.scrollin {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
html {
  width: 100%;
  font-size: 10px;
}

body {
  position: relative;
  font: 500 16px/2 YakuHanJP, "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #2a1502;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.75;
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  color: #2a1502;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

a[href*=tel] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  a[href*=tel] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.5s;
}
.opacity:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

#container_wrap {
  overflow: hidden;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  #container_wrap {
    padding-top: 60px;
    min-width: 1px;
  }
}

.section_wrap {
  position: relative;
  padding: 0 0 5.625em;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding: 0 0 5.3em;
  }
}

.inner, .inner_min {
  max-width: calc(1180px + min(2vw, 30px) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 min(2vw, 30px);
}
@media screen and (max-width: 767px) {
  .inner, .inner_min {
    padding: 0 6vw;
  }
}
.inner_min {
  max-width: calc(980px + min(2vw, 30px) * 2);
}

.header {
  background-color: #2a1502;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 60px;
    z-index: 1001;
  }
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px min(3.33vw, 50px);
  width: calc(1500px + min(3.33vw, 50px) * 2);
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__ttl {
  display: flex;
  align-items: center;
  gap: 10px min(2vw, 30px);
}
.header__ttl h1 .logo {
  display: block;
  width: 158px;
  height: 35px;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .header__ttl h1 .logo {
    width: 100px;
  }
}
.header__ttl h1 .logo:hover {
  opacity: 0.7;
}
.header__ttl p {
  font-size: min(0.933vw, 0.875em);
  color: #eceade;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .header__ttl p {
    display: none;
  }
}
.header__tel {
  display: flex;
  align-items: center;
  gap: 10px min(1.66vw, 25px);
}
.header__tel p {
  font-size: min(0.933vw, 0.875em);
  color: #fff;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .header__tel p {
    display: none;
  }
}
.header__tel a {
  display: block;
  font-size: min(0.933vw, 0.875em);
  font-weight: 700;
  padding-left: 60px;
  line-height: 1;
  color: #fff;
  background: url(../images/free_dial.svg) no-repeat center left;
}
@media screen and (max-width: 767px) {
  .header__tel a {
    font-size: 12px;
    letter-spacing: normal;
    padding-left: 40px;
    background-size: 35px auto;
    line-height: 0.6;
  }
}
.header__tel a span {
  display: block;
  font-size: min(2.4vw, 2.57em);
  line-height: 0.8;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .header__tel a span {
    font-size: 20px;
    line-height: 0.6;
  }
}

.footer {
  background-color: #f2ede7;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 0;
  }
}
.footer .footer_inner {
  display: flex;
  flex-wrap: wrap;
  width: calc(980px + min(2vw, 30px) * 2);
  max-width: 100%;
  padding: 0 min(2vw, 30px);
  margin: 0 auto 2.5em;
}
@media screen and (max-width: 767px) {
  .footer .footer_inner {
    padding: 0 6vw;
  }
}
.footer .logo {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 25px;
  width: 100%;
  margin-bottom: 3.125em;
}
@media screen and (max-width: 767px) {
  .footer .logo {
    justify-content: center;
    text-align: center;
  }
}
.footer .logo img {
  display: block;
}
@media screen and (max-width: 767px) {
  .footer .logo img {
    width: 180px;
  }
}
.footer .logo p {
  font-size: 0.875em;
}
.footer .info {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .footer .info {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .info table {
  width: 100%;
  border-collapse: separate;
  background-color: #fcf8f0;
  border: 1px solid #d7cebe;
  border-bottom: 0 none;
  line-height: 1.5;
  margin-bottom: 1.875em;
}
@media screen and (max-width: 767px) {
  .footer .info table {
    margin-bottom: 10px;
  }
}
.footer .info table th {
  border-bottom: 1px solid #d7cebe;
  border-right: 1px solid #d7cebe;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer .info table th {
    width: 90px;
  }
}
.footer .info table td {
  border-bottom: 1px solid #d7cebe;
}
.footer .info table th, .footer .info table td {
  padding: 12px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer .info table th, .footer .info table td {
    padding: 8px;
  }
}
.footer .info dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fcf8f0;
  border: 1px solid #d7cebe;
  margin-bottom: 10px;
  padding: 15px 0;
}
.footer .info dl dt {
  padding: 0 25px;
  font-weight: 700;
  color: #ff6502;
}
.footer .info dl dd {
  font-size: 0.875em;
  font-weight: 700;
}
.footer .info dl:last-child {
  margin-bottom: 0;
}
.footer .info dl:last-child dd {
  width: 100%;
  padding: 0 25px;
}
.footer .profile {
  width: 49%;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .footer .profile {
    width: 100%;
    padding: 0;
  }
}
.footer .profile dl {
  margin-bottom: 2.5em;
}
.footer .profile dl dt {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .footer .profile dl dt {
    justify-content: center;
  }
}
.footer .profile dl dt .image {
  width: 145px;
}
@media screen and (max-width: 767px) {
  .footer .profile dl dt .image {
    margin-bottom: 20px;
  }
}
.footer .profile dl dt .text {
  width: calc(100% - 145px);
  padding-left: 22px;
}
@media screen and (max-width: 767px) {
  .footer .profile dl dt .text {
    width: 100%;
    padding: 0;
  }
}
.footer .profile dl dt .text .name {
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer .profile dl dt .text .name {
    text-align: center;
  }
}
.footer .profile dl dt .text .name span {
  display: block;
  font-size: 1.28em;
}
.footer .profile dl dt .text .name + p {
  font-size: 0.875em;
  font-weight: 700;
}
.footer .profile dl dt .text table {
  width: 100%;
  font-size: 0.875em;
}
.footer .profile dl dt .text table th {
  font-weight: 700;
  padding-right: 10px;
}
.footer .profile dl dt .text table th, .footer .profile dl dt .text table td {
  vertical-align: top;
}
.footer .profile dl dt .text table th span, .footer .profile dl dt .text table td span {
  display: block;
  font-size: 0.85em;
}
.footer .profile dl dd {
  font-size: 0.875em;
}
.footer .profile a {
  display: inline-block;
}
.footer .profile a:hover {
  opacity: 0.7;
}
.footer .company {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 3.125em;
}
.footer .company h2 {
  width: 100%;
  font-size: 1.5em;
  line-height: 1.5;
  padding-bottom: 15px;
  color: #ea8000;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  border-bottom: 1px dashed #2a1502;
  margin-bottom: 0.8em;
}
.footer .company .left {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .footer .company .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .company .left table {
  width: 100%;
  border-collapse: separate;
  font-size: 0.875em;
  line-height: 1.3125;
}
@media screen and (max-width: 767px) {
  .footer .company .left table {
    line-height: 1.8;
  }
}
.footer .company .left table th {
  font-weight: 700;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .footer .company .left table th {
    width: 90px;
  }
}
.footer .company .left table td {
  vertical-align: middle;
  letter-spacing: normal;
}
.footer .company .left table th, .footer .company .left table td {
  border-bottom: 1px dashed #d7cebe;
  padding: 12px 0;
}
.footer .company .right {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  width: 49%;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .footer .company .right {
    width: 100%;
    padding-left: 0;
    justify-content: center;
  }
}
.footer .company .right figure {
  width: 185px;
}
.footer .company .right .gmap {
  width: calc(100% - 185px - 25px);
}
@media screen and (max-width: 767px) {
  .footer .company .right .gmap {
    width: 100%;
  }
}
.footer .company .right .gmap a {
  display: block;
  position: relative;
  font-size: 0.875em;
  padding-left: 15px;
  line-height: 1.8;
}
.footer .company .right .gmap a:hover {
  text-decoration: underline;
}
.footer .company .right .gmap a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid transparent;
  border-right: 0 none;
  border-left: 6px solid #ea8000;
}
.footer nav {
  display: block;
  width: 100%;
  margin-top: 3.125em;
}
.footer nav ul {
  display: flex;
  flex-wrap: wrap;
}
.footer nav ul li {
  width: 25%;
  border-right: 1px solid #2a1502;
}
@media screen and (max-width: 767px) {
  .footer nav ul li {
    width: 100%;
    border-right: 0 none;
    border-bottom: 1px solid #2a1502;
    padding: 10px 0;
  }
}
.footer nav ul li:last-child {
  border-right: 0 none;
}
.footer nav ul li a {
  display: block;
  text-align: center;
}
.footer nav ul li a:hover {
  opacity: 0.7;
}
.footer .copyright {
  background-color: #2a1502;
  color: #fff;
  text-align: center;
  font-size: 0.875em;
  padding: 15px 0;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    float: none;
    text-align: center;
  }
}

.main_visual {
  position: relative;
  margin-bottom: 6.875em;
}
@media screen and (max-width: 767px) {
  .main_visual {
    margin-bottom: 4em;
  }
}
.main_visual::before {
  content: "";
  position: absolute;
  width: 128px;
  aspect-ratio: 1/1;
  background: url(../images/ico_kansai_mv.svg) no-repeat center/contain;
  top: 35px;
  right: 50px;
}
@media screen and (max-width: 767px) {
  .main_visual::before {
    width: 20vw;
    top: 5px;
    right: 5px;
  }
}
.main_visual .image {
  width: 100%;
  height: 550px;
}
@media screen and (max-width: 767px) {
  .main_visual .image {
    height: 70vw;
  }
}
.main_visual .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 767px) {
  .main_visual .image img {
    object-position: top right;
  }
}
.main_visual .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 min(2vw, 30px);
  width: calc(1400px + min(2vw, 30px) * 2);
  max-width: 100%;
}
.main_visual .text h2 {
  font-size: 1.75em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  margin-bottom: 3.57em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .main_visual .text h2 {
    font-size: 3.8vw;
    text-shadow: 1px 1px 0px #fff, -1px -1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, 1px 0px 0px #fff, -1px 0px 0px #fff, 0px 1px 0px #fff, 0px -1px 0px #fff;
    margin-bottom: 2.5em;
  }
}
.main_visual .text h2 span {
  display: block;
  line-height: 1.45;
  font-size: 1.43em;
}
.main_visual .text p {
  font-size: 1.125em;
  text-shadow: 1px 1px 0px #fff, -1px -1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, 1px 0px 0px #fff, -1px 0px 0px #fff, 0px 1px 0px #fff, 0px -1px 0px #fff;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .main_visual .text p {
    font-size: 3.2vw;
  }
}
.main_visual .text p span {
  color: #ff6502;
}

.section_box {
  border: 3px solid #eceade;
  padding: 7px 30px 30px;
}
@media screen and (max-width: 767px) {
  .section_box {
    padding: 7px 15px 30px;
  }
}

.feature .read {
  font-size: 1.75em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 600;
  color: #ea8000;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .feature .read {
    font-size: 1.2em;
  }
}
.feature .feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature .feature_grid .left,
.feature .feature_grid .right {
  width: calc(50% - 10px);
  background-color: #eceade;
  padding: 30px 25px 40px;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left,
.feature .feature_grid .right {
    width: 100%;
    padding: 30px 15px;
  }
}
.feature .feature_grid .left h3,
.feature .feature_grid .right h3 {
  text-align: center;
  background-color: #2a1502;
  width: 480px;
  max-width: 100%;
  line-height: 60px;
  border-radius: 30px;
  margin: 0 auto 1.25em;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left h3,
.feature .feature_grid .right h3 {
    line-height: 40px;
  }
}
.feature .feature_grid .left h3 span,
.feature .feature_grid .right h3 span {
  display: block;
  position: relative;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  width: 11.5em;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left h3 span,
.feature .feature_grid .right h3 span {
    display: inline-block;
    width: auto;
    font-size: 1.2em;
    padding: 0 10px;
  }
}
.feature .feature_grid .left h3 span::before, .feature .feature_grid .left h3 span::after,
.feature .feature_grid .right h3 span::before,
.feature .feature_grid .right h3 span::after {
  content: "";
  position: absolute;
  width: 29px;
  height: 6px;
  background: url(../images/feature_icon_ttl.svg) no-repeat center/contain;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left h3 span::before, .feature .feature_grid .left h3 span::after,
.feature .feature_grid .right h3 span::before,
.feature .feature_grid .right h3 span::after {
    width: 20px;
  }
}
.feature .feature_grid .left h3 span::after,
.feature .feature_grid .right h3 span::after {
  left: auto;
  right: 100%;
}
.feature .feature_grid .left > p {
  font-size: 1.125em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left > p {
    font-size: 1em;
  }
}
.feature .feature_grid .left .column_item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left .column_item {
    gap: 10px;
    justify-content: center;
  }
}
.feature .feature_grid .left .column_item:last-child {
  margin-bottom: 0;
}
.feature .feature_grid .left .column_item .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  height: 140px;
  line-height: 1.5;
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left .column_item .item {
    height: auto;
    aspect-ratio: 1/1;
    font-size: 0.875em;
  }
}
.feature .feature_grid .left .column_item .item::after {
  content: "";
  position: absolute;
  width: 104px;
  aspect-ratio: 1/1;
  background: url(../images/feature_icon_01.svg) no-repeat center/contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.feature .feature_grid .left .column_item .item p {
  position: relative;
  z-index: 1;
}
.feature .feature_grid .left .column_item__02 .item {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left .column_item__02 .item {
    width: calc(50% - 5px);
  }
}
.feature .feature_grid .left .column_item__03 .item {
  width: calc(33.333% - 13.3333333333px);
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .left .column_item__03 .item {
    width: calc(50% - 5px);
  }
}
.feature .feature_grid .left .column_item__ng .item::after {
  width: 90px;
  background-image: url(../images/feature_icon_02.svg);
}
.feature .feature_grid .right .use {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  background-color: #fff;
  border: 3px solid #ea8000;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 2.5em;
}
.feature .feature_grid .right .use::before, .feature .feature_grid .right .use::after {
  content: "";
  position: absolute;
  border: 6px solid transparent;
  border-bottom: 0 none;
  border-top: 12px solid #ea8000;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.feature .feature_grid .right .use::after {
  border-width: 3px;
  border-top: 6px solid #fff;
}
.feature .feature_grid .right .use .text {
  font-size: 1.625em;
  line-height: 1.4;
  font-weight: 700;
}
.feature .feature_grid .right .use .text span {
  display: block;
  font-size: 0.53em;
  color: #ea8000;
}
.feature .feature_grid .right .use .num {
  font-size: 1.625em;
  line-height: 1;
}
.feature .feature_grid .right .use .num span {
  font-size: 2.38em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding-right: 10px;
}
.feature .feature_grid .right .graph {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .right .graph {
    gap: 10px;
  }
}
.feature .feature_grid .right .graph .item {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .right .graph .item {
    width: calc(50% - 5px);
  }
}
.feature .feature_grid .right .graph .item h4 {
  text-align: center;
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .feature .feature_grid .right .graph .item h4 {
    font-size: 1em;
  }
}
.feature .feature_grid .right .graph .item img {
  display: block;
  margin: 0 auto 20px;
}
.feature .feature_grid .right .graph .item p {
  font-size: 0.875em;
}

.service .read {
  font-size: 1.75em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 600;
  color: #ea8000;
  line-height: 1.5;
  margin-bottom: 0.7em;
  padding-bottom: 0.7em;
  border-bottom: 1px dashed #d7cebe;
}
@media screen and (max-width: 767px) {
  .service .read {
    font-size: 1.2em;
  }
}
.service .read + p {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .service .read + p {
    font-size: 1em;
  }
}
.service .service_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 35px;
  margin-bottom: 1.875em;
}
.service .service_grid .item {
  width: calc(33.3333% - 23.3333333333px);
}
@media screen and (max-width: 767px) {
  .service .service_grid .item {
    width: 100%;
  }
}
.service .service_grid .item h3 {
  position: relative;
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  background-color: #e1671f;
  margin-bottom: 1.2em;
}
.service .service_grid .item h3::after {
  content: "";
  position: absolute;
  border: 4.5px solid transparent;
  border-bottom: 0 none;
  border-top: 9px solid #e1671f;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.service .service_grid .item img {
  display: block;
  margin: 0 auto 25px;
}
.service .service_grid .item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .service .service_grid .item ul {
    gap: 10px;
  }
}
.service .service_grid .item ul li {
  width: calc(25% - 15px);
}
@media screen and (max-width: 767px) {
  .service .service_grid .item ul li {
    width: calc(25% - 7.5px);
  }
}
.service .service_grid .item ul li img {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .service .service_grid .item ul li img {
    width: 100%;
  }
}
.service .service_grid .item--02 h3 {
  background-color: #5b87b8;
}
.service .service_grid .item--02 h3::after {
  border-top-color: #5b87b8;
}
.service .service_grid .item--02 ul {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service .service_grid .item--02 ul {
    width: 100%;
  }
}
.service .service_grid .item--02 ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .service .service_grid .item--02 ul li {
    width: calc(25% - 7.5px);
  }
}
.service .service_grid .item--03 h3 {
  background-color: #ad9d54;
}
.service .service_grid .item--03 h3::after {
  border-top-color: #ad9d54;
}
.service .service_grid .item--03 ul {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service .service_grid .item--03 ul {
    width: 100%;
  }
}
.service .service_grid .item--03 ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .service .service_grid .item--03 ul li {
    width: calc(25% - 7.5px);
  }
}
.service .service_grid .item--04 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service .service_grid .item--04 {
    justify-content: center;
  }
}
.service .service_grid .item--04 h3 {
  background-color: #4c8f4c;
  width: 110px;
  margin: 0;
  border-radius: 0;
}
.service .service_grid .item--04 h3::after {
  content: none;
}
.service .service_grid .item--04 ul li {
  width: auto;
}
@media screen and (max-width: 767px) {
  .service .service_grid .item--04 ul li {
    width: calc(25% - 7.5px);
  }
}
.service .service_grid + p {
  font-size: 0.875em;
  margin-bottom: 2.2em;
}
.service .cation {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 15px;
  border: 1px solid #eceade;
  margin-bottom: 3.125em;
}
.service .cation dt {
  display: flex;
  align-items: center;
  width: 275px;
  font-weight: 700;
  border-right: 1px solid #eceade;
}
@media screen and (max-width: 767px) {
  .service .cation dt {
    width: 100%;
    margin-bottom: 1em;
  }
}
.service .cation dt::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 23px;
  background: url(../images/service_cation.svg) no-repeat center/contain;
  margin-right: 15px;
}
.service .cation dd {
  width: calc(100% - 275px);
  padding-left: 20px;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .service .cation dd {
    width: 100%;
    padding: 0;
  }
}
.service .service_image {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 3.125em;
  margin-bottom: 6.875em;
  border-bottom: 1px dashed #d7cebe;
}
.service .service_image li {
  width: calc(20% - 8px);
}
@media screen and (max-width: 767px) {
  .service .service_image li {
    width: calc(50% - 5px);
  }
}
.service .service_voice {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 3.125em;
}
@media screen and (max-width: 767px) {
  .service .service_voice {
    justify-content: center;
  }
}
.service .service_voice:last-child {
  margin-bottom: 0;
}
.service .service_voice .image {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .service .service_voice .image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.service .service_voice .image img {
  display: block;
  margin: 0 auto 20px;
}
.service .service_voice .image strong {
  display: block;
  font-size: 1.125em;
}
.service .service_voice .image strong span {
  display: inline-block;
  font-size: 1.22em;
  margin-right: 15px;
}
.service .service_voice .image p {
  font-size: 0.9375em;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .service .service_voice .image p {
    font-size: 1em;
  }
}
.service .service_voice .text {
  width: calc(100% - 220px - 240px);
  padding: 0 65px 0 40px;
}
@media screen and (max-width: 767px) {
  .service .service_voice .text {
    width: 100%;
    padding: 0;
  }
}
.service .service_voice .text ul {
  position: relative;
  border: 3px solid #eceade;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .service .service_voice .text ul {
    padding: 15px;
    margin-bottom: 20px;
  }
}
.service .service_voice .text ul::before, .service .service_voice .text ul::after {
  content: "";
  position: absolute;
  border: 9px solid transparent;
  border-left: 0 none;
  border-right: 18px solid #eceade;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service .service_voice .text ul::before, .service .service_voice .text ul::after {
    content: none;
  }
}
.service .service_voice .text ul::after {
  border-width: 6px;
  border-right: 12px solid #fff;
}
.service .service_voice .text ul li {
  position: relative;
  padding-left: 15px;
}
.service .service_voice .text ul li::before {
  content: "・";
  position: absolute;
  top: 1em;
  left: 0;
  transform: translateY(-50%);
}
.service .service_voice .graph {
  position: relative;
  width: 240px;
}
.service .service_voice .graph::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 46px;
  background: url(../images/service_voice_arrow.svg) no-repeat center/contain;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service .service_voice .graph::before {
    content: none;
  }
}

.staff_wrap {
  display: flex;
  flex-wrap: wrap;
  border: 3px solid #eceade;
  padding: 30px 35px;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 767px) {
  .staff_wrap {
    padding: 15px;
  }
}
.staff_wrap .text {
  width: 54%;
  padding-right: 35px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .staff_wrap .text {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
}
.staff_wrap dl {
  display: flex;
  flex-wrap: wrap;
  width: 46%;
}
@media screen and (max-width: 767px) {
  .staff_wrap dl {
    width: 100%;
    justify-content: center;
  }
}
.staff_wrap dl dt {
  width: 190px;
}
@media screen and (max-width: 767px) {
  .staff_wrap dl dt {
    margin-bottom: 10px;
  }
}
.staff_wrap dl dd {
  width: calc(100% - 190px);
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .staff_wrap dl dd {
    width: 100%;
    padding: 0;
  }
}
.staff_wrap dl dd strong {
  display: block;
  font-weight: 700;
  font-size: 1.125em;
}
.staff_wrap dl dd p {
  font-size: 0.875em;
  font-weight: 700;
}

.contact_cmn {
  background-color: #2a1502;
  border-radius: 10px;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .contact_cmn {
    padding: 20px 15px;
  }
}
.contact_cmn h2 {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  color: #fff;
  line-height: 1.5;
  font-size: 1.75em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contact_cmn h2 {
    font-size: 1.25em;
  }
}
.contact_cmn h3 {
  font-size: 1.75em;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px dashed #2a1502;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact_cmn h3 {
    font-size: 1.2em;
  }
}
.contact_cmn h3 span {
  display: inline-block;
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .contact_cmn h3 span {
    padding-left: 50px;
  }
}
.contact_cmn .form {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px 70px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact_cmn .form {
    padding: 15px;
  }
}
.contact_cmn .form h3 span {
  background: url(../images/contact_icon_01.svg) no-repeat center left;
}
@media screen and (max-width: 767px) {
  .contact_cmn .form h3 span {
    background-size: 40px auto;
  }
}
.contact_cmn .form a {
  display: block;
  width: 400px;
  max-width: 100%;
  line-height: 60px;
  background: url(../images/contact_btn.svg) no-repeat center right 30px;
  background-color: #ea8000;
  border-radius: 6px;
  text-align: center;
  font-size: 1.75em;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact_cmn .form a {
    line-height: 40px;
    font-size: 1.2em;
  }
}
.contact_cmn .tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px 40px;
  border-radius: 10px;
  background-color: #fff;
  padding: 30px 70px;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel {
    padding: 15px;
  }
}
.contact_cmn .tel h3 {
  width: 100%;
  margin: 0;
}
.contact_cmn .tel h3 span {
  background: url(../images/contact_icon_02.svg) no-repeat center left;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel h3 span {
    background-size: 40px auto;
  }
}
.contact_cmn .tel p {
  font-size: 0.875em;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel p {
    text-align: center;
  }
}
.contact_cmn .tel a {
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  padding-left: 60px;
  line-height: 1;
  color: #2a1502;
  background: url(../images/free_dial.svg) no-repeat center left;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel a {
    position: relative;
    font-size: 0.875em;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel a::before {
    content: "お気軽にお問い合わせください。（タップで発信）";
    position: absolute;
    font-size: 0.85em;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.contact_cmn .tel a span {
  color: #ea8000;
  display: block;
  font-size: 2.4em;
  line-height: 0.8;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel a span {
    font-size: 2.2em;
    white-space: nowrap;
  }
}

.price_wrap .read {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1em;
  margin-bottom: 0.7em;
  padding-bottom: 0.7em;
  border-bottom: 1px dashed #d7cebe;
}
.price_wrap .read + p {
  font-size: 0.875em;
  margin-bottom: 2em;
}
.price_wrap .ttl_cmn_01 .text_01 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .price_wrap .ttl_cmn_01 .text_01 {
    display: block;
  }
}
.price_wrap .ttl_cmn_01 .text_02 {
  position: relative;
  padding-left: 2em;
  padding-right: 3em;
}
@media screen and (max-width: 767px) {
  .price_wrap .ttl_cmn_01 .text_02 {
    padding: 10px 20px;
  }
}
.price_wrap .ttl_cmn_01 .text_02::after {
  content: "";
  position: absolute;
  width: 60px;
  aspect-ratio: 1/1;
  background: url(../images/ico_kansai.svg) no-repeat center/contain;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .price_wrap .ttl_cmn_01 .text_02::after {
    width: 15vw;
    right: 3px;
    top: 0;
  }
}
.price_wrap .ttl_cmn_01 .text_02 small {
  display: block;
  font-size: 0.64em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price_wrap .ttl_cmn_01 .text_02 small {
    text-align: left;
  }
}
.price_wrap .price_table_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 {
    justify-content: center;
  }
}
.price_wrap .price_table_01 dl {
  width: calc(100% - 384px - 80px);
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl {
    width: 200px;
  }
}
.price_wrap .price_table_01 dl dt {
  text-align: center;
  font-size: 1.375em;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  background-color: #ea8000;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dt {
    font-size: 1.2em;
  }
}
.price_wrap .price_table_01 dl dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul {
    gap: 20px;
  }
}
.price_wrap .price_table_01 dl dd ul li {
  position: relative;
  width: calc(33.333% - 23.3333333333px);
  border: 1px solid #878787;
  padding: 10px 15px;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul li {
    width: 100%;
  }
}
.price_wrap .price_table_01 dl dd ul li::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: url(../images/price_icon_01.svg) no-repeat center/contain;
  top: 50%;
  left: calc(100% + 11px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul li::after {
    left: 50%;
    top: calc(100% + 5px);
    transform: translateX(-50%);
  }
}
.price_wrap .price_table_01 dl dd ul li:nth-child(2)::after {
  width: 18px;
  height: 18px;
  background-image: url(../images/price_icon_02.svg);
  left: calc(100% + 8.5px);
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul li:nth-child(2)::after {
    width: 12px;
    height: 12px;
    left: 50%;
    top: calc(100% + 5px);
    transform: translateX(-50%);
  }
}
.price_wrap .price_table_01 dl dd ul li:nth-child(3)::after {
  left: calc(100% + 14.5px);
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul li:nth-child(3)::after {
    left: 50%;
    top: calc(100% + 15px);
    transform: translateX(-50%);
  }
}
.price_wrap .price_table_01 dl dd ul li .title {
  text-align: center;
  font-size: 0.8125em;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #878787;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul li .title {
    font-size: 1em;
  }
}
.price_wrap .price_table_01 dl dd ul li .price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 55px;
  line-height: 1.2;
  text-align: center;
  font-size: 0.9375em;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl dd ul li .price {
    font-size: 1em;
    height: auto;
  }
}
.price_wrap .price_table_01 dl dd ul li .price p b {
  font-size: 1.466em;
  color: #ea8000;
  padding: 0 5px;
}
.price_wrap .price_table_01 dl dd ul li .price p span {
  display: block;
  font-size: 0.866em;
}
.price_wrap .price_table_01 dl:nth-child(2) {
  width: 192px;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl:nth-child(2) {
    width: 200px;
  }
}
.price_wrap .price_table_01 dl:nth-child(2) dd ul li {
  width: 100%;
}
.price_wrap .price_table_01 dl:nth-child(2) dd ul li::after {
  width: 12px;
  height: 8px;
  background-image: url(../images/price_icon_03.svg);
  left: calc(100% + 15.5px);
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 dl:nth-child(2) dd ul li::after {
    left: calc(50% - 6px);
    top: calc(100% + 15px);
    transform: rotate(90deg);
  }
}
.price_wrap .price_table_01 .total {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 192px;
  background-color: #ffd9c0;
  border: 3px solid #ea8000;
  font-size: 1.375em;
  color: #ea8000;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_01 .total {
    width: 200px;
    aspect-ratio: 3/2;
  }
}
.price_wrap .cation {
  display: flex;
  align-items: center;
  margin-bottom: 2.5em;
}
.price_wrap .cation::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 22px;
  background: url(../images/service_cation.svg) no-repeat center/contain;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .price_wrap .cation::before {
    flex-shrink: 0;
  }
}
.price_wrap .price_table_02 {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_02 {
    padding-bottom: 10px;
  }
}
.price_wrap .price_table_02 table {
  width: 100%;
  border-collapse: separate;
  white-space: nowrap;
  border-bottom: 1px solid #d7cebe;
}
.price_wrap .price_table_02 table thead {
  background-color: #e8e1db;
}
.price_wrap .price_table_02 table thead th {
  border-top: 3px solid #d7cebe;
  vertical-align: middle;
  padding: 8px;
  font-size: 1.125em;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_02 table thead th {
    font-size: 1em;
  }
}
.price_wrap .price_table_02 table thead th small {
  display: block;
  font-size: 0.77em;
}
.price_wrap .price_table_02 table thead th span {
  font-size: 0.77em;
}
.price_wrap .price_table_02 table tbody th, .price_wrap .price_table_02 table tbody td {
  border-top: 1px solid #d7cebe;
  padding: 10px;
  text-align: center;
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_02 table tbody th, .price_wrap .price_table_02 table tbody td {
    font-size: 1em;
  }
}
.price_wrap .price_table_02 table tbody th small, .price_wrap .price_table_02 table tbody td small {
  display: block;
  font-size: 0.77em;
}
.price_wrap .price_table_02 table tbody td:nth-child(3) {
  padding: 10px 20px;
}
.price_wrap .price_table_02 table tbody td:nth-child(3)::before {
  content: "";
  display: inline-block;
  border: 6px solid transparent;
  border-right: 0 none;
  border-left: 12px solid #2a1502;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .price_wrap .price_table_02 table tbody td:nth-child(3)::before {
    border-width: 5px;
    border-left-width: 8px;
  }
}

.price_free {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 25px;
  border: 3px solid #d7cebe;
}
@media screen and (max-width: 767px) {
  .price_free {
    padding: 50px 15px 12px;
  }
}
.price_free dt {
  position: relative;
  width: 480px;
  font-size: 1.75em;
  color: #ea8000;
  text-align: center;
  font-weight: 700;
  padding: 12px 25px 12px 140px;
  border-right: 1px solid #d7cebe;
}
@media screen and (max-width: 767px) {
  .price_free dt {
    width: 100%;
    border: 0 none;
    border-bottom: 1px solid #d7cebe;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 1.25em;
  }
}
.price_free dt::before {
  content: "";
  position: absolute;
  width: 132px;
  aspect-ratio: 1/1;
  background: url(../images/price_free.svg) no-repeat center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .price_free dt::before {
    width: 80px;
    left: 50%;
    top: auto;
    bottom: 100%;
    transform: translateX(-50%);
  }
}
.price_free dd {
  width: calc(100% - 480px);
  padding-left: 30px;
  font-size: 0.875em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price_free dd {
    width: 100%;
    padding: 0;
    font-size: 1em;
  }
}
.price_free dd span {
  color: #ea8000;
}

.service_staff .ttl_cmn_01 .text_02 {
  position: relative;
}
.service_staff .ttl_cmn_01 .text_02 small {
  position: absolute;
  font-size: 1.4rem;
  bottom: 0;
  right: 30px;
}
.service_staff .staff_wrap {
  margin-bottom: 3.125em;
}
.service_staff .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 45px;
}
.service_staff .grid > div {
  width: calc(33.333% - 30px);
}
@media screen and (max-width: 767px) {
  .service_staff .grid > div {
    width: 100%;
  }
}
.service_staff .grid .check {
  position: relative;
  background-color: #f7f2ed;
  padding: 30px 25px 40px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .service_staff .grid .check {
    padding: 25px 15px;
  }
}
.service_staff .grid .check::before {
  content: "";
  position: absolute;
  width: 53px;
  height: 55px;
  background: url(../images/staff_pin.svg) no-repeat center/contain;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.service_staff .grid .check h3 {
  position: relative;
  font-size: 1.35em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 700;
  color: #ea8000;
  line-height: 1.5;
  padding-left: 25px;
  margin-bottom: 5px;
}
.service_staff .grid .check h3::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 18px;
  background: url(../images/staff_check_01.svg) no-repeat center/contain;
  top: 50%;
  left: 0;
  transform: translateY(-30%);
}
.service_staff .grid .check h3 span {
  font-size: 1.42em;
}
.service_staff .grid .check h3:not(:first-child) {
  letter-spacing: 0.1em;
}
.service_staff .grid .check p {
  font-size: 0.875em;
  font-weight: 700;
  padding-left: 30px;
  padding-bottom: 1em;
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #d7cebe;
  letter-spacing: normal;
}
.service_staff .grid .check p:last-child {
  margin-bottom: 0;
  border-bottom: 0 none;
  padding-bottom: 0;
}
.service_staff .grid .process img {
  display: block;
  margin: 0 auto 20px;
}
.service_staff .grid .process strong {
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}
.service_staff .grid .process ul li {
  font-weight: 700;
  line-height: 1.8;
  padding-left: 20px;
  background: url(../images/staff_check_02.svg) no-repeat center left;
}
.service_staff .grid .flow {
  position: relative;
  background-color: #f7f2ed;
  border: 1px solid #b3b3b3;
  border-radius: 10px;
  padding: 15px 30px 30px;
}
.service_staff .grid .flow::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 3px;
  background-color: #ea8000;
  left: 30px;
  top: -1px;
}
.service_staff .grid .flow h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #ea8000;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service_staff .grid .flow ul li {
  position: relative;
  margin-bottom: 30px;
}
.service_staff .grid .flow ul li:last-child {
  margin-bottom: 0;
}
.service_staff .grid .flow ul li:last-child::after {
  content: none;
}
.service_staff .grid .flow ul li::after {
  content: "";
  position: absolute;
  width: 43px;
  height: 43px;
  background: url(../images/staff_arrow.svg) no-repeat center/contain;
  top: calc(100% - 6.5px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.service_staff .grid .flow ul li p {
  position: absolute;
  right: 0;
  bottom: 100%;
  font-size: 0.875em;
  font-weight: 700;
  color: #ea8000;
  line-height: 1.5;
}
.service_staff .grid .flow ul li img {
  display: block;
  margin: 0 auto;
}

.service_flow .section_box {
  border-color: #d7cebe;
}
.service_flow .staff_wrap {
  margin-bottom: 3.125em;
  border-color: #d7cebe;
}
.service_flow ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 7px;
  padding-bottom: 8.125em;
}
@media screen and (max-width: 767px) {
  .service_flow ul {
    padding-bottom: 5em;
  }
}
.service_flow ul > li {
  position: relative;
  width: calc(25% - 5.25px);
  border: 2px solid #d7cebe;
  border-radius: 5px;
  padding: 20px 15px 30px;
}
@media screen and (max-width: 767px) {
  .service_flow ul > li {
    width: 100%;
  }
}
.service_flow ul > li::after {
  content: "";
  position: absolute;
  width: 43px;
  aspect-ratio: 1/1;
  background: url(../images/staff_arrow.svg) no-repeat center/contain;
  top: calc(50% - 21.5px);
  left: calc(100% - 16px);
  transform: rotate(-90deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service_flow ul > li::after {
    content: none;
  }
}
.service_flow ul > li h3 {
  position: relative;
  font-size: 1.125em;
  font-weight: 700;
  padding-left: 55px;
  background-color: #d7cebe;
  letter-spacing: normal;
  margin: 0 -15px 15px;
}
@media screen and (max-width: 767px) {
  .service_flow ul > li h3 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.service_flow ul > li h3::before {
  content: attr(data-num);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 46px;
  height: 46px;
  line-height: 1;
  background-color: #783f0c;
  color: #fff;
  font-size: 1.33em;
  font-weight: 700;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  padding-bottom: 2px;
}
.service_flow ul > li h3 span {
  display: inline-block;
  font-size: 0.77em;
}
.service_flow ul > li .catch {
  font-weight: 700;
  margin-bottom: 0.7em;
}
.service_flow ul > li strong {
  display: block;
  width: 105px;
  line-height: 30px;
  text-align: center;
  background-color: #92be5f;
  color: #fff;
  font-weight: 700;
  border-radius: 15px;
  margin-bottom: 10px;
}
.service_flow ul > li p:not([class]) {
  font-size: 0.875em;
  font-weight: 700;
}
.service_flow ul > li ol li {
  position: relative;
  margin-bottom: 25px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
.service_flow ul > li ol li small {
  display: block;
  font-size: 0.875em;
  letter-spacing: normal;
}
.service_flow ul > li ol li::after {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-bottom: 0 none;
  border-top: 7px solid #ea8000;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}
.service_flow ul > li ol li:last-child {
  margin-bottom: 0;
}
.service_flow ul > li ol li:last-child::after {
  content: none;
}
.service_flow ul > li .tooltip {
  position: absolute;
  border: 2px solid #2a1502;
  background-color: #eceade;
  padding: 10px 15px;
  font-size: 0.875em;
  width: calc(100% - 25px);
  left: 12.5px;
  border-radius: 5px;
  z-index: 1;
  letter-spacing: normal;
}
.service_flow ul > li .tooltip::before, .service_flow ul > li .tooltip::after {
  content: "";
  position: absolute;
  border: 7px solid transparent;
  border-top: 0 none;
  border-bottom: 12px solid #2a1502;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.service_flow ul > li .tooltip::after {
  border-width: 5px;
  border-bottom: 10px solid #eceade;
  bottom: calc(100% - 1px);
}
@media screen and (max-width: 767px) {
  .service_flow ul > li:first-child {
    margin-bottom: 5em;
  }
}
.service_flow ul > li:first-child .tooltip {
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .service_flow ul > li:first-child .tooltip {
    bottom: auto;
    top: calc(100% - 15px);
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .service_flow ul > li:nth-child(2) {
    margin-bottom: 5em;
  }
}
.service_flow ul > li:nth-child(2) .tooltip {
  top: calc(100% - 10px);
  left: calc(100% + 6px);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .service_flow ul > li:nth-child(2) .tooltip {
    transform: none;
    left: 12.5px;
  }
}
.service_flow ul > li:last-child .tooltip {
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .service_flow ul > li:last-child .tooltip {
    bottom: auto;
    top: calc(100% - 15px);
    transform: none;
  }
}
.service_flow ul > li:last-child::after {
  content: none;
}

.trial .ttl_cmn_01 .text_02 {
  padding-left: 70px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .trial .ttl_cmn_01 .text_02 {
    padding: 10px 20px;
  }
}
.trial .read {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 1.25em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #d7cebe;
}
@media screen and (max-width: 767px) {
  .trial .read {
    font-size: 1em;
  }
}
.trial .trial_price {
  background-color: #ffd9c0;
  margin-bottom: 1.875em;
  padding-bottom: 1.875em;
}
@media screen and (max-width: 767px) {
  .trial .trial_price {
    margin-bottom: 3em;
  }
}
.trial .trial_price h3 {
  text-align: center;
  font-size: 1.4375em;
  color: #fff;
  background-color: #ff6502;
  font-weight: 700;
  padding: 10px 0;
  margin-bottom: 1.4em;
}
@media screen and (max-width: 767px) {
  .trial .trial_price h3 {
    font-size: 1.1em;
  }
}
.trial .trial_price ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul {
    gap: 40px;
    padding: 0 15px;
  }
}
.trial .trial_price ul li {
  position: relative;
  width: 194px;
  border: 1px solid #878787;
  padding: 10px 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul li {
    width: 200px;
  }
}
.trial .trial_price ul li::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 35px;
  background: url(../images/trial_icon_01.svg) no-repeat center/contain;
  top: 50%;
  left: calc(100% + 27px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul li::after {
    top: calc(100% + 10px);
    left: calc(50% - 19px);
    transform: rotate(90deg);
  }
}
.trial .trial_price ul li .title {
  text-align: center;
  font-size: 0.875em;
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  border-bottom: 1px solid #878787;
}
.trial .trial_price ul li .price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 55px;
  line-height: 1.4;
  text-align: center;
  font-size: 0.9375em;
}
.trial .trial_price ul li .price p b {
  font-size: 1.466em;
  color: #ea8000;
  padding: 0 5px;
}
.trial .trial_price ul li .price p span {
  display: block;
  font-size: 0.866em;
}
.trial .trial_price ul li:first-child {
  margin-right: 90px;
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul li:first-child {
    margin: 0 0 15px;
  }
}
.trial .trial_price ul li:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/trial_icon_02.svg) no-repeat center/contain;
  top: 0;
  left: 0;
}
.trial .trial_price ul li:nth-child(2) {
  margin-right: 65px;
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul li:nth-child(2) {
    margin: 0;
  }
}
.trial .trial_price ul li:nth-child(2)::after {
  width: 18px;
  height: 18px;
  background-image: url(../images/price_icon_03.svg);
  left: calc(100% + 25px);
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul li:nth-child(2)::after {
    left: calc(50% - 9px);
  }
}
.trial .trial_price ul li:nth-child(3) {
  width: 354px;
  max-width: 100%;
}
.trial .trial_price ul li:nth-child(3)::after {
  content: none;
}
.trial .trial_price ul li:nth-child(3) .price {
  height: auto;
  font-size: 1.125em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .trial .trial_price ul li:nth-child(3) .price {
    font-size: 1em;
  }
}
.trial .trial_price ul li:nth-child(3) .price p b {
  display: inline-block;
  font-size: 1.22em;
  width: 4.5em;
  text-align: right;
}
.trial .trial_price ul li:nth-child(3) .price p span {
  display: inline-block;
  font-size: 0.77em;
}
.trial .price_free dt {
  width: 550px;
}
@media screen and (max-width: 767px) {
  .trial .price_free dt {
    width: 100%;
  }
}
.trial .price_free dd {
  width: calc(100% - 550px);
}
@media screen and (max-width: 767px) {
  .trial .price_free dd {
    width: 100%;
  }
}

.map {
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
}
.map:last-child {
  margin-bottom: 0;
}
.map::before {
  content: "";
  display: block;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .map::before {
    height: 200px;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_cmn_01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 5px solid #2a1502;
  font-size: 1.75em;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 700;
  background-color: #d7cebe;
  line-height: 1.5;
  margin: 0 -23px 1.43em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    flex-wrap: wrap;
    font-size: 1.2em;
    margin: 0 -8px 1.43em;
  }
}
.ttl_cmn_01::before, .ttl_cmn_01::after {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  border-bottom: 0 none;
  border-top: 20px solid #2a1502;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.ttl_cmn_01::after {
  border-width: 8px;
  border-top: 10px solid #d7cebe;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01::after {
    content: none;
  }
}
.ttl_cmn_01 .text_01 {
  padding: 15px 40px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 .text_01 {
    padding: 10px 20px;
  }
}
.ttl_cmn_01 .text_02 {
  position: relative;
  color: #fff;
  padding: 15px 30px 15px 40px;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  background-color: #2a1502;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 .text_02 {
    width: 100%;
    padding: 10px 20px;
    clip-path: none;
  }
}

.m0 {
  margin-bottom: 0;
}