@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  background: #f3f5f7;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em; }

a {
  color: #0c4337;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer; }

#wrapper {
  overflow: hidden; }

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

.bold {
  font-weight: 600; }

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600; }

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif; }

.bigger {
  font-size: 1.8rem; }
  @media all and (max-width: 639px) {
    .bigger {
      font-size: 1.25rem; } }
.en-big {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  text-transform: uppercase; }

.st1 {
  stroke-miterlimit: 5;
  stroke-width: 1;
  fill: none;
  stroke: #111; }

.st0 {
  stroke-miterlimit: 5;
  stroke-width: 1;
  fill: none;
  stroke: #105948; }

#svg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to right bottom, #ffffff, #ade5eb);
  z-index: 30; }
  #svg_wrap.off {
    background: transparent;
    transition: 2s;
    opacity: 0; }

#svg {
  width: 300px;
  height: 330px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  @media all and (max-width: 639px) {
    #svg {
      width: 200px;
      height: 200px; } }
#svg-after {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px; }
  @media all and (max-width: 639px) {
    #svg-after {
      width: 200px;
      height: 200px; } }
/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }

.animation {
  opacity: 0; }

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999; }
  .loader::after {
    animation: loader 0.5s linear infinite;
    border: 1px solid #105948;
    border-radius: 50%;
    border-right: 1px solid rgba(16, 89, 72, 0.2);
    border-top: 1px solid rgba(16, 89, 72, 0.2);
    content: "";
    height: 70px;
    width: 70px; }
  .loader.off {
    display: none; }

@keyframes loader {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }

.gradient {
  background: linear-gradient(45deg, #ccc, #7bbf46, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite; }

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

#l-header {
  width: 100%; }
  #l-header.is-fixed {
    z-index: 200;
    top: 0;
    left: 0;
    position: fixed;
    background: #fefefe; }
  #l-header.is-hide {
    transform: translateY(-100%); }
  #l-header .inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 896px;
    margin: 0 auto;
    padding: 8px 0 8px;
    align-items: center;
    justify-content: space-between; }
    @media all and (max-width: 896px) {
      #l-header .inner {
        min-width: initial; } }
    #l-header .inner #logo {
      width: 336px;
      padding-left: 16px; }
  #l-header .head-right {
    margin-left: auto;
    margin-right: 5px; }
    @media all and (max-width: 896px) {
      #l-header .head-right {
        display: none; } }
  #l-header .head-right_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto; }
  #l-header .head-right_tel a,
  #l-header .head-right_mail a {
    display: block;
    padding: 4px 15px;
    transition: all 0.2s ease-in;
    background: #7bbf46;
    color: #fff;
    font-size: 1.3rem; }
    #l-header .head-right_tel a:before,
    #l-header .head-right_mail a:before {
      margin-right: 5px; }
  #l-header .head-right_tel a {
    background: transparent;
    color: #105948;
    font-weight: 600;
    font-size: 1.7rem;
    position: relative; }
    #l-header .head-right_tel a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f879";
      font-weight: 900; }
    #l-header .head-right_tel a:hover {
      color: #20af8e; }
  #l-header .head-right_mail {
    margin-left: 10px; }
    #l-header .head-right_mail a {
      border: 1px solid #7bbf46;
      padding-left: 45px;
      position: relative;
      color: #fefefe; }
      #l-header .head-right_mail a span {
        display: block;
        font-size: 12px;
        margin-bottom: -5px; }
      #l-header .head-right_mail a:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-weight: 900;
        position: absolute;
        left: 15px;
        top: 50%;
        font-size: 1.7rem;
        transform: translateY(-50%); }
      #l-header .head-right_mail a:hover {
        color: #7bbf46;
        background: #fefefe; }

#header_nav {
  position: relative;
  max-width: 1200px;
  margin-top: 4px; }
  #header_nav ul {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; }
    #header_nav ul li {
      position: relative;
      flex: 1 0 auto; }
      #header_nav ul li a {
        display: block;
        position: relative;
        line-height: 1.5;
        font-size: 1.5rem;
        padding: 8px 16px 8px 0;
        color: #232323;
        font-weight: 600; }
        #header_nav ul li a span {
          display: block;
          font-size: 1.2rem;
          font-family: "Libre Baskerville", serif;
          font-weight: 400;
          color: #7bbf46;
          position: relative;
          letter-spacing: 0.1rem; }
        #header_nav ul li a:after {
          position: absolute;
          content: "";
          width: 0;
          height: 2px;
          background: #7bbf46;
          left: 0;
          bottom: 0px;
          transition: 0.2s width ease-in; }
        #header_nav ul li a:hover, #header_nav ul li a.active {
          color: #105948; }
          #header_nav ul li a:hover:after, #header_nav ul li a.active:after {
            width: 20px; }
      #header_nav ul li.spnav {
        display: none; }
  #header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 45px;
    z-index: 999;
    padding-top: 30px; }
    #header_nav .dropdown .dropdown-li {
      border-right: 0;
      margin: 0 0 5px;
      background: #18846b; }
      #header_nav .dropdown .dropdown-li a {
        display: block;
        width: 160px;
        padding: 12px 8px;
        color: #fefefe; }
      #header_nav .dropdown .dropdown-li.foot_only {
        display: none; }

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200; }
  #page-top a {
    display: block;
    background: #7bbf46;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    color: #fefefe;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    text-align: center; }
    #page-top a:hover {
      opacity: 0.6; }
  @media all and (max-width: 639px) {
    #page-top {
      bototm: 20px; } }
/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.12); } }

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both; }

.slide-txt {
  position: absolute;
  left: 2%;
  bottom: 2%;
  width: 750px;
  z-index: 3; }
  @media all and (max-width: 1400px) {
    .slide-txt {
      width: 35%; } }
  @media all and (max-width: 896px) {
    .slide-txt {
      width: 60%; } }
  @media all and (max-width: 639px) {
    .slide-txt {
      width: 80%; } }
.swiper-slide {
  position: relative; }
  .swiper-slide:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    right: 0;
    top: 0;
    background-position: 50%;
    background-size: cover;
    z-index: -1; }
  .swiper-slide.slide1:before {
    background-image: url(../img/1.jpg);
    background-position: 80% 50%; }
  .swiper-slide.slide2:before {
    background-image: url(../img/2.jpg);
    background-position: 50% 100%; }
  .swiper-slide.slide3:before {
    background-image: url(../img/3.jpg); }

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 85vh;
  margin-left: auto; }
  .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"; }
  @media all and (max-width: 896px) {
    .slide-img {
      height: 60vh; } }
  @media all and (max-width: 639px) {
    .slide-img {
      height: 35vh; } }
.slider {
  width: 100vw;
  height: 80vh;
  position: relative;
  overflow: hidden; }
  .slider > div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    top: 0; }
    .slider > div img.slider-img {
      display: none; }
    .slider > div > div {
      flex: none;
      background-repeat: no-repeat; }
  @media all and (max-width: 1100px) {
    .slider {
      height: 50vh; } }
#slideshow {
  position: relative; }
  #slideshow:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 3;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding-top: 10%; }

#slide-wrap {
  position: relative; }

#catch {
  z-index: 50;
  position: absolute;
  left: 3%;
  top: 70%;
  transform: translateY(-70%);
  width: 700px;
  opacity: 1; }
  #catch.catch2 {
    width: 600px; }
  #catch.on {
    opacity: 1;
    transition: 2s; }
  @media all and (max-width: 1400px) {
    #catch {
      width: 600px; }
      #catch.catch2 {
        width: 600px; } }
  @media all and (max-width: 896px) {
    #catch {
      bottom: 15%;
      width: 70%;
      top: auto; }
      #catch.catch2 {
        bottom: 15%;
        width: 60%;
        top: auto;
        transform: none; } }
  @media all and (max-width: 639px) {
    #catch {
      width: 90%;
      bottom: 5%; }
      #catch.catch2 {
        bottom: 5%;
        width: 80%;
        top: auto;
        transform: none; } }
#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px; }
  #scrolldown:before, #scrolldown:after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 50%; }
  #scrolldown:before {
    width: 1px;
    height: 100px;
    bottom: 0;
    background: #f0f0f0;
    transform: translateX(-50%); }
  #scrolldown:after {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100%;
    top: 100px;
    margin-left: -4px;
    animation: scroll-point 2.3s ease-out infinite;
    animation-fill-mode: both; }
  @media all and (max-width: 896px) {
    #scrolldown {
      display: none; } }
@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0; }
  20% {
    opacity: 1; }
  50% {
    top: 180px;
    opacity: 1; }
  80% {
    opacity: 0; }
  100% {
    top: 210px;
    opacity: 0; } }

/* contact_bnr
----------------------------------*/
.contact_bnr {
  margin: 20px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .contact_bnr > li {
    width: 48%; }
    @media all and (max-width: 639px) {
      .contact_bnr > li {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 15px; } }
    .contact_bnr > li .bnr_tel {
      white-space: nowrap;
      color: #fefefe;
      line-height: 1.3;
      font-size: 2.4rem;
      padding: 12px 10px;
      background: #105948;
      border-radius: 40px;
      border: 1px solid #105948;
      font-family: "Libre Baskerville", serif;
      font-weight: 400; }
      .contact_bnr > li .bnr_tel:before {
        font-family: "Font Awesome 5 Free";
        content: "\f095";
        font-weight: 900;
        font-size: 2.8rem; }
      .contact_bnr > li .bnr_tel:hover {
        background: #fefefe;
        color: #105948; }
      @media all and (max-width: 639px) {
        .contact_bnr > li .bnr_tel {
          font-size: 2rem;
          width: 100%; }
          .contact_bnr > li .bnr_tel:before {
            font-size: 1.6rem; } }
    .contact_bnr > li .bnr_mobile {
      background: #105948;
      border: 1px solid #082e25; }
      .contact_bnr > li .bnr_mobile:before {
        font-family: "Font Awesome 5 Free";
        content: "\f3cd";
        font-weight: 900; }
      .contact_bnr > li .bnr_mobile:hover {
        background: #a23b4a; }
    .contact_bnr > li .bnr_reserve {
      background: #ffdf2c;
      color: #222; }
      .contact_bnr > li .bnr_reserve:before {
        font-family: "Font Awesome 5 Free";
        content: "\f073";
        font-weight: 900; }
    .contact_bnr > li .bnr_fax {
      background: #fffaf1;
      border: 1px solid #ffdfa5;
      color: #333; }
      .contact_bnr > li .bnr_fax:before {
        font-family: "Font Awesome 5 Free";
        content: "\f1ac";
        font-weight: 900; }
    .contact_bnr > li .bnr_mail {
      background: #7bbf46;
      color: #fefefe;
      border-radius: 50px;
      font-size: 1.8rem;
      padding: 18px 0;
      border: 1px solid #7bbf46; }
      .contact_bnr > li .bnr_mail:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-weight: 900; }
      .contact_bnr > li .bnr_mail:hover {
        background: #fefefe;
        color: #7bbf46; }
      @media all and (max-width: 639px) {
        .contact_bnr > li .bnr_mail {
          font-size: 1.3rem;
          padding: 14px 0; } }
    .contact_bnr > li a,
    .contact_bnr > li span {
      display: block;
      padding: 5px 15px;
      margin: 0 auto;
      color: #ffffff;
      font-size: 2rem;
      font-weight: bold;
      text-align: center; }
      .contact_bnr > li a:before,
      .contact_bnr > li span:before {
        margin-right: 5px; }

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  background: #105948; }
  #l-footer .inner {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 3;
    padding: 45px 20px; }
  @media all and (max-width: 1100px) {
    #l-footer .inner {
      width: 100%; } }
  @media all and (max-width: 639px) {
    #l-footer {
      font-size: 1.2rem; } }
/* footer_navi
----------------------------------*/
.footer_navi {
  flex-basis: 100%;
  margin: 30px auto; }
  .footer_navi ul {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; }
    .footer_navi ul li {
      width: 50%;
      margin-bottom: 8px; }
      .footer_navi ul li a {
        color: #fefefe;
        font-size: 1.7rem;
        position: relative;
        padding-left: 20px;
        font-weight: 600; }
        .footer_navi ul li a span {
          display: none; }
        .footer_navi ul li a:before {
          content: "";
          background-color: #7bbf46;
          width: 10px;
          height: 4px;
          position: absolute;
          top: 0.5em;
          left: 0; }
        .footer_navi ul li a:hover {
          color: #ffdf2c; }
      .footer_navi ul li .dropdown {
        display: none; }
        .footer_navi ul li .dropdown .dropdon-li a {
          font-size: 1.2rem; }

.flogo {
  width: 100%;
  min-height: 0; }
  .flogo > a img {
    width: 80%; }
  @media all and (max-width: 639px) {
    .flogo {
      margin: 0 auto 20px;
      width: 80%; } }
.flogo_txt {
  font-size: 1.8rem;
  color: #fefefe; }
  @media all and (max-width: 639px) {
    .flogo_txt {
      font-size: 1.4rem; } }
.address {
  color: #fefefe;
  font-size: 16px; }

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  background: #082e25;
  color: #fff; }
  @media all and (max-width: 896px) {
    .copyright {
      font-size: 12px; } }
/*----------------------------------
top-contents
----------------------------------*/
#top_1 {
  position: relative;
  padding: 120px 0;
  background: #fefefe; }
  #top_1:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background-image: url(../img/top_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -2px;
    right: 0; }
  #top_1 img._sp {
    display: none; }
  #top_1 .single {
    padding: 0; }
  #top_1 .top_1__cont {
    width: 50%;
    margin-right: auto;
    padding: 0 80px;
    font-weight: bold; }
    #top_1 .top_1__cont .read {
      font-size: 20px;
      letter-spacing: .1em;
      color: #7bbf46; }
      #top_1 .top_1__cont .read span {
        font-family: "Libre Baskerville", serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 28px;
        letter-spacing: .1em;
        display: block;
        line-height: 1em;
        margin-bottom: 8px;
        color: #105948; }
    #top_1 .top_1__cont .main {
      font-size: 15px;
      letter-spacing: .1em;
      margin-top: 40px; }
    #top_1 .top_1__cont .more {
      display: block;
      text-align: center;
      margin-top: 40px;
      width: 215px;
      font-size: 13px;
      letter-spacing: .1em;
      border: 1px solid #000;
      padding: .8em 2em;
      letter-spacing: .1em;
      transition: .4s; }
      #top_1 .top_1__cont .more span:after {
        font-family: "Font Awesome 5 Free";
        margin-left: 5px;
        font-weight: 900;
        content: "\f105";
        font-size: 80%; }
      #top_1 .top_1__cont .more:hover {
        background: #fff;
        color: #2f3e60;
        transition: .4s; }
  @media all and (max-width: 896px) {
    #top_1 .top_1__cont {
      padding: 0 24px; } }
  @media all and (max-width: 639px) {
    #top_1 {
      margin-top: 0;
      padding: 0 0 50px; }
      #top_1:before {
        display: none; }
      #top_1 img._sp {
        width: 100%;
        display: block;
        margin-bottom: 40px; }
      #top_1 .top_1__cont {
        width: 100%;
        padding: 0 15px; }
        #top_1 .top_1__cont .main span {
          font-size: 19px;
          letter-spacing: .1em; }
          #top_1 .top_1__cont .main span br {
            display: none; } }
#top_2 {
  position: relative;
  padding: 120px 0;
  background: #fefefe; }
  #top_2:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background-image: url(../img/top_2-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; }
  #top_2 img._sp {
    display: none; }
  #top_2 .single {
    padding: 0; }
  #top_2 .top_2__cont {
    width: 50%;
    margin-left: auto;
    padding: 0 80px;
    font-weight: bold; }
    #top_2 .top_2__cont .read {
      font-size: 20px;
      letter-spacing: .1em;
      color: #7bbf46;
      font-weight: bold; }
      #top_2 .top_2__cont .read span {
        font-family: "Libre Baskerville", serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 28px;
        letter-spacing: .1em;
        display: block;
        line-height: 1em;
        margin-bottom: 8px;
        color: #105948; }
    #top_2 .top_2__cont .main {
      font-size: 15px;
      letter-spacing: .1em;
      margin-top: 40px; }
    #top_2 .top_2__cont .more {
      display: block;
      text-align: center;
      margin-top: 40px;
      width: 215px;
      font-size: 13px;
      letter-spacing: .1em;
      background: #105948;
      border: 1px solid #105948;
      color: #fefefe;
      padding: .8em 2em;
      letter-spacing: .1em;
      transition: .4s; }
      #top_2 .top_2__cont .more span:after {
        font-family: "Font Awesome 5 Free";
        margin-left: 5px;
        font-weight: 900;
        content: "\f105";
        font-size: 80%; }
      #top_2 .top_2__cont .more:hover {
        background: #fefefe;
        color: #105948;
        transition: .4s; }
  @media all and (max-width: 896px) {
    #top_2 {
      margin-top: 48px;
      padding: 0 0 48px; }
      #top_2:before {
        display: none; }
      #top_2 img._sp {
        width: 100%;
        display: block;
        margin-bottom: 32px; }
      #top_2 .top_2__cont {
        width: 100%;
        padding: 0 24px; }
        #top_2 .top_2__cont .main span {
          font-size: 19px;
          letter-spacing: .1em; }
          #top_2 .top_2__cont .main span br {
            display: none; } }
.campaign-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .campaign-wrap .campaign-child {
    width: 50%; }
  @media all and (max-width: 639px) {
    .campaign-wrap {
      padding: 0 15px; }
      .campaign-wrap .campaign-child {
        width: 100%; } }
.sec1 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  margin: 0 auto; }
  .sec1 .greet-lead {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    color: #7bbf46;
    font-size: 3rem; }
    @media all and (max-width: 639px) {
      .sec1 .greet-lead {
        width: 100%;
        writing-mode: inherit;
        font-size: 2rem; } }
  .sec1 .sec1-txt {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 49%; }
    .sec1 .sec1-txt .inner {
      margin-left: 30px;
      flex: 1; }
    @media all and (max-width: 639px) {
      .sec1 .sec1-txt {
        flex-direction: column;
        justify-content: center;
        font-size: 1.3rem; }
        .sec1 .sec1-txt .inner {
          flex: 0 1 auto;
          margin: 20px 0 0; } }
  .sec1 .sec1-btn {
    width: 50%;
    position: relative; }
    .sec1 .sec1-btn img {
      width: 100%; }
  @media all and (max-width: 896px) {
    .sec1 {
      max-width: 90%;
      margin: 0 auto; }
      .sec1 .sec1-txt {
        width: 100%;
        margin-bottom: 30px; }
      .sec1 .sec1-btn {
        width: 100%; } }
  @media all and (max-width: 639px) {
    .sec1 {
      max-width: 100%; }
      .sec1 .sec1-txt {
        padding: 15px 10px; } }
.bg-half {
  position: relative; }
  .bg-half::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-half2.jpg) no-repeat center left/cover; }
    @media all and (max-width: 896px) {
      .bg-half::before {
        width: 100%;
        height: 50%; } }
    @media all and (max-width: 639px) {
      .bg-half::before {
        height: 200px; } }
  .bg-half .half-box {
    width: 50%;
    padding: 110px 30px;
    margin-left: auto;
    background: url(../img/body_bg.png); }
    .bg-half .half-box .inner {
      max-width: 600px;
      margin: 0 auto; }
    @media all and (max-width: 896px) {
      .bg-half .half-box {
        width: 100%;
        padding: 40px 20px;
        padding-top: 50%; } }
    @media all and (max-width: 639px) {
      .bg-half .half-box {
        padding: 30px 15px;
        padding-top: 230px; } }
.sec2-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto; }
  .sec2-wrap + .sec2-wrap {
    margin-top: 120px; }
  .sec2-wrap .sec2-img-box {
    width: 56%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    order: 2; }
    .sec2-wrap .sec2-img-box img {
      width: 100%; }
    .sec2-wrap .sec2-img-box .sec2-img01 {
      width: 58%; }
    .sec2-wrap .sec2-img-box .sec2-img02 {
      width: 37%; }
  .sec2-wrap .sec2-box {
    width: 40%;
    padding: 40px; }
  .sec2-wrap.type1 .sec1-img-box {
    order: 0; }
    .sec2-wrap.type1 .sec1-img-box .sec1-img01 {
      order: 2; }
  @media all and (max-width: 639px) {
    .sec2-wrap {
      flex-direction: column; }
      .sec2-wrap + .sec2-wrap {
        margin-top: 60px; }
      .sec2-wrap .sec2-img-box {
        width: 95%;
        margin-bottom: 20px;
        order: -1; }
      .sec2-wrap .sec2-box {
        width: 100%;
        padding: 20px; } }
.lead01 {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 25px; }
  .lead01 span {
    color: #105948;
    background-repeat: repeat;
    font-weight: bold;
    background-clip: text;
    -webkit-background-clip: text;
    display: block;
    font-size: 2.8rem; }
  .lead01.type1 {
    color: #322c6f; }
  @media all and (max-width: 896px) {
    .lead01 {
      font-size: 2.8rem; } }
  @media all and (max-width: 639px) {
    .lead01 {
      font-size: 1.8rem; }
      .lead01 .part1 em {
        font-size: 3.5rem; } }
.icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2; }
  .icon-list li {
    width: calc(100% / 4); }
    .icon-list li a {
      display: block;
      text-align: center;
      font-weight: 600;
      line-height: 1.4;
      height: 100%;
      transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
      position: relative;
      padding: 20px 0;
      transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1); }
      .icon-list li a figure {
        margin: 0 auto 15px;
        width: 70px; }
      .icon-list li a .icon-title {
        color: #fff;
        position: relative;
        z-index: 2;
        transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1); }
        @media all and (max-width: 639px) {
          .icon-list li a .icon-title {
            padding: 12px 5px; } }
      .icon-list li a:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/bg-03.jpg);
        opacity: 0.95;
        transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
        z-index: -1; }
      .icon-list li a:hover {
        z-index: 2; }
        .icon-list li a:hover:before {
          transform: translate(-50%, -50%) scale(1.07, 1.02);
          opacity: 1; }
        .icon-list li a:hover .icon-title {
          color: #7bbf46; }
    @media all and (max-width: 639px) {
      .icon-list li {
        width: 48%;
        margin-bottom: 15px; } }
/* menu-btn-list
----------------------------------*/
.menu-btn-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  margin: 0 auto 56px;
  justify-content: left; }
  .menu-btn-list .child {
    width: 31%; }
    .menu-btn-list .child a {
      display: block;
      position: relative; }
      .menu-btn-list .child a figure {
        height: 280px;
        overflow: hidden;
        background-image: linear-gradient(45deg, #999, #555); }
        @media all and (max-width: 1100px) {
          .menu-btn-list .child a figure {
            height: 200px; } }
        .menu-btn-list .child a figure img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          font-family: "object-fit: cover;";
          opacity: 0.7;
          transition: 0.2s all ease-in; }
      .menu-btn-list .child a:hover .menu-btn-title {
        background: #105948;
        color: #fff; }
        .menu-btn-list .child a:hover .menu-btn-title span {
          color: #fff;
          border-bottom-color: #fff; }
      .menu-btn-list .child a:hover img {
        opacity: 1.0;
        transform: scale(1.1); }
    @media all and (max-width: 639px) {
      .menu-btn-list .child {
        width: 100%;
        margin-bottom: 25px; } }
    .menu-btn-list .child.col4 {
      width: 23%;
      margin: 0 1% 24px;
      background: #fefefe; }
      @media all and (max-width: 896px) {
        .menu-btn-list .child.col4 {
          width: 31%; } }
      @media all and (max-width: 639px) {
        .menu-btn-list .child.col4 {
          width: 90%;
          margin-bottom: 16px;
          margin: 0 auto 24px; } }
      .menu-btn-list .child.col4 a figure img {
        opacity: 1.0; }
  .menu-btn-list .menu-btn-title {
    text-align: center;
    color: #000000;
    padding: 15px;
    position: relative;
    font-weight: 400;
    z-index: 4;
    font-size: 2.4rem; }
    .menu-btn-list .menu-btn-title * {
      transition: all 0.2s ease-in; }
    .menu-btn-list .menu-btn-title:before {
      position: absolute;
      content: "";
      width: 1px;
      height: 60px;
      top: -40px;
      left: 50%;
      background: #7bbf46; }
    .menu-btn-list .menu-btn-title span {
      font-size: 1.6rem;
      line-height: 1;
      border-bottom: 1px solid #105948;
      font-family: "Libre Baskerville", serif;
      font-weight: 400;
      color: #105948;
      margin-bottom: 10px; }
    @media all and (max-width: 639px) {
      .menu-btn-list .menu-btn-title {
        font-size: 1.6rem; }
        .menu-btn-list .menu-btn-title span {
          font-size: 1.4rem; } }
.menu-btn-txt {
  padding: 15px; }

.arrow {
  position: absolute;
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #fff;
  right: 20px;
  top: 200px;
  z-index: 4;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px; }
  .arrow:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid #fefefe;
    border-radius: 100%;
    z-index: -1; }
  @media all and (max-width: 1100px) {
    .arrow {
      width: 35px;
      height: 35px;
      padding-top: 5px;
      top: 150px; }
      .arrow .arrow-svg {
        transform: scale(0.6); } }
.works-card li a {
  display: block;
  height: 220px;
  overflow: hidden; }
  .works-card li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"; }

@media all and (max-width: 639px) {
  .works-card {
    padding: 0 10px; }
    .works-card a {
      height: 200px; } }

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 200px; }
  @media all and (max-width: 896px) {
    .news-box {
      margin-top: 0; } }
  @media all and (max-width: 639px) {
    .news-box {
      flex-direction: column;
      padding: 20px 10px; } }
.news-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative; }
  .news-title span {
    display: block; }
  .news-title .eng {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #105948;
    position: relative;
    font-size: 3rem; }
  .news-title .ja {
    font-size: 1.5rem;
    position: relative;
    font-weight: 600; }
  @media all and (max-width: 639px) {
    .news-title {
      margin-bottom: 30px; }
      .news-title .eng {
        font-size: 2.4rem; }
      .news-title .ja {
        font-size: 1.4rem; } }
.news-right {
  flex: 1;
  margin-left: 80px; }
  @media all and (max-width: 639px) {
    .news-right {
      width: 100%;
      margin: 10px 0 0; } }
.topic-dl .topic-inner {
  border-bottom: 1px dashed #ccc;
  position: relative;
  padding: 5px 0;
  font-size: 1.4rem; }
  .topic-dl .topic-inner:not(:last-of-type) {
    margin-bottom: 8px; }
  @media all and (max-width: 639px) {
    .topic-dl .topic-inner {
      font-size: 12px; } }
  .topic-dl .topic-inner:before {
    width: 40px;
    border-bottom: 1px solid #105948;
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px; }
  .topic-dl .topic-inner dt {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    color: #7bbf46;
    text-align: center; }
    .topic-dl .topic-inner dt span {
      display: inline-block;
      margin-left: 4px;
      padding: 2px 8px;
      background: #7bbf46;
      color: #fefefe;
      border-radius: 20px; }
  .topic-dl .topic-inner dd a {
    font-weight: 600;
    color: #7bbf46; }
    .topic-dl .topic-inner dd a:hover {
      color: #105948; }

.map-link {
  font-weight: 600;
  color: #105948;
  border-bottom: 1px solid #105948; }
  .map-link:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    font-weight: 900;
    margin-right: 5px; }

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative; }

.single02 {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0; }

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative; }

.single04 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  position: relative; }
  .single04.top {
    padding: 90px 0 30px 0; }
  .single04.bottom {
    padding: 30px 0 90px 0; }
  .single04.both {
    padding: 90px 0 90px 0; }
    @media all and (max-width: 896px) {
      .single04.both {
        padding: 56px 0 56px 0; } }
  @media all and (max-width: 1100px) {
    .single04 {
      width: 95%; } }
.margin-top {
  margin-top: -80px; }
  @media all and (max-width: 639px) {
    .margin-top {
      margin-top: -30px; } }
.lsingle,
.rsingle {
  width: 48.44%; }

.lsingle {
  float: left; }

.rsingle {
  float: right; }

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto; }
  .mbox.transparent {
    background: transparent; }
  @media all and (max-width: 639px) {
    .mbox {
      padding: 15px 10px; } }
.mbox2 {
  border: 3px solid #105948;
  background: #fefefe;
  padding: 30px;
  position: relative; }
  .mbox2:before {
    bottom: -15px;
    right: -15px;
    background-image: radial-gradient(circle, #105948 15%, transparent 10%), radial-gradient(circle, #105948 15%, transparent 10%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    z-index: -1;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%; }
  @media all and (max-width: 639px) {
    .mbox2 {
      padding: 15px; } }
.mbox3 {
  background: #fefefe;
  padding: 75px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto; }
  .mbox3.transparent {
    background: transparent; }
  @media all and (max-width: 639px) {
    .mbox3 {
      padding: 15px 10px; } }
.mbox4 {
  background: url(../img/bg-mbox.jpg) no-repeat center center;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto; }
  .mbox4.transparent {
    background: transparent; }
  @media all and (max-width: 639px) {
    .mbox4 {
      padding: 15px 10px; } }
.mbox5 {
  background: url(../img/bg-mbox2.jpg) no-repeat bottom center;
  padding: 50px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto; }
  .mbox5.transparent {
    background: transparent; }
  @media all and (max-width: 639px) {
    .mbox5 {
      padding: 15px 10px; } }
.mbox-beige {
  background: rgba(255, 250, 241, 0.9);
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto; }
  .mbox-beige.transparent {
    background: transparent; }
  @media all and (max-width: 639px) {
    .mbox-beige {
      padding: 15px 10px; } }
.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto; }

.sentence p + p {
  margin-top: 16px; }

.sentence.white {
  color: #fefefe; }

@media all and (max-width: 639px) {
  .sentence p {
    font-size: 1.2rem; } }

.sentence.main {
  font-size: 15px;
  letter-spacing: .1em; }

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat; }

.bg-map {
  background: url(../img/map.png) no-repeat right bottom; }
  @media all and (max-width: 639px) {
    .bg-map {
      -webkit-background-size: auto 200px;
      background-size: auto 200px;
      background-position: right top; } }
.bg-wall {
  background: url(../img/bg-wall.jpg); }

#main {
  float: left;
  width: 76%; }
  #main .mbox {
    min-height: 300px; }
    @media all and (max-width: 896px) {
      #main .mbox {
        min-height: initial; } }
  @media all and (max-width: 896px) {
    #main {
      float: none;
      width: 100%; } }
#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px; }
  @media all and (max-width: 896px) {
    #side {
      float: none;
      width: 100%;
      position: static;
      margin-top: 40px; } }
/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 600;
  margin: 0 auto 40px;
  text-align: center;
  padding-bottom: 30px;
  background: url(../img/mtitle-bg1.png) no-repeat center bottom/160px auto; }
  .mtitle .eng {
    font-size: 3.5rem;
    color: #a23b4a;
    position: relative;
    display: block;
    font-family: "Libre Baskerville", serif;
    font-weight: 400; }
  .mtitle .ja {
    font-size: 2rem;
    color: #3a200c; }
  .mtitle.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
    .mtitle.white span {
      color: #fff;
      text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
      .mtitle.white span:after {
        background-color: #eee; }
      .mtitle.white span.ja {
        border-bottom-color: #fefefe; }
  .mtitle.black {
    color: #333; }
    .mtitle.black span {
      color: #555; }
      .mtitle.black span:after {
        background-color: #555; }
  .mtitle.mtitle_left {
    text-align: left;
    margin-left: 0;
    margin-right: 0; }
    .mtitle.mtitle_left span:after {
      left: 0;
      transform: none; }
  @media all and (max-width: 639px) {
    .mtitle {
      background: url(../img/mtitle-bg1.png) no-repeat center bottom/120px auto;
      text-align: center; }
      .mtitle .eng {
        font-size: 2.2rem; }
      .mtitle .ja {
        font-size: 1.3rem; } }
.mtitle2 {
  margin-bottom: 20px;
  color: #3a200c;
  letter-spacing: 0.15em;
  position: relative; }
  .mtitle2 span {
    font-size: 2.5rem;
    display: block;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #105948; }
    .mtitle2 span.ja {
      font-size: 2rem;
      font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }
  @media all and (max-width: 639px) {
    .mtitle2 {
      font-size: 1.3rem; }
      .mtitle2 span {
        font-size: 1.5rem; }
        .mtitle2 span .ja {
          font-size: 1.6rem; } }
.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px; }
  .mtitle3 .ja {
    display: block;
    font-size: 3rem;
    border-right: 2px solid #105948;
    letter-spacing: 0.2em;
    padding-right: 5px;
    font-weight: 600; }
  .mtitle3 .eng {
    display: block;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #105948;
    padding-left: 3px; }
  @media all and (max-width: 639px) {
    .mtitle3 {
      position: relative;
      writing-mode: inherit;
      left: 0;
      top: 0;
      min-height: auto;
      min-height: initial; }
      .mtitle3 .ja {
        font-size: 1.7rem;
        border-right: 0;
        border-left: 2px solid #105948;
        padding: 0 0 0 10px; }
      .mtitle3 .eng {
        font-size: 1.3rem; } }
.mtitle5 {
  line-height: 1.4;
  font-weight: bold;
  margin: 0 auto 50px;
  font-size: 1.7rem;
  text-align: center;
  color: #000302;
  position: relative;
  z-index: 20; }
  .mtitle5 span {
    display: block;
    position: relative; }
  .mtitle5 .eng {
    font-size: 2.2rem;
    line-height: 1.4;
    position: relative;
    font-weight: 400;
    font-family: "Libre Baskerville", serif;
    letter-spacing: 0.2rem;
    color: #105948; }
  .mtitle5 .ja {
    letter-spacing: 0.2rem;
    font-size: 3rem; }
    .mtitle5 .ja:after {
      position: absolute;
      content: "";
      left: 50%;
      bottom: -15px;
      width: 60px;
      height: 2px;
      z-index: 1;
      background: #999;
      border-radius: 4px;
      transform: translateX(-50%); }
  .mtitle5.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
    .mtitle5.white span {
      color: #fff;
      text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
    .mtitle5.white .ja:after {
      background: #fff; }
  .mtitle5.black {
    color: #333; }
    .mtitle5.black span {
      color: #555; }
      .mtitle5.black span:after {
        background-color: #555; }
  .mtitle5.mtitle_left {
    text-align: left; }
    .mtitle5.mtitle_left span:after {
      left: 0;
      transform: none; }
    @media all and (max-width: 639px) {
      .mtitle5.mtitle_left {
        padding-left: 10px; } }
  @media all and (max-width: 639px) {
    .mtitle5 {
      font-size: 1.3rem;
      line-height: 1.7; }
      .mtitle5 .eng {
        font-size: 2.4rem;
        letter-spacing: 0;
        margin-bottom: 0px; }
      .mtitle5 .ja {
        font-size: 2rem; }
        .mtitle5 .ja:after {
          bottom: -14px;
          width: 50px;
          letter-spacing: 0.1rem; } }
.mtitle_line {
  font-size: 2.2rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  padding-top: 8px;
  color: #7bbf46;
  border-top: 2px solid #7bbf46;
  letter-spacing: 0.2rem; }
  .mtitle_line span {
    font-size: 1.4rem;
    color: #105948; }
  .mtitle_line:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    opacity: .6;
    background-image: repeating-linear-gradient(-45deg, #105948, #105948 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  @media all and (max-width: 639px) {
    .mtitle_line {
      font-size: 1.4rem; }
      .mtitle_line span {
        font-size: 12px; } }
.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem; }
  .mtitle4 span {
    position: relative;
    display: inline-block;
    min-width: 10%; }
    .mtitle4 span:before, .mtitle4 span:after {
      content: "";
      display: inline-block;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 1px;
      height: 2rem;
      background-color: #105948; }
    .mtitle4 span:before {
      left: -11px;
      -webkit-transform: rotate(-20deg);
      transform: rotate(-20deg); }
    .mtitle4 span:after {
      right: -11px;
      -webkit-transform: rotate(20deg);
      transform: rotate(20deg); }
  .mtitle4.white span:before, .mtitle4.white span:after {
    background-color: #ffdf2c; }
  @media all and (max-width: 639px) {
    .mtitle4 {
      font-size: 2rem; } }
  @media all and (max-width: 320px) {
    .mtitle4 span:before {
      left: -3px; }
    .mtitle4 span:after {
      right: -3px; } }
.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #105948;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left; }
  .mtitle_sub .hissu {
    color: #fff;
    background: #18846b;
    padding: 5px 8px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 20px; }
  .mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 50%;
    background-color: #7bbf46; }

.mtitle_box {
  background: #105948;
  color: #fefefe;
  position: relative;
  padding: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 2.0rem; }
  .mtitle_box span {
    font-weight: normal;
    font-size: 14px;
    padding-left: 10px; }
  .mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: 900;
    display: block;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
  @media all and (max-width: 639px) {
    .mtitle_box {
      font-size: 1.5rem; } }
.mtitle_box2 {
  background: rgba(123, 191, 70, 0.3);
  color: #3a200c;
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
  font-weight: 600; }
  .mtitle_box2 span {
    font-weight: normal;
    font-size: 14px;
    padding-left: 10px; }
  .mtitle_box2:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: 900;
    display: block;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
  @media all and (max-width: 639px) {
    .mtitle_box2 {
      font-size: 1.5rem; } }
.mtitle_box3 {
  background: #105948;
  font-size: 2.8rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  box-shadow: 0 8px 8px rgba(16, 89, 72, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px; }
  .mtitle_box3 .small-cap {
    font-weight: normal;
    font-size: 14px; }
  .mtitle_box3:before {
    background-color: #fff;
    content: "";
    display: block;
    transform: rotate(60deg);
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 300px;
    height: 280px; }
  @media all and (max-width: 639px) {
    .mtitle_box3 {
      font-size: 15px;
      line-height: 1.5;
      padding: 10px 10px 10px 15px;
      padding-right: 40px; }
      .mtitle_box3 span {
        font-size: 12px; }
      .mtitle_box3:before {
        width: 215px;
        right: -170px; } }
.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: .2em;
  font-weight: 600; }
  @media all and (max-width: 639px) {
    .mtext1 {
      font-size: 1.4rem; } }
.mtext2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6; }
  @media all and (max-width: 639px) {
    .mtext2 {
      font-size: 1.8rem;
      padding: 4px 8px; } }
.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em; }
  @media all and (max-width: 639px) {
    .mtext3 {
      font-size: 1.4rem; } }
.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal; }
  .mtitle_category:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0ca";
    font-weight: 900;
    margin-right: 5px;
    color: #105948; }

/* btn
----------------------------------*/
.btn01 a {
  background: #7bbf46;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 2px solid #a23b4a;
  border-radius: 35px; }
  .btn01 a:hover {
    background: #105948;
    color: #fefefe; }

.btn01.tel a {
  color: #fefefe;
  background: #105948;
  border-radius: 40px;
  border: 1px solid #105948;
  font-family: "Libre Baskerville", serif;
  font-weight: 400; }
  .btn01.tel a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: 900; }
  .btn01.tel a:hover {
    background: #fefefe;
    color: #105948; }
  @media all and (max-width: 639px) {
    .btn01.tel a a {
      font-size: 1.6rem;
      width: 95%; }
      .btn01.tel a a:before {
        font-size: 1.6rem; } }
.btn01.mail {
  flex-basis: 100%; }
  .btn01.mail a {
    border: 1px solid #7bbf46;
    background: #7bbf46;
    margin: 15px auto 25px; }
    .btn01.mail a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f0e0";
      font-weight: 900;
      margin-right: 5px; }
    .btn01.mail a:hover {
      background: #fefefe;
      color: #7bbf46; }

@media all and (max-width: 639px) {
  .btn01 a {
    font-size: 1.6rem;
    width: 95%; }
    .btn01 a:before {
      font-size: 1.6rem; } }

.btn02 {
  width: 300px;
  margin: 20px auto 20px; }
  .btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #105948;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 4px 4px rgba(58, 32, 12, 0.3); }
    .btn02 a i {
      display: block;
      position: absolute;
      top: 50%;
      right: -10px;
      width: 45px;
      height: 1px;
      background-color: #ffffff;
      transition: all 0.3s ease; }
    .btn02 a:hover {
      background-color: #20af8e; }
      .btn02 a:hover i {
        width: 34px; }
  .btn02.mail {
    flex-basis: 100%; }
    .btn02.mail a {
      background: #105948;
      margin: 15px auto 25px; }
      .btn02.mail a:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-weight: 900;
        margin-right: 5px; }
      .btn02.mail a:hover {
        background-color: #20af8e; }
  @media all and (max-width: 639px) {
    .btn02 {
      width: 260px; }
      .btn02 a {
        font-size: 1.2rem; } }
.btn03 {
  width: 350px;
  margin: 20px auto 20px 0; }
  .btn03 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #1877f2;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff; }
    .btn03 a:hover {
      background-color: rgba(24, 119, 242, 0.6); }
  @media all and (max-width: 639px) {
    .btn03 {
      margin: 20px auto;
      width: 260px; }
      .btn03 a {
        font-size: 1.4rem; } }
.btn-inst a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #fefefe;
  display: block;
  background: #fefefe;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  border-radius: 40px; }
  .btn-inst a i {
    position: relative;
    z-index: 2;
    margin-right: 10px; }
  .btn-inst a:hover {
    opacity: 0.7; }
  .btn-inst a:before {
    content: "";
    position: absolute;
    /*絶対配置*/
    top: 18px;
    /*ずらす*/
    left: -10px;
    /*ずらす*/
    width: 50px;
    /*グラデーションカバーの幅*/
    height: 50px;
    /*グラデーションカバーの高さ*/
    /*  background: radial-gradient(
      #ffdb2c 10%,
      rgba(255, 105, 34, 0.65) 55%,
      rgba(255, 88, 96, 0) 70%
      );*/
    /*グラデーション②*/ }
  .btn-inst a:not(:last-child) {
    margin-right: 10px; }
    @media all and (max-width: 896px) {
      .btn-inst a:not(:last-child) {
        margin-right: 5px;
        margin-bottom: 0; } }
/* news
----------------------------------*/
.news {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7; }
  .news dt {
    width: 7em;
    padding: 3px 5px;
    background: #f0f0f0;
    text-align: center;
    color: #3a200c; }
  .news dd {
    padding: 5px;
    background: #fff;
    width: calc(100% - 8.5em);
    margin-left: 8px; }
  .news dt:not(:last-child),
  .news dd:not(:last-child) {
    margin-bottom: 7px; }

.news-bl {
  text-align: left; }
  .news-bl dt {
    float: left;
    width: 8em;
    padding: 5px;
    line-height: 1.3;
    background: #105948;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    font-size: 1.3rem; }
    @media all and (max-width: 639px) {
      .news-bl dt {
        font-size: 1.2rem; } }
  .news-bl dd {
    padding: 0 0 12px 9.2em;
    line-height: 1.6;
    border-bottom: 1px dotted #dddddd;
    margin: 0 0 10px; }
    .news-bl dd a {
      color: #000000;
      background-image: linear-gradient(to right, #105948, #7bbf46);
      padding-bottom: 0.25em;
      background-position: 100% 100%;
      background-size: 0% 1px;
      background-repeat: no-repeat;
      transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      font-weight: 600; }
      .news-bl dd a:hover {
        background-position: 0 100%;
        background-size: 100% 1px; }
    .news-bl dd:last-child {
      margin: 0;
      border-bottom: none; }
  @media all and (max-width: 639px) {
    .news-bl dt {
      float: none; }
    .news-bl dd {
      padding: 8px 5px; } }
/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../img/page_title/01.jpg) no-repeat center/cover; }
  .page-title.title2 {
    background: url(../img/page_title/02.jpg) no-repeat center/cover; }
  .page-title.title3 {
    background: url(../img/page_title/03.jpg) no-repeat center/cover; }
  .page-title.contact {
    background: url(../img/page_title/contact.jpg) no-repeat center bottom 20%/cover; }
  .page-title:before {
    position: absolute;
    content: "";
    left: -10%;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    background: #105948;
    opacity: 0.8;
    transform: skew(13deg); }
  .page-title .inner {
    margin: 0 auto;
    padding: 120px 0 0;
    max-width: 1200px;
    overflow: hidden; }
    .page-title .inner .page-lead {
      color: #fefefe;
      font-size: 2.2rem;
      position: relative;
      transform: translateY(10px); }
      .page-title .inner .page-lead .eng {
        display: block;
        font-family: "Libre Baskerville", serif;
        font-weight: 400;
        font-size: 5rem;
        color: #fff; }
      @media all and (max-width: 639px) {
        .page-title .inner .page-lead {
          padding-left: 20px;
          font-size: 1.5rem;
          transform: translateY(4px); }
          .page-title .inner .page-lead .eng {
            font-size: 2rem; } }
  @media all and (max-width: 896px) {
    .page-title .inner {
      width: 100%;
      padding: 100px 0 0; } }
.bg-01 {
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  padding: 40px 0; }

.bg-02 {
  background: url(../img/body02.png); }

.bg-gradient {
  position: relative;
  background: rgba(255, 223, 44, 0.3);
  overflow: hidden; }
  .bg-gradient:before {
    content: "";
    position: absolute;
    bottom: -160px;
    left: 0;
    width: 100%;
    height: 320px;
    background: #ffdf2c;
    transform: skewY(4deg);
    opacity: 0.6; }
  .bg-gradient:after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: 0;
    width: 100%;
    height: 260px;
    background: #e2efda;
    transform: skewY(-3deg);
    opacity: 0.6; }

.bg-pattern {
  background: url(../img/back01.gif);
  background-size: 400px; }

.bg-base {
  background-image: linear-gradient(to right, rgba(226, 239, 218, 0.4), #e2efda);
  position: relative; }
  .bg-base.type1 {
    background: rgba(16, 89, 72, 0.4);
    position: relative; }
  .bg-base.type2 .inner {
    position: relative;
    z-index: 3; }
  .bg-base.type2:after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    transform: translate(-50%, -50%);
    background: #fefefe; }
    @media all and (max-width: 639px) {
      .bg-base.type2:after {
        width: calc(100% - 40px);
        height: calc(100% - 40px); } }
.bg-base3 {
  background: rgba(16, 89, 72, 0.1); }

.bg-sub2 {
  background: #7bbf46; }

.bg-sub3 {
  background: #b1d992; }

.bg-sub4 {
  background: #cce6b8; }

.bg-green {
  background: #e2efda; }

.bg-white {
  background: #fefefe; }

.bg-gray {
  position: relative; }
  .bg-gray:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #faf1f1;
    z-index: -2; }
  .bg-gray.type1 {
    background: #edeeed; }
  .bg-gray.bg-half {
    background: transparent;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #faf1f1 50.1%, #faf1f1 100%); }

.bg-gray2 {
  background: #7bbf46; }

.bg-999 {
  background: #888; }

.bg-blue {
  background: rgba(123, 191, 70, 0.2); }
  .bg-blue.bg-half {
    background: transparent;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #96cc6c 50.1%, #96cc6c 100%); }

.bg-beige {
  position: relative; }
  .bg-beige:before {
    background: rgba(255, 250, 241, 0.9);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2; }

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(16, 89, 72, 0.1) 0, rgba(16, 89, 72, 0.1) 20px, #fefefe 20px, #fefefe 40px); }

.bg-greet {
  background: url(../img/bg-greet.jpg) no-repeat center top;
  -webkit-background-size: cover;
  background-size: cover; }
  .bg-greet.type2 {
    background: url(../img/bg-greet2.jpg) no-repeat center center; }

.bg-topics {
  background: url(../img/bg-topics.jpg) no-repeat center center; }

/* tbl
----------------------------------*/
.tbl {
  width: 100%; }
  .tbl th,
  .tbl td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #ddd; }
  .tbl th {
    color: #fefefe;
    background: #105948;
    width: 25%; }
    .tbl th span {
      font-size: 1.4rem; }
  .tbl .cell01 {
    width: 25%; }
  @media all and (max-width: 639px) {
    .tbl th {
      width: 35%;
      text-align: left; }
    .tbl th,
    .tbl td {
      padding: 10px; } }
.tbl_new {
  margin: 0 auto;
  width: 100%; }
  .tbl_new tr th,
  .tbl_new tr td {
    vertical-align: middle;
    padding: 15px 10px; }
  .tbl_new tr th {
    font-weight: 600;
    width: 30%;
    color: #105948;
    text-align: left;
    padding-left: 30px;
    letter-spacing: 0; }
    @media all and (max-width: 639px) {
      .tbl_new tr th {
        width: 25%;
        padding-left: 10px; } }
  .tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
    background: #f0f0f0; }

.tbl-border {
  width: 100%; }
  .tbl-border th,
  .tbl-border td {
    padding: 15px;
    border-bottom: 2px solid #ccc;
    vertical-align: middle; }
    @media all and (max-width: 639px) {
      .tbl-border th,
      .tbl-border td {
        padding: 10px;
        font-size: 1.2rem; } }
  .tbl-border th {
    width: 18%;
    text-align: left;
    font-weight: 600;
    border-bottom-color: #105948; }
    .tbl-border th.th-1 {
      width: 45%; }
    @media all and (max-width: 639px) {
      .tbl-border th {
        width: 30%; } }
.tbl-border2 {
  width: 100%; }
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 15px;
    border-bottom: 2px solid #ccc;
    vertical-align: middle; }
    @media all and (max-width: 639px) {
      .tbl-border2 th,
      .tbl-border2 td {
        padding: 10px;
        font-size: 1.2rem; } }
  .tbl-border2 th {
    width: 25%;
    text-align: left;
    font-weight: 600;
    border-bottom-color: #105948; }
    .tbl-border2 th.th-1 {
      width: 45%; }
    @media all and (max-width: 639px) {
      .tbl-border2 th {
        width: 30%; } }
.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #f66009; }
  @media all and (max-width: 639px) {
    .price {
      font-size: 1.4rem; } }
.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px; }
  .company th,
  .company td {
    padding: 10px 10px;
    vertical-align: middle; }
  .company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #105948;
    color: #fff;
    font-weight: 600; }
    .company th::after {
      left: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: #f9f9f9;
      border-width: 10px;
      border-left-color: #105948;
      margin-top: -10px; }
  .company td {
    background: #f9f9f9;
    padding-left: 20px; }

.tbl-product {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  white-space: nowrap; }
  .tbl-product th,
  .tbl-product td {
    padding: 10px 10px;
    vertical-align: middle;
    text-align: center; }
  .tbl-product th {
    width: 25%;
    position: relative;
    background: #3234A8;
    color: #fff;
    font-weight: 600;
    /*&::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #f9f9f9;
    border-width: 10px;
    border-left-color: $base_color;
    margin-top: -10px;
  }*/ }
  .tbl-product td {
    background: #f9f9f9;
    padding-left: 20px; }
    .tbl-product td .small {
      font-size: 1.2rem; }

.tbl0 {
  width: 100%; }
  .tbl0 th,
  .tbl0 td {
    padding: 3px 5px;
    border: 0; }
  .tbl0 th {
    padding-left: 0;
    font-weight: normal;
    background: none;
    width: 25%;
    color: #111; }
    .tbl0 th:after, .tbl0 th:before {
      display: none; }
    @media all and (max-width: 639px) {
      .tbl0 th {
        width: 40%; } }
/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden; }
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.map-big {
  width: 100%;
  height: 350px; }
  @media all and (max-width: 639px) {
    .map-big {
      height: 280px; } }
/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted #cccccc; }
  .list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px; }
  .list-policy li {
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 2rem;
    padding-bottom: 5px;
    margin-bottom: 6px;
    font-weight: 600; }
    .list-policy li:before {
      content: "一、";
      margin-right: 7px;
      color: #105948; }
  @media all and (max-width: 639px) {
    .list-policy {
      padding: 15px; }
      .list-policy li {
        font-size: 1.4rem; } }
.list_check.type1 {
  display: flex;
  flex-wrap: wrap; }
  .list_check.type1 li {
    background: rgba(16, 89, 72, 0.1);
    padding: 12px 8px;
    width: 48%; }
    .list_check.type1 li:nth-child(2n) {
      margin-left: 4%; }
    @media all and (max-width: 639px) {
      .list_check.type1 li {
        width: 95%;
        margin: 0 auto 5px; }
        .list_check.type1 li:nth-child(2n) {
          margin-left: auto; } }
.list_check li {
  padding: 8px;
  font-weight: 600;
  background: #ddd;
  color: #111;
  margin-bottom: 5px; }
  .list_check li span {
    font-weight: normal;
    font-size: 0.9em;
    display: block;
    padding: 10px;
    background: rgba(255, 250, 241, 0.2);
    margin-top: 10px; }
  .list_check li a {
    color: #105948;
    border-bottom: 1px dotted #105948; }
  .list_check li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    margin-right: 10px;
    color: #105948; }

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem; } }

.list_check2 li {
  padding: 8px;
  font-weight: 600; }
  .list_check2 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    margin-right: 8px;
    color: #7bbf46; }
  .list_check2 li:not(:last-child) {
    margin-bottom: 4px;
    border-bottom: 1px solid #ccc; }

.list-inline2 {
  text-align: center; }
  .list-inline2 li {
    display: inline-block;
    padding: 4px 15px;
    background: #fefefe;
    border: 1px solid #edeeed;
    font-weight: 600;
    border-radius: 30px; }
    .list-inline2 li:not(:last-child) {
      margin-right: 8px; }

.list-inline li {
  display: inline-block;
  padding: 3px; }
  .list-inline li:not(:last-of-type):after {
    content: "/";
    margin: 0 5px;
    color: #105948;
    font-weight: normal; }
  @media all and (max-width: 639px) {
    .list-inline li {
      display: block;
      padding: 0; }
      .list-inline li:before {
        content: "-";
        color: #105948; }
      .list-inline li:not(:last-of-type):after {
        display: none; } }
.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px; }
  .ol-list.type1 {
    display: flex;
    flex-wrap: wrap; }
    .ol-list.type1 > li {
      width: 48%; }
      .ol-list.type1 > li:nth-child(2n) {
        margin-left: 4%; }
  .ol-list li {
    line-height: 2;
    color: #3a200c;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 1.7rem; }
    .ol-list li span {
      font-weight: normal;
      display: block;
      padding: 10px;
      line-height: 1.6; }
    .ol-list li:before {
      counter-increment: number;
      content: counter(number);
      background: rgba(16, 89, 72, 0.6);
      display: inline-block;
      width: 2em;
      height: 2em;
      text-align: center;
      font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      font-size: 2rem;
      color: #222;
      margin-right: 10px;
      border-radius: 100%; }
    @media all and (max-width: 639px) {
      .ol-list li {
        font-size: 1.3rem; }
        .ol-list li span {
          font-size: 0.9em; }
        .ol-list li:before {
          font-size: 1.8rem; } }
.list_disc li {
  padding: 5px 0; }
  .list_disc li:not(:last-of-type) {
    margin-bottom: 5px;
    border-bottom: 1px dashed #ccc; }
  .list_disc li:before {
    content: "●";
    margin-right: 5px;
    color: #105948; }

.list-btn {
  display: flex;
  flex-wrap: wrap; }
  .list-btn li {
    width: 32%;
    margin: 0 calc(1.33% + (1.33% / 2)) 10px 0; }
    .list-btn li a {
      display: block;
      background: #fffaf1;
      color: #3a200c;
      font-weight: 600;
      padding: 10px 3px;
      text-align: center;
      width: 100%;
      height: 100%;
      line-height: 1.5;
      font-size: 1.5rem;
      letter-spacing: 0; }
    .list-btn li:nth-child(3n) {
      margin-right: 0; }
    @media all and (max-width: 639px) {
      .list-btn li {
        width: 90%;
        margin: 0 auto 10px; }
        .list-btn li a {
          font-size: 1.2rem; }
        .list-btn li:nth-child(3n) {
          margin-right: auto; } }
  .list-btn.type1 {
    max-width: 1000px;
    margin: 0 auto 20px;
    justify-content: center; }
    .list-btn.type1 li a {
      background: #e2efda;
      border: 1px solid #082e25; }
      .list-btn.type1 li a:hover {
        background: #fefefe; }
      .list-btn.type1 li a:before {
        font-family: "Font Awesome 5 Free";
        content: "\f13a";
        font-weight: 900;
        margin-right: 5px; }

/* blog
----------------------------------*/
.top-blog .pages {
  display: none; }

.top-blog .blog-wrap2 > li {
  padding: 8px;
  background: #fff;
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  .top-blog .blog-wrap2 > li .blog-img {
    width: 150px;
    height: 100px;
    overflow: hidden; }
    @media all and (max-width: 639px) {
      .top-blog .blog-wrap2 > li .blog-img {
        width: 120px;
        height: 80px; } }
    .top-blog .blog-wrap2 > li .blog-img img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
      font-family: "object-fit: cover;";
      /*IE対策*/ }
    .top-blog .blog-wrap2 > li .blog-img:hover img {
      opacity: 1 !important;
      -webkit-transform: scale(1.2);
      transform: scale(1.2); }
  .top-blog .blog-wrap2 > li .blog-detail {
    width: calc(100% - 180px);
    margin-left: 25px; }
    @media all and (max-width: 639px) {
      .top-blog .blog-wrap2 > li .blog-detail {
        width: calc(100% - 130px);
        margin-left: 10px; } }
  .top-blog .blog-wrap2 > li > a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10; }
    .top-blog .blog-wrap2 > li > a:hover ~ .blog-img img {
      opacity: 1;
      -webkit-transform: scale(1.2);
      transform: scale(1.2); }

#main .blog-wrap > li {
  width: 32%; }
  @media all and (max-width: 1100px) {
    #main .blog-wrap > li {
      width: 49%;
      margin: 0 0.5% 20px 0.5%; } }
  @media all and (max-width: 639px) {
    #main .blog-wrap > li {
      width: 90%;
      margin: 0 auto 10px; } }
.blog-wrap {
  display: flex;
  flex-wrap: wrap; }
  .blog-wrap * {
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .blog-wrap > li {
    width: 24%;
    margin: 0 0.5% 20px 0.5%;
    padding: 15px;
    background: #fefefe;
    position: relative; }
    @media all and (max-width: 1100px) {
      .blog-wrap > li {
        width: 49%; } }
    .blog-wrap > li > a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 10; }
      .blog-wrap > li > a:hover ~ .blog-img img {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2); }
    @media all and (max-width: 639px) {
      .blog-wrap > li {
        width: 90%;
        margin: 0 auto 10px; } }
.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box; }
  .blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    font-family: "object-fit: cover;";
    /*IE対策*/ }
  .blog-img:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }

.blog-detail {
  padding-top: 10px; }

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px; }

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111; }

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px; }

.blog-date2 {
  color: #041814;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px; }
  .blog-date2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    font-weight: 900;
    margin-right: 5px; }

.blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0;
  color: #7bbf46; }

.blog-txt {
  line-height: 1.5;
  padding: 8px; }
  @media all and (max-width: 639px) {
    .blog-txt {
      font-size: 12px; } }
.pages {
  text-align: center;
  margin-top: 30px; }
  .pages .page_num {
    padding: 10px;
    color: #fefefe;
    background-color: #105948; }
    .pages .page_num.active {
      border: 2px solid #105948;
      color: #105948;
      background-color: #fefefe; }
  .pages .page_next,
  .pages .page_prev {
    display: inline-block;
    margin: 0 20px; }
    .pages .page_next a,
    .pages .page_prev a {
      color: #105948;
      padding: 4px 5px;
      /* background: #fefefe; */
      font-size: 12px; }
      .pages .page_next a .fa-caret-left,
      .pages .page_prev a .fa-caret-left {
        margin-right: 20px; }
      .pages .page_next a .fa-caret-right,
      .pages .page_prev a .fa-caret-right {
        margin-left: 20px; }
    /* @media all and (max-width: 639px) {
      .pages .page_next,
      .pages .page_prev {
        display: block; }
        .pages .page_next a,
        .pages .page_prev a {
          border: 2px solid #105948; } } */
.category_nav {
  border: 1px solid #dddddd; }
  .category_nav li a {
    display: block;
    padding: 15px;
    border-bottom: 1px dotted #dddddd;
    background-color: #ffffff; }
    .category_nav li a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f0a9";
      font-weight: 900;
      margin-right: 5px; }
    .category_nav li a:hover {
      background: #faf1f1; }
  .category_nav li:last-child a {
    border-bottom: none; }

.pages2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 45px; }
  .pages2 .page_next,
  .pages2 .page_prev {
    width: 48%;
    position: relative; }
    .pages2 .page_next a,
    .pages2 .page_prev a {
      color: #7bbf46;
      padding: 10px;
      background: rgba(255, 255, 255, 0);
      font-size: 13px;
      line-height: 1.6;
      display: block;
      text-align: center; }
      .pages2 .page_next a:hover,
      .pages2 .page_prev a:hover {
        color: #7bbf46; }
    .pages2 .page_next:before,
    .pages2 .page_prev:before {
      position: absolute;
      left: 50%;
      top: -15px;
      transform: translateX(-50%); }
  .pages2 .page_next {
    margin-right: 3%; }
    .pages2 .page_next:before {
      color: #105948;
      content: "Next"; }
    .pages2 .page_next:after {
      position: absolute;
      content: "";
      right: -2%;
      top: 0;
      width: 1px;
      height: 100%;
      z-index: 1;
      background: #ccc; }
  .pages2 .page_prev:before {
    color: #105948;
    content: "Previous"; }

/* service
----------------------------------*/
#ser_1 {
  position: relative;
  padding: 120px 0;
  background: #fefefe; }
  #ser_1:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -2px;
    right: 0; }
    #ser_1.type1:before {
      background-image: url(../img/service/3-02.jpg); }
    #ser_1.type2:before {
      background-image: url(../img/service/3-04.jpg); }
  #ser_1 img._sp {
    display: none; }
  #ser_1 .single {
    padding: 0; }
  #ser_1 .ser_1__cont {
    width: 50%;
    margin-right: auto;
    padding: 0 80px;
    font-weight: bold; }
    #ser_1 .ser_1__cont .read {
      font-size: 20px;
      letter-spacing: .1em;
      color: #7bbf46; }
      #ser_1 .ser_1__cont .read span {
        font-family: "Libre Baskerville", serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 28px;
        letter-spacing: .1em;
        display: block;
        line-height: 1em;
        margin-bottom: 8px;
        color: #105948; }
    #ser_1 .ser_1__cont .main {
      font-size: 15px;
      letter-spacing: .1em;
      margin-top: 40px; }
    #ser_1 .ser_1__cont .more {
      display: block;
      text-align: center;
      margin-top: 40px;
      width: 215px;
      font-size: 13px;
      letter-spacing: .1em;
      border: 1px solid #000;
      padding: .8em 2em;
      letter-spacing: .1em;
      transition: .4s; }
      #ser_1 .ser_1__cont .more span:after {
        font-family: "Font Awesome 5 Free";
        margin-left: 5px;
        font-weight: 900;
        content: "\f105";
        font-size: 80%; }
      #ser_1 .ser_1__cont .more:hover {
        background: #fff;
        color: #2f3e60;
        transition: .4s; }
  @media all and (max-width: 896px) {
    #ser_1 {
      margin-top: 48px;
      padding: 0 0 50px; }
      #ser_1:before {
        display: none; }
      #ser_1 img._sp {
        width: 100%;
        display: block;
        margin-bottom: 32px; }
      #ser_1 .ser_1__cont {
        width: 100%;
        padding: 0 15px; }
        #ser_1 .ser_1__cont .main span {
          font-size: 19px;
          letter-spacing: .1em; }
          #ser_1 .ser_1__cont .main span br {
            display: none; } }
#ser_2 {
  position: relative;
  padding: 120px 0;
  background: #fefefe; }
  #ser_2:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; }
    #ser_2.type1:before {
      background-image: url(../img/service/3-01.jpg); }
    #ser_2.type2:before {
      background-image: url(../img/service/3-03.jpg); }
  #ser_2 img._sp {
    display: none; }
  #ser_2 .single {
    padding: 0; }
  #ser_2 .ser_2__cont {
    width: 50%;
    margin-left: auto;
    padding: 0 80px;
    font-weight: bold; }
    #ser_2 .ser_2__cont .read {
      font-size: 2.4rem;
      color: #105948;
      font-weight: bold; }
      #ser_2 .ser_2__cont .read span {
        font-family: "Libre Baskerville", serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.4rem;
        display: block;
        line-height: 1em;
        margin-bottom: 8px;
        color: #105948; }
    #ser_2 .ser_2__cont .main {
      font-size: 15px;
      letter-spacing: .1em;
      margin-top: 40px; }
    #ser_2 .ser_2__cont .more {
      display: block;
      text-align: center;
      margin-top: 40px;
      width: 215px;
      font-size: 13px;
      letter-spacing: .1em;
      background: #105948;
      border: 1px solid #105948;
      color: #fefefe;
      padding: .8em 2em;
      letter-spacing: .1em;
      transition: .4s; }
      #ser_2 .ser_2__cont .more span:after {
        font-family: "Font Awesome 5 Free";
        margin-left: 5px;
        font-weight: 900;
        content: "\f105";
        font-size: 80%; }
      #ser_2 .ser_2__cont .more:hover {
        background: #fefefe;
        color: #105948;
        transition: .4s; }
  @media all and (max-width: 896px) {
    #ser_2 {
      margin-top: 48px;
      padding: 0 0 48px; }
      #ser_2:before {
        display: none; }
      #ser_2 img._sp {
        width: 100%;
        display: block;
        margin-bottom: 32px; }
      #ser_2 .ser_2__cont {
        width: 100%;
        padding: 0 24px; }
        #ser_2 .ser_2__cont .main span {
          font-size: 19px;
          letter-spacing: .1em; }
          #ser_2 .ser_2__cont .main span br {
            display: none; } }
/* 物件(property)
----------------------------------*/
.property_read {
  font-weight: 700;
  color: #105948; }

.property_item {
  padding: 10px;
  background: #edeeed; }
  .property_item dl {
    display: table;
    width: 100%; }
    .property_item dl dt, .property_item dl dd {
      width: 50%;
      float: left;
      margin-bottom: .5em;
      font-weight: 700; }
    .property_item dl dt {
      background: #fff;
      color: #7bbf46;
      width: 36%;
      margin-right: 4%;
      text-align: center; }
    .property_item dl dd {
      width: 60%; }
      .property_item dl dd.nedan {
        color: #c1272d; }
      .property_item dl dd span {
        color: #c1272d;
        line-height: 1em;
        font-weight: 700;
        letter-spacing: 0;
        margin-right: .2em;
        font-size: 2.4rem; }

.property_more {
  display: block;
  width: 100%;
  text-align: center;
  background: #105948;
  padding: .5em 0;
  margin: 0;
  color: #fff; }
  .property_more span {
    font-weight: 700; }
  .property_more:after {
    font-family: "Font Awesome 5 Free";
    margin-left: 5px;
    font-weight: 900;
    content: "\f105";
    font-size: 80%; }
  .property_more:hover {
    background: #1c9a7c; }

/* 物件詳細(property_single)
----------------------------------*/
.bukken_1__list {
  background: #fff;
  padding: 30px; }
  .bukken_1__list .top_sec-title {
    font-weight: 700;
    line-height: 1em;
    /*border-left:3px solid $text_color;
    padding-left: 10px;*/
    margin-bottom: 15px;
    border-bottom: 3px solid #105948;
    padding-bottom: .4em;
    color: #105948; }
  .bukken_1__list .slick-arrow {
    background: rgba(84, 195, 241, 0.8);
    position: absolute;
    z-index: 1;
    height: 20px;
    width: 50px;
    margin: auto;
    top: 0;
    bottom: 0;
    text-align: center;
    font-weight: 700;
    padding: 20px 0;
    color: #fff; }
    .bukken_1__list .slick-arrow.prev {
      left: 0; }
    .bukken_1__list .slick-arrow.next {
      right: 0; }
  .bukken_1__list .thumb-item-nav {
    width: 100%;
    margin: 15px 0; }
    .bukken_1__list .thumb-item-nav li {
      width: 25%;
      float: left; }
      .bukken_1__list .thumb-item-nav li img {
        width: 98%;
        display: block;
        margin: auto; }
  .bukken_1__list .no_contens {
    text-align: center;
    font-weight: 700; }
  .bukken_1__list .read {
    font-weight: 700;
    color: #7bbf46; }
  .bukken_1__list img {
    width: 100%;
    display: block; }

.swiper-container.property {
  width: 100%;
  height: 800px;
  margin-left: auto;
  margin-right: auto;
  background: #edeeed; }
  @media all and (max-width: 1100px) {
    .swiper-container.property {
      height: 80%; } }
  .swiper-container.property .swiper-wrapper .swiper-slide img {
    display: block;
    margin: 20px auto;
    max-height: 760px; }

.swiper-wrapper.thumbs {
  margin-top: 16px; }

.swiper-slide {
  background-size: cover;
  background-position: center; }

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  margin-top: 16px !important; }

.gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4; }

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1; }

.property_del1 {
  margin-top: 16px;
  padding: 8px 16px; }
  .property_del1 dl {
    display: table;
    width: 100%; }
    .property_del1 dl dt, .property_del1 dl dd {
      width: 50%;
      float: left;
      margin-bottom: .5em;
      font-weight: 700; }
    .property_del1 dl dt {
      background: #fff;
      color: #7bbf46;
      width: 36%;
      margin-right: 4%;
      text-align: center; }
    .property_del1 dl dd {
      width: 60%; }
      .property_del1 dl dd.nedan {
        color: #c1272d; }
      .property_del1 dl dd span {
        color: #c1272d;
        line-height: 1em;
        font-weight: 700;
        letter-spacing: 0;
        margin-right: .2em; }

.property_del2 {
  margin: 24px 0; }
  .property_del2 .read {
    border-bottom: 1px solid #7bbf46; }
  .property_del2 .tokutyou {
    margin-top: 10px;
    padding: 8px 16px; }
    .property_del2 .tokutyou p {
      font-weight: 700; }

.property_del3 .info {
  padding: 8px 0; }
  .property_del3 .info dl {
    display: table;
    width: 100%; }
    .property_del3 .info dl dt, .property_del3 .info dl dd {
      width: 50%;
      font-weight: 700; }
    .property_del3 .info dl dt {
      width: 36%;
      text-align: center;
      background: #7bbf46;
      color: #fefefe; }
    .property_del3 .info dl dd {
      width: 60%;
      background: rgba(16, 89, 72, 0.1);
      width: 100%;
      padding: 8px 16px;
      margin-bottom: 16px; }
      .property_del3 .info dl dd.nedan {
        color: #c1272d; }
      .property_del3 .info dl dd span {
        color: #c1272d;
        line-height: 1em;
        font-weight: 700;
        letter-spacing: 0;
        margin-right: .2em; }

@media all and (max-width: 639px) {
  .property_del3 .scroll_yoko {
    overflow: auto;
    white-space: nowrap; }
  .property_del3 .scroll_yoko::-webkit-scrollbar {
    height: 5px; }
  .property_del3 .scroll_yoko::-webkit-scrollbar-track {
    background: #F1F1F1; }
  .property_del3 .scroll_yoko::-webkit-scrollbar-thumb {
    background: #BCBCBC; } }

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1; }

.w300 {
  width: 300px; }

.w400 {
  width: 400px; }

.spbr {
  display: none; }

.color1 {
  color: #105948; }

.color2 {
  color: #7bbf46; }

.color3 {
  color: #a23b4a; }

.relative {
  position: relative; }

.num {
  font-weight: 600; }
  .num a {
    color: #105948;
    font-size: 2.8rem;
    text-align: center;
    margin-left: 5px; }
    @media all and (max-width: 639px) {
      .num a {
        font-size: 2rem; } }
    .num a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f879";
      font-weight: 900;
      margin-right: 5px; }
    .num a:hover {
      color: #f66009; }

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center; }
  .telbox .inner {
    background: #fff;
    padding: 10px; }

.txt-link {
  font-weight: 600;
  text-decoration: underline; }
  .txt-link:hover {
    text-decoration: none; }

.telbnr {
  max-width: 500px;
  margin: 30px auto 30px; }
  .telbnr li {
    border: 3px solid #ccc;
    padding: 10px 10px;
    text-align: center;
    border-radius: 50px; }
    .telbnr li a {
      display: block;
      font-size: 2.4rem;
      font-weight: 600;
      color: #105948; }
      .telbnr li a:before {
        font-family: "Font Awesome 5 Free";
        content: "\f879";
        font-weight: 900;
        margin-right: 5px; }
      .telbnr li a:hover {
        color: #105948; }
  @media all and (max-width: 639px) {
    .telbnr {
      max-width: 90%; }
      .telbnr li {
        width: 100%;
        margin: 0 auto 30px; }
        .telbnr li:last-of-type {
          margin-left: auto; }
        .telbnr li a {
          font-size: 2rem; } }
.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px; }
  .telbnr-ttl span {
    background: #faf1f1;
    padding: 0 20px; }
  @media all and (max-width: 639px) {
    .telbnr-ttl {
      font-size: 1.3rem; } }
.fb-page {
  width: 100%; }

.contents_box {
  padding: 0 10px 25px 10px; }

.m-l8 {
  margin-left: 8px; }

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem; }
  .breadcrumb li {
    display: inline;
    color: #999; }
    .breadcrumb li a {
      color: #7bbf46; }
    .breadcrumb li + li:before {
      margin: 0 10px;
      content: ">"; }
  @media all and (max-width: 639px) {
    .breadcrumb {
      font-size: 12px; } }
/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%; }
  .form dl dt {
    float: left;
    width: 280px;
    padding-top: 20px;
    font-weight: 600; }
    .form dl dt span {
      color: #fff;
      background: #a23b4a;
      padding: 5px 8px;
      margin-right: 5px;
      font-size: 11px;
      border-radius: 20px;
      position: relative;
      top: -2px; }
      .form dl dt span.nini {
        background: #ffdf2c;
        color: #3a200c; }
  .form dl dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px dotted #cccccc; }
    .form dl dd:last-child {
      border-bottom: none; }
  .form .textarea,
  .form textarea {
    border: 0;
    padding: 15px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    background: #f0f0f0; }
  .form .textarea02 {
    width: 48.5%;
    margin-right: 3%; }
    .form .textarea02:last-child {
      margin-right: 0; }
  .form .textarea03 {
    width: 20%;
    margin-right: 1%; }
  .form button {
    cursor: pointer;
    display: block;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    border: 1px solid #105948;
    font-weight: 600;
    padding: 12px 5px;
    margin: 0 auto;
    width: 250px;
    background: #105948;
    border-radius: 25px; }
    .form button:hover {
      background: #fff;
      color: #105948; }
    .form button:before {
      font-weight: normal;
      font-family: "Font Awesome 5 Free";
      content: "\f0e0";
      font-weight: 900;
      margin-right: 10px; }
  .form .select-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 192px;
    min-width: 12em;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333; }
    .form .select-wrap select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: relative;
      z-index: 2;
      display: block;
      width: 200%;
      width: -webkit-calc(100% + 5em);
      margin: 0;
      padding: 11px 35px 11px 11px;
      padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
      background: transparent;
      border: 0;
      outline: none;
      line-height: 1.5; }
  .form .entypo-down-open-mini:before {
    font-family: "FontAwesome";
    content: "\f0ab";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #105948; }
  .form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block; }
    .form label.radio_text:before {
      position: absolute;
      width: 15px;
      height: 15px;
      border: 1px solid #ccc;
      border-radius: 50%;
      left: 0px;
      top: 2px;
      content: "";
      z-index: 3; }
    .form label.radio_text:after {
      content: "";
      position: absolute;
      width: 11px;
      height: 11px;
      border-radius: 100%;
      left: 2px;
      top: 4px;
      background-color: #105948;
      z-index: 1; }
    .form label.radio_text input[type="radio"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      z-index: 2;
      width: 20px;
      height: 20px;
      left: -23px;
      top: 0px;
      margin: 0px;
      box-shadow: 20px -1px #fff; }
      .form label.radio_text input[type="radio"]:checked {
        box-shadow: none; }
      .form label.radio_text input[type="radio"]:focus {
        opacity: 0.2;
        box-shadow: 20px -1px #eeebda; }
  .form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block; }
    .form label.checkbox_text:before {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      left: 0px;
      top: 0;
      border: 1px solid #ccc;
      z-index: 3;
      padding: 1px; }
    .form label.checkbox_text:after {
      content: "";
      position: absolute;
      top: 40%;
      left: 5px;
      display: block;
      margin-top: -9px;
      width: 8px;
      height: 12px;
      border-right: 3px solid #105948;
      border-bottom: 3px solid #105948;
      transform: rotate(45deg);
      z-index: 1; }
      @media all and (max-width: 639px) {
        .form label.checkbox_text:after {
          margin-top: -18px; } }
    .form label.checkbox_text input[type="checkbox"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      left: -40px;
      width: 20px;
      height: 20px;
      display: block;
      box-shadow: 41px 0px #fff;
      z-index: 2;
      margin: 0px;
      padding: 0px; }
      .form label.checkbox_text input[type="checkbox"]:checked {
        box-shadow: none; }
        .form label.checkbox_text input[type="checkbox"]:checked:focus {
          box-shadow: 40px 0px #666;
          opacity: 0.1; }
      .form label.checkbox_text input[type="checkbox"]:focus {
        box-shadow: 41px 0px #eee; }
  .form input[type="text"],
  .form textarea {
    font-size: 16px; }
    @media all and (max-width: 639px) {
      .form input[type="text"],
      .form textarea {
        transform: scale(0.9);
        margin-left: -5px; } }
.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px; }

.thanks {
  padding: 40px;
  border: 3px solid #fefefe;
  max-width: 700px;
  margin: 0 auto; }
  @media all and (max-width: 639px) {
    .thanks {
      max-width: 90%;
      padding: 30px 20px; } }
.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }

.policy {
  padding: 30px;
  background: rgba(123, 191, 70, 0.2); }

.mtitle_small {
  position: relative;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #105948;
  font-weight: 600;
  padding: 10px;
  border-bottom: 2px solid #ccc; }
  .mtitle_small:before {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #105948;
    position: absolute;
    left: 0;
    bottom: -2px; }
  @media all and (max-width: 639px) {
    .mtitle_small {
      font-size: 1.4rem;
      line-height: 1.5; } }
.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px; }
  .mtitle_small2:before {
    content: "";
    background-color: #105948;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 0.6em;
    left: 0; }

.mtitle-bll {
  color: #105948;
  font-size: 2.0rem;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  position: relative;
  margin-bottom: 15px; }
  .mtitle-bll:before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900; }
  .mtitle-bll:after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #105948;
    bottom: -2px;
    width: 100px;
    left: 0;
    text-indent: 2px;
    color: #AAAAAA; }
  @media all and (max-width: 639px) {
    .mtitle-bll {
      font-size: 1.5rem; } }
/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%; }
  @media all and (max-width: 639px) {
    .gallery_ul {
      margin-left: auto;
      margin-right: auto; } }
  .gallery_ul > li {
    width: 31.33%;
    margin-left: 2%;
    margin-bottom: 4%;
    font-weight: 600; }
    .gallery_ul > li .photobox-wrap {
      width: 100%;
      height: 240px;
      text-align: center;
      overflow: hidden;
      background: rgba(123, 191, 70, 0.1);
      margin-bottom: 10px; }
      .gallery_ul > li .photobox-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit:cover;";
        object-position: 50% 50%; }
    @media all and (max-width: 896px) {
      .gallery_ul > li {
        width: 48%; } }
    @media all and (max-width: 639px) {
      .gallery_ul > li {
        width: 85%;
        margin: 0 auto 30px; }
        .gallery_ul > li .photobox-wrap {
          height: 180px; } }
.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #3a200c; }
  @media all and (max-width: 639px) {
    .comment {
      font-size: 12px; } }
/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .gallery li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 25px 0; }
    .gallery li:nth-child(3n) {
      margin-right: 0; }
    .gallery li a {
      background: rgba(255, 250, 241, 0.2);
      display: block;
      text-align: center;
      padding: 0px;
      height: 200px; }
      .gallery li a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit: cover;";
        /*IE対策*/ }
    .gallery li p {
      font-size: 14px;
      margin: 3px 0 10px; }

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 2% 20px; }
    .gallery li:nth-child(3n) {
      margin-right: 2%; }
    .gallery li:nth-child(2n) {
      margin-right: 0; }
    .gallery li a {
      height: 120px; }
    .gallery li p {
      font-size: 12px; } }

.list2 {
  display: flex;
  flex-wrap: wrap; }
  .list2 > li,
  .list2 .child {
    width: 48%;
    margin: 0 4% 20px 0; }
    .list2 > li.wid70,
    .list2 .child.wid70 {
      width: 68%; }
    .list2 > li.wid30,
    .list2 .child.wid30 {
      width: 28%; }
    .list2 > li.nomar,
    .list2 .child.nomar {
      margin: 0 4% 0 0; }
    .list2 > li:nth-child(2n),
    .list2 .child:nth-child(2n) {
      margin-right: 0; }
      @media all and (max-width: 639px) {
        .list2 > li:nth-child(2n),
        .list2 .child:nth-child(2n) {
          margin-right: auto; } }
    @media all and (max-width: 896px) {
      .list2 > li.wid70, .list2 > li.wid30,
      .list2 .child.wid70,
      .list2 .child.wid30 {
        width: 100%;
        margin: 0 auto 20px; } }
    @media all and (max-width: 639px) {
      .list2 > li,
      .list2 .child {
        width: 100%;
        margin: 0 auto 20px; }
        .list2 > li.nomar,
        .list2 .child.nomar {
          margin: 0 auto 20px; } }
    .list2 > li.order,
    .list2 .child.order {
      order: 2; }
      @media all and (max-width: 639px) {
        .list2 > li.order,
        .list2 .child.order {
          order: 0; } }
    .list2 > li.center,
    .list2 .child.center {
      display: flex;
      align-items: center; }
      @media all and (max-width: 896px) {
        .list2 > li.center,
        .list2 .child.center {
          display: block; } }
    .list2 > li .recruit-txt,
    .list2 .child .recruit-txt {
      text-align: center;
      font-size: 1.6rem;
      padding: 10px auto; }
      @media all and (max-width: 896px) {
        .list2 > li .recruit-txt,
        .list2 .child .recruit-txt {
          font-size: 1.2rem; } }
.list3 {
  display: flex;
  flex-wrap: wrap; }
  .list3.type1 li {
    background: #fefefe;
    padding: 15px;
    border-radius: 8px; }
  .list3 li {
    width: 31%;
    position: relative;
    margin: 0 calc(2.33% + (2.33% / 2)) 20px 0; }
    .list3 li:nth-child(3n) {
      margin-right: 0; }
    @media all and (max-width: 639px) {
      .list3 li {
        width: 95%;
        margin: 0 auto 20px; }
        .list3 li:nth-child(3n) {
          margin-right: auto; } }
.list4 {
  display: flex;
  flex-wrap: wrap; }
  .list4 li {
    width: 24%;
    margin: 0 calc(1% + (1% / 3)) 25px 0; }
    .list4 li:nth-child(4n) {
      margin-right: 0; }
    @media all and (max-width: 639px) {
      .list4 li {
        width: 95%;
        margin: 0 auto 20px; }
        .list4 li:nth-child(4n) {
          margin-right: auto; } }
  .list4 p {
    font-weight: 600; }

.prv dt {
  color: #105948;
  border-bottom: 1px solid #ccc;
  margin: 10px 0; }

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden; }

.note {
  padding: 15px;
  margin-top: 10px;
  background: #fffaf1;
  font-size: 1.4rem; }
  @media all and (max-width: 639px) {
    .note {
      font-size: 12px; } }
.flow-dl .flow-inner {
  padding: 8px; }
  .flow-dl .flow-inner:not(:last-of-type) {
    margin-bottom: 5px;
    border-bottom: solid 1px #aaa; }
  .flow-dl .flow-inner dt {
    font-size: 1.6rem;
    font-weight: 600;
    color: #7bbf46; }
    .flow-dl .flow-inner dt .eng {
      font-family: "Libre Baskerville", serif;
      font-weight: 400;
      font-size: 2.5rem;
      color: #7bbf46;
      margin-right: 8px; }
  .flow-dl .flow-inner dd {
    margin-top: 5px;
    padding-left: 40px; }
  @media all and (max-width: 639px) {
    .flow-dl .flow-inner {
      padding: 6px; }
      .flow-dl .flow-inner dt {
        font-size: 1.25rem; }
        .flow-dl .flow-inner dt .eng {
          font-size: 1.7rem; }
      .flow-dl .flow-inner dd {
        padding-left: 30px; } }
.txt1 {
  padding-left: 10px; }

.fee-box {
  margin: 10px 0 20px;
  font-weight: 600;
  background: lemonchiffon;
  padding: 5px; }
  .fee-box span {
    display: block;
    font-weight: normal; }

.blog-month {
  margin-bottom: 10px; }
  .blog-month ul {
    display: flex;
    flex-wrap: wrap; }
    .blog-month ul li {
      width: 49%;
      padding: 5px 0;
      margin-bottom: 5px;
      text-align: center;
      letter-spacing: 0;
      background: #3a200c; }
      .blog-month ul li:nth-child(2n) {
        margin-left: 2%; }
      .blog-month ul li a {
        color: #fff;
        font-size: 12px; }
        .blog-month ul li a:hover {
          color: #ffdf2c; }

.blog-month2 {
  margin-bottom: 15px; }
  .blog-month2 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .blog-month2 ul li {
      width: 90%;
      padding: 3px;
      text-align: center;
      font-size: 1.4rem;
      background: #7bbf46;
      margin: 0 0 5px; }
      .blog-month2 ul li a {
        color: #fefefe; }
        .blog-month2 ul li a:hover {
          color: #bebebe; }
    @media all and (max-width: 896px) {
      .blog-month2 ul {
        justify-content: flex-start; }
        .blog-month2 ul li {
          width: 48%;
          font-size: 1.1rem; }
          .blog-month2 ul li:nth-child(even) {
            margin-left: 1%; } }
#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08 {
  display: block;
  padding-top: 100px;
  margin-top: -100px; }

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .list-center li {
    width: 50%; }
  @media all and (max-width: 639px) {
    .list-center {
      flex-direction: column; }
      .list-center li {
        width: 100%; } }
.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px; }
  .faq-dl .faq-inner:not(:last-of-type) {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #eee; }
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    position: relative;
    padding: 10px 10px 10px 55px; }
    .faq-dl .faq-inner dt:before,
    .faq-dl .faq-inner dd:before {
      position: absolute;
      content: "";
      width: 45px;
      height: 45px;
      line-height: 45px;
      text-align: center;
      left: 0;
      top: 0;
      font-family: "Libre Baskerville", serif;
      font-weight: 400; }
  .faq-dl .faq-inner dt {
    margin-bottom: 10px;
    font-weight: 600; }
    .faq-dl .faq-inner dt:before {
      content: "Q";
      color: #105948;
      font-size: 3rem;
      background: rgba(16, 89, 72, 0.2); }
  .faq-dl .faq-inner dd:before {
    content: "A";
    color: #f66009;
    font-size: 3rem;
    background: rgba(255, 223, 44, 0.2); }

.point-title {
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #f66009;
  line-height: 1.3;
  margin-bottom: 15px; }
  .point-title span {
    color: #f66009;
    font-size: 4rem;
    font-family: "Libre Baskerville", serif;
    font-weight: 400; }
  @media all and (max-width: 639px) {
    .point-title {
      font-size: 1.6rem; }
      .point-title span {
        font-size: 2.2rem; } }
.works-list > li {
  padding: 15px 20px;
  border-top: 2px solid #333;
  font-weight: 600; }
  .works-list > li:before {
    content: "●";
    margin-right: 5px;
    color: #7bbf46; }
  .works-list > li:last-child {
    border-bottom: 2px solid #222; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto; }
  @media all and (max-width: 639px) {
    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
      left: 10px !important; } }
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto; }
  @media all and (max-width: 639px) {
    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
      right: 10px !important; } }
@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important; } }

.point-num {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: #7bbf46;
  color: #222;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 3.5rem;
  border-radius: 100%;
  text-align: center;
  margin: 0 auto -20px;
  line-height: 60px;
  box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6); }

.bnr-list {
  text-align: center; }
  @media all and (max-width: 896px) {
    .bnr-list li {
      width: 48%;
      margin-right: 4%; }
      .bnr-list li:nth-child(2n) {
        margin-right: 0; } }
  .bnr-list a {
    display: block;
    text-align: center;
    background: #fefefe;
    padding: 8px 5px;
    font-size: 1.3rem;
    height: 100%; }
    .bnr-list a img {
      width: auto;
      max-width: 100%;
      margin: 0 auto;
      height: 45px; }
    @media all and (max-width: 639px) {
      .bnr-list a {
        font-size: 12px;
        line-height: 1.5; }
        .bnr-list a img {
          height: 30px; } }
  .bnr-list li.bnr-txt {
    font-size: 2rem;
    font-weight: 600;
    line-height: 60px;
    background: #fefefe; }
    @media all and (max-width: 639px) {
      .bnr-list li.bnr-txt {
        font-size: 1.5rem; } }
.sns-list {
  display: flex; }
  .sns-list.center {
    justify-content: center;
    margin: 15px 0; }
  .sns-list li {
    text-align: center; }
    .sns-list li span {
      display: block;
      font-size: 1.3rem; }
    .sns-list li a {
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 17px;
      color: #fefefe;
      display: block;
      background: #a23b4a;
      border-radius: 100%;
      text-align: center;
      transition: all 0.2s ease-in;
      position: relative;
      margin: 0 auto;
      text-align: center; }
      .sns-list li a:hover {
        opacity: 0.7; }
      .sns-list li a.btn-facebook {
        background: #1877f2; }
      .sns-list li a.btn-twitter {
        background: #1da1f2; }
      .sns-list li a.btn-line {
        background: #00b900; }
      .sns-list li a.btn-instagram {
        overflow: hidden;
        background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; }
        .sns-list li a.btn-instagram i {
          position: relative;
          z-index: 2; }
        .sns-list li a.btn-instagram:before {
          content: "";
          position: absolute;
          /*絶対配置*/
          top: 18px;
          /*ずらす*/
          left: -10px;
          /*ずらす*/
          width: 50px;
          /*グラデーションカバーの幅*/
          height: 50px;
          /*グラデーションカバーの高さ*/
          background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
          /*グラデーション②*/ }
    .sns-list li:not(:last-child) {
      margin-right: 10px; }
      @media all and (max-width: 896px) {
        .sns-list li:not(:last-child) {
          margin-right: 5px;
          margin-bottom: 0; } }
.title01 {
  font-weight: 600;
  text-align: center;
  font-size: 2.6rem;
  margin: 30px auto;
  letter-spacing: 0.2em;
  color: #105948; }
  .title01 span {
    display: block;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 5rem;
    color: #ffdf2c; }
  @media all and (max-width: 639px) {
    .title01 {
      font-size: 2rem; }
      .title01 span {
        font-size: 2rem; } }
.title02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px; }
  @media all and (max-width: 639px) {
    .title02 {
      flex-direction: column;
      text-align: center; } }
  .title02 .eng {
    font-size: 7rem;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    line-height: 1;
    color: rgba(123, 191, 70, 0.4); }
    @media all and (max-width: 639px) {
      .title02 .eng {
        font-size: 4rem; } }
  .title02 .ja {
    font-size: 2.2rem;
    flex: 1;
    margin-left: 40px;
    line-height: 2;
    color: #105948; }
    .title02 .ja p {
      font-size: 1.5rem;
      color: #333; }
    @media all and (max-width: 639px) {
      .title02 .ja {
        font-size: 1.5rem;
        margin: 20px auto 0; }
        .title02 .ja p {
          font-size: 1.2rem; } }
.greet-txt {
  font-size: 1.8rem; }
  @media all and (max-width: 639px) {
    .greet-txt {
      font-size: 1.3rem; } }
.top-recruit-box {
  background: url(../img/top-recruit.jpg) no-repeat center 30%; }
  .top-recruit-box .top-recruit-txt {
    width: 47%; }
    .top-recruit-box .top-recruit-txt .inner {
      padding: 80px 20px;
      font-weight: 600;
      text-align: center;
      position: relative;
      z-index: 2; }
  @media all and (max-width: 896px) {
    .top-recruit-box {
      max-width: 80%;
      margin: 0 auto; }
      .top-recruit-box .top-recruit-img {
        width: 100%; }
      .top-recruit-box .top-recruit-txt {
        width: 100%; } }
  @media all and (max-width: 639px) {
    .top-recruit-box {
      max-width: 95%; }
      .top-recruit-box .top-recruit-txt .inner {
        padding: 25px; } }
.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }
  .column2 .child {
    width: 48%; }
  @media all and (max-width: 639px) {
    .column2 {
      flex-direction: column; }
      .column2 .child {
        width: 100%; }
        .column2 .child.column2-img {
          order: -1;
          margin-bottom: 30px; } }
.concept-title {
  font-size: 1.8rem;
  color: #7bbf46;
  margin-bottom: 15px; }
  .concept-title span {
    font-size: 1.1em; }
    .concept-title span.concept-num {
      font-size: 2.5rem;
      color: #105948;
      margin-right: 15px; }
  @media all and (max-width: 639px) {
    .concept-title {
      font-size: 1.3rem; }
      .concept-title span.concept-num {
        font-size: 1.8rem; } }
.flow-list {
  position: relative; }
  .flow-list:before {
    content: "約１年";
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    text-align: center;
    position: absolute;
    width: 50px;
    line-height: 50px;
    height: 100%;
    background: #fff;
    color: #111;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    left: 0;
    top: 0; }
    @media all and (max-width: 639px) {
      .flow-list:before {
        font-size: 1.2rem;
        width: 35px;
        line-height: 35px;
        text-align: left;
        padding-top: 40px; } }
  .flow-list > li {
    padding: 8px;
    margin-left: 50px;
    position: relative;
    z-index: 2; }
    .flow-list > li:not(:last-of-type) {
      margin-bottom: 30px;
      border-bottom: 2px solid #111; }
  .flow-list .flow-title {
    font-size: 1.7rem;
    color: #ddd;
    font-weight: 600; }
    .flow-list .flow-title .flow-num {
      font-family: "Libre Baskerville", serif;
      font-weight: 400;
      font-size: 2.2rem;
      color: #105948;
      margin-right: 8px; }
  .flow-list .flow-txt {
    position: relative;
    width: calc(100% - 70px);
    margin-left: auto; }
  .flow-list .flow-period {
    position: absolute;
    width: 60px;
    height: 100%;
    font-weight: 600;
    background: rgba(16, 89, 72, 0.4);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 60px; }
    .flow-list .flow-period:after {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 15px 30px 0 30px;
      border-color: rgba(16, 89, 72, 0.4) transparent transparent transparent;
      left: 0;
      bottom: -15px; }
    .flow-list .flow-period .free {
      color: #ffdf2c; }
    .flow-list .flow-period.type1 {
      height: 120%;
      top: -20%; }
  @media all and (max-width: 639px) {
    .flow-list > li {
      margin-left: 35px; }
    .flow-list .flow-txt {
      width: 100%; }
    .flow-list .flow-period {
      position: static;
      width: 100%;
      height: auto;
      padding: 8px;
      font-size: 1.2rem;
      writing-mode: inherit;
      line-height: initial;
      border-radius: 40px;
      margin-top: 5px; }
      .flow-list .flow-period:after {
        display: none; }
    .flow-list .flow-title {
      font-size: 1.3rem; }
      .flow-list .flow-title .eng {
        font-size: 1.5rem; } }
.fb-wrap {
  min-height: 400px;
  text-align: center;
  margin: 0 auto; }

.voice-wrap {
  padding: 30px;
  background: #fff;
  box-shadow: 6px 6px rgba(16, 89, 72, 0.2); }
  .voice-wrap + .voice-wrap {
    margin-top: 45px; }
  .voice-wrap .voice-title {
    border-left: 3px solid #105948;
    padding: 5px 100px 0px 15px;
    font-weight: 600;
    font-size: 1.1em;
    color: #7bbf46;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6; }
    .voice-wrap .voice-title .voice-date {
      position: absolute;
      font-size: 12px;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      color: #105948;
      width: 100px; }
    @media all and (max-width: 639px) {
      .voice-wrap .voice-title {
        padding-right: 5px; }
        .voice-wrap .voice-title .voice-date {
          position: static;
          display: block;
          margin-top: 10px; } }
.voice-txt {
  letter-spacing: 0;
  line-height: 2; }

.top-voice {
  font-size: 1.4rem;
  letter-spacing: 0; }
  .top-voice:not(:last-of-type) {
    margin-bottom: 20px;
    border-bottom: 0.9px solid #105948; }
  .top-voice .top-voice-title {
    display: flex;
    flex-wrap: wrap; }
    .top-voice .top-voice-title span {
      padding: 4px 8px; }
    .top-voice .top-voice-title .date {
      background: #ffdde2; }
    .top-voice .top-voice-title .title-txt {
      color: #7bbf46;
      flex: 1;
      font-weight: 600; }
  .top-voice .top-voice-txt {
    padding: 5px;
    background: #fffaf1; }
  @media all and (max-width: 639px) {
    .top-voice {
      font-size: 12px; }
      .top-voice .top-voice-title {
        display: block; }
        .top-voice .top-voice-title .title-txt {
          display: block; } }
.qualified-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .qualified-list li {
    width: 48%;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 8px 5px;
    text-align: center; }
    @media all and (max-width: 639px) {
      .qualified-list li {
        width: 48%; } }
.img-round {
  border-radius: 20px 0 20px 0; }

.vertical-content {
  margin-left: 150px; }
  @media all and (max-width: 639px) {
    .vertical-content {
      margin: 20px 0 0; } }


      .form-pattern-1 dl dt:not(.pattern-exclusion) span::before {
        padding: 5px 8px !important;
        margin-right: 5px !important;
        font-size: 11px !important;
        border-radius: 20px !important;
        position: relative !important;
        top: -2px !important;
    }

    .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
      content: '必須';
      color: #fff;
      background: #a23b4a !important;
  }

  .form-contents form dl dt:not(.pattern-exclusion) .nini {
    padding: 5px 8px !important;
    margin-right: 5px !important;
    font-size: 11px !important;
    border-radius: 20px !important;
    position: relative !important;
    top: -2px !important;
    background: #ffdf2c !important;
    color: #3a200c !important;
}