@charset "utf-8";


/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 150rem;
  --mainColor: #347348;
  --subColor: #CC7909;
  --bgColor: #F0EFE9;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.6vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media print, screen and ( min-width : 1301px ) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  html {
    font-size: 1.6vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 2.4rem;
  line-height: 1.8em;
  color: #000;
  height: 100%;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
.min {
  font-family: "Noto Serif JP", serif;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #212121;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

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


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}
.container {
  margin-left: auto;
  margin-right: auto;
}


@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: calc(var(--inner) + 4rem);
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}

@media print, screen and ( min-width : 768px ) {
  .container {
    padding-left: 5rem;
    padding-right: 5rem;
    max-width: calc(var(--inner) + 10rem);
  }
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
.large_conteiner {
  max-width: 172rem;
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

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

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

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
  background: #fff;
}
#h_top {
  display: flex;
  justify-content: space-between;
}
#header.scroll {
  /*background: transparent;
  backdrop-filter: blur(5px);*/
}
#header.p-header {
  position: fixed;
}
#header.hidden {
    /*transform: translateY(-100%);
    transition: transform 0.3s ease-out;*/
}
#h_logo {
  font-weight: 700;
}
#h_logo a {
  display: flex;
  align-items: center;
}
#header .h_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  font-weight: 700;
  color: #fff;
  background: #CC7909;
  border-radius: 8rem;
}
.h_btn .h_btn_icon img {
  display: block;
}
.h_tel_num_txt {

}
.h_tel_num {
  display: flex;
  align-items: center;
}
.h_tel_content p {
  text-align: center;
}
.h_tel_num_ico img {
  display: block;
}
.h_tel_top_txt {
  font-weight: 700;
  color: var(--mainColor);
}
.h_tel_bottom_txt {
  font-weight: 500;
}
.h_tel_num_txt {
  line-height: 1;
}
.h_tel_num_txt a {
  color: var(--mainColor);
  font-weight: 700;
  line-height: 1;
}
#gNav li {
  font-weight: 500;
}
#gNav li a img {
  display: block;
}




