@charset "UTF-8";
img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

mark {
  font-style: normal;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 400;
  color: #222222;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
html body {
  overflow-x: hidden;
}

@media screen and (max-width: 430px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.06em;
}

p,
a,
li {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.upper {
  text-transform: uppercase;
}

.cont {
  width: 85.5%;
  max-width: 920px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

a {
  text-decoration: none;
}

.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

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

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

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

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

.none {
  display: none;
}

a {
  color: #222222;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

li {
  list-style: none;
}

/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.kiwi {
  font-family: "Kiwi Maru", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.mon {
  font-family: "Montserrat", sans-serif;
}

.header__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header__inner .gnav {
  margin-bottom: 24px;
}
.header__inner .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header__inner .gnav li a {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5714285714;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
.header__inner .gnav li a::before {
  content: "";
  width: 6px;
  height: auto;
  aspect-ratio: 1/1;
}
.header__inner .gnav li:nth-child(1) a::before {
  background: #007440;
}
.header__inner .gnav li:nth-child(2) a::before {
  background: #905ca2;
}
.header__inner .gnav li:nth-child(3) a::before {
  background: #3071b7;
}
.header__inner .gnav li:nth-child(4) a::before {
  background: #f29739;
}
.header__inner .gnav li:nth-child(5) a::before {
  background: #e8528d;
}
.header__inner .gnav li:nth-child(6) a::before {
  background: #935e42;
}
.header__inner .gnav li:nth-child(7) a::before {
  background: #56959e;
}
.header__inner .gnav li:nth-child(8) a::before {
  background: #007440;
}

/*ヘッダー*/
@media screen and (min-width: 1024px) {
  .header {
    width: 264px;
    height: 100svh;
    overflow-y: auto;
    -webkit-box-shadow: 2px 0 8px 0 rgba(221, 221, 221, 0.2);
            box-shadow: 2px 0 8px 0 rgba(221, 221, 221, 0.2);
    /* スクロールバーを非表示 */
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header::-webkit-scrollbar {
    display: none;
  }
  .header .ham_block {
    display: none;
  }
  .header .header__inner {
    padding: 80px 32px 24px;
    background: #fff;
  }
  .header .header__inner .h_logo {
    width: 100%;
    margin-bottom: 149px;
  }
  .header .header__inner .h_logo img {
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }
  .header .header__inner .h_logo a {
    display: block;
  }
  .header .header__inner .h_logo p {
    color: #007440;
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
  }
  .header .h_instagram {
    width: 16px;
    margin-bottom: 40px;
    display: block;
  }
  .header .h_instagram img {
    display: block;
  }
  .header .pp {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 6px;
    display: block;
  }
  .header small {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0;
    color: #666666;
  }
  .bottom_navigation {
    display: none;
  }
}
@media screen and (max-width: 1023.9px) {
  .header {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #fff;
    position: fixed;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
    padding: 18px 16px;
    height: 64px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(63, 63, 63, 0.1);
            box-shadow: 0 2px 8px 0 rgba(63, 63, 63, 0.1);
  }
  .header .ham_none {
    display: none;
  }
  .header .h_logo {
    width: 152px;
  }
  .header .h_logo img {
    width: 100%;
    display: block;
  }
  .header .ham_block {
    display: block;
  }
  .header .gnav ul {
    gap: 20px;
  }
  .header .gnav li a {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.63;
  }
  .header .gnav,
  .header .h_nav_other {
    max-width: 200px;
    margin-inline: auto;
  }
  .header .header-wrap {
    width: 100%;
    background: #fff;
    padding: 64px 88px 150px;
    height: 100svh;
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header .h_instagram {
    width: 24px;
    margin-bottom: 24px;
    display: block;
  }
  .header .h_instagram img {
    display: block;
    -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(6%) saturate(20%) hue-rotate(345deg) brightness(96%) contrast(89%);
            filter: brightness(0) saturate(100%) invert(40%) sepia(6%) saturate(20%) hue-rotate(345deg) brightness(96%) contrast(89%);
  }
  .header .pp {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
  }
  .header small {
    display: none;
  }
  .bottom_navigation {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    background: #fff;
    -webkit-box-shadow: 0 -2px 8px 0 rgba(63, 63, 63, 0.1);
            box-shadow: 0 -2px 8px 0 rgba(63, 63, 63, 0.1);
    padding: 8px 16px 32px;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bottom_navigation a {
    width: 94px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #666666;
    line-height: 1.6;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .bottom_navigation a img {
    margin: 0 auto;
    width: 24px;
    display: block;
  }
  .bottom_navigation a:hover {
    opacity: 1;
    color: #007440;
  }
  .bottom_navigation a:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(88%) saturate(7266%) hue-rotate(163deg) brightness(94%) contrast(103%);
            filter: brightness(0) saturate(100%) invert(14%) sepia(88%) saturate(7266%) hue-rotate(163deg) brightness(94%) contrast(103%);
  }
}
/*ハンバーガーメニュー*/
.hamburger {
  display: none;
}

@media screen and (max-width: 1023.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 42px;
    position: absolute;
    top: 11px;
    right: 16px;
    z-index: 99;
    background: none;
    border: none;
    color: #fff;
    text-align: center;
    padding: 0;
  }
  .hamburger::before {
    content: "MENU";
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    color: #666666;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 18px;
    height: 2px;
    background: #666666;
  }
  .hamburger__line {
    left: 11px;
    top: 6px;
  }
  .hamburger__line::before {
    content: "";
    top: 5px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    top: 9.5px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 4px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 16px;
    left: 12px;
  }
  .hamburger.active span::before {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 16px;
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
body {
  background: #fff;
}

main {
  margin-left: 264px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023.9px) {
  main {
    margin-left: 0;
  }
}

/*top*/
.main_visual {
  position: relative;
  width: 100%;
  height: 100svh;
}
@media screen and (max-width: 1023.9px) {
  .main_visual {
    margin-top: 64px;
    height: calc(100svh - 64px);
  }
}

.main_swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.main_swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.main_swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.main_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}

footer {
  display: none;
  margin-bottom: 104px;
}
@media screen and (max-width: 1024px) {
  footer {
    display: block;
  }
}
footer .f_logo {
  width: 152px;
  margin-bottom: 16px;
}
footer .f_logo a,
footer .f_logo img {
  display: block;
}
footer .f_address {
  margin-bottom: 16px;
}
footer .f_address p {
  margin-bottom: 2px;
  font-size: 1.3rem;
  line-height: 1.7692307692;
}
footer .f_nav {
  margin-bottom: 24px;
}
footer .f_nav ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 38px;
     -moz-column-gap: 38px;
          column-gap: 38px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
footer .f_nav ul li {
  margin-bottom: 8px;
}
footer .f_nav ul li a {
  font-size: 1.3rem;
  line-height: 1.6153846154;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}
footer .f_nav ul li a::before {
  content: "";
  width: 6px;
  height: auto;
  aspect-ratio: 1/1;
}
footer .f_nav ul li:nth-child(1) a::before {
  background: #905ca2;
}
footer .f_nav ul li:nth-child(2) a::before {
  background: #3071b7;
}
footer .f_nav ul li:nth-child(3) a::before {
  background: #f29739;
}
footer .f_nav ul li:nth-child(4) a::before {
  background: #e8528d;
}
footer .f_nav ul li:nth-child(5) a::before {
  background: #935e42;
}
footer .f_nav ul li:nth-child(6) a::before {
  background: #56959e;
}
footer .f_nav ul li:nth-child(7) a::before {
  background: #007440;
}
footer .f_instagram {
  width: 24px;
  margin-bottom: 24px;
  display: block;
  margin-bottom: 16px;
}
footer .f_instagram img {
  display: block;
  -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(6%) saturate(20%) hue-rotate(345deg) brightness(96%) contrast(89%);
          filter: brightness(0) saturate(100%) invert(40%) sepia(6%) saturate(20%) hue-rotate(345deg) brightness(96%) contrast(89%);
}
footer .pp {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 6px;
  display: block;
}
footer small {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  color: #666666;
}

/*上に戻るボタン*/
#scroll-top {
  position: fixed;
  z-index: 2;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  display: none;
}
@media screen and (max-width: 1024px) {
  #scroll-top {
    bottom: 104px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
#scroll-top a {
  display: block;
  border-radius: 4px;
  background: rgba(241, 240, 235, 0.4);
  width: 100%;
  height: 100%;
}
#scroll-top a::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 19px;
  width: 26px;
  height: 14px;
  background-image: url(../img/page_top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 1024px) {
  #scroll-top a::before {
    width: 13px;
    height: 7px;
    top: 16.5px;
    left: 13.5px;
  }
}
#scroll-top a:hover {
  opacity: 1;
}
#scroll-top a:hover::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  opacity: 0.6;
}
@media screen and (max-width: 767.9px) {
  #scroll-top a:hover::before {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

/*page*/
.page {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page {
    margin-top: 64px;
  }
}
.page::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1176/400;
  background-image: url(../img/img_bg.png);
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page::before {
    background-image: url(../img/img_bg-sp.png);
    aspect-ratio: 375/136;
  }
}

.page_top {
  padding: 80px 0 16px;
  margin-bottom: 80px;
  position: relative;
  border-bottom: 1px solid #f1f0eb;
}
@media screen and (max-width: 1024px) {
  .page_top {
    padding: 80px 0 16px;
  }
}
.page_top h1 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .page_top h1 {
    font-size: 2.8rem;
  }
}
.page_top .pankuzu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_top .pankuzu a,
.page_top .pankuzu span {
  font-size: 1.2rem;
  line-height: 1.6;
}
.page_top .pankuzu .slash {
  font-size: 0.9rem;
}
.page_top .pankuzu span:last-child {
  color: #007440;
}

/*about*/
.about1 {
  padding-top: 3px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .about1 {
    padding-top: 0;
    margin-bottom: 64px;
  }
}
.about1 h2 {
  text-align: center;
  color: #007440;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .about1 h2 {
    font-size: 2.4rem;
  }
}
.about1 p {
  text-align: center;
  line-height: 2.6;
  font-size: 1.6rem;
  margin-bottom: 88px;
}
@media screen and (max-width: 767.9px) {
  .about1 p {
    margin-bottom: 64px;
  }
}

.about_swiper {
  overflow: hidden;
}
.about_swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.about_swiper .swiper-slide {
  width: 296px;
  height: auto;
  aspect-ratio: 1/1;
}
.about_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.about2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .about2 {
    margin-bottom: 64px;
  }
}
.about2 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767.9px) {
  .about2 table {
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .about2 table tbody {
    display: block;
  }
}
.about2 table tr {
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767.9px) {
  .about2 table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 0;
  }
}
.about2 table th,
.about2 table td {
  padding: 20px 0;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .about2 table th,
  .about2 table td {
    padding: 0;
    width: 100%;
  }
}
.about2 table th {
  color: #007440;
  width: 100px;
  font-weight: 500;
}
.about2 table .map {
  margin-top: 16px;
  width: 100%;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .about2 table .map {
    margin-bottom: 24px;
    height: auto;
    aspect-ratio: 320/360;
  }
}
.about2 table .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.about2 table a {
  text-decoration: underline;
}

.more_btn a {
  overflow: hidden;
  border: solid 1px #007440;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 24px;
  position: relative;
}
.more_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d4e6de;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 1;
}
.more_btn a span {
  z-index: 2;
  min-width: 160px;
}
.more_btn a .arrow {
  min-width: unset;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #222222;
  display: grid;
  place-content: center;
  position: relative;
}
.more_btn a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.more_btn a:hover {
  opacity: 1;
}
.more_btn a:hover span::before {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.more_btn a:hover::before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.bottom_contact {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact {
    margin-bottom: 64px;
  }
}
.bottom_contact.lg-block {
  display: none;
}
@media screen and (max-width: 1024px) {
  .bottom_contact.lg-block {
    display: block;
  }
}
.bottom_contact .cont {
  background: #ecf5f1;
  border-radius: 4px;
  padding: 64px 20px;
}
.bottom_contact h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.8;
}
.bottom_contact p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
}
.bottom_contact .mon {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #007440;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .mon {
    font-size: 2.8rem;
  }
}
.bottom_contact .mon::before {
  content: "";
  width: 40px;
  height: auto;
  aspect-ratio: 40/22;
  background: url(../img/ison_tel_free.svg) no-repeat center center;
  background-size: contain;
}
.bottom_contact .time {
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.7692307692;
}

/*works*/
.works_tab_list {
  margin-bottom: 40px;
}
.works_tab_list ul {
  gap: 12px;
}
@media screen and (max-width: 767.9px) {
  .works_tab_list ul {
    gap: 8px;
  }
}
.works_tab_list ul li {
  padding: 6px 16px 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  background: #f1f0eb;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .works_tab_list ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.works_tab_list ul .active {
  background: #007440;
  color: #fff;
}

.works_list_wrap {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .works_list_wrap {
    margin-bottom: 64px;
  }
}

.works_list_inner {
  gap: 40px 64px;
}
@media screen and (max-width: 767.9px) {
  .works_list_inner {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.works_list_inner li {
  width: calc(50% - 32px);
}
@media screen and (max-width: 767.9px) {
  .works_list_inner li {
    width: 100%;
  }
}
.works_list_inner .works_list_item_img {
  width: 100%;
  height: auto;
  aspect-ratio: 428/321;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
}
.works_list_inner img {
  width: 100%;
  height: 10op;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works_list_inner .category {
  margin-bottom: 4px;
}
.works_list_inner h2 {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
}
.works_list_inner a:hover {
  opacity: 1;
}
.works_list_inner a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
}

.category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #007440;
  border-radius: 4px;
  padding: 2px 7px 2px;
  color: #007440;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

/*works-single*/
.page_works-single {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page_works-single {
    margin-bottom: 0;
  }
}
.page_works-single article .cont {
  max-width: 800px;
}
@media screen and (max-width: 767.9px) {
  .page_works-single article .cont {
    margin-bottom: 64px;
  }
}
.page_works-single .single_top {
  padding-bottom: 16px;
  border-bottom: solid 1px #007440;
}
.page_works-single .single_top .category {
  margin-bottom: 12px;
}
.page_works-single .single_top h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
}
.page_works-single .content {
  margin: 64px 0;
}
@media screen and (max-width: 767.9px) {
  .page_works-single .content {
    margin-bottom: 80px;
  }
}
.page_works-single .content img {
  display: block;
  margin: 0 auto 40px;
}
.page_works-single .content p {
  margin-bottom: 40px;
}
.page_works-single .content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/*flow*/
.flow_content {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .flow_content {
    margin-bottom: 64px;
  }
}
.flow_content .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767.9px) {
  .flow_content .cont {
    gap: 64px;
  }
}
.flow_content .flow-content-inner {
  position: relative;
}
.flow_content .flow-content-inner::before {
  content: "";
  position: absolute;
  bottom: -56px;
  left: 50%;
  width: 32px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/flow_arrow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-inner::before {
    bottom: -48px;
  }
}
.flow_content .flow-content-inner:last-child::before {
  display: none;
}
.flow_content .flow-content-item {
  background: #f6f5ef;
  border-radius: 4px;
  padding: 48px 64px;
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-item {
    padding: 32px;
  }
}
.flow_content .flow-content-item > h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #007440;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-item > h2 {
    font-size: 2rem;
    line-height: 1.8;
  }
}
.flow_content .flow-content-item > h2 span {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  margin-right: 64px;
}
.flow_content .flow-content-item > h2 span::after {
  content: "";
  width: 1px;
  height: calc(100% - 16px);
  background: #007440;
  display: inline-block;
  position: absolute;
  top: 8px;
  right: -32px;
}
.flow_content .flow-content-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 8px;
}
.flow_content .flow-content-item .bottom_contact {
  margin-top: 16px;
  background: #fff;
  padding: 40px 20px;
  margin: 16px 0 0;
  border-radius: 4px;
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-item .bottom_contact {
    padding: 24px;
  }
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-item .bottom_contact h2 {
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-item .bottom_contact .mon {
    font-size: 2.4rem;
    margin-inline: -1px;
    line-height: 1.2083333333;
  }
  .flow_content .flow-content-item .bottom_contact .mon::before {
    width: 29px;
  }
}
@media screen and (max-width: 767.9px) {
  .flow_content .flow-content-item .bottom_contact .more_btn span:first-child {
    min-width: 128px;
    line-height: 1.5;
  }
}

/*staff*/
.staff_content_item {
  width: 240px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767.9px) {
  .staff_content_item {
    width: auto;
    margin-bottom: 64px;
  }
}
.staff_content_item .img_wrap img {
  width: 240px;
  height: auto;
  border-radius: 4px;
}
.staff_content_item .img_wrap {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .staff_content_item .img_wrap {
    width: 240px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .staff_content_item .profile {
    width: 240px;
    margin-inline: auto;
  }
}
.staff_content_item .position {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7692307692;
}
.staff_content_item .name {
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
.staff_content_item .qualifications,
.staff_content_item .hobby {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}
.staff_content_item .hobby {
  margin-top: 6px;
}
.staff_content_item .education {
  margin-top: 40px;
}
.staff_content_item .education p {
  position: relative;
  margin-bottom: 4px;
}
.staff_content_item .education p span {
  position: absolute;
  top: 0;
  left: -80px;
  width: 80px;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .staff_content_item .education p span {
    position: static;
    left: auto;
    top: auto;
    width: 80px;
  }
}

.staff_content_item.staff1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .staff_content_item.staff1 {
    margin-bottom: 64px;
  }
}

.staff_img {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .staff_img {
    margin-bottom: 64px;
  }
}

/*pp*/
.pp {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .pp {
    margin-bottom: 64px;
  }
}

.pp_inner {
  margin-bottom: 40px;
}
.pp_inner h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 8px;
  color: #007440;
}
.pp_inner p {
  margin-bottom: 8px;
}
.pp_inner ol {
  padding-left: 2em;
  counter-reset: item; /* カウンター初期化 */
}
.pp_inner ol li {
  margin-bottom: 8px;
  counter-increment: item;
  position: relative;
  /* 擬似要素で番号をつける */
}
.pp_inner ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: -20px;
  top: 0;
  font-weight: 500;
  font-size: 1.5rem;
  color: #007440;
  width: 19px; /* 番号の“幅”を固定 */
}
.pp_inner ol ol {
  padding-left: 1.5em;
  margin-top: 8px;
  margin-left: 0;
}

.page_news article .cont {
  max-width: 800px;
}

.news_item {
/*  border-bottom: 1px solid #dddddd; */
  margin-bottom: 20px;
/*  margin-bottom: 100px; */
}
@media screen and (max-width: 767.9px) {
  .news_item {
    margin-bottom: 20px;
/*    margin-bottom: 80px; */
  }
}
.news_item .news_item_title time {
  color: #007440;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 4px;
  display: block;
  letter-spacing: 0.05em;
  border-bottom: solid 1px #007440;
  padding-bottom: 10px;
}
.news_item .news_item_title h2 {
  padding-bottom: 4px;
  /* padding-bottom: 16px; */
  border-bottom: solid 1px #007440;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.news_item .news_item_content {
  padding: 10px 0 20px;
  /* padding: 40px 0 100px; */
}
@media screen and (max-width: 767.9px) {
  .news_item .news_item_content {
    padding-bottom: 20px;
    /* padding-bottom: 80px; */
  }
}

.news_item:last-child {
  border-bottom: none;
  margin-bottom: 20px;
}/*# sourceMappingURL=common.css.map */