@charset "UTF-8";

/* >>>>>>>> sass各種設定 <<<<<<<< */
/* ----- 変数設定 ----- */
/*　画像ディレクトリ */
/*　フォント */
/*　カラー */
:root {
  --bg_color: #f6f6f6;
  --font_color: #000;
  --link_color: #2483D8;
  --link_hover_color: #777;
  --black: #000;
  --white: #fff;
  --border_color: #000;
  --brand_color: #9dd00f;
  --accent_color: #e9fbf9;
  --text_shadow_color: rgba(0, 0, 0, 0.5);
  --btn_shadow_color: rgba(0, 0, 0, 0.1);
  --bg_trans_color: rgba(255, 255, 255, 0.8);
}

/* ----- 共通設定 ----- */
/* ----- mixin設定 ----- */
/*　BREAKPOINT */
/*　フォント */
@font-face {
  font-family: "xxx";
  src: url("../font/xxx.woff") format("woff");
}

/*　画像表示 */
/*　レイアウト指定 */
/* ----- 流用コンテンツパーツ ----- */
/* >>>>>>> 共通スタイル <<<<<<<< */
body {
  margin: 0;
  font-size: clamp(16px, 1rem, 1.14vw);
  font-family: "futura-pt", "Zen Kaku Gothic Antique", sans-serif;
  position: relative;
  scroll-behavior: smooth;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 599px) {
  body {
    font-size: clamp(13px, 1rem, 2.17vw);
  }
}

section {
  background-size: cover;
  background-position: center;
  position: relative;
}

a {
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:active {
  color: inherit;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

@media screen and (max-width: 599px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }
}

/* >>>>>>>> スタイルコントロール <<<<<<<< */
/* ----- align ----- */
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ----- width ----- */
.pc-col-50 {
  width: 50%;
}

.pc-col-100 {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .sp-col-50 {
    width: 50%;
  }

  .sp-col-100 {
    width: 100%;
  }
}

/* >>>>>>>> コンポーネントスタイル <<<<<<<< */
/* ----- タイトル ----- */
.component-title {
  text-transform: uppercase;
}

.component-title h1 {
  font-size: clamp(1vw, 3.5rem, 12vw);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.component-title h2 {
  font-size: clamp(0.7rem, 1rem, 2vw);
  position: relative;
  z-index: 1;
}

/* ----- ボタン ----- */
.component_button {
  display: inline-block;
  padding: 1em;
  width: 100%;
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  /* -webkit-transition: all 0.3s;
  transition: all 0.3s; */
  position: relative;
}

.component_button:focus {
  outline: none;
}

.component_button:hover {
  color: var(--white);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0px 5px 10px var(--btn_shadow_color);
  box-shadow: 0px 5px 10px var(--btn_shadow_color);
}

.component_button:active {
  color: var(--white);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0px 3px 5px var(--btn_shadow_color);
  box-shadow: 0px 3px 5px var(--btn_shadow_color);
}

.component_button.btnarrow::after {
  content: "▷";
  /* -webkit-transition: all 0.3s;
  transition: all 0.3s; */
  position: absolute;
  right: calc(0% + 1em + 3px);
}

.component_button.btnarrow:hover::after {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.component_button.gradient1 {

  background: var(--brand_color);
  background: -webkit-gradient(linear, right top, left top, from(#4ab8ed), color-stop(25%, #0fd012), color-stop(51%, #9cd62f), to(#39ba8f));
  background: -webkit-linear-gradient(right, #4ab8ed 0%, #0fd012 25%, #9cd62f 51%, #39ba8f 100%);
  background: linear-gradient(270deg, #4ab8ed 0%, #0fd012 25%, #9cd62f 51%, #39ba8f 100%);
  background-position: 99% 50%;
  background-size: 200% auto;
  /* -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;  */
}

.component_button.gradient1:hover {
  color: var(--white);
  background-position: 1% 50%;
}

.contact-btn .component_button.gradient1 {
  background: var(--brand_color);
}

.component_button.gradient2 {
  background: -webkit-gradient(linear, right top, left top, from(#ffffff), color-stop(25%, #ffffff), color-stop(51%, #ffffff), to(#ffffff));
  background: -webkit-linear-gradient(right, #ffffff 0%, #ffffff 25%, #ffffff 51%, #ffffff 100%);
  background: linear-gradient(270deg, #ffffff 0%, #ffffff 25%, #ffffff 51%, #ffffff 100%);
  background-position: 99% 50%;
  background-size: 200% auto;
  /* -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; */
  color: var(--brand_color);
}

.component_button.gradient2:hover {
  color: var(--brand_color);
  background-position: 1% 50%;
}

.component_button.light {
  background: var(--brand_color);
  color: var(--white);
}

/* ----- セクションセパレーター ----- */
.separator {
  position: relative;
  overflow: visible;
  z-index: 50;
  -webkit-filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.3));
}

.separator::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
  transform: translateX(-50%) translateY(100%);
  width: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

/* ----- アニメーション設定 ----- */
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.slide_in {
  opacity: 0;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.slide_in:not(:nth-child(1)) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.slide_in.on {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}





#about .component-title.right {
  height: 16rem;
}

#about .component-title h1 {
  margin-top: 7%;
}

#about .content {
  margin-top: -10%;
}

.a-right-line {
  position: relative;
  overflow: hidden;
}

.a-right-line::before {
  content: url(../images/leaf_logo.png);
  position: absolute;
  top: 7%;
  left: 49%;
  width: 0%;
  height: 3rem;
  z-index: -1;
  scale: 0.25;
}

@media screen and (max-width: 1440px) {
  .a-right-line::before {
    top: 0%;
    left: 35%;
  }
}

@media screen and (max-width: 800px) {
  .a-right-line::before {
    top: -9%;
    left: 4%;
  }
}

@media screen and (max-width: 1280px) {
  .a-right-line::before {
    top: -9%;
    left: 4%;
  }
}

@media screen and (max-width: 1280px) {

  #about .section-2col {
    padding: 8vh 5vw;
  }

  #about .component-title.right {
    height: 13rem;
    text-align: right;
  }

  #about .component-title h1 {
    margin-top: 6%;

  }

  #about .content {
    margin-top: 0%;
  }

  /* .a-right-line {
    position: relative;
    overflow: hidden;
  } */

  /* .a-right-line::before {
    content: url(../images/leaf_logo.png);
    position: absolute;
    top: -12%;
    left: 0%;
    z-index: -1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    scale: 0.25;
  } */

}


@media screen and (max-width: 800px) {

  #about .section-2col {
    padding: 8vh 5vw;
  }

  #about .component-title.right {
    height: 8rem;
    text-align: right;
  }

  #about .component-title h1 {
    margin-top: 6%;

  }

  #about .content {
    margin-top: 0%;
  }

  .a-right-line {
    position: relative;
    overflow: hidden;
  }

  .a-right-line::before {
    content: url(../images/leaf_logo.png);
    position: absolute;
    top: -12%;
    left: 2%;
    z-index: -1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    scale: 0.19;
  }

}