@media only screen and ( max-width : 834px ) {
  #header,
  #h_top {
    height: 65px;
  }
  #h_logo {
    position: relative;
    display: flex;
    align-items: center;
    width: 280px;
    z-index: 99;
  }
  #h_logo img {
    width: 280px;
  }
  #h_contact {
    display: none;
  }

  /*#menu_btn {
    transition: .3s;
    cursor: pointer;
    position: absolute !important;
    z-index: 9999;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 6.5rem !important;
    height: 6.5rem !important;
    background: var(--mainColor);
    padding-top: 1.8rem;
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100vh;
    height: 100svh;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  .menu-trigger {
    vertical-align: middle;
    text-align: center;
    position: relative;
    width: 2.7rem;
    height: 1.8rem;
  }
  .menu-trigger .menu_line {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    background-color: #fff;
    transition: all .5s;
  }
  .menu-trigger .menu_line:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger .menu_line:nth-of-type(3) {
  }
  #menu_btn.active .menu-trigger .menu_line:nth-of-type(1) {
    transform: translateY(.8rem) rotate(-45deg);
  }
  .menu-trigger .menu_line:nth-of-type(2) {
    top: .8rem;
    left: auto;
    right: 0;
  }
  #menu_btn.active .menu-trigger .menu_line:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger .menu_line:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger .menu_line:nth-of-type(3) {
    transform: translateY(-.8rem) rotate(45deg);
  }
  #menu_btn .menu_txt {
    white-space: nowrap;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    box-sizing: border-box;
    transition: all .5s;
    margin-top: .8rem;
    line-height: 1;
  }

  #gNav {
    height: calc(100vh - 6.5rem);
    overflow: auto;
    background-color: rgba(255,255,255,1);
    position: absolute;
    top: 6.5rem;
    right: 0;
    z-index: 101;
    transition: all .2s;
    width: 100%;
    padding: 1.8rem 1.4rem 8rem;
    opacity: 0;
    visibility: hidden;
  }
  #gNav.open {
    opacity: 1;
    visibility: visible;
  }
  #gNav .nav li {
    border-bottom: .05rem solid #707070;
  }
  #gNav .nav li.nav_home {
    display: none;
  }
  #gNav .nav li a {
    position: relative;
    display: block;
    padding: 1.8rem 7rem 1.8rem 2rem;
    position: relative;
    font-size: 1.8rem;
  }
  #gNav .nav li a:after {
    content: "";
    background: url(../img/next.svg) no-repeat center / 100%;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: .5rem .5rem 2rem rgba(0,0,0,.16);
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }*/
  #fixed_sp,
  #navInner_fixed_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 98;
  }
  #fixed_sp a,
  #navInner_fixed_sp a {
    flex: auto;
    height: 60px;
    color: #fff;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }
  .fixed_spBtn_inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fixed_sp_tel {
    background: var(--mainColor);
  }
  .fixed_sp_tel .fixed_bottom_txt {
    font-size: 10px;
  }
  .fixed_sp_tel .fixed_txt {
    font-size: 18px;
    line-height: 1;
  }
  .fixed_sp_tel .fixed_ico img {
    width: 16px;
  }
  .fixed_sp_mail {
    background: var(--subColor);
  }
  .fixed_sp_mail .fixed_bottom_txt {
    font-size: 11px;
  }
  .fixed_sp_mail .fixed_ico img {
    width: 20px;
  }
  .fixed_sp_mail .fixed_txt {
    font-size: 14px;
  }
  .fixed_ico {
    margin-right: 6px;
  }
  .fixed_ico img {
    display: block;
  }
}
@media only screen and ( max-width : 767px ) {
  #header,
  #h_top {
    height: 6.5rem;
  }
  #h_logo {
    width: 18rem;
  }
  #h_logo img {
    width: 17rem;
  }
  /*#h_logo:after {
    content: "";
    background: url(../img/gra.jpg) no-repeat top right / auto 100% #347348;
    width:2000%;
    height: .5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: .3s;
  }*/
  /*#header.scroll #h_logo:after {
    opacity: 0;
  }*/
  #fixed_sp a,
  #navInner_fixed_sp a {
    height: 6rem;
    padding: 1rem 0;
  }
  .fixed_sp_tel .fixed_bottom_txt {
    font-size: 1rem;
  }
  .fixed_sp_tel .fixed_txt {
    font-size: 1.8rem;
  }
  .fixed_sp_tel .fixed_ico img {
    width: 1.6rem;
  }
  .fixed_sp_mail .fixed_bottom_txt {
    font-size: 1.1rem;
  }
  .fixed_sp_mail .fixed_ico img {
    width: 2rem;
  }
  .fixed_sp_mail .fixed_txt {
    font-size: 1.4rem;
  }
  .fixed_ico {
    margin-right: .6rem;
  }
}
@media print, screen and ( min-width : 768px ) {
}
@media print, screen and ( min-width : 835px ) {
  #navInner_fixed_sp {
    display: none;
  }
  #menu_btn,.overlay,
  #fixed_sp {
    display: none;
  }
  #gNav li:nth-child(2) {
    display: none;
  }
  #header {
    height: 18rem;
  }
  /*header.hidden {
    transform: translateY(-18rem) !important;
  }*/
  #h_top {
    height: 11rem;
  }
  #h_logo {
    width: 51rem;
    position: relative;
    display: flex;
    align-items: center;
  }
  /*#h_logo:after {
    content: "";
    background: url(../img/gra.jpg) no-repeat top right / auto 100% #347348;
    width:2000%;
    height: 1.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: .3s;
  }*/
  /*#header.scroll #h_logo:after {
    opacity: 0;
  }*/
  #h_logo img {
    width: 50.8rem;
  }
  .h_tel {
    width: 57rem;
    display: flex;
    align-items: center;
  }
  .h_tel_tit {
    margin-right: 2.4rem;
    width: 24.8rem;
  }
  .h_tel_tit img {
    width: 24.8rem;
  }
  .h_tel_content {
    width: 30rem;
  }
  .h_tel_top_txt {
    font-size: 1.6rem;
  }
  .h_tel_bottom_txt {
    font-size: 1.4rem;
  }
  .h_tel_num_ico {
    margin-right: .8rem;
  }
  .h_tel_num_ico img {
    width: 3.8rem;
  }
  .h_tel_num_txt {
    font-size: 3.5rem;
  }
  #h_contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 98rem;
  }
  #header .h_btn {
    width: 37.5rem;
    height: 7.5rem;
    /*font-size: 11px;*/
  }
  .h_btn_icon {
    margin-right: 1.5rem;
    width: 3.8rem;
  }
  #gNav .nav {
    display: flex;
    align-items: center;
  }
  #gNav ul {
    height: 7rem;
  }
  #gNav li {
    flex: auto;
    font-size: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #gNav li:after {
    content: "";
    width: 1px;
    height: 1em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: #000;
  }

  #gNav li:last-child:after {
    content: none;
  }
  #gNav li span img {
    width: 1.8rem;
  }
  #gNav li a {
    display: inline-flex;
    position: relative;
  }
  #gNav li a:after {
    content: "";
    position: absolute;
    background: var(--mainColor);
    height: .7rem;
    bottom: -2rem;
    left: 0;
    transition: .3s;
    width: 0;
  }
  #gNav .nav_home a:after {
    content: none;
  }
  #gNav li a:hover:after {
    width: 100%;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  background: #fff;
}
.f_content {
  font-weight: 700;
}
.f_link {
  display: flex;
  align-items: center;
  border: 2px solid #60739A;
  color: #60739A;
  width: 100%;
  font-weight: 700;
}
.f_link .f_link_inner {
  position: relative;
  letter-spacing: .06em;
}
.f_link .f_link_inner:after {
  content: "";
  background: url(../img/ico-window.svg) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.pagetop {
  cursor: pointer;
  position: fixed;
  transition: .3s;
  opacity: 0;
  box-shadow: 0 .3rem 1.5rem rgba(0,0,0,.16);
  overflow: hidden;
  z-index: 20;
}


@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 2rem 0 8rem;
  }
  .f_logo {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  .f_logo img:first-of-type {
    width: 3.2rem;
    margin-right: 1.2rem;
  }
  .f_logo img:last-of-type {
    width: 15rem;
    margin-top: .4rem;
  }
  .f_content {
    padding: 0 4rem;
    margin-bottom: 1.5rem;
  }
  .f_content p {
    font-weight: 500;
    font-size: 1.3rem;
  }
  .f_link {
    width: 25rem;
    margin: 0 auto;
    height: 4rem;
    padding: 0 1.6rem;
    font-size: 1.3rem;
  }
  .f_link .f_link_inner {
    padding-right: 5rem;
    width: 100%;
  }
  .f_link .f_link_inner:after {
    width: 1.4rem;
    height: 1.4rem;
  }
  .f_bottom {
    margin-top: 2rem;
  }
  .f_copy {
    font-size: 1rem;
    text-align: center;
  }
  .pagetop {
    width: 4.8rem;
    height: 4.8rem;
    right: 0;
    bottom: 6rem;
    border-radius: .5rem;
    border: .5px solid #70AA7A;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 4rem 0 80px;
    font-size: 2rem;
  }
  .f_left {
    width: 100rem;
  }
  .f_right {
    width: 55.4rem;
  }
  .f_copy {
    text-align: right;
    font-size: 1.6rem;
  }
  .f_logo {
    margin-right: 3rem;
  }
  .f_logo img {
    width: 8.2rem;
  }
  .f_content img {
    width: 31.4rem;
  }
  .f_content p {
    margin-top: 2rem;
  }
  .f_link {
    font-size: 2.1rem;
    height: 6.8rem;
    justify-content: center;
  }
  .f_link .f_link_inner {
    padding-right: 5rem;
  }
  .f_link .f_link_inner:after {
    width: 2.8rem;
    height: 2.8rem;
  }
  .pagetop {
    width: 48px;
    height: 48px;
    right: 0;
    bottom: 60px;
    border-radius: 5px;
    border: .5px solid #70AA7A;
  }
}
@media print, screen and ( min-width : 835px ) {
  #footer {
    padding: 4rem 0;
  }
  .pagetop {
    width: 10rem;
    height: 10rem;
    right: 5rem;
    bottom: 0;
    border-radius: 1rem;
    border: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.bg {
  background: var(--bgColor);
}
.title {
  color: var(--mainColor);
  text-align: center;
  font-weight: 700;
  letter-spacing: .1em;
}
.title span {
  line-height: 1;
}
.sec_lead_txt {
  text-align: center;
  font-weight: 500;
  line-height: 2em;
}
.grecaptcha-badge {
  z-index: 20;
}

@media only screen and ( max-width : 834px ) {
  .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .title span {
    font-size: 30px;
  }
  .sec_lead_txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
  }
  .title {
    margin-bottom: 1rem;
    font-size: 2.3rem;
  }
  .title span {
    font-size: 2.8rem;
  }
  .sec_lead_txt {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  .grecaptcha-badge {
    bottom: 11rem !important;
  }
}
@media print, screen and ( min-width : 835px ) {
  .sec {
    padding: 10rem 0;
  }
  .title {
    margin-bottom: 3rem;
    font-size: 4.8rem;
  }
  .title span {
    font-size: 10rem;
  }
  .sec_lead_txt {
    font-size: 2rem;
    margin-bottom: 6rem;
  }
  .grecaptcha-badge {
    bottom: 12rem !important;
  }
}





/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv {
  position: relative;
}
#mv_inner {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.p-fv__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#mv .img-cover {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  /*position: absolute;
  top: 0;
  left: 0;*/
}

.p-fv__mainContens {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.mv_copy_text {
  color: var(--subColor);
  font-weight: 700;
  text-shadow: 2px 2px 10px #fff ,
  -2px 2px 10px #fff ,
  2px -2px 10px #fff ,
  -2px -2px 10px #fff;
  opacity: 0;
}
.mv_point_box {
  opacity: 0;
}
.mv_point_label {
  background: rgba(183,148,53,.8);
  font-weight: 700;
  border-radius: 1rem;
  opacity: 0;
}

@media only screen and ( max-width : 834px ) {

}
@media only screen and ( max-width : 767px ) {
  #mv {
    margin-top: 6.5rem;
  }
  #mv_inner {
    padding-top: 2.5rem;
  }
  .mv_copy_text {
    font-size: 6.2vw;
    margin-bottom: 2rem;
  }
  #mv .p-fv__img {
    height: 37.5rem;
  }
  .p-fv__mainContens {
  }
  .mv_point {
    width: 44%;
  }
  .mv_point_label {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #mv {
    margin-top: 65px;
  }
  #mv:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 11rem;
    background: #71A247;
    z-index: 1;
  }
  #mv_inner {
    height: 100%;
    padding: 3rem 0;
  }
  #mv .img-cover {
    min-height: 62rem;
  }
  .p-fv__mainContens {
    z-index: 2;
  }
  #mv_inner .container,
  #mv_inner .mv_copy {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #mv .p-fv__img {
    padding-left: 24%;
    /*height: 72rem;*/
    /*max-height: 70svh;*/
  }
  #mv .p-fv__img img {
    border-radius: 8rem 0 0 0;
  }
  .mv_copy_text {
    font-size: 5.6rem;
    margin-bottom: 10rem;
  }
  .mv_point {
    width: 92.5rem;
  }
  .mv_point_label {
    padding: .5rem 1rem;
    text-align: center;
    margin-top: 4rem;
    font-size: 2.1rem;
  }
  .mv_point_label_small {
    font-size: 1.8rem;
  }
  .mv_point_label_num {
    font-size: 2.8rem;
  }
}
@media print, screen and ( min-width : 835px ) {
  #mv {
    margin-top: 18rem;
  }
}
@media print, screen and ( min-width : 2000px ) {
  #mv_inner .container {
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }
  .mv_copy_text {
    font-size: 3.1vw;
    margin-bottom: 6vw;
  }
  .mv_point {
    width: 50vw;
  }
  .mv_point_label {
    font-size: 1.2vw;
    margin-top: 2vw;
    padding: .1em 1em;
  }
  .mv_point_label_small {
    font-size: 1vw;
  }
  .mv_point_label_num {
    font-size: 1.6vw;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .mv_copy_text {
    font-size: 5.8vw;

  }
  #mv .p-fv__img {
    height: 60rem;
  }
  .mv_point {
    width: 38%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   INTRO

--------------------------------------------------------------------------------------------- */
#intro {
  position: relative;
  background: linear-gradient(to bottom,  rgba(113,162,71,1) 0%,rgba(52,115,72,1) 100%);
}

