@charset "UTF-8";
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a, p, ul, li {
  color: #393939;
}

a {
  transition: all 0.5s ease 0s;
}

a:hover {
  opacity: 0.7;
}

a, span {
  display: inline-block;
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

body * {
  box-sizing: border-box;
}

.wrap {
  overflow: hidden;
  background-image: url(../image/flower-img-20.png);
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
}

.inner {
  padding: 0 40px 40px 40px;
}

.content {
  background: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(163, 141, 79, 0.2);
}
@media screen and (min-width: 1201px) {
  .content {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .content {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .content {
    margin: 0 auto;
    width: 500px;
  }
}
@media screen and (max-width: 500px) {
  .content {
    width: 100%;
  }
}

.ttl {
  max-width: 387px;
  padding: 78px 0 53px 0;
}

.pc-gnav {
  position: fixed;
  right: 0px;
  top: 0;
  height: 100vh;
  margin-top: 110px;
}
@media screen and (min-width: 1201px) {
  .pc-gnav {
    width: calc(50% - 293px);
  }
}
@media screen and (max-width: 1200px) {
  .pc-gnav {
    width: calc(50% - 143px);
  }
}
@media screen and (max-width: 800px) {
  .pc-gnav {
    display: none;
  }
}
.pc-gnav ul.gnav-list {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pc-gnav ul.gnav-list li a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #43311f;
}
@media screen and (max-width: 1000px) {
  .pc-gnav ul.gnav-list li a {
    font-size: 1rem;
  }
}
.pc-gnav ul.gnav-list li a:hover {
  opacity: 1;
  color: #c5a44b;
}
.pc-gnav .pc-gnav-btn {
  display: grid;
  gap: 25px;
}
.pc-gnav .pc-gnav-btn a {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.2rem;
  font-feature-settings: "palt";
  color: white;
  width: 260px;
  padding: 25px 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .pc-gnav .pc-gnav-btn a {
    font-size: 1rem;
    width: 230px;
  }
}
.pc-gnav .pc-gnav-btn a.fix-btn-online {
  background: #4c7451;
  padding: 25px 0 25px 30px;
  box-shadow: 0 0px 10px 0 rgba(60, 94, 64, 0.3);
}
.pc-gnav .pc-gnav-btn a.fix-btn-online::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
  position: absolute;
  left: 25px;
}
.pc-gnav .pc-gnav-btn a.fix-btn-online:hover {
  opacity: 1;
  box-shadow: none;
  background: #3c5e40;
}
.pc-gnav .pc-gnav-btn a.fix-btn-join {
  background: #c5a44b;
  box-shadow: 0 0px 10px 0 rgba(163, 141, 79, 0.3);
}
.pc-gnav .pc-gnav-btn a.fix-btn-join::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  left: 25px;
}
.pc-gnav .pc-gnav-btn a.fix-btn-join:hover {
  opacity: 1;
  box-shadow: none;
  background: #bd962a;
}

.sp-gnav {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 20px 25px;
  background: white;
  z-index: 400;
  position: fixed;
  top: 0;
}
@media screen and (min-width: 801px) {
  .sp-gnav {
    display: none;
  }
}
.sp-gnav .sp-logo img {
  width: 239px;
}

/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.hamburger {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  z-index: 500;
  top: 15px;
  right: 15px;
}
@media screen and (min-width: 801px) {
  .hamburger {
    display: none;
  }
}

/*ボタン内側*/
.hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #393939;
}

.hamburger span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.hamburger span:nth-of-type(2) {
  top: 23px;
  width: 45%;
}

.hamburger span:nth-of-type(3) {
  top: 31px;
  width: 45%;
}

/*activeクラスが付与されると線が回転して×になる*/
.hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 300;
  top: 85px;
  left: 0;
  color: #393939;
  background: url(../image/flower-img-10.jpg);
  width: 0%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
  overflow-y: scroll;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 90%;
  padding-top: 2svh;
}
nav.globalMenuSp ul li {
  padding: 15px 0;
  border-bottom: solid 1px #b0a377;
}
nav.globalMenuSp ul li a {
  font-size: 1.1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #43311f;
}
nav.globalMenuSp ul li.f-arrow a {
  display: flex;
  justify-content: space-between;
}
nav.globalMenuSp ul li.f-arrow a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f178";
  color: #cfc4a3;
}
nav.globalMenuSp ul li.f-window a {
  display: flex;
  justify-content: space-between;
}
nav.globalMenuSp ul li.f-window a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f08e";
  color: #cfc4a3;
}
nav.globalMenuSp ul .btn-wrap {
  padding: 20px 0 40px 0;
}

.sp-gnav-btn {
  display: grid;
  gap: 25px;
  width: 100%;
  padding-top: 25px;
}
.sp-gnav-btn a {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.4rem;
  font-feature-settings: "palt";
  color: white;
  width: 90%;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
  position: relative;
}
.sp-gnav-btn a.fix-btn-online {
  background: #4c7451;
  padding: 25px 0 25px 30px;
  box-shadow: 0 0px 10px 0 rgba(60, 94, 64, 0.3);
}
.sp-gnav-btn a.fix-btn-online::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
  position: absolute;
  left: 25px;
}
.sp-gnav-btn a.fix-btn-online:hover {
  opacity: 1;
  box-shadow: none;
  background: #3c5e40;
}
.sp-gnav-btn a.fix-btn-join {
  background: #c5a44b;
  box-shadow: 0 0px 10px 0 rgba(163, 141, 79, 0.3);
}
.sp-gnav-btn a.fix-btn-join::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  left: 25px;
}
.sp-gnav-btn a.fix-btn-join:hover {
  opacity: 1;
  box-shadow: none;
  background: #bd962a;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  width: 100%;
  opacity: 100;
  transition: opacity 0.4s ease, width 0s;
}

@media screen and (max-width: 500px) {
  .header-sp-bg {
    width: 100%;
    height: 100px;
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0));
    position: fixed;
    z-index: 100;
  }
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .fv {
    padding-top: 85px;
  }
}

.concept {
  background: #fafafa;
}
.concept .strat-bnr {
  padding-top: 40px;
}
.concept p {
  font-size: 1.1rem;
  line-height: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding-bottom: 1.5em;
}
.concept .concept-img {
  margin-top: -10px;
}

.feature {
  background: #f8f7ef;
}
.feature ul {
  display: grid;
  gap: 60px;
}
.feature ul li {
  text-align: center;
}
.feature ul li .feature-number img {
  width: 128px;
}
.feature ul li h2 {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 40px 0 25px 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.feature ul li p {
  font-size: 1rem;
  text-align: left;
  padding-bottom: 40px;
  line-height: 1.7;
}
.feature ul li .future-img {
  padding-bottom: 20px;
}

.counselor .counselor-img {
  padding-bottom: 30px;
}
.counselor p {
  font-size: 1rem;
  text-align: left;
  padding-bottom: 1.2rem;
  line-height: 1.8;
}
.counselor .counselor-human {
  padding-top: 40px;
  text-align: center;
}
.counselor .counselor-human img {
  width: 287px;
}
.counselor .counselor-name {
  text-align: center;
  padding-bottom: 40px;
}
.counselor .counselor-name span {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding-left: 20px;
}
.counselor h3 {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.1rem;
}
.counselor h3.h3-green {
  color: #4c7451;
  position: relative;
}
.counselor h3.h3-green::before, .counselor h3.h3-green::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 6px; /*ボーダー全体の高さ*/
  border-color: #4c7451;
  border-style: solid;
}
.counselor h3.h3-green::before {
  top: 0;
  border-width: 0 0 0 0;
}
.counselor h3.h3-green::after {
  bottom: 0;
  border-width: 1px 0 2px 0;
}
.counselor h3.h3-gold {
  color: #c5a44b;
  position: relative;
  padding-top: 20px;
}
.counselor h3.h3-gold::before, .counselor h3.h3-gold::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 6px; /*ボーダー全体の高さ*/
  border-color: #c5a44b;
  border-style: solid;
}
.counselor h3.h3-gold::before {
  top: 0;
  border-width: 0 0 0 0;
}
.counselor h3.h3-gold::after {
  bottom: 0;
  border-width: 1px 0 2px 0;
}

.serice-top {
  background: #3c5e40;
}
.serice-top p {
  color: white;
  font-size: 1.1rem;
  line-height: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.btn {
  margin: 40px 0 45px 0;
  padding: 20px;
  height: 90px;
  position: relative;
  width: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
}
.btn:hover {
  opacity: 1;
}
.btn:hover .arrow {
  right: -35px;
  transition: 0.5s;
}
.btn .arrow {
  position: absolute;
  right: -30px;
  top: 27px;
}
.btn .arrow img {
  width: 59px;
}

.white-btn {
  border: solid 1px white;
  color: white;
}
.white-btn:hover {
  color: #3c5e40;
  background: white;
}

.black-btn {
  border: solid 1px #393939;
  color: #393939;
}
.black-btn:hover {
  color: white;
  background: #393939;
}

.flow {
  background: #f8f7ef;
}
.flow ul.flow-list {
  display: grid;
  gap: 25px;
  padding-bottom: 45px;
}
.flow ul.flow-list li h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.5rem;
}
.flow ul.flow-list li h3 span {
  font-family: "Bellefair", serif;
  font-weight: 400;
  color: #b0a377;
  font-size: 1.7rem;
  padding-right: 15px;
}
.flow ul.flow-list li p {
  line-height: 1.7;
  padding-bottom: 20px;
}
.flow ul.flow-list li p a {
  font-weight: 600;
  color: #4c7451;
  border-bottom: solid 1px #4c7451;
}
.flow ul.flow-list li .document-wrap {
  background: white;
  border-radius: 5px;
  padding: 40px 40px 20px 40px;
  text-align: center;
}
.flow ul.flow-list li .document-wrap h4 {
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  padding-bottom: 30px;
}
.flow ul.flow-list li .document-wrap ol.document-list li::before {
  font-weight: 200;
}
.flow ul.flow-list li .document-wrap ol.document-list li {
  text-indent: -1.6em;
  padding-left: 1em;
  text-align: left;
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}
.flow ul.flow-list li .document-wrap ol.document-list li span {
  color: #b0a377;
  padding-right: 10px;
  display: inline;
}
.flow ul.flow-list li .document-wrap ol.document-list li span.document-memo {
  color: #393939;
  font-weight: 400;
}

.news .instagram-icon {
  padding-right: 20px;
}
.news .instagram-icon img {
  width: 32px;
}

footer {
  background: #f8f7ef;
  border-bottom: solid 5px #c5a44b;
}
footer .service-footer {
  border-top: solid 5px #c5a44b;
}
footer .f-logo {
  text-align: center;
  padding: 55px 0 30px 0;
}
footer .f-logo img {
  max-width: 220px;
}
footer ul.footer-list li {
  padding: 15px 0;
  border-bottom: solid 1px #b0a377;
}
footer ul.footer-list li a {
  font-size: 1.1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #43311f;
}
footer ul.footer-list li.f-arrow a {
  display: flex;
  justify-content: space-between;
}
footer ul.footer-list li.f-arrow a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f178";
  color: #cfc4a3;
}
footer ul.footer-list li.f-window a {
  display: flex;
  justify-content: space-between;
}
footer ul.footer-list li.f-window a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f08e";
  color: #cfc4a3;
}
footer .footer-link {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 50px 0 20px 0;
}
footer .footer-link a {
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #43311f;
}
footer .copy {
  text-align: center;
  padding-bottom: 40px;
  font-size: 0.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: #ac9961;
}
@media screen and (max-width: 800px) {
  footer .copy {
    padding-bottom: 90px;
  }
}

.sp-fix-btn {
  position: fixed;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
}
@media screen and (min-width: 801px) {
  .sp-fix-btn {
    display: none;
  }
}
.sp-fix-btn a {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.1rem;
  font-feature-settings: "palt";
  color: white;
  width: 100%;
  padding: 30px 0;
  text-align: center;
  position: relative;
}
.sp-fix-btn a.fix-btn-online {
  background: #58805E;
  background: linear-gradient(180deg, rgb(88, 128, 94) 0%, rgb(77, 112, 82) 100%);
  padding: 30px 0 30px 20px;
}
.sp-fix-btn a.fix-btn-online::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
  position: absolute;
  left: 20px;
}
.sp-fix-btn a.fix-btn-join {
  background: #E3BF5D;
  background: linear-gradient(180deg, rgb(227, 191, 93) 0%, rgb(197, 164, 75) 100%);
}
.sp-fix-btn a.fix-btn-join::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0a9";
  position: absolute;
  left: 20px;
}

@media screen and (max-width: 800px) {
  .service {
    padding-top: 70px;
  }
}
.service .service-lead {
  font-size: 1.1rem;
  line-height: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding-bottom: 50px;
}
.service .service-box {
  padding-top: 80px;
}
.service .service-box p.h3subttl {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-size: 1.1rem;
  text-align: center;
  padding-bottom: 10px;
}
.service .service-box h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 50px;
}
.service .service-box h3 span {
  font-size: 1.2rem;
  font-weight: 400;
}
.service .service-box h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.2rem;
  padding-bottom: 20px;
}
.service .service-box h4::before {
  content: "●";
  color: #d6c79f;
}
.service .service-box h4 span.h4-sub-1 {
  font-size: 1.1rem;
}
.service .service-box h4 span.h4-sub-2 {
  padding: 3px 12px 5px;
  border-radius: 50vw;
  font-size: 0.9rem;
  background: #c5a44b;
  color: white;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}
.service .service-box p.service-ex {
  padding-bottom: 15px;
}
.service .service-box table.service-list {
  width: 100%;
}
.service .service-box table.service-list th {
  width: 150px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 25px;
}
.service .service-box table.service-list td {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 25px 0 25px 25px;
  text-align: right;
}
.service .service-box p.service-campaign {
  font-family: "Noto Serif JP", serif;
  padding: 12px 12px 12px 15px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.service .service-box p.service-campaign span {
  font-size: 1.2rem;
  padding-left: 5px;
}
.service .service-box .service-list-caution {
  padding-top: 15px;
}
.service .service-box .service-list-caution p {
  padding-bottom: 10px;
  line-height: 1.4;
}
.service .service-grn-box p.h3subttl {
  color: #4c7451;
}
.service .service-grn-box table.service-grn-list tr {
  border-top: solid 1px #c0c9c1;
  border-bottom: solid 1px #c0c9c1;
}
.service .service-grn-box table.service-grn-list th {
  background: #f4f6f4;
}
.service .service-grn-box table.service-grn-list td p.service-grn-campaign {
  margin-top: 20px;
  display: inline-block;
  background: #ecf2ec;
  color: #4c7451;
}
.service .service-gld-box p.h3subttl {
  color: #c5a44b;
}
.service .service-gld-box table.service-gld-list tr {
  border-top: solid 1px #b0a377;
  border-bottom: solid 1px #b0a377;
}
.service .service-gld-box table.service-gld-list th {
  background: #f4efe2;
}
.service .service-gld-box p.service-gld-campaign {
  margin-top: 15px;
  background: #f4efe2;
  color: #aa8523;
  text-align: center;
}
.service .service-gld-box p.service-gld-campaign-2 {
  margin-top: 15px;
  font-weight: 500;
  color: #aa8523;
  background: #f4efe2;
  text-align: left;
}
.service .plan {
  margin-top: 20px;
  background: #faf7f1;
  padding: 30px;
  border-radius: 5px;
}
.service .plan h4 {
  font-size: 1.2rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding: 10px 0 20px;
}
.service .plan table.plan-list tr {
  padding: 15px 0;
  border-bottom: solid 1px #d5cdb4;
}
.service .plan table.plan-list tr:last-child {
  border-bottom: none;
}
.service .plan table.plan-list tr th {
  padding: 20px 0;
  color: #c5a44b;
  padding-right: 10px;
}
.service .plan table.plan-list tr td {
  padding: 17px 0;
}
.service .plan table.plan-list tr td p {
  font-weight: 500;
  line-height: 1.5;
}
.service .plan table.plan-list tr td p span {
  padding-top: 5px;
  font-size: 0.95rem;
  font-weight: 400;
}/*# sourceMappingURL=base.css.map */