@charset "UTF-8";
/* Color styles ------------*/
/* Swiper ------------------*/
.fixed_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 120px;
  font-size: 1rem;
  font-weight: bold;
}

.fixed_bottom_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18vw;
  width: auto;
  border-color: #fff;
  border-left: 1px solid;
  border-right: 1px solid;
}
.fixed_bottom_btn:first-child {
  border-left: none;
}
.fixed_bottom_btn:last-child {
  border-right: none;
}
.fixed_bottom_btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.fixed_bottom_btn a span {
  font-size: 1.4rem;
  margin-bottom: 2vw;
}

.menu_btn {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16vw;
  height: 16vw;
  cursor: pointer;
  z-index: 1000;
}
@media (min-width: 600px) {
  .menu_btn {
    display: none;
  }
}
.menu_btn .hamburger-icon {
  position: relative;
  display: block;
  width: 6.4vw;
  height: 2px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff;
}
.menu_btn .hamburger-icon::before, .menu_btn .hamburger-icon::after {
  content: "";
  position: absolute;
  width: 6.4vw;
  height: 2px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff;
}
.menu_btn .hamburger-icon::before {
  top: 2vw;
}
.menu_btn .hamburger-icon::after {
  top: -2vw;
}
.menu_btn.active {
  background-color: #47AA4B;
}
.menu_btn.active .hamburger-icon {
  background-color: transparent;
}
.menu_btn.active .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.menu_btn.active .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/*背景ホバー*/
[class*=hover_bg] {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid;
  overflow: hidden;
  z-index: 1;
}
[class*=hover_bg]::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  z-index: 1;
  transform-origin: top right;
  transform: scale(0, 1);
  transition: transform 0.4s ease;
}
[class*=hover_bg] span {
  position: relative;
  z-index: 2;
}
[class*=hover_bg]:hover::before {
  transform-origin: top left;
  transform: scale(1, 1);
}

/*背景ホバー矢印付*/
.hover_bgarrow::after {
  position: relative;
  content: "\e904";
  /*→*/
  width: 1em;
  height: 1em;
  font-size: 21px;
  font-family: "icomoon" !important;
  font-weight: normal;
  line-height: 1;
  z-index: 2;
  transform-origin: top left;
  transition: all 0.2s 0.2s ease;
}
.hover_bgarrow:hover::after {
  transform: scale(1.4, 1);
}

.hover_underarrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 56vw;
  margin: 0 auto;
  padding-bottom: 0.4em;
  font-size: 5.3vw;
  letter-spacing: 0.2em;
}
.hover_underarrow::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  animation-name: underline;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media (min-width: 600px) {
  .hover_underarrow {
    width: 304px;
    font-size: 24px;
  }
}

div[class$=__linkToList] {
  margin-top: -1px;
  background-color: #fff;
}
div[class$=__linkToList] .hover_underarrow {
  color: #056509;
}
div[class$=__linkToList] .hover_underarrow:hover {
  color: #47AA4B;
}

.guid_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-width: 780px;
  height: auto;
  margin: 8vw auto 0;
  padding: 6vw 8vw;
  border: 2px solid #056509;
}
@media (min-width: 600px) {
  .guid_btn {
    margin-top: 40px;
    padding: 24px 40px;
  }
}
.guid_btn:hover {
  border-color: #47AA4B;
  opacity: 0.7;
}