#intro h2 {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
}
#intro h2:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.accordion_wrap {
  background: #fff;
}
.accordion_wrap:last-child {
  margin-bottom: 0;
}
.accordion_header {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--mainColor);
}
.acc_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: .3s;
}
.accordion_header .acc_arrow img {
  transition: .3s;
}
.accordion_header.open .acc_arrow img {
  opacity: 0;
}
.acc_arrow img {
  display: block;
}
.accordion_content {
  position: relative;
}
.accordion_content.displayNone {
  display: none;
}

.accordion_content p {
  line-height: 1.8em;
}
.accordion_content_tit {
  font-weight: 700;
  border-bottom: 2px solid var(--mainColor);
  letter-spacing: .1em;
  padding-bottom: .4em;
}
.accordion_content_tit span {
  box-decoration-break: clone;  
  -webkit-box-decoration-break: clone;
  display: inline;
  background: linear-gradient(transparent 60%, rgba(232,133,0,.3) 60%);
}



@media only screen and ( max-width : 767px ) {
  #intro {
    padding: 1.5rem 0 4rem;
  }
  #intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  #intro h2:after {
    width: 26.8rem;
    height: 4rem;
    bottom: -1.4em;
  }
  .webp #intro h2:after {
    background: url(../img/webp/intro_balloon_sp.webp) no-repeat center / 100%;
  }
  .no-webp #intro h2:after {
    background: url(../img/intro_balloon_sp.png) no-repeat center / 100%;
  }
  .accordion_wrap {
    margin-bottom: 2rem;
    border-radius: 1.4rem;
  }
  .accordion_header {
    min-height: 7.5rem;
    font-size: 1.8rem;
    padding-left: 2rem;
    padding-right: 7rem;
  }
  .acc_arrow {
    right: 1.5rem;
  }
  .accordion_header .acc_arrow img {
    width: 5rem;
  }
  .accordion_header.open .acc_arrow {
    background: url(../img/acc_minus_sp.svg) no-repeat left center / 100%;
  }
  .accordion_content {
    padding: 1.5rem 0 1.5rem;
    width: calc(100% - 4rem);
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .accordion_content_tit {
    font-size: 1.4rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .accordion_content_tit span {
    font-size: 1.8rem;
    line-height: 1.2em;
  }
}
@media print, screen and ( min-width : 768px ) {
  #intro {
    padding: 4rem 0 16rem;
  }
  #intro:after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    z-index: 10;
    border: 4.5rem solid transparent;
    border-top: 5.5rem solid var(--mainColor);
  }
  #intro h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  #intro h2:after {
    width: 74rem;
    height: 9.6rem;
    bottom: -2em;
  }
  .webp #intro h2:after {
    background: url(../img/webp/intro_balloon.webp) no-repeat center / 100%;
  }
  .no-webp #intro h2:after {
    background: url(../img/intro_balloon.png) no-repeat center / 100%;
  }
  .accordion_wrap {
    margin-bottom: 5rem;
    border-radius: 3rem;
  }
  .accordion_header {
    min-height: 60px;
    font-size: 18px;
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .accordion_header .acc_arrow img {
    width: 18rem;
  }
  .accordion_header.open .acc_arrow {
    background: url(../img/acc_minus.svg) no-repeat left center / 100%;
  }
  .acc_arrow {
    right: 5rem;
  }
  .accordion_content {
    padding: 2.5rem 6rem 6rem;
    margin: 0 auto;
  }
  .accordion_content_tit {
    margin-bottom: 3rem;
  }
  .accordion_content_tit span {
    font-size: 18px;
  }
}
@media print, screen and ( min-width : 835px ) {
  #intro h2 {
    font-size: 3.8rem;
    margin-bottom: 5rem;
  }
  .accordion_header {
    min-height: 13rem;
    font-size: 3.2rem;
  }
  .accordion_content_tit span {
    font-size: 3.2rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   REASON

--------------------------------------------------------------------------------------------- */
#reason {
  position: relative;
}
#reason .container {
  position: relative;
  z-index: 2;
}
.reason_box {
  background: #fff;
  box-shadow: 0 .3rem 1.5rem rgba(0,0,0,.1);
}
.reason_box:last-child {
  margin-bottom: 0;
}
.reason_content_title {
  display: flex;
  align-items: flex-end;
}
.reason_title_num span {
  color: #D1E3CE;
  line-height: 1;
}
.reason_title_txt h3 {
  color: var(--mainColor);
  letter-spacing: .1em;
}
.reason_title_txt h3 span {
  display: block;
}
.reason_content p {
  line-height: 1.8em;
}
@media only screen and ( max-width : 767px ) {
  #reason {
    padding: 4rem 0;
  }
  .webp #reason {
    background: url(../img/webp/reason_bg_sp.webp) no-repeat top left / 100% #F0EFE9;
  }
  .no-webp #reason {
    background: url(../img/reason_bg_sp.jpg) no-repeat top left / 100% #F0EFE9;
  }

  #reason:after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    z-index: 10;
    border: 1.5rem solid transparent;
    border-top: 2rem solid #347348;
  } 
  .reason_box {
    padding: 2rem;
    border-radius: 1.4rem;
    margin-bottom: 3rem;
  }

  .reason_content_title {
    margin-bottom: 1rem;
  }
  .reason_title_num {
    margin-right: 1.5rem;
  }
  .reason_title_num span {
    font-size: 7.8rem;
  }
  .reason_title_txt h3 {
    font-size: 1.8rem;
    line-height: 1.39em;
    margin-bottom: .3rem;
  }
  .reason_title_txt h3 span {
    display: none;
  }
  .reason_content .reason_title_sp {
    font-size: 1.4rem;
    display: block;
    text-align: center;
    color: var(--mainColor);
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.4em;
    margin-bottom: -1rem;
  }
  .reason_box:nth-child(5) .reason_title_sp {
    margin-bottom: .3rem;
  }
  .reason_box:nth-child(5) .reason_content_title {
    align-items: flex-start;
  }
  .reason_box:nth-child(5) .reason_title_txt h3 {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .reason_img {
    width: 70%;
    margin: 2rem auto 0;
  }
  .reason_content {
    font-size: 1.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #reason {
    padding: 13rem 0 16rem;
  }
  .webp #reason {
    background: url(../img/webp/reason_bg.webp) no-repeat top left / 100% #F0EFE9;
  }
  .no-webp #reason {
    background: url(../img/reason_bg.jpg) no-repeat top left / 100% #F0EFE9;
  }
  .reason_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 8rem;
    border-radius: 3rem;
    margin-bottom: 6rem;
  }
  .reason_box:nth-child(even) {
    flex-direction: row-reverse;
  }
  .reason_content_title {
    margin-bottom: 3rem;
  }
  .reason_title_num {
    margin-right: 15px;
  }
  .reason_title_num span {
    font-size: 66px;
  }
  .reason_title_txt h3 {
    font-size: 16px;
    line-height: 1.3125em;
    margin-bottom: .3rem;
  }
  .reason_title_txt h3 span {
    font-size: 12px;
    margin-bottom: 1.5rem;
  }
  .reason_img {
    width: 42.6rem;
  }
  .reason_content {
    width: calc(100% - (42.6rem + 5rem));
  }
  .reason_title_sp {
    display: none;
  }
}
@media print, screen and ( min-width : 835px ) {
  .reason_title_num {
    margin-right: 2.5rem;
  }
  .reason_title_num span {
    font-size: 15rem;
  }
  .reason_title_txt h3 {
    font-size: 3.2rem;
  }
  .reason_title_txt h3 span {
    font-size: 2.4rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   SERVICE

--------------------------------------------------------------------------------------------- */
#service .container {
  position: relative;
  z-index: 2;
}
.service_bg_img {
  position: absolute;
  z-index: 1;
  left: 0;
}
/* タブの表示・非表示 */

[data-tab-content]{
  display: none;
}

[data-tab-content].active{
  display: block;
}
/* 表示のアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tabs__content.active {
    animation: fadeIn 0.7s ease 0s 1 normal;
}

.tabs__item {
  display: flex;
  align-items: center;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--mainColor);
  border-radius: 10rem;
  background: var(--bgColor);
  color: var(--mainColor);
}
.tabs__item.active {
  color: #fff;
  background: var(--mainColor);
}
.tabs__item_inner {
  width: 100%;
  text-align: center;
}


.tabs__content {
  border: 2px solid var(--mainColor);
  position: relative;
  z-index: 2;
}

.dl_list dt,
.dl_list dd{
  line-height: 2em;
}
.dl_list dt {
  font-weight: 700;
  position: relative;
  color: var(--mainColor);
}
.dl_list dt:before {
  content: "";
  background: url(../img/ico-check.svg) no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.dl_list dd {
  font-weight: 500;
}
.dl_list dd:last-of-type {
  margin-bottom: 0;
}

@media only screen and ( max-width : 767px ) {
  #service {
    padding: 3rem 0 4rem;
  }
  .service_bg_img {
    top: -4rem;
    width: 34%;
  }
  #service .title img {
    width: 42.67%;
  }
  .tabs__nav {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 4rem;
  }
  .tabs__item {
    flex: 1;
    height: 4rem;
    margin-bottom: 1rem;
  }
  .tabs__item_inner {
    font-size: 1.4rem;
  }
  #service .accordion_wrap {
    margin-bottom: 2rem;
  }
  #service .accordion_wrap:last-child {
    margin-bottom: 0;
  }
  #service .accordion_header {
    color: var(--mainColor);
    min-height: 4.4rem;
    border-radius: 4.4rem;
    border: 1px solid var(--mainColor);
    position: relative;
    justify-content: center;
    font-size: 1.6rem;
    padding: 0;
    background: var(--mainColor);
    color: #fff;
  }
  #service .accordion_header.open {
  }
  #service .accordion_header.open:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;transform: translateX(-50%);
    border: 1rem solid transparent;
    border-top: 1rem solid var(--mainColor);
  }
  #service .accordion_content {
    border-radius: 1.4rem;
    padding: 2.5rem 2rem;
    border: 1px solid var(--mainColor);
    width: 100%;
    margin-top: 1.5rem;
  }
  .dl_list dt {
    font-size: 1.8rem;
    padding-left: 2.2rem;
  }
  .dl_list dt:before {
    width: 1.4rem;
    height: 1.3rem;
  }
  .dl_list dd {
    margin-bottom: 1.5rem;
  }
  .service_content {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #service {
    padding: 12.6rem 0 16rem;
  }
  .service_bg_img {
    top: -20rem;
    width: 60rem;
  }
  .tabs__nav {
    margin-bottom: 6rem;
  }
  .tabs__item {
    width: 32%;
    height: 10rem;
    /*transition: .3s;*/
  }
  .tabs__item:hover {
    background: var(--mainColor);
    color: #fff;
  }
  .tabs__content {
    border-radius: 3rem;
    padding: 5rem 7rem;
  }
  .tabs__content.active:before {
    background: url(../img/fukidashi.png) no-repeat center / 100%;
    content: "";
    width: 6rem;
    height: 4.8rem;
    position: absolute;
    top: -4.8rem;
  }
  .tabs__content.active:nth-child(1):before {
    left: 21rem;
  }
  .tabs__content.active:nth-child(2):before {
    left: 50%;
    transform: translateX(-50%);
  }
  .tabs__content.active:nth-child(3):before {
    right: 21rem;
  }
  .dl_list dt {
    font-size: 18px;
    padding-left: 25px;
  }
  .dl_list dt:before {
    width: 16px;
    height: 15px;
  }
  .dl_list dd {
    margin-bottom: 4rem;
  }
  .service_content_sp {
    display: none;
  }
}

@media print, screen and ( min-width : 835px ) {
  .dl_list dt {
    font-size: 3.2rem;
    padding-left: 4.6rem;
  }
  .dl_list dt:before {
    width: 2.5rem;
    height: 2.3rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   VOICE

--------------------------------------------------------------------------------------------- */

.swiper {
  position: relative;
}
.voice_box {
  padding: 1.5rem 0;
}
.voice_box .swiper-slide__box {
  background: #fff;
  box-shadow: 0 0 1.5rem  rgba(0,0,0,.1);
}
.voice_slider .swiper-slide {
    height: auto;
}
.voice_slider .swiper-slide__box {
    height: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  display: block;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev {
  background: url(../img/prev.svg) no-repeat center / 100%;
  left: 0;
}
.swiper-button-next {
  background: url(../img/next.svg) no-repeat center / 100%;
  right: 0;
}
.voice_item span {
  color: var(--mainColor);
  font-weight: 700;
}
.voice_star {
  line-height: 1.3;
}
.voice_star span {
  color: var(--subColor);
  line-height: 1.3;
}
.customer_message_txt {
  line-height: 1.8em;
}
.voice_star_wrapper:last-child {
  margin-bottom: 0;
}
@media only screen and ( max-width : 767px ) {
  #voice {
    padding: 2rem 0 4rem;
  }
  .webp #voice {
    background: url(../img/webp/voice_bg_sp.webp) no-repeat top center / cover;
  }
  .no-webp #voice {
    background: url(../img/voice_bg_sp.jpg) no-repeat top center / cover;
  }
  #voice .sec_lead_txt {
    margin-bottom: 1rem;
  }
  .voice_slider {
    padding: 0 2rem;
    overflow: visible;
  }
  .voice_box .swiper-slide__box {
    border-radius: 1.2rem;
    padding: 1.5rem 2rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 3rem;
    height: 3rem;
  }
  .voice_slider .swiper-slide__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .voice_slider .message_img {
    width: 40%;
  }
  .voice_slider .voice_rating {
    width: 58%;
  }
  .voice_slider .customer_message {
    width: 100%;
  }
  .voice_item {
    font-size: 1rem;
  }
  .voice_star {
    font-size: 1.2rem;
  }
  .customer_message {
    font-size: .9rem;
  }
  .customer_message .customer_message_txt {
    font-size: 1.1rem;
  }
  .voice_star_wrapper {
    margin-bottom: .5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #voice {
    padding: 11rem 0 16rem;
  }
  .webp #voice {
    background: url(../img/webp/voice_bg.webp) no-repeat top center / cover;
  }
  .no-webp #voice {
    background: url(../img/voice_bg.jpg) no-repeat top center / cover;
  }
  .voice_slider {
    padding: 0 4rem;
  }
  .voice_box .swiper-slide__box {
    border-radius: 3rem;
    padding: 3.8rem 4rem 3rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 6rem;
    height: 6rem;
  }
  .voice_rating {
    margin-top: 1.5rem;
  }
  .voice_item {
    font-size: 11px;
  }
  .voice_star {
    font-size: 13px;
  }
  .customer_message {
    font-size: 11px;
    margin-top: 10px;
  }
  .customer_message .customer_message_txt {
    margin-bottom: 1rem;
    min-height: 5.4em;
  }
  .voice_star_wrapper {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and ( min-width : 835px ) {
  .voice_item {
    font-size: 2rem;
  }
  .voice_star {
    font-size: 3rem;
  }
  .customer_message {
    font-size: 2rem;
    margin-top: 2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FLOW

--------------------------------------------------------------------------------------------- */
#flow {
  position: relative;
}
.flow_list_box {
  position: relative;
}
.flow_list_box:after {
  content: "";
  position: absolute;
}
.webp .flow_list_box:after {
  background: url(../img/webp/step_arrow.webp) no-repeat center / 100%;
}
.no-webp .flow_list_box:after {
  background: url(../img/step_arrow.png) no-repeat center / 100%;
}
.flow_list_box:last-of-type:after {
  content: none;
}
.flow_list_box .flow_list_txt {
  color: var(--mainColor);
  text-align: center;
  font-weight: 700;
  margin-top: .6em;
}
.step_num_box {
  position: absolute;
}
.step_num_box span {
  display: block;
  text-align: center;
  color: var(--mainColor);
  line-height: 1;
}
.step_num_box .step_num_txt {
  font-weight: 700;
}
.step_num_box .step_num {
  font-weight: 500;
}
.step_box .step_img {
  text-align: center;
}
.step_box h3 {
  color: var(--mainColor);
  font-weight: 700;
  text-align: center;
}
.step_box p {
  line-height: 1.8em;
  font-weight: 500;
}

@media only screen and ( max-width : 767px ) {
  #flow {
    padding: 4.4rem 0 2rem;
  }
  .flow_list_box {
    width: 30%;
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  .flow_list_box:nth-child(-n+3) {
    margin-top: 0;
  }
  .flow_list_box:after {
    width: 1.2rem;
    height: 1.8rem;
    top: 36%;
    right: -1.3rem;
  }
  .flow_list_box:nth-child(3):after {
    content: none;
  }
  .step_wrapper {
    border-radius: 1.4rem;
    margin-top: 3rem;
    border: 1px solid var(--mainColor);
    padding: 0 2rem;
  }
  .step_wrapper .swiper-wrapper {
    display: block;
  }
  .step_box {
    border-bottom: 1px solid var(--mainColor);
    padding: 2rem 0 2.5rem;
  }
  .step_box:last-child {
    border-bottom: none;
  }
  .step_num_box {
    top: 2rem;
    left: 0;
    font-size: 1.3rem;
  }
  .step_num_box .step_num {
    font-size: 5.5rem;
  }
  .step_box .step_img {
    margin: 1rem 0 2rem;
  }
  .step_box .step_img img {
    width: 10.4rem;
  }
  .step_box h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
  .step_box p {
    font-size: 1.4rem;
  }
  .step_wrapper .swiper-button-prev,
  .step_wrapper .swiper-button-next,
  .step_wrapper .swiper-pagination {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #flow {
    padding: 11rem 0 6.4rem;
    overflow: hidden;
  }
  .flow_list_box {
    flex: 1;
    padding: 0 3.4rem;
    font-size: 11px;
  }
  .flow_list_box:after {
    width: 3rem;
    height: 4.6rem;
    top: 36%;
    right: -1.2rem;
  }
  .step_wrapper {
    margin-top: 5rem;
    overflow: visible;
  }
  .step_box {
    border-top: 2px solid var(--mainColor);
    border-bottom: 2px solid var(--mainColor);
    padding: 3rem 6rem 6rem 6rem;
    position: relative;
  }
  .step_box:after {
    content: "";
    width: 2px;
    height: 90%;
    top: 5%;
    background: var(--mainColor);
    position: absolute;
    right: -1px;
  }
  .step_box:first-of-type {
    border-left: 2px solid var(--mainColor);
    border-radius: 3rem 0 0 3rem;
  }
  .step_box:last-of-type {
    border-right: 2px solid var(--mainColor);
    border-radius: 0 3rem 3rem 0;
  }
  .step_box:last-of-type:after {
    content: none;
  }
  .step_wrapper .swiper-slide {
      height: auto;
  }
  .step_wrapper .swiper-slide__box {
      height: 100%;
  }
  .step_num_box {
    top: 5rem;
    left: 6rem;
  }
  .step_num_box .step_num {
    font-size: 10rem;
  }
  .step_box .step_img {
    margin: 4rem 0 3rem;
  }
  .step_box .step_img img {
    width: 17.8rem;
  }
  .step_box h3 {
    font-size: 18px;
    margin-top: 10px;
  }
  .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8rem;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: var(--mainColor);
    margin: 0 1.8rem;
    position: relative;
    cursor: pointer;
  }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    content: "";
    width: 4.4rem;
    height: 4.4rem;
    border: 3px solid var(--mainColor);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
  }
}
@media print, screen and ( min-width : 835px ) {
  .flow_list_box {
    font-size: 2.4rem;
  }
  .step_box h3 {
    font-size: 3.2rem;
    margin-top: 2rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   CTA

--------------------------------------------------------------------------------------------- */
.contact {
  position: relative;
}

.contact:after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  z-index: 10;
}
.contact h2,
.contact .sec_lead_txt {
  color: #fff;
}
.contact .contact_content {
  background: #fff;
}
.contact_content h3 {
  text-align: center;
  color: var(--subColor);
  letter-spacing: .15em;
}
.contact_content .h_tel_content a {
  border: 2px solid var(--mainColor);
  border-radius: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact_content .h_tel_content .h_tel_num_txt {
  font-weight: 700;
  color: var(--mainColor);
}
.contact_sup_txt {
  text-align: center;
}

.contact_content .h_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  font-weight: 700;
  color: #fff;
  background: #CC7909;
  border-radius: 8rem;
}
@media only screen and ( max-width : 767px ) {
  .contact {
    padding: 4rem 0;
  }
  .webp .contact {
    background: url(../img/webp/cta_bg_sp.webp) no-repeat center / cover;
  }
  .no-webp .contact {
    background: url(../img/cta_bg_sp.jpg) no-repeat center / cover;
  }
  .contact:after {
    border: 1.5rem solid transparent;
    border-top: 2rem solid #fff;
  }
  .contact_content {
    margin-top: 2.4rem;
  }
  .contact .contact_content {
    border-radius: 1.4rem;
    padding: 1rem 2rem 1.5rem;
    margin-top: 0;
  }
  .contact_content h3 {
    margin-bottom: .5rem;
    font-size: 1.3rem;
  }
  .contact_content .h_tel_content,
  .contact_content .h_btn {
    margin-bottom: 1rem;
  }
  .contact_content .h_tel_content a,
  .contact_content .h_btn a {
    height: 6.5rem;
  }
  .contact_content .h_tel_top_txt {
    font-size: 1.3rem;
  }
  .contact_content .h_tel_num .h_tel_num_ico {
    margin-right: .5rem;
  }
  .contact_content .h_tel_num .h_tel_num_ico img {
    width: 2rem;
  }
  .contact_content .h_tel_num .h_tel_num_txt {
    font-size: 2rem;
  }
  .contact_content .h_tel_bottom_txt {
    font-size: 1rem;
  }
  .contact_content .h_btn {
    font-size: 1.4rem;
  }
  .contact_content .h_btn_icon {
    margin-right: .5rem;
  }
  .contact_content .h_btn_icon img {
    width: 2.2rem;
  }
  .contact_sup_txt {
    font-size: 1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .contact {
    padding: 8rem 0 7.5rem;
  }
  .webp .contact {
    background: url(../img/webp/cta_bg.webp) no-repeat center / cover;
  }
  .no-webp .contact {
    background: url(../img/cta_bg.jpg) no-repeat center / cover;
  }
  .contact:after {
    border: 4.5rem solid transparent;
    border-top: 5.5rem solid #fff;
  }
  .contact_content {
    max-width: 100%;
    margin: 20px auto 0;
  }
  .contact .contact_content {
    border-radius: 3rem;
    padding: 3.4rem 8rem 2rem;
    margin: 0 auto;
  }
  .contact_content h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact_content .h_tel_content,
  .contact_content .h_btn {
    width: 48%;
  }
  .contact_content .h_tel_content a,
  .contact_content .h_btn a {
    height: 80px;
    font-size: 18px;
    border-radius: 80px;
  }
  .contact_sup_txt {
    font-size: 12px;
    margin-top: 10px;
  }
  .contact .h_tel_num_txt,
  .contact_content .h_tel_num_txt {
    font-size: 30px;
  }
  .contact .h_tel_top_txt,
  .contact_content .h_tel_top_txt {
    font-size: 12px;
  }
  .contact .h_tel_bottom_txt,
  .contact_content .h_tel_bottom_txt {
    font-size: 11px;
  }
  .contact .h_tel_num_ico img,
  .contact_content .h_tel_num_ico img {
    width: 20px;
  }
  .contact .h_btn_icon,
  .contact_content .h_btn_icon {
    width: 20px;
  }
}

@media print, screen and ( min-width : 835px ) {
  .contact_content {
    max-width: 110rem;
    margin: 4rem auto 0;
  }
  .contact_sup_txt {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .contact_content .h_tel_content a,
  .contact_content .h_btn a {
    height: 11rem;
    font-size: 2.4rem;
  }
  .contact .h_tel_num_txt,
  .contact_content .h_tel_num_txt {
    font-size: 4.5rem;
  }
  .contact .h_tel_top_txt,
  .contact_content .h_tel_top_txt {
    font-size: 1.8rem;
  }
  .contact .h_tel_bottom_txt,
  .contact_content .h_tel_bottom_txt {
    font-size: 1.4rem;
  }
  .contact .h_tel_num_ico img,
  .contact_content .h_tel_num_ico img {
    width: 3.8rem;
  }
  .contact .h_btn_icon,
  .contact_content .h_btn_icon {
    width: 3.8rem;
  }
  .contact_content h3 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   PRICE

--------------------------------------------------------------------------------------------- */

#price .accordion_wrap {
  border: 2px solid var(--mainColor);
}
.price_table_box table {
  width: 100%;
}
.price_table_box th,
.price_table_box td {
  vertical-align: middle;
  text-align: center;
}
.price_table_box thead th {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}
.price_table_box01 thead th {
  background: var(--mainColor);
}
.price_table_box02 thead th {
  background: #70AA7A;
}
.price_table_box tbody th {
  background: #F5F5F5;
}
.price_table_box tbody th,
.price_table_box tbody td {
  border-bottom: 1px solid #707070;
  font-weight: 500;
}
.kome_list li {
  position: relative;
  padding-left: 1.2em;
}
.kome_list li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.price_ex {
  border-top: .2rem solid var(--mainColor);
}
.price_ex_title {
  font-weight: 500;
}
.price_ex_title h3 {
  color: #fff;
  background: var(--mainColor);
  text-align: center;
  font-weight: 700;
}
.price_formula li img {
  width: 100%;
}
@media only screen and ( max-width : 767px ) {
  #price {
    padding: 3.5rem 0 4.8rem;
  }
  .webp #price {
    background: url(../img/webp/price_bg_sp.webp) no-repeat center top / 100% var(--bgColor);
  }
  .no-webp #price {
    background: url(../img/price_bg_sp.jpg) no-repeat center top / 100% var(--bgColor);
  }
  #price .accordion_wrap {
    margin-top: 2rem;
  }
  #price .accordion_content {
    padding-bottom: 3.5rem;
  }
  .price_ex_content_pc {
    display: none;
  }

  .price_table_box01 {
    margin-bottom: 3rem;
  }
  .price_table_box th,
  .price_table_box td {
    padding: 1rem;
    font-size: 1.3rem;
  }
  .price_table_box thead tr:first-of-type th {
    font-size: 1.8rem;
    padding: .5rem;
  }
  .price_table_box p {
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.5em;
  }
  .kome_list {
    margin-top: 1.5rem;
  }
  .kome_list li {
    font-size: 1rem;
  }
  .price_ex {
    margin-top: 2rem;
    padding: 2rem 0 0;
    font-size: 1.3rem;
  }
  .price_ex_title {
    margin-bottom: 1.5rem;
  }
  .price_ex_title h3 {
    font-size: 1.2rem;
    width: 10rem;
    padding: .5rem;
    margin-bottom: 1rem;
  }
  .price_ex_title p {
    line-height: 1.5em;
  }
  .price_ex_box {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .price_ex_box:last-child {
    margin-bottom: 0;
  }
  .price_ex_list_tit {
    font-size: 1.4rem;
    color: var(--mainColor);
    font-weight: 700;
  }
  .price_ex_list_tit span {
    font-size: 1rem;
    margin-left: 1em;
  }
}
@media print, screen and ( min-width : 768px ) {
  #price {
    padding: 11rem 0 21rem;
  }
  .webp #price {
    background: url(../img/webp/price_bg.webp) no-repeat center top / 100% var(--bgColor);
  }
  .no-webp #price {
    background: url(../img/price_bg.jpg) no-repeat center top / 100% var(--bgColor);
  }
  #price .accordion_wrap {
    margin-top: 5.5rem;
  }
  .price_ex_content_sp {
    display: none;
  }
  .price_table_wrapper {
    padding: 0 1.4rem;
  }
  .price_table_wrapper .price_table_box {
    width: 48%;
  }
  .price_table_box th,
  .price_table_box td {
    padding: 10px;
  }
  .price_table_box thead tr:first-of-type th {
    font-size: 14px;
    padding: 10px;
  }
  .price_table_box p {
    font-size: 12px;
    margin-top: 10px;
  }
  .kome_list {
    margin-top: 3rem;
    padding: 0 1.4rem;
  }
  .kome_list li {
    font-size: 12px;
  }
  .price_ex {
    margin-top: 4rem;
    padding: 4rem 1.4rem 0;
  }
  .price_ex_content_pc img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .price_ex_title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .price_ex_title h3 {
    font-size: 14px;
    width: 18.8rem;
    padding: 1rem;
    margin-right: 1.8rem;
  }
  .price_ex_title .price_ex_txt {
    width: calc(100% - (1.8rem + 18.8rem));
  }
  .price_ex_title .price_ex_txt span {
    font-size: 12px;
    margin-left: 1em;
  }
  .price_formula {
    display: flex;
    align-items: center;
  }
  .price_formula li {
    flex: auto;
  }
}
@media print, screen and ( min-width : 835px ) {
  .price_table_box p {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .price_ex_content_pc img {
    width: 105.5rem;
  }
  .kome_list li {
    font-size: 1.6rem;
  }
  .price_table_box th,
  .price_table_box td {
    padding: 2rem 1rem;
  }
  .price_table_box thead tr:first-of-type th {
    font-size: 3.2rem;
    padding: 1rem;
  }
  .price_ex_title {
    margin-bottom: 2rem;
  }
  .price_ex_title h3 {
    font-size: 1.8rem;
  }
  .price_ex_title .price_ex_txt span {
    font-size: 1.8rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMPANY

--------------------------------------------------------------------------------------------- */
.company_top_ph img {
  display: block;
  width: 100%;
}
.company_outline {
  position: relative;
}
.company_outline dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  border-top: 1px solid #707070;
}
.company_outline dt,
.company_outline dd {
  border-bottom: 1px solid #707070;
}
.company_outline dt {
  background: #F5F5F5;
  display: flex;
  align-items: center;
}
.company_map iframe {
  display: block;
  width: 100%;
}
.company_map p {
  font-weight: 700;
  text-align: center;
  color: var(--mainColor);
  letter-spacing: .1em;
}
@media only screen and ( max-width : 767px ) {
  #company .sec_lead_txt {
    margin-bottom: 2rem;
  }
  .company_inner {
    padding: 2.8rem 0 1.5rem;
  }
  .company_ph_pc {
    display: none;
  }
  .company_ph_sp {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .company_ph_sp img {
    width: 15rem;
  }
  .company_outline {
    margin-bottom: 1.5rem;
  }
  .company_outline dt,
  .company_outline dd {
    padding: .6rem 1.2rem;
    font-size: 1.3rem;
  }
  .company_outline dt {
    width: 9rem;
  }
  .company_outline dd {
    width: calc(100% - 9rem);
  }
  .company_map iframe {
    height: 24.4rem;
    margin-bottom: 1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .company_inner {
    padding: 7rem 0 12rem;
  }
  .company_ph_sp {
    display: none;
  }
  .company_outline {
    max-width: 133.8rem;
    margin: 0 auto 8.5rem;
  }
  .company_outline dt,
  .company_outline dd {
    padding: 10px 20px;
    font-size: 14px;
  }
  .company_outline dt {
    width: 130px;
  }
  .company_outline dd {
    width: calc(100% - 130px);
  }
  .company_ph_pc {
    position: absolute;
    top: 1rem;
    right: 0;
    z-index: 2;
  }
  .company_ph_pc img {
    width: 33rem;
  }
  .company_map {
    max-width: 133.8rem;
    margin: 0 auto;
  }
  .company_map iframe {
    height: 43.5rem;
    margin-bottom: 3rem;
  }
}

@media print, screen and ( min-width : 835px ) {
  .company_outline dt,
  .company_outline dd {
    font-size: 2rem;
    padding: 2rem 5rem;
  }
  .company_outline dt {
    width: 23rem;
  }
  .company_outline dd {
    width: calc(100% - 23rem);
  }
}

/* ---------------------------------------------------------------------------------------------

　   ENTRY

--------------------------------------------------------------------------------------------- */
.grecaptcha-badge { visibility: hidden; }
.google_recaptcha a {
  text-decoration: underline;
}
#consultation .contact_content {
  background: none;
  padding: 0;
}
#consultation .contact_content .h_tel_content a {
  background: #fff;
}
#consultation .contact_sup_txt {
 color: #fff; 
}
.contact_wrapper {
 background: #fff;
 position: relative;
 z-index: 2;
 box-shadow: 0 .3rem 1.5rem rgba(0,0,0,.1);
}
.contact_wrapper:before {
  content: "";
  position: absolute;
  z-index: 3;
  background: url(../img/clip.png) no-repeat center / 100%;
}

input,textarea {
    border-radius:0;
    line-height: 1em;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="number"] {
  height: 6rem;
  padding:0 1.5rem;
}
input[type="text"],textarea,input[type="tel"],input[type="email"],input[type="number"]{
  border: none;
  margin:0;
  display: block;
  background: #F5F5F5;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
  width: 100%;
}
input.short_input {
  width: 46rem;
  display: inline-block;
}
textarea {
  padding:2rem;
  width: 100%;
  display: block;
  resize: vertical;
  line-height: 1.8em;
}
button {
  -webkit-appearance: none;
  border:none;
  display: block;
  text-align: center;
  background: none;
  font-size: inherit;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  width: 32rem;
}
button:hover {
  opacity: .8;
}
.contact_form__block button {
  margin: 0;
}

label input[type="radio"] + span {
  position: relative;
  padding: 0 .8rem .5rem 1.4em;
}
label {
  position: relative;
  display: inline-block;
  word-break: break-all;
}
.radio_list label {
  display: block;
}
label span {
  display: inline-block;
}

label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2rem;
}
label input[type="radio"] + span::before {
  z-index: 0;
  top: .3em;
  left: 0;
  background-color: transparent;
  width: 1em;
  height: 1em;
  border: 1px #000 solid;
  background: #fff;
}
label input[type="radio"]:checked + span::before {
  border: .6rem var(--mainColor) solid;
}

input[type="checkbox"] { display: none; }
input[type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding-left: 1.6em;
  margin-right: 1.5em;
  display: inline-block;
  margin-bottom: .5em;
}

input[type="checkbox"] + label span:before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  background: #fff;
  position: absolute;
  left: 0;
  top: .3em;
  -webkit-transition: all .12s, border-color .05s;
  transition: all .12s, border-color .05s;
}
input[type="checkbox"]:checked + label span:before {
  width: .5em;
  top: 0;
  left: 0px;
  border-radius: 0;
  opacity: 1;
  border: 2px solid var(--mainColor);
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: none;
}
input[type="checkbox"]:checked + label span {
  color: var(--mainColor);
}
::placeholder {
  color: #707070;
}

.required {
  display: inline-flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: var(--mainColor);
}
.confirm_text {
  text-align: center;
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 2.4rem;
}
.form_dl.d-flex dt,
.form_dl.d-flex dd {
  margin-bottom: 0;
  border-bottom: 1px dashed #707070;
  line-height: 1.8em;
  font-weight: 500;
}
.send_btn {
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11rem;
}
.send_btn {
  background: var(--subColor);
}
.send_btn:disabled {
  cursor: no-drop;
}
.send_btn:disabled,
.back_btn {
  background: var(--bgColor);
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  border-radius: 11rem;
  font-weight: 700;
}
.send_btn:disabled:hover {
  opacity: 1;
}

.thanks__block p {
  text-align: center;
  line-height: 2em;
  font-weight: 500;
}


.top_back_btn {
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11rem;
  background: var(--subColor);
  margin: 0 auto;
}

.error_messe {
  color: #dd3737;
}
.consultation_content {
  position: relative;
}
.consultation_content .title span {
  background: linear-gradient(transparent 60%, rgba(232,133,0,.3) 60%);
  color: #000;
}
.thanks_page .consultation_content .title span {
  background: none;
}
.form_agree {
  font-weight: 500;
}
.form_agree_content {
  border: 1px solid #707070;
  overflow: auto;
}
.form_agree .checkbox_list {
  color: rgba(0,0,0,.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form_attention {
  font-weight: 500;
}
.form_attention .form_attention_tit {
  color: var(--subColor);
}
.form_attention p {
  line-height: 1.8em;
}
#consultation.thanks_page .contact:after {
  content: none;
}
.confirm__block .form_dl dt:last-of-type,
.confirm__block .form_dl dd:last-of-type {
  display: none;
}
.consultation_tit_top_txt {
  color: var(--subColor);
  text-align: center;
  font-weight: 700;
  letter-spacing: .1em;
}
.search_btn {
  letter-spacing: .06em;
  color: var(--mainColor);
  border: 2px solid var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.search_btn:hover {
  background: var(--mainColor);
  color: #fff;
}
.form_agree_content p {
  margin-bottom: 1em;
}
.form_agree_content .pp_title {
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: .3em;
}
.decimal li {
  margin-left: 1.2em;
  list-style: decimal;
}
.pp_indent {
  padding-left: 1em;
}
@media only screen and ( max-width : 767px ) {
  #consultation {
    padding-bottom: 3rem;
  }
  #consultation .contact {
    padding-bottom: 4rem;
  }
  .consultation_content {
    margin-top: -4.2rem;
    padding-top: 1.8rem;
  }
  .contact_wrapper {
    border-radius: 1.4rem;
    padding: 2rem;
  }
  .contact_wrapper:before {
    width: 2rem;
    height: 6.7rem;
    top: -1.8rem;
    left: 2.5rem;
  }
  .consultation_tit_top_txt {
    font-size: 1.3rem;
  }
  .contact_wrapper .sec_lead_txt {
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .consultation_content .title span {
    font-size: 2.1rem;
  }
  #consultation.thanks_page {
    margin-top: 6.5rem;
    font-size: 1.3rem;
  }
  .form_dl {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  .form_dl dt {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
  }
  .form_dl dd {
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: .5px solid #707070;
  }
  .form_dl dd .required {
    display: none;
  }
  .required {
    font-size: 1rem;
    padding: .2em .5em;
    margin-left: 1em;
  }
  .form_dl.d-flex {
    margin-bottom: 3rem;
  }
  .form_dl.d-flex dt,
  .form_dl.d-flex dd {
    padding: 3rem 0;
    font-size: 1.4rem;
  }
  .form_dl.d-flex dt {
    width: 12rem;
    padding-right: 1.5rem;
    line-height: 1.4em;
  }
  .form_dl.d-flex dd {
    width: calc(100% - 12rem);
  }
  .back_btn,
  .send_btn {
    width: 100%;
  }
  .confirm__block .back_btn {
    /*margin-right: 4%;*/
    margin-bottom: 1.5rem;
  }

  input[type="text"],input[type="tel"],input[type="email"],input[type="number"] {
    height: 3rem;
    padding: 0 1rem;
  }
  textarea {
    height: 19rem;
    padding: 1rem;
  }
  label input[type="radio"] + span {
    padding: 0 .8rem .5rem 1.8rem;
  }
  label input[type="radio"] + span::before {
    top: .4rem;
    width: 1.4rem;
    height: 1.4rem;
  }
  
  .reservation_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }
  .reservation_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }
  
  .confirm_text {
    padding-bottom: 2rem;
    font-size: 1.7rem;
  }
  .thanks_check {
    margin-bottom: 2rem;
  }
  .confirm__block {
    /*background: #fff;
    padding: 3rem 1.5rem 2rem;*/
  }
  .add_block {
    margin-bottom: 1rem;
  }
  .add_block:last-child {
    margin-bottom: 0;
  }
  .add_input {
    justify-content: space-between;
  }
  .add_input #searchBox {
    width: 100%;
  }
  .add_input .search_btn {
    width: 44%;
    border: 1px solid var(--mainColor);
    height: 2.8rem;
    font-size: 1.3rem;
    margin-top: 1rem;
  }
  div.error {
    font-size: 1.2rem !important;
  }
  .form_agree {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
  .form_agree .form_agree_tit {
    font-size: 1.1rem;
    margin-bottom: .5rem;
  }
  .form_agree_content {
    height: 10rem;
    padding: .6rem;
    margin-bottom: 1rem;
  }
  .form_agree .checkbox_list {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .back_btn,
  .send_btn {
    height: 6.5rem;
    width: 100%;
    font-size: 1.4rem;
  }
  .top_back_btn {
    height: 6.5rem;
    width: 100%;
    font-size: 1.4rem;
    margin-top: 3rem;
  }
  .form_attention {
    margin-top: 2rem;
    font-size: 1rem;
  }
  .form_attention .form_attention_tit {
    font-size: 1.3rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .consultation_tit_top_txt {
    font-size: 3.2rem;
  }
  #consultation {
    padding-bottom: 13rem;
  }
  #consultation .contact {
    padding-bottom: 22rem;
  }
  .consultation_content {
    margin-top: -22rem;
    padding-top: 6rem;
  }
  .contact_wrapper {
    border-radius: 3rem;
    padding: 10rem 8rem 8rem;
  }
  .contact_wrapper:before {
    width: 6.7rem;
    height: 22.3rem;
    top: -6rem;
    left: 17rem;
  }
  .consultation_content .title span {
    font-size: 4.8rem;
    padding: 0 7rem;
  }
  #consultation.thanks_page {
    margin-top: 18rem;
  }
  #consultation .title img {
    width: 50.6rem;
  }
  .contact_form__inner {
    font-size: 14px;
  }
  .form_dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .form_dl dt,
  .form_dl dd {
    border-bottom: 1px solid #707070;
    padding: 2rem 0;
    font-size: 13px;
  }
  .form_dl dt {
    font-size: 14px;
    width: 160px;
    padding-left: 15px;
    padding-right: 10px;
  }
  .form_dl dd {
    width: calc(100% - 160px);
    display: flex;
  }
  .form_dl dt .required {
    display: none;
  }
  dd .required {
    width: 40px;
    height: 22px;
    font-size: 11px;
    margin-right: 10px;
  }
  .form_input {
    width: calc(100% - 50px);
  }
  textarea {
    height: 20rem;
  }
  .form_dl.d-flex {
    margin-bottom: 6rem;
  }
  .form_dl.d-flex dt,
  .form_dl.d-flex dd {
    padding: 3rem;
  }
  .form_dl.d-flex dt {
    text-align: right;
    width: 22rem;
  }
  .form_dl.d-flex dd {
    width: calc(100% - 22rem);
  }
  .confirm__block .back_btn {
    margin-right: 3rem;
  }
  .thanks__block p {
    margin-bottom: 6rem;
  }
  
  .contact_lead_text__block p {
  }
  .reservation_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }
  .reservation_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }
  
  .confirm_text {
    padding-bottom: 3rem;
  }
  .form_dl dd.add_dd {
    flex-direction: column;
    align-items: flex-start;
  }
  .add_block {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
  }
  .add_block:last-of-type {
    margin-bottom: 0;
  }
  .add_item {
    width: 70px;
  }
  .add_input {
    width: calc(100% - 70px);
  }
  .form_agree {
    width: 80%;
    margin: 0 auto 20px;
    font-size: 13px;
  }
  .form_agree .form_agree_tit {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .form_agree_content {
    padding: 10px;
    height: 120px;
    margin-bottom: 20px;
  }
  .form_agree .checkbox_list {
    font-size: 14px;
  }
  .back_btn,
  .send_btn {
    height: 60px;
    width: 260px;
    font-size:16px;
  }
  .top_back_btn {
    height: 60px;
    width: 260px;
    font-size:16px;
  }
  .form_attention {
    margin-top: 20px;
    font-size: 11px;
  }
  .form_attention .form_attention_tit {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact_form__block .search_btn {
    width: 140px;
    height: 26px;
    margin: 0 5px;
    font-size: 12px;
  }
}
@media print, screen and ( min-width : 835px ) {
  .form_dl {
    margin-bottom: 3rem;
  }
  .form_dl dt,
  .form_dl dd {
    padding: 2rem 0;
    font-size: 1.8rem;
  }
  .form_dl dt {
    font-size: 2.4rem;
    width: 39.5rem;
    padding-left: 5rem;
    padding-right: 2rem;
  }
  .form_dl dd {
    width: calc(100% - 39.5rem);
  }
  dd .required {
    width: 8.2rem;
    height: 4.3rem;
    font-size: 1.8rem;
    margin-right: 2rem;
  }
  .form_input {
    width: calc(100% - (8.2rem + 2rem));
  }
  .add_item {
    width: 10rem;
  }
  .add_input {
    width: calc(100% - 10rem);
  }
  .form_attention .form_attention_tit {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .contact_form__block .search_btn {
    width: 18.8rem;
    height: 4.4rem;
    margin: 0 1.8rem;
    font-size: 1.8rem;
  }

  .form_agree {
    width: 82.2rem;
    margin: 0 auto 4rem;
    font-size: 1.6rem;
  }
  .form_agree .form_agree_tit {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .form_agree_content {
    padding: 1.5rem 3rem;
    height: 16rem;
    margin-bottom: 3rem;
  }
  .form_agree .checkbox_list {
    font-size: 2rem;
  }
  .back_btn,
  .send_btn {
    height: 11rem;
    width: 45rem;
    font-size: 2.4rem;
  }
  .top_back_btn {
    height: 11rem;
    width: 45rem;
    font-size: 2.4rem;
  }
  .form_attention {
    margin-top: 5rem;
    font-size: 1.6rem;
  }
  .contact_form__inner {
    font-size: 2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