.a-right-line.on::before {
  transform: translateX(0);
  /* アニメーション後の位置 */
}

/* >>>>>>>> セクション毎のスタイル <<<<<<<< */
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--bg_trans_color);
  -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 2rem;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 10vh;
  z-index: 1000;
}

@media screen and (max-width: 599px) {
  .header-nav {
    padding: 15px;
  }
}

.header-nav .component_button {
  min-width: 16.43vw;
  padding: 0.5em;
  font-size: clamp(10px, 1rem, 2.17vw);
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .header-nav .component_button {
    display: none;
  }
}

.header-nav .logo {
  color: var(--brand_color);
  text-decoration: none;
  padding-right: 0.5rem;
}

.header-nav .logo img {
  height: 80%;
  max-height: 5vh;
}

@media screen and (max-width: 599px) {
  .header-nav .logo img {
    max-width: 40vw;
  }
}

.header-nav .menu {
  display: block;
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-nav .menu .sp-menu-logo,
.header-nav .menu .sp-menu-footer {
  display: none;
}

.header-nav .menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0 1rem 0 0;
}

@media screen and (max-width: 599px) {
  .header-nav .menu ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

  }
}

.header-nav .menu ul li {
  margin: 0 1rem;
}

.header-nav .menu ul li a {
  color: var(--brand_color);
  text-decoration: none;
}

.header-nav .menu-toggle {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.header-nav .menu-toggle .hamburger,
.header-nav .menu-toggle .close {
  font-size: 6vh;
  cursor: pointer;
  z-index: 10000;
  margin-top: -2vh;
  width: 100%;
}

.header-nav .menu-toggle .hamburger {
  display: block;
  color: var(--brand_color);
}

.header-nav .menu-toggle .close {
  display: none;
  color: var(--brand_color);
}

@media screen and (max-width: 768px) {
  .header-nav .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 10000;
    visibility: hidden;
    /* -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header-nav .menu.active {
    opacity: 1;
    visibility: visible;
  }



  .header-nav .menu .sp-menu-logo {
    display: block;
    /* border-bottom: 1px solid var(--black); */
    width: 100%;
    text-align: center;
  }

  .header-nav .menu .sp-menu-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
  }

  .header-nav .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    margin: 2rem 2rem 2rem 0;
    text-align: center;
    font-size: 16px;
    /* border-bottom: 1px solid var(--black); */
  }

  .header-nav .menu ul li {
    padding: 1rem;
    position: relative;
    display: block;
    width: 100%;

  }

  .header-nav .menu ul li:hover {
    background-color: var(--brand_color);
  }

  .header-nav .menu ul li a {
    display: inline-block;
    width: 100%;
    /* color: var(--black); */
  }

  .header-nav .menu ul li a:hover {
    color: var(--white);
  }

  .header-nav .menu ul li::after {
    content: ">";
    position: absolute;
    right: 1rem;
    color: var(--white);
  }

  .header-nav .menu .sp-menu-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    text-align: center;
    color: var(--black);
  }

  .header-nav .menu .sp-menu-footer a,
  .header-nav .menu .sp-menu-footer :active,
  .header-nav .menu .sp-menu-footer a:visited {
    color: var(--black);
  }

  .header-nav .menu .sp-menu-footer .contact-btn {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--black);
  }

  .header-nav .menu .sp-menu-footer .contact-btn .component_button {
    margin: 2rem auto;
    width: calc(100% - 2rem);
    padding: 1em;
    display: block;
    font-size: 1em;
    color: var(--white);
    background-color: var(--brand_color) !important;
  }

  .header-nav .menu .sp-menu-footer .policy,
  .header-nav .menu .sp-menu-footer .copyright {
    margin: 1rem auto;
  }

  .header-nav .menu-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header-nav .header-nav.active .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header-nav .header-nav.active .hamburger {
    display: none;
  }

  .header-nav .header-nav.active .close {
    display: block;
  }
}

/* ----- ヒーローセクション ----- */
.hero-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  height: 56.25vw;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .hero-section {
    height: 100vh;
  }
}

.hero-section .hero-content {
  position: absolute;
  bottom: 1.5rem;
  text-align: center;
  color: var(--white);
  width: 100%;
}

.hero-section .hero-title {
  text-align: left;
  font-size: 5.5vw;
  margin: 0 0 1rem 5vw;
  -webkit-filter: drop-shadow(0px 0px 5px var(--text_shadow_color));
  filter: drop-shadow(0px 0px 5px var(--text_shadow_color));
}

@media screen and (max-width: 599px) {
  .hero-section .hero-title {
    font-size: 8vw;
  }
}

.hero-section .hero-subtext {
  width: 65%;
  background-color: var(--bg_trans_color);
  padding: 1rem 5vw;
  color: var(--font_color);
}

.hero-section .hero-subtext .content .content-title:after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: var(--border_color);
  border-radius: 2px;
  margin: 1em 0;
}

.hero-section .hero-subtext .content .content-text {
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .hero-section .hero-subtext {
    width: 90%;
  }
}

.hero-section .hero-subtext .content-title {
  text-align: left;
  font-size: 2vw;
}

@media screen and (max-width: 599px) {
  .hero-section .hero-subtext .content-title {
    font-size: 5.5vw;
  }
}

/* ----- 1カラムセクション ----- */
.section-1col {
  padding: 10vh 5vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 2.5vw;
}

.section-1col[data-colstyle="2col"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  /* -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row; */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5vw;
  gap: 2rem;
}

@media screen and (max-width: 599px) {
  .section-1col[data-colstyle="2col"] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

@media screen and (max-width: 599px) {
  .section-1col[data-colstyle="2col"] {
    padding: 10vh 5vw;
  }
}

.section-1col .component {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}

.section-1col .component-title {
  display: block;
  margin-bottom: 2rem;
}

.section-1col .col_textarea {
  max-width: 80vw;
  background-color: var(--bg_color);
  margin-bottom: 2rem;
  padding: 10vw;
  border-radius: 1rem;
}

@media screen and (max-width: 599px) {
  .section-1col .col_textarea {
    width: 100%;
    max-width: 100%;
  }
}

.section-1col .col_textarea .content-text {
  text-align: justify;
}

.section-1col .col_textarea p {
  letter-spacing: 0.2rem;
  margin: 1rem auto;
}

.section-1col .col_cat {
  text-align: center;
}

@media screen and (max-width: 599px) {
  .section-1col .col_cat {
    width: 100%;
    max-width: 100%;
  }
}

.section-1col .col_button {
  max-width: 80vw;
  min-width: 30%;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 599px) {
  .section-1col .col_button {
    min-width: 80%;
  }
}

/* ----- 2カラムセクション ----- */
.section-2col {
  padding: 10vh 5vw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5vw;
}

.section-2col[data-colstyle=fullwidth] {
  padding: 0;
  gap: 0;
}

.section-2col[data-colstyle=fullwidth] div:not([data-colmode=fullimg]).pc-col-50 {
  padding: 5vw;
}

@media screen and (max-width: 599px) {
  .section-2col[data-colstyle=fullwidth] div:not([data-colmode=fullimg]).pc-col-50 {
    padding: 0;
  }
}

.section-2col[data-colstyle=fullwidth] div:not([data-colmode=fullimg]).pc-col-50 .component-title {
  margin-bottom: 2rem;
}

@media screen and (max-width: 599px) {
  .section-2col[data-colstyle=fullwidth] {
    padding: 10vh 5vw;
  }

  .section-2col[data-colstyle=fullwidth] div[data-colmode=fullimg] {
    margin-bottom: 2rem;
  }
}

.section-2col[data-colstyle=fullwidth] .sp_title {
  margin-bottom: 2rem;
}

@media screen and (max-width: 830px) {
  .section-2col[data-colstyle=earlywarp] {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 599px) {
  .section-2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.section-2col .sp_title {
  display: none;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}




@media screen and (max-width: 599px) {
  .section-2col .sp_title {
    display: block;
  }
}

.section-2col .l_col,
.section-2col .r_col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .section-2col .l_col {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .section-2col .sp_title .component-title.center {
    display: none;
  }

  .section-2col .r_col {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .section-2col div[data-colmode=fullimg].r_col {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.section-2col .col_title {
  width: 100%;
  display: flex;
  align-items: center;
}

.section-2col .col_title .component-title {
  display: block;
  position: relative;
}

@media screen and (max-width: 599px) {
  .section-2col .col_title .component-title {
    display: none;
  }
}

.section-2col .col_img img {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border_color);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-2col .col_fullimg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 599px) {
  .section-2col .col_fullimg {
    aspect-ratio: 16/9;
  }
}

.section-2col .col_textarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.section-2col .col_textarea .component-title {
  display: block;
  margin-bottom: 2rem;
}

@media screen and (max-width: 599px) {
  .section-2col .col_textarea .component-title {
    display: none;
  }
}

.section-2col .col_textarea .content .content-title:after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: var(--border_color);
  border-radius: 2px;
  margin: 1em 0;
}

.section-2col .col_textarea .content .content-text {
  text-align: justify;
}

.section-2col .col_list {
  width: 100%;
}

.section-2col .col_list .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  gap: 1rem;
}

.section-2col .col_list .content .list-title {
  width: 29%;
}

.section-2col .col_list .content .list-text {
  width: 80%;
}

.section-2col .col_list .content:not(:last-child) {
  border-bottom: solid 1px;
}

/* ----- カードセクション ----- */
.section-card {
  padding: 10vh 5vw;
  width: 100%;

}


@media screen and (max-width: 768px) {

  .section-card {
    padding: 0.5rem 4vw 3rem 4vw;
    width: 100%;

  }
}

/* カードデザイン毎のスタイル */

.section-card .component-title {
  margin-bottom: 2rem;
}

.section-card .cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2vw;
}

@media screen and (max-width: 599px) {
  .section-card .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.section-card .cards .card {
  width: 33.3333333333%;
}

.section-card .cards .card .img {
  width: 100%;
  background-size: contain;
  background-position: center;
}

.section-card .card1 {
  width: 100%;
  margin: 0 auto;
  gap: 1rem;
}

.section-card .card1 .card {
  width: 33.3333333333%;
  position: relative;
}

@media screen and (max-width: 599px) {
  .section-card .card1 .card {
    width: 100%;
  }
}

.section-card .card1 .card .img {
  background-size: cover;
}

.section-card .card1 .card .text_contents {
  background-color: var(--bg_trans_color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-card .card1 .card .text_contents .title {
  text-align: center;
  font-size: 1.5rem;
}

.section-card .card1 .card .text_contents .text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 1.5em;
  text-align: justify;
  font-size: clamp(10px, 3vw, 1rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .section-card .card1 .card .text_contents .text {
    font-size: clamp(10px, 3vw, 5rem);
  }
}

.section-card .card2 {
  width: 100%;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 5vw;
}

.section-card .card2 .card {
  width: 100%;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2vw;
}

@media screen and (max-width: 599px) {
  .section-card .card2 .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 2rem;
  }
}

.section-card .card2 .card .img {
  width: 50%;
  min-width: 40%;
  aspect-ratio: 16/9;
  background-size: cover;
  border: solid 1px var(--border_color);
  border-radius: 1rem;
}

@media screen and (max-width: 599px) {
  .section-card .card2 .card .img {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .section-card .card2 .card .img {
    border: solid 2px var(--border_color);
  }
}

.section-card .card2 .card .text_contents {
  background-color: var(--white);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.section-card .card2 .card .text_contents .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 599px) {
  .section-card .card2 .card .text_contents .title {
    margin-bottom: 2rem;
  }
}

.section-card .card2 .card .text_contents .title .number {
  font-size: 2em;
}

@media screen and (max-width: 599px) {
  .section-card .card2 .card .text_contents .text {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .section-card .card2 .card:not(:last-child) {
    border-bottom: solid 1px var(--border_color);
  }
}

.section-card .blog {
  width: 100%;
  margin: 0 auto;
}

.section-card .blog .card {
  width: 33.3333333333%;
  -webkit-box-shadow: 0px 0px 20px var(--btn_shadow_color);
  box-shadow: 0px 0px 20px var(--btn_shadow_color);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  .section-card .blog .card {
    width: 100%;
  }
}

.section-card .blog .card .img {
  aspect-ratio: 4/3;
  background-size: cover;
}

.section-card .blog .card .text_contents {
  background-color: var(--white);
  width: 100%;
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}

.section-card .blog .card .text_contents .title {
  width: 100%;
  font-size: clamp(13px, 1rem, 1.5rem);
}

.section-card .blog .card .text_contents .text {
  text-align: right;
}

.section-card .blog .card:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.section-card .blog .card:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}


#contact {
  background-image: url(../images/contact_img.jpeg) !important;
  z-index: 1;
}

#contact .section-1col {
  background-color: rgba(255, 255, 255, .5) !important;
}

#contact .section-1col .component-title {
  color: #000000;
}


#company .col_title img {
  position: absolute;
  top: -11%;
  left: 108%;
  z-index: 1;
  width: 100px;
}



@media screen and (max-width: 600px) {

  #company .component-title::after {
    content: url(../images/leaf_logo.png);
    position: absolute;
    top: 3.5%;
    right: 28%;
    width: 0%;
    height: 3rem;
    scale: 0.19;
  }

}


/* ----- 

contact

----- */

@media screen and (min-width: 800px) {

  #contact_page .container-fluid {
      width: 800px;
  }

  #contact_page .container {
      width: 800px;
  }
}


#contact_page .header-section {
  background: url('../images/contact.jpg') center center/cover no-repeat;
  /* background-color: gray; */
  width: 100%;
  height: 270px;
  opacity: 0.8;
  /* 適切な高さを設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

#contact_page .header-section h2 {
  font-size: 32px;
  font-family: Inter;
  font-weight: 800;
  word-wrap: break-word
}

#contact_page .header-section h4 {
  color: white;
  font-size: 20px;
  font-family: Inter;
  font-weight: 800;
  word-wrap: break-word
}

#contact_page .contact_title {
  color: black;
  font-size: 24px;
  font-family: Inter;
  font-weight: 800;
  word-wrap: break-word;
}

#contact_page .contact_title_explanation {
  color: black;
  font-size: 12px;
  font-family: Inter;
  font-weight: 400;
  word-wrap: break-word;
  padding: 0 12%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#contact_page .form_text {
  color: black;
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  word-wrap: break-word
}

#contact_page .text-success {
  background-color: #8EC324;
  color: white !important;
  padding: 5px 10px 5px 10px;
  margin-right: 1rem;
}

#contact_page .text-muted {
  background-color: #999999;
  color: white !important;
  padding: 5px 10px 5px 10px;
  margin-right: 1rem;
}

#contact_page .submit_button {
  background-color: #FFA500;
  color: white;
  width: 200px;
  height: 55px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact_page .submit_button:hover {
  background-color: #FF8C00;
}

/* ----- ヘッダーナビ ----- */
footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

footer div {
  text-align: center;
  padding: 1em;
  width: 100%;
}

footer .logo {
  color: var(--white);
}

footer .logo img {
  width: 80px;
}

footer .logo .policy a {
  color: white;
}

footer .logo .policy a:hover,
footer .logo .policy a:active {
  color: white;
}

footer .copyright {
  color: var(--white);
  font-size: 0.9rem;
  background-color: #333;
}

p.waku {
  padding: 20px;
  font-size: 14px;
}

p.waku {
  padding: 10px 10px 20px 10px;
}

.submd {
  font-size: 36px;
  color: #8ec31f;
  margin: 50px 0;
  text-align: center;
}

.ad_img{
  margin-top: 1rem;
}