@keyframes underline {
  40% {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  70% {
    transform: scale(0, 1);
    transform-origin: right center;
  }
  71% {
    transform: scale(0, 1);
    transform-origin: left center;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left center;
  }
}
.submit_btn {
  width: 70%;
  height: 4rem;
  font-size: 1.3rem;
  color: #fff;
  background-color: #47AA4B;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (min-width: 600px) {
  .submit_btn {
    max-width: 300px;
  }
}
.submit_btn:hover {
  opacity: 0.7;
}

.fadein.Up {
  opacity: 0;
  transform: translate3d(0, 8vw, 0);
  transition: all 1s;
}
.fadein.Up.inview {
  opacity: 1;
  transform: none;
}

.fadein.Down {
  opacity: 0;
  transform: translate3d(0, -8vw, 0);
  transition: all 1s;
}
.fadein.Down.inview {
  opacity: 1;
  transform: none;
}

.fadein.Left {
  opacity: 0;
  transform: translate3d(8vw, 0, 0);
  transition: all 1s;
}
.fadein.Left.inview {
  opacity: 1;
  transform: none;
}

.fadein.Right {
  opacity: 0;
  transform: translate3d(-8vw, 0, 0);
  transition: all 1s;
}
.fadein.Right.inview {
  opacity: 1;
  transform: none;
}

.fadein.Zoom {
  opacity: 0;
  transform: translate3d(0, 0, 8vw);
  transition: all 1s;
}
.fadein.Zoom.inview {
  opacity: 1;
  transform: none;
}

.fadein.Out {
  opacity: 0;
  transform: translate3d(0, 0, -8vw);
  transition: all 1s;
}
.fadein.Out.inview {
  opacity: 1;
  transform: none;
}

#footer {
  padding-bottom: 16vw;
}
@media (min-width: 600px) {
  #footer {
    padding-bottom: 0;
  }
}
#footer .footer_contact_box__definition {
  position: relative;
  z-index: 0;
}
#footer .footer_contact_box__definition dt {
  position: relative;
  background-color: transparent;
  z-index: 1;
}
@media (min-width: 600px) {
  #footer .footer_contact_box__definition dt {
    bottom: -24px;
  }
}
#footer .footer_contact_box__definition_title {
  font-style: normal;
  line-height: 1;
}
#footer .footer_contact_box__definition_name {
  padding: 0.4em 1em;
}
@media (min-width: 600px) {
  #footer .footer_contact_box__definition_name {
    margin-left: 20px;
  }
}
#footer .footer_contact_box__definition_discription {
  padding: 8vw 0 0;
  line-height: 1.75;
}
@media (min-width: 600px) {
  #footer .footer_contact_box__definition_discription {
    padding-top: 40px;
  }
}
#footer .footer_contact_box__definition_form {
  position: relative;
  background-color: rgba(77, 77, 77, 0.9);
}
#footer .footer_contact_box__definition_form::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 16vw;
  top: -0.5px;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 60%);
          clip-path: polygon(100% 0, 0 0, 50% 60%);
}
@media (min-width: 600px) {
  #footer .footer_contact_box__definition_form::before {
    height: 120px;
  }
}
#footer .footer_contact_box__definition_form_list {
  padding-left: 0;
  padding-bottom: 24px;
}
#footer .footer_contact_box__definition_form_list__tel .response_time_text {
  font-size: 0.4em;
}
#footer .footer_contact_box__definition_form_list__contact {
  margin: 4vw 0;
  padding: 0.5em 2em;
  border-radius: 2em;
  box-sizing: border-box;
}
#footer .footer_contact_box__definition_form_list__contact [class^=icon-] {
  margin-right: 1rem;
}
#footer .footer_contact_box__definition_form_list__contact span {
  vertical-align: middle;
}
@media (min-width: 600px) {
  #footer .footer_contact_box__definition_form_list__contact {
    margin: 40px 0 40px 40px;
  }
}
#footer .footer_info_box {
  position: relative;
  background-color: #4D4D4D;
  font-size: 1rem;
  background-image: url("../images/footer_info_box_bg_sample.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
#footer .footer_info_box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(77, 77, 77, 0.68);
  z-index: 1;
}
#footer .footer_info_box_inr {
  position: relative;
  width: 100%;
  max-width: 1460px;
  padding: 10vw 0 15vw;
  z-index: 10;
}
@media (min-width: 600px) {
  #footer .footer_info_box_inr {
    padding: 100px 100px 60px;
  }
}
#footer .footer_info_box_inr__company {
  font-size: 1.4rem;
}
#footer .footer_info_box_inr__company_sns .icon_round {
  height: 1.6em;
  width: 1.6em;
  font-size: 2rem;
}
#footer .footer_info_box_inr__company .logo {
  height: 12vw;
  filter: drop-shadow(0px 0px 8px white);
}
@media (min-width: 600px) {
  #footer .footer_info_box_inr__company .logo {
    height: 60px;
  }
}
#footer .footer_info_box_inr__bottom {
  margin: 0 1rem;
}
#footer .footer_info_box_inr__bottom_link li + li {
  margin-left: 0.8em;
  padding-left: 0.8em;
  border-left: 1px solid;
}
#footer .footer_info_box_inr__bottom_copyright {
  margin: 0 1rem;
}
#footer .pagetop {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 500;
  transform-origin: top left;
  transform: rotate(-90deg);
  cursor: pointer;
  opacity: 0;
}
#footer .pagetop div {
  height: 70px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.7 ease;
}
#footer .pagetop div div {
  width: 64px;
  height: 1px;
  overflow: hidden;
  margin-left: 10px;
  position: relative;
}
#footer .pagetop div div::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 120%;
  height: 1px;
  background-color: currentColor;
  animation: 3s cubic-bezier(0.8, 0, 0.1, 1) infinite pagetopAnime;
}
#footer .pagetop:hover div {
  color: #47AA4B;
  opacity: 0.7;
}
#footer .pagetop.inview {
  opacity: 1;
}
#footer .drawer {
  position: fixed;
  visibility: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 0 12vw;
  overflow-y: auto;
  opacity: 0;
  z-index: 999;
  transition: all 0.5s;
}
@media (min-width: 600px) {
  #footer .drawer {
    display: none;
  }
}
#footer .drawer_logo {
  height: 16vw;
  padding-left: 4vw;
}
#footer .drawer_nav_list {
  margin-top: 10vw;
}
#footer .drawer_nav_list__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12vw;
  padding: 0 10vw;
  font-size: 4.3vw;
  border-bottom: 1px solid #fff;
}
#footer .drawer_nav_list__item a::after {
  content: "";
  height: 3vw;
  width: 3vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#footer .drawer.active {
  visibility: visible;
  opacity: 1;
}

@keyframes pagetopAnime {
  0% {
    transform: translateX(-100%);
  }
  5% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  95% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
header .inner {
  padding: 0;
}
header .inner div {
  height: 16vw;
}
header .inner .header_logo {
  padding-left: 4vw;
}
header .inner .header_logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
header .inner .header_logo img {
  height: 50%;
}
header .inner .nav_list {
  display: none;
}

@media (min-width: 600px) {
  header .inner {
    padding-right: 140px;
  }
  header .inner div {
    height: 100px;
  }
  header .inner .header_logo {
    padding-left: 50px;
  }
  header .inner .nav_list {
    display: block;
  }
  header .inner .nav_list ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 0 0.85em;
    font-size: 1rem;
    cursor: pointer;
  }
  header .inner .nav_list ul li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #056509;
    transform-origin: left bottom;
    transform: scale(0, 1);
    transition: transform 0.4s ease;
    box-sizing: border-box;
  }
  header .inner .nav_list ul li:hover a {
    opacity: 1;
  }
  header .inner .nav_list ul li:hover a::after {
    transform: scale(1, 1);
  }
  header .inner .nav_list .fixed_list {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
  header .inner .nav_list .fixed_list a {
    width: 120px;
    font-size: 0.8rem;
  }
  header .inner .nav_list .fixed_list a span[class*=icon] {
    display: block;
    margin: 0 0 0.7em;
    font-size: 1.4rem;
  }
  header .inner .nav_list .fixed_list .fixed_contact:hover {
    opacity: 1;
    background-color: #47AA4B;
  }
}
@media (min-width: 1280px) {
  header .inner {
    padding-right: 180px;
  }
  header .inner .nav_list .fixed_list a {
    flex-direction: row;
    width: 160px;
  }
  header .inner .nav_list .fixed_list a span[class*=icon] {
    margin: 0 0.7em 0 0;
    font-size: 1.2rem;
  }
}
.leftmove::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: white;
  z-index: 10;
  transition: all 1s cubic-bezier(0.8, 0, 0.1, 1);
  transform-origin: top left;
}
.leftmove.inview::after {
  transform: scale(0, 1);
}

.rightmove::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: white;
  z-index: 10;
  transition: all 1s cubic-bezier(0.8, 0, 0.1, 1);
  transform-origin: top right;
}
.rightmove.inview::after {
  transform: scale(0, 1);
}

/*================================================================================================
 *  スマートフォン向けデザイン(SPファースト)
 ================================================================================================*/
html {
  font-size: 4vw;
}
@media (min-width: 600px) {
  html {
    font-size: 16px;
  }
}

body {
  position: relative;
  font-size: 4vw;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, sans-serif;
  color: #000;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (min-width: 600px) {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
}

a:hover {
  opacity: 0.7;
}

a,
.linearAnime {
  color: inherit;
  text-decoration: none;
  transition: all 0.1s linear;
}

.icon_round {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.2em;
  width: 1.2em;
  margin: 0 2vw;
  background-color: #fff;
  border-radius: 50%;
  color: #4D4D4D;
  font-size: 1em;
}
@media (min-width: 600px) {
  .icon_round {
    margin-right: 8px;
  }
}

.logo {
  display: block;
  height: 8vw;
}

/*文字種類*/
.ff_notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.ff_shippori {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
}

.ff_garamond {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.ff_oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

/******* txt_size *******/
.rem1p3 {
  font-size: 1.3rem;
}

.rem1p5 {
  font-size: 1.5rem;
}

.title_em {
  font-size: 10.6vw;
}
@media (min-width: 600px) {
  .title_em {
    font-size: 60px;
  }
}

.area_headTitle {
  color: rgba(0, 0, 0, 0.5);
}
.area_headTitle em {
  letter-spacing: 0.14em;
  margin-bottom: 0.4em;
  color: rgba(0, 0, 0, 0.3);
}

/******* txt_color *******/
.text_white {
  color: #fff;
}

.text_black {
  color: #000;
}

.text_gray {
  color: #4D4D4D;
}

.text_red {
  color: #B91F00;
}

.text_main {
  color: #056509;
}

.text_center {
  text-align: center;
}

/******* bg_color *******/
.bg_main {
  background-color: #056509;
}

.bg_gray {
  background-color: #4D4D4D;
}

.bg_lightgray {
  background-color: #f2f2f2;
}

.bg_white {
  background-color: #fff;
}

.bg_sub {
  background-color: #47AA4B;
}

.bg_red {
  background-color: #B91F00;
}

.bg_purple {
  background-color: purple;
}

.bg_lightblue {
  background-color: #62C0E5;
}

.bg_orange {
  background-color: #FE9008;
}

/* sp/pcの切替 */
.sp_inline {
  display: inline;
}

.pc,
.sp_none {
  display: none;
}

@media (min-width: 600px) {
  /* sp/pcの切替 */
  .sp {
    display: none;
  }
  .pc,
  .sp_none {
    display: block;
  }
}
/*******flexbox*******/
[class*=flex_] {
  display: flex;
  flex-wrap: wrap;
}

.flex_start {
  justify-content: flex-start;
}

.flex_center {
  justify-content: center;
}

.flex_end {
  justify-content: flex-end;
}

.flex_between {
  justify-content: space-between;
}

.flex_around {
  justify-content: space-around;
}

.align_items_center {
  align-items: center;
}

.align_items_end {
  align-items: flex-end;
}

.align_items_stretch {
  align-items: stretch;
}

.flex_direction_column {
  flex-direction: column;
}

.nowrap {
  flex-wrap: nowrap;
}

/* padding */
.pt_section {
  padding-top: 6rem;
}

.pt_1 {
  padding-top: 0.25rem;
}

.pt_2 {
  padding-top: 0.5rem;
}

.pt_3 {
  padding-top: 1rem;
}

.pt_4 {
  padding-top: 1.5rem;
}

.pt_5 {
  padding-top: 3rem;
}

/* Swiper demo */
[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #ddd;
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  vertical-align: top;
  background-color: #ddd;
}

.swiper-pagination-bullet-active {
  width: 4rem;
  background-color: #47AA4B;
}

/*ぼかし*/
.blur {
  opacity: 0;
  filter: blur(1em);
  transition: all 0.7s cubic-bezier(0, 0.5, 0.5, 1);
}

.blur.inview {
  opacity: 1;
  filter: blur(0);
}

/*================================================
 *  news
 ================================================*/
.news_area {
  position: relative;
}
.news_area__slider {
  overflow: hidden;
}
.news_area__slider_inner {
  position: relative;
  box-sizing: content-box;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16vw;
}
.news_area__slider_inner .swiper {
  overflow: visible;
}
.news_area__slider_inner .swiper-slide:not(.swiper-slide-visible) {
  pointer-events: none;
}
.news_area__slider_inner .swiper-slide:not(.swiper-slide-visible) .slide {
  opacity: 0.3;
}
.news_area__slider_inner .swiper .swiper-pagination {
  flex-wrap: nowrap;
  margin-top: 8vw;
}
.news_area__slider_inner a:hover {
  opacity: 1;
}
@media (min-width: 960px) {
  .news_area__slider_inner {
    padding: 0 120px;
  }
  .news_area__slider_inner .swiper .swiper-pagination {
    margin-top: 40px;
  }
}
.news_area__slider .slide {
  padding-top: 16px;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.news_area__slider .slide-media {
  padding-top: 100%;
  border-radius: 4px;
}
.news_area__slider .slide-media img {
  height: calc(100% + 16px);
}
.news_area__slider .slide-content {
  padding: 1rem 0 2rem;
  font-size: 1rem;
}
.news_area__slider .slide-content__category {
  padding: 0.2em 1em;
  font-size: 1em;
  color: #fff;
}
.news_area__slider .slide-content__title {
  font-size: 1.4em;
  margin: 1em 0;
}
.news_area__slider .slide-content__date {
  font-size: 1em;
}

/*================================================
 *  相談
 ================================================*/
.consul_area {
  width: 100%;
  margin: 0 auto;
}
.consul_area__item {
  position: relative;
  width: 100%;
  height: 40vw;
  max-height: 304px;
  border: 1px solid #fff;
  box-sizing: border-box;
  z-index: 0;
  cursor: pointer;
}
.consul_area__item_img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.consul_area__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease;
}
.consul_area__item_img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.consul_area__item p {
  position: relative;
  font-size: 6.4vw;
  color: #fff;
  z-index: 10;
}
.consul_area__item:hover {
  opacity: 0.8;
}
.consul_area__item:hover img {
  transform-origin: center center;
  transform: scale(1.1);
}
@media (min-width: 600px) {
  .consul_area__item {
    width: 50%;
  }
  .consul_area__item p {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .consul_area__item {
    width: 25%;
  }
}

/*================================================
 *  SP下タブ
 ================================================*/
@media (min-width: 600px) {
  .sp_lower_tab {
    opacity: 0;
    visibility: hidden;
  }
}

.sp_fixed_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 0;
  z-index: 100;
}
.sp_fixed_bottom li {
  flex-grow: 1;
}

/*================================================
 *  パンくず
 ================================================*/
ol.breadcrumb {
  color: #808080;
}
ol.breadcrumb li {
  display: inline-block;
  font-size: 1rem;
}
ol.breadcrumb li a {
  text-decoration: underline;
}
ol.breadcrumb li a:hover {
  opacity: 1;
  text-decoration: none;
}
ol.breadcrumb li + li::before {
  content: ">";
  white-space: pre-wrap;
  padding: 0 0.3em;
}

#pageTitle ol.breadcrumb {
  width: 90%;
  margin-left: auto;
}
@media (min-width: 1280px) {
  #pageTitle ol.breadcrumb {
    width: 80%;
  }
}

/*******箇条書きリスト*******/
.kome_list li,
.disc_list li,
.circle_list li,
.square_list li,
.indent_list li {
  list-style-position: inside;
  padding-left: 1em;
  text-indent: -1em;
}

/*※箇条書き*/
.kome_list > li:before {
  display: inline;
  content: "※";
}

/*・箇条書き*/
.disc_list > li:before {
  display: inline;
  content: "・";
}

/*●箇条書き*/
.circle_list > li:before {
  display: inline;
  content: "●";
}

/*■箇条書き*/
.square_list > li:before {
  display: inline;
  content: "■";
}

/*================================================
 *  表
 ================================================*/
table,
tr,
th,
td {
  vertical-align: middle;
  text-align: justify;
}

.table_common {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
  line-height: 1.75;
}
.table_common th,
.table_common td {
  text-align: left;
}
.table_common th {
  width: 25vw;
  padding: 4vw 0;
  border-bottom: 1px solid #056509;
}
@media (min-width: 600px) {
  .table_common th {
    width: 200px;
    padding: 20px 0;
  }
}
.table_common tr:first-of-type th {
  border-top: 1px solid #056509;
}
.table_common tr:first-of-type td {
  border-top: 1px solid #ccc;
}
.table_common td {
  border-bottom: 1px solid #ccc;
  padding: 4vw 2.5vw;
}
@media (min-width: 600px) {
  .table_common td {
    padding: 20px 40px;
  }
}
.table_common td .square_list li::before {
  color: #056509;
}
.table_common td a {
  color: #056509;
}

.page_nav {
  display: flex;
  justify-content: space-between;
  width: 85vw;
  max-width: 540px;
  color: #666;
  font-size: 1rem;
}
.page_nav li {
  position: relative;
}
.page_nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_nav li a.no_link {
  pointer-events: none;
  opacity: 0.3;
}
.page_nav li:first-child a::before {
  content: "";
  width: 40px;
  height: 0.5rem;
  margin-right: 0.5rem;
  background-image: url(../images/arrow_left.svg);
  background-repeat: no-repeat;
}
.page_nav li:last-child a {
  text-align: right;
}
.page_nav li:last-child a::after {
  content: "";
  width: 40px;
  height: 0.5rem;
  margin-left: 0.5rem;
  background-image: url(../images/arrow_right.svg);
  background-repeat: no-repeat;
}

/*================================================
 *  タブレットサイズ以上(600px以上)向けデザイン
 ================================================*//*# sourceMappingURL=common.css.map */