@charset "UTF-8";
/*  letter-spacing: tracking(140); */
/*  @include l_h(14, 16.8);*/
:root {
  --Red: #C40C08;
  --Gold: #D5BE79;
  --fontsize_XXS: 10px;
  --fontsize_XS: 10px;
  --fontsize_S: 12px;
  --fontsize_M: 14px;
  --fontsize_L: 16px;
  --fontsize_XL: 18px;
  --fontsize_XXL: 20px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  color: #262628;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.open_menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.super_wrap {
  overflow-x: hidden;
}

a {
  color: #262628;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
a:hover {
  opacity: 0.6;
}

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

/*WordPress*/
.screen-reader-text,
.screen-reader-response {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  clear: both;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
}

.flex {
  display: flex;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.justify_center {
  justify-content: center;
}

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

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

.align_items_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.fw_bold {
  font-weight: bold;
}

.fs10 {
  font-size: 10px;
}

.red {
  color: #e23541;
}

.txt_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.txt_fade_in.active {
  opacity: 1;
}

.img_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.img_fade_in.active {
  opacity: 1;
}

.btn_reset {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.inner {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.man_wrap {
  width: 342px;
  height: 294px;
  background: center/cover no-repeat url("../image/common/man.svg");
}

@media screen and (min-width: 769px) and (max-width: 1199.9999px) {
  .super_wrap {
    min-width: 1200px;
  }
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .only_sp {
    display: none;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .only_pc {
    display: none;
  }
  .sp_none {
    display: none;
  }
  .sp_column {
    flex-direction: column;
  }
  .sp_column.align_items_center {
    justify-content: center;
  }
}
/******************************/
/**********ヘッダー************/
/*****************************/
#header {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
}
#header .inner {
  max-width: none;
}
#header .header_wrap {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header_logo_wrap {
  margin-right: 50px;
}
#header .site_title {
  margin-bottom: 8px;
}
#header .site_title img {
  max-width: 204px;
}
#header .intro {
  font-weight: bold;
  font-size: 25px;
  color: #3e3a39;
}
#header .intro:first-letter {
  font-feature-settings: "palt";
}
#header .intro span {
  display: inline-block;
}
#header .header_menu_wrap {
  max-width: 420px;
}
#header .header_menu_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0px;
}
#header .header_menu_list li {
  width: 33.3333333333%;
  min-width: 33.3333333333%;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
#header .header_menu_list li::before {
  content: "";
  display: inline-block;
  min-width: 8px;
  width: 8px;
  height: 10px;
  background: center/cover no-repeat url("../image/header/arrow.svg");
}
#header .header_menu_list a {
  white-space: nowrap;
}
#header .header_menu_list .sub-menu {
  display: none;
}
#header .tel_wrap {
  margin-left: 45px;
  margin-right: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}
#header .tel_wrap .s1 {
  font-size: 28px;
  font-weight: 100;
  letter-spacing: -0.06em;
}
#header .tel_wrap .s2 {
  font-size: 32px;
}
#header .tel_wrap .s3 {
  font-size: 18px;
  margin-top: 10px;
  display: inline-block;
}
#header .header_btn {
  font-size: 18px;
  width: 195px;
  height: 88px;
  background: #006900;
  border-radius: 10px;
  font-weight: bold;
  padding-left: 16px;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 17px;
}
#header .header_btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 10px;
  background: center/cover no-repeat url("../image/header/arrow.svg");
  filter: brightness(0) invert(1);
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #header .site_title img {
    max-width: 160px;
  }
  #header .header_logo_wrap {
    margin-right: 20px;
  }
  #header .header_menu_list li {
    font-size: 16px;
    width: 50%;
  }
  #header .tel_wrap {
    margin-left: 0;
  }
  #header .tel_wrap .s2 {
    font-size: 26px;
  }
  #header .header_btn {
    font-size: 16px;
    width: 170px;
  }
}
@media screen and (min-width: 769px) and (max-width: 920px) {
  #header .tel_wrap {
    display: none;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #header .inner {
    padding-left: 10px;
    padding-right: 0px;
  }
  #header .header_wrap {
    display: none;
  }
  #header .header_wrap_sp {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
  }
  #header .header_logo_wrap {
    margin-right: 0;
  }
  #header .site_title {
    margin-bottom: 0;
  }
  #header .site_title a {
    font-size: 16px;
  }
  #header .site_title a span {
    display: inline-block;
  }
  #header .hamburger_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
  }
  #header .hamburger_btn span,
  #header .hamburger_btn span:before,
  #header .hamburger_btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    transition: all 0.4s ease;
  }
  #header .hamburger_btn span:before {
    bottom: 8px;
  }
  #header .hamburger_btn span:after {
    top: 8px;
  }
  #header .header_menu_wrap_sp {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 0px 0px;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 1s;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    z-index: 100;
  }
  #header .header_menu_list_sp {
    list-style: none;
  }
  .open_menu #header {
    background-color: #fff;
  }
  .open_menu #header .hamburger_btn span {
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.1s ease;
  }
  .open_menu #header .hamburger_btn span:before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .open_menu #header .hamburger_btn span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .open_menu #header .hamburger_btn_wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
  }
  .open_menu #header .header_menu_wrap_sp {
    opacity: 1;
    visibility: visible;
    position: fixed;
    transition: opacity 0.5s ease;
  }
  .header_menu_wrap_sp li {
    border-bottom: 1px solid #6e4621;
  }
  .header_menu_wrap_sp li:last-of-type {
    border-bottom: none;
  }
  .header_menu_wrap_sp a {
    display: block;
    padding: 16px 20px;
  }
}
.front_section .common_h2 {
  font-size: 38px;
  line-height: 1.5789473684;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #006900;
  text-align: center;
}
.front_section .common_h2:after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background-color: #006900;
  margin: 28px auto 0;
}
.front_section .common_h3 {
  font-size: 30px;
  letter-spacing: 0.06em;
  color: #006900;
  line-height: 2;
  font-weight: 700;
}
.front_section .common_h3 span {
  margin-right: 45px;
}
.front_section .common_h4 {
  margin-bottom: 38px;
  padding-left: 48px;
  padding-right: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  min-height: 90px;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 2.3076923077;
  font-weight: 700;
}
.front_section .cp {
  font-size: 22px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5454545455;
}
.front_section .aco_wrap {
  padding-left: 90px;
  padding-right: 90px;
  padding-bottom: 4px;
  border-radius: 10px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.front_section .aco_wrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 57px;
  top: -45px;
  background: center/cover no-repeat url("../image/common/leaf.png");
  width: 83px;
  height: 88px;
}
.front_section .aco_wrap + .aco_wrap {
  margin-top: 78px;
}
.front_section .aco_switch {
  padding-bottom: 32px;
  padding-top: 46px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.front_section .aco_switch:after {
  content: "";
  display: inline-block;
  background: center/cover no-repeat url("../image/front/aco.svg");
  width: 22px;
  height: 13px;
  transform: rotate(180deg);
  transition: all 0.4s ease;
}
.front_section .aco_switch.active::after {
  transform: rotate(0);
}
.front_section .aco_content {
  padding-bottom: 94px;
}
.front_section .aco_content p {
  font-size: 22px;
  font-size: 21px;
  padding-left: 48px;
  padding-right: 45px;
  line-height: 1.5454545455;
}
.front_section .aco_content p + .common_h4 {
  margin-top: 58px;
}
.front_section .outer_link_wrap {
  margin-top: 41px;
  margin-bottom: 35px;
}
.front_section .outer_link_wrap a {
  height: 60px;
  max-width: 328px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: solid #000000 1.5px;
  border-radius: 5px;
}
.front_section .outer_link_wrap a:after {
  content: "";
  display: inline-block;
  position: absolute;
}
.front_section .outer_link_wrap a.outer:after {
  background: center/cover no-repeat url("../image/common/outer.svg");
  width: 16px;
  height: 16px;
  right: 40px;
}
.front_section .outer_link_wrap a.pdf:after {
  background: center/cover no-repeat url("../image/common/pdf.svg");
  width: 24px;
  height: 27px;
  right: 31px;
}

.mv_section {
  padding-top: 242px;
  background: center/cover no-repeat url("../image/mv/bg.png");
  height: 800px;
  position: relative;
  overflow: hidden;
}
.mv_section h2 {
  text-align: center;
}
.mv_section .h2_1 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.mv_section .h2_2 {
  margin-top: 8px;
  font-size: 62px;
  line-height: 1.564516129;
  font-weight: bold;
}
.mv_section .img_wrap {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mv_section .man_wrap {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(calc(-50% + 420px));
}

.f1_section {
  padding-top: 74px;
  padding-bottom: 102px;
}
.f1_section .flex {
  gap: 48px;
}
.f1_section .img_wrap {
  flex-shrink: 0;
}
.f1_section h2 {
  margin-bottom: 53px;
}

.f2_section {
  padding-top: 118px;
  padding-bottom: 126px;
  background-color: #f7f6d4;
}
.f2_section .aco_wrap {
  background-color: #fff;
}
.f2_section .common_h4 {
  background-color: #dcebbd;
}
.f2_section h2 {
  margin-bottom: 110px;
}

.f3_section {
  padding-top: 118px;
  padding-bottom: 126px;
}
.f3_section .aco_wrap {
  background-color: #dcebbd;
}
.f3_section .common_h4 {
  background-color: #fff;
}
.f3_section h2 {
  margin-bottom: 110px;
}

.f4_section {
  padding-top: 118px;
  padding-bottom: 126px;
  background-color: #f7f6d4;
}
.f4_section .lawyer_wraps {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.f4_section .lawyer_wrap {
  max-width: 415px;
  width: 100%;
  border-radius: 5px;
  padding-top: 54px;
  padding-bottom: 48px;
  padding-left: 35px;
  padding-right: 35px;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #fff;
}
.f4_section .img_wrap {
  text-align: center;
}
.f4_section .name_wrap {
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
.f4_section .note_wrap {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.f4_section .bio_wrap {
  margin-top: 48px;
  margin-bottom: 20px;
  height: 40px;
  font-size: 24px;
  font-weight: 500;
  background-color: #dcebbd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f4_section .biography_wrap ul {
  list-style: none;
}
.f4_section .biography_wrap li {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  padding-left: 1em;
  text-indent: -1em;
}
.f4_section .biography_wrap li:before {
  content: "●";
}

.f5_section {
  padding-top: 118px;
  padding-bottom: 126px;
}
.f5_section .aco_wrap {
  letter-spacing: 0.06em;
  background-color: #dcebbd;
}
.f5_section .common_h4 {
  background-color: #fff;
}
.f5_section h2 {
  margin-bottom: 68px;
}
.f5_section .aco_content .p2 {
  font-size: 25px;
  margin-top: 44px;
  margin-bottom: 38px;
  line-height: 1.36;
  font-weight: 700;
}
.f5_section .table_wrap {
  margin-top: 35px;
  margin-bottom: 46px;
}
.f5_section table {
  border-collapse: collapse;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.f5_section th,
.f5_section td {
  height: 60px;
  border: solid 1px #000;
  vertical-align: middle;
}
.f5_section th {
  background-color: #ebebeb;
}
.f5_section td {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fff;
}

.f6_section {
  padding-top: 118px;
  padding-bottom: 126px;
  background-color: #f7f6d4;
}
.f6_section .flex {
  margin-top: 107px;
  justify-content: center;
  gap: 86px;
}
.f6_section .address {
  font-size: 22px;
  font-size: 21px;
  line-height: 1.7272727273;
}
.f6_section .address span {
  font-size: 32px;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.f6_section .gmap_wrap {
  width: 100%;
  max-width: 692px;
  height: 480px;
  position: relative;
}
.f6_section .gmap_wrap > iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.f7_section {
  padding-top: 124px;
}
.f7_section .lg_wrap {
  margin-top: 40px;
  margin-bottom: 50px;
  border-radius: 5px;
  min-height: 225px;
  padding-top: 73px;
  padding-left: 95px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  background-color: #e5f0cd;
  position: relative;
}
.f7_section .man_wrap {
  width: 371px;
  height: 318px;
  position: absolute;
  right: 51px;
  bottom: -41px;
}
.f7_section .p1 {
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.f7_section .p1 span {
  font-weight: 700;
}
.f7_section .p2 {
  font-size: 30px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
.f7_section .g_wraps {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 45px;
}
.f7_section .g_wrap {
  max-width: 530px;
  width: 100%;
  min-height: 176px;
  border-radius: 5px;
  color: #fff;
  background-color: #006900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.f7_section .tel {
  flex-direction: column;
}
.f7_section .contact {
  line-height: 1;
}
.f7_section .contact::before {
  content: "";
  display: inline-block;
  margin-right: 21px;
  width: 50px;
  height: 38px;
  background: center/cover no-repeat url("../image/common/mail.svg");
}
.f7_section .p3 {
  margin-top: -12px;
  display: flex;
  align-items: center;
}
.f7_section .s1 {
  margin-right: 17px;
  font-size: 42px;
  letter-spacing: -0.06em;
}
.f7_section .s2 {
  font-size: 52px;
  letter-spacing: 0.02em;
}
.f7_section .s3 {
  margin-left: 14px;
  font-size: 26px;
  letter-spacing: 0.06em;
}
.f7_section .p4 {
  font-size: 26px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}
.f7_section .s4 {
  font-size: 34px;
}
.f7_section .s5 {
  font-size: 24px;
  letter-spacing: -0.02em;
}
.f7_section .s7 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.f8_section {
  padding-top: 131px;
  padding-bottom: 107px;
}
.f8_section .contact_form_wrap_border {
  padding-top: 46px;
  padding-bottom: 46px;
  border: 1px solid #000;
  border-radius: 10px;
}
.f8_section .common_h2 {
  margin-bottom: 40px;
}
.f8_section .common_h2::after {
  content: none;
}
.f8_section .cf7_wrap {
  padding-right: 40px;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .front_section .img_wrap.float {
    float: right;
    padding-right: 48px;
    margin-top: 10px;
    margin-left: 1.8em;
    margin-bottom: 1em;
  }
  .f5_section .aco_content .p2 {
    padding-left: 96px;
  }
  .f6_section .address {
    margin-top: 70px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .front_section .common_h2 {
    font-size: 24px;
  }
  .front_section .common_h2::after {
    height: 3px;
    margin: 16px auto 0;
  }
  .front_section .common_h3 {
    font-size: 18px;
  }
  .front_section .common_h3 span {
    margin-right: 20px;
  }
  .front_section .common_h4 {
    margin-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 10px;
    min-height: 54px;
    font-size: 17px;
    line-height: 1.6;
  }
  .front_section .cp {
    font-size: 16px;
  }
  .front_section .aco_wrap {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 4px;
  }
  .front_section .aco_wrap:before {
    left: 14px;
    top: -30px;
    width: 43px;
    height: 48px;
  }
  .front_section .aco_wrap + .aco_wrap {
    margin-top: 45px;
  }
  .front_section .aco_switch {
    padding-bottom: 10px;
    padding-top: 14px;
  }
  .front_section .aco_switch::after {
    width: 16px;
    height: 8px;
  }
  .front_section .aco_content {
    padding-bottom: 30px;
  }
  .front_section .aco_content p {
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
  }
  .front_section .aco_content > h4:first-child {
    margin-top: 10px;
  }
  .front_section .img_wrap.float {
    margin-bottom: 20px;
  }
  .front_section .outer_link_wrap a {
    height: 50px;
    max-width: 280px;
    font-size: 16px;
  }
  .front_section .outer_link_wrap a.outer:after {
    width: 12px;
    height: 12px;
  }
  .front_section .outer_link_wrap a.pdf:after {
    width: 17px;
    height: 20px;
  }
  .mv_section {
    height: auto;
    padding-top: 150px;
    padding-bottom: 216px;
  }
  .mv_section .img_wrap img {
    max-width: 100px;
  }
  .mv_section .h2_1 {
    font-size: 19px;
  }
  .mv_section .h2_2 {
    font-size: 26px;
  }
  .mv_section .man_wrap {
    width: 248px;
    height: 201px;
    bottom: -8px;
    transform: translateX(calc(-50% + 33px));
  }
  .f1_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f1_section .flex {
    flex-direction: column;
  }
  .f1_section h2 {
    margin-bottom: 40px;
  }
  .f2_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f2_section h2 {
    margin-bottom: 50px;
  }
  .f3_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f3_section h2 {
    margin-bottom: 50px;
  }
  .f4_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f4_section .lawyer_wraps {
    margin-top: 50px;
    flex-direction: column;
  }
  .f4_section .lawyer_wrap {
    max-width: none;
    padding-top: 25px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .f4_section .name_wrap {
    font-size: 24px;
  }
  .f4_section .note_wrap {
    font-size: 16px;
  }
  .f4_section .bio_wrap {
    font-size: 18px;
    margin-top: 30px;
  }
  .f4_section .biography_wrap li {
    font-size: 16px;
  }
  .f5_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f5_section h2 {
    margin-bottom: 50px;
  }
  .f5_section .aco_content .p2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .f5_section .aco_content .p2 span {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .f5_section .table_wrap {
    margin-top: 35px;
    margin-bottom: 30px;
  }
  .f5_section table {
    width: 570px;
  }
  .f6_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f6_section .flex {
    margin-top: 50px;
    flex-direction: column;
    gap: 50px;
  }
  .f6_section .address {
    font-size: 18px;
  }
  .f6_section .address span {
    font-size: 22px;
    font-size: 21px;
    line-height: 0;
  }
  .f6_section .gmap_wrap {
    max-width: none;
  }
  .f7_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f7_section .lg_wrap {
    margin-top: 40px;
    margin-bottom: 50px;
    min-height: 225px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .f7_section .p1 {
    font-size: 18px;
  }
  .f7_section .man_wrap {
    width: 271px;
    height: 230px;
    right: auto;
    bottom: 0;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
  .f7_section .p2 {
    font-size: 24px;
    text-align: left;
  }
  .f7_section .g_wraps {
    flex-direction: column;
  }
  .f7_section .g_wrap {
    min-height: 120px;
    margin-left: auto;
    margin-right: auto;
  }
  .f7_section .contact::before {
    margin-right: 8px;
    width: 32px;
    height: 24px;
  }
  .f7_section .p3 {
    margin-top: -12px;
  }
  .f7_section .s1 {
    margin-right: 10px;
    font-size: 30px;
  }
  .f7_section .s2 {
    font-size: 36px;
  }
  .f7_section .s3 {
    margin-left: 11px;
    font-size: 18px;
  }
  .f7_section .p4 {
    font-size: 16px;
  }
  .f7_section .s4 {
    font-size: 18px;
  }
  .f8_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .f8_section .cf7_wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 665px) {
  .table_note {
    display: none;
  }
}
@media screen and (max-width: 664px) {
  .table_wrap {
    overflow-x: scroll;
  }
  .table_note {
    margin-top: -20px;
    margin-bottom: 35px;
  }
}
#page_featured {
  height: 260px;
  padding: 0 30px;
  margin-top: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto;
  position: relative;
  overflow: hidden;
  background-image: url(../image/common/head_bg.png);
}
#page_featured > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#page_featured h1 {
  font-size: 25px;
  line-height: 1.672;
  letter-spacing: 0.04em;
  position: relative;
  top: -18px;
  left: -4px;
}
#page_featured h2 {
  font-size: 25px;
  line-height: 1.672;
  letter-spacing: 0.04em;
  position: relative;
  top: -18px;
  left: -4px;
}

.lower_page {
  padding: 86px 30px 120px;
}

.lower_page .content_wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

table.basic {
  border-collapse: collapse;
  width: 100%;
}

table.basic,
table.basic th,
table.basic td {
  border: 1px solid #6e4621;
}

table.basic th,
table.basic td {
  padding: 8px;
  text-align: left;
}

table.basic th {
  background-color: #f2f2f2;
  font-weight: bold;
  text-align: center;
  letter-spacing: 6px;
}

/* responsive-table */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
}

.responsive-table thead {
  background-color: #f2f2f2;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #6e4621;
  padding: 8px;
  text-align: left;
}

.section404 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  text-align: center;
}

/* スマホ表示向け */
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #page_featured {
    margin-top: 60px;
  }
  .lower_page {
    padding: 86px 30px 86px;
  }
  .responsive-table {
    border: 0;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    display: block;
    margin-bottom: 15px;
    /* border: 1px solid #ddd; */
    border: 1px solid #6e4621;
    padding: 10px;
    background: #fff;
  }
  .responsive-table td {
    display: block;
    text-align: right;
    position: relative;
    padding-left: 50%;
    border: none;
    /* border-bottom: 1px solid #eee; */
    border-bottom: 1px solid #6e4621;
    min-height: 2.5em;
  }
  .responsive-table td:last-child {
    padding: 36px 8px 8px;
    text-align: left;
  }
  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  .responsive-table td:last-child::before {
    top: 10px;
  }
}
/******************************/
/**********フッター************/
/*****************************/
#footer {
  padding-top: 46px;
  background-color: #f7f6d4;
}

#to_top {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#to_top > div {
  margin-left: auto;
  width: 64px;
}
#to_top > div > div {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #006900;
  bottom: 37px;
  right: 10px;
  position: fixed;
  cursor: pointer;
  opacity: 0;
  transition: all 0.8s ease 0s;
}
#to_top > div > div:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 25px;
  background: center/cover no-repeat url(../image/header/arrow.svg);
  filter: brightness(0) invert(1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-90deg);
  position: absolute;
}
#to_top.fadein > div > div {
  opacity: 1;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
#to_top.absolute > div > div {
  position: absolute;
}

.footer_menu_list {
  list-style: none;
}
.footer_copyright {
  padding-top: 24px;
  padding-bottom: 42px;
  text-align: center;
  border-top: 1px solid #999999;
  width: calc(100vw - 60px);
  margin-left: auto;
  margin-right: auto;
}

.footer_meta {
  margin-top: 33px;
}
.footer_meta .main_site_img {
  width: 200px;
}

.footer_logo img {
  max-width: 240px;
}

.footer_address {
  margin-top: 28px;
  margin-bottom: 40px;
  font-size: 22px;
  font-size: 21px;
  line-height: 1.7272727273;
}

.footer_outer_link_wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer_content {
  display: flex;
  justify-content: center;
  padding-bottom: 98px;
  gap: 135px;
}

.footer_note {
  margin-bottom: -16px;
  display: flex;
  align-items: center;
}
.footer_note p {
  font-size: 22px;
  font-size: 21px;
  letter-spacing: 0.06em;
  line-height: 1.5909090909;
  font-weight: 500;
}

.footer_right .g_wrap {
  max-width: 540px;
  width: 100%;
  min-height: 100px;
  border-radius: 5px;
  color: #fff;
  background-color: #006900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
}
.footer_right .g_wrap + .g_wrap {
  margin-top: 15px;
}
.footer_right .contact {
  line-height: 1;
}
.footer_right .contact::before {
  content: "";
  display: inline-block;
  margin-right: 14px;
  width: 30px;
  height: 22px;
  background: center/cover no-repeat url("../image/common/mail.svg");
}
.footer_right .p3 {
  display: flex;
  align-items: center;
}
.footer_right .s1 {
  margin-right: 12px;
  font-size: 28px;
  letter-spacing: -0.06em;
}
.footer_right .s2 {
  font-size: 36px;
  letter-spacing: 0.02em;
}
.footer_right .s3 {
  margin-left: 14px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.footer_right .s3 span {
  font-size: 14px;
  font-feature-settings: "palt";
}
.footer_right .p4 {
  font-size: 18px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}
.footer_right .s4 {
  font-size: 24px;
}
.footer_right .man_wrap {
  width: 248px;
  height: 212px;
}

.footer_logo_txt {
  font-size: 21px;
  font-weight: 500;
  margin-top: 11px;
  font-feature-settings: "palt";
}
.footer_logo_txt span {
  display: inline-block;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .footer_address {
    padding-left: 108px;
  }
  .footer_outer_link_wrap {
    padding-left: 108px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #to_top > div > div {
    width: 48px;
    height: 48px;
    bottom: 10px;
    right: 10px;
  }
  #to_top > div > div:before {
    width: 14px;
    height: 21px;
  }
  #footer {
    padding-top: 36px;
  }
  .footer_content {
    flex-direction: column-reverse;
    gap: 50px;
    padding-bottom: 30px;
  }
  .footer_meta {
    margin-top: 0;
  }
  .footer_logo img {
    max-width: 180px;
  }
  .footer_logo_txt {
    font-size: 18px;
    margin-top: 8px;
  }
  .footer_address {
    margin-top: 28px;
    margin-bottom: 30px;
    font-size: 18px;
  }
  .footer_note {
    margin-bottom: 0;
    flex-direction: column;
  }
  .footer_note p {
    font-size: 20px;
  }
  .footer_copyright {
    font-size: 12px;
    padding-top: 16px;
    padding-bottom: 20px;
    width: calc(100vw - 30px);
  }
  .footer_right .man_wrap {
    width: 200px;
    height: 170px;
  }
  .footer_right .g_wrap {
    max-width: 530px;
    min-height: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_right .tel {
    flex-direction: column;
  }
  .footer_right .contact::before {
    margin-right: 8px;
    width: 32px;
    height: 24px;
  }
  .footer_right .p3 {
    display: flex;
    align-items: center;
  }
  .footer_right .s1 {
    margin-right: 12px;
    font-size: 28px;
  }
  .footer_right .s2 {
    font-size: 36px;
  }
  .footer_right .s3 {
    margin-left: 14px;
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .footer_right .s3 span {
    font-size: 14px;
  }
  .footer_right .p4 {
    display: block;
    font-size: 16px;
    line-height: 1.6;
  }
  .footer_right .s4 {
    font-size: 20px;
  }
}
.fade_in_up {
  opacity: 0;
  transform: translateY(100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_up.active {
  animation-name: fadeInUp;
}

.fade_in_left {
  opacity: 0;
  transform: translateX(-100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_left.active {
  animation-name: fadeInLeft;
}

.fade_in_right {
  opacity: 0;
  transform: translateX(100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_right.active {
  animation-name: fadeInRight;
}

/***********************************/
/**********アニメーション************/
/**********************************/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes to_transparent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes to_appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#contact_form .contact_form .head {
  min-width: 230px;
  width: 230px;
  text-align: right;
  padding: 10px 20px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#contact_form .contact_form .text {
  width: 100%;
  padding: 10px 20px;
}

#contact_form .contact_form .address_wrap .title {
  min-width: 99px;
}

#contact_form .contact_form .address_wrap .head {
  min-width: 130px;
  width: 130px;
}

#contact_form .contact_form .address_wrap .text > span {
  width: 100%;
}

#contact_form .contact_form .address_wrap > div:last-of-type {
  width: 100%;
}

#contact_form .contact_form .address_wrap > div:last-of-type > div:first-of-type .head {
  border-top: none;
}

#contact_form .contact_form .address_wrap > div:last-of-type > div:first-of-type .text {
  border-top: none;
}

#contact_form .contact_form input[type=text],
#contact_form .contact_form input[type=email],
#contact_form .contact_form input[type=number],
#contact_form .contact_form input[type=date],
#contact_form .contact_form input[type=tel],
#contact_form .contact_form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #6e4621;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}

#contact_form .contact_form select {
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #6e4621;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}

#contact_form .contact_form .req {
  margin: 0 0 0 8px;
}

#contact_form .submit_wrap {
  text-align: center;
  margin-top: 20px;
}

#contact_form .submit_wrap > input {
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  color: #fff;
  background-color: #006900;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  height: 70px;
  width: 200px;
  opacity: 1;
  transition: all 0.4s;
}
#contact_form .submit_wrap > input:hover {
  opacity: 0.6;
}

#contact_form .wpcf7-spinner {
  display: block;
  margin: 4px auto 0;
}

.cf7_wrap fieldset {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
}

/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  #contact_form .contact_form > div:nth-child(1) input {
    max-width: 340px;
  }
  #contact_form .contact_form > div:nth-child(2) input,
  #contact_form .contact_form > div:nth-child(3) input,
  #contact_form .contact_form > div:nth-child(4) input,
  #contact_form .contact_form > div:nth-child(6) input {
    max-width: 219px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #contact_form .contact_form .head {
    min-width: auto;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding: 10px 0 0;
  }
  #contact_form .contact_form .text {
    padding: 10px 0;
  }
  #contact_form .contact_form .address_wrap {
    border-left: none;
  }
  #contact_form .contact_form .address_wrap .title {
    width: 100%;
  }
  #contact_form .contact_form .address_wrap .head {
    min-width: auto;
    width: 100%;
  }
  #contact_form .contact_form > div:last-child .head {
    border-bottom: none;
  }
  #contact_form select {
    width: 100%;
  }
  #contact_form .contact_form > div:nth-child(4),
  #contact_form .contact_form > div:nth-child(4) .wpcf7-form-control-wrap,
  #contact_form .contact_form > div:nth-child(8),
  #contact_form .contact_form > div:nth-child(9) {
    width: 100%;
  }
}