@charset "UTF-8";
/*** The new CSS reset - version 1.11.1 (last updated 24.10.2023) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 色の設定 */
/* ブレイクポイントを設定 */
/* 共通CSS */
HTML {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FFFDFA;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  body .is_sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  body .is_pc {
    display: none !important;
  }
}

body a {
  text-decoration: none;
  color: #1EAD39;
}

@media screen and (min-width: 768px) {
  body main {
    padding: 100px 40px 0 40px;
  }
}

@media screen and (max-width: 768px) {
  body main {
    padding: 60px 5vw 0 5vw;
  }
}

body .fv_wrp {
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  body .fv_wrp {
    padding: 40px 0px 0px 40px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  body .fv_wrp::after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/corner.svg);
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 56px;
  }
}

@media screen and (max-width: 768px) {
  body .fv_wrp {
    margin-top: -30px;
    height: 28vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body .fv_wrp.is_top {
  height: 50vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  body .fv_wrp.is_top {
    height: 50vh;
  }
}

@media screen and (max-width: 768px) {
  body .fv_wrp.is_top {
    margin-top: 30px;
    height: 65vh;
  }
}

body .fv_wrp::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/fv01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: zoom 3s 1;
  animation: zoom 3s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

body .fv_wrp .fv_ttl {
  z-index: 2;
  color: #fff;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  body .fv_wrp .fv_ttl {
    margin-left: auto;
    margin-right: 5vw;
    font-size: 22px;
    letter-spacing: 8px;
  }
  body .fv_wrp .fv_ttl.is_top {
    margin-right: 10vw;
  }
}

@media screen and (max-width: 768px) {
  body .fv_wrp .fv_ttl {
    background-color: rgba(30, 173, 57, 0.8);
    font-weight: bold;
    padding: 7px 30px;
    font-size: 20px;
    letter-spacing: 5px;
    border-radius: 0 25px 25px 0;
  }
}

body .fv_wrp .fv_ttl.is_top {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: transparent;
}

body .fv_wrp .fv_ttl.is_top span {
  color: transparent;
  animation: blur 3s ease-out forwards;
  -webkit-animation: blur 3s ease-out forwards;
}

body .fv_wrp .fv_ttl.is_top span:nth-of-type(1) {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}

body .fv_wrp .fv_ttl.is_top span:nth-of-type(2) {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

body .fv_wrp .fv_ttl.is_top span:nth-of-type(3) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

@keyframes blur {
  0% {
    color: transparent;
    opacity: 0;
  }
  20% {
    text-shadow: 0 0 90px #fff;
  }
  40% {
    opacity: 1;
    color: #fff;
  }
  100% {
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.9);
    color: #fff;
  }
}

@-webkit-keyframes blur {
  0% {
    color: transparent;
    opacity: 0;
  }
  20% {
    text-shadow: 0 0 90px #fff;
  }
  40% {
    opacity: 1;
    color: #fff;
  }
  100% {
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.9);
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  body .fv_wrp .fv_ttl.is_top {
    margin: auto;
    line-height: 3;
    letter-spacing: 10px;
  }
}

body section {
  max-width: 1000px;
  position: relative;
}

@media screen and (min-width: 768px) {
  body section {
    width: 85vw;
    margin: 120px auto;
  }
}

@media screen and (max-width: 768px) {
  body section {
    margin: 90px auto;
  }
}

body h2 {
  color: #241815;
  font-size: 28px;
  letter-spacing: 3px;
  line-height: 1.7;
  margin: 1em 0;
}

@media screen and (min-width: 768px) {
  body h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  body h2 {
    font-size: 24px;
  }
}

body h2 span {
  color: #1EAD39;
}

body .desc p {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  body .desc p {
    font-size: 16px;
    line-height: 2.4;
  }
}

@media screen and (max-width: 768px) {
  body .desc p {
    font-size: 14px;
    line-height: 2;
  }
}

body p {
  line-height: 2;
  font-size: 14px;
}

body p .txt-line {
  position: relative;
}

body p .txt-line::after {
  content: "";
  height: 4px;
  width: 100%;
  background-color: #1EAD39;
  position: absolute;
  left: 0;
  margin: auto;
}

@media screen and (min-width: 768px) {
  body p .txt-line::after {
    bottom: -10px;
  }
}

@media screen and (max-width: 768px) {
  body p .txt-line::after {
    bottom: -7px;
  }
}

body .btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1EAD39;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}

body .btn a::before, body .btn a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

body .btn a::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.2rem;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  z-index: 2;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

body .btn a::after {
  left: 0;
  background: #1EAD39;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body .btn a span {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
}

body .btn a.is_open span::after {
  content: "";
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 0.5em;
  margin-right: -0.5em;
}

@media screen and (min-width: 768px) {
  body .btn a.is_open span::after {
    background-image: url(../img/icn_open-g.svg);
  }
}

@media screen and (max-width: 768px) {
  body .btn a.is_open span::after {
    background-image: url(../img/icn_open-w.svg);
  }
}

body .btn a:hover.is_open span::after {
  background-image: url(../img/icn_open-w.svg);
}

@media screen and (min-width: 768px) {
  body .btn a {
    padding: 10px 0px 10px 25px;
    margin: 40px 0;
    max-width: 270px;
  }
  body .btn a:hover span {
    color: #fff;
  }
  body .btn a:hover:before {
    left: 2rem;
  }
  body .btn a:hover:after {
    right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  body .btn a {
    padding: 10px 10px 10px 25px;
    margin: 30px 0;
    width: 100%;
  }
  body .btn a span {
    color: #fff;
  }
  body .btn a:before {
    left: 2rem;
  }
  body .btn a:after {
    right: 0;
    width: 100%;
  }
}

body .btn.is_aboutpage a {
  padding: 10px 0px 10px 25px;
  margin: 10px 0;
}

body .btn.is_aboutpage a::before, body .btn.is_aboutpage a::after {
  display: inline-block;
}

body .btn.is_aboutpage a::before {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  left: -8px;
  transform: translateY(-50%) rotate(135deg);
}

body .btn.is_aboutpage a::after {
  left: -20px;
  width: 2rem;
  height: 2rem;
  border-radius: 4rem;
}

@media screen and (min-width: 768px) {
  body .btn.is_aboutpage a {
    display: inline-block;
  }
  body .btn.is_aboutpage a:hover span {
    color: #fff;
  }
  body .btn.is_aboutpage a:hover:before {
    left: 0px;
  }
  body .btn.is_aboutpage a:hover:after {
    right: 0;
    width: calc(100% + 50px);
  }
}

@media screen and (max-width: 768px) {
  body .btn.is_aboutpage a {
    display: block;
    font-size: 13px;
  }
  body .btn.is_aboutpage a span {
    color: #fff;
  }
  body .btn.is_aboutpage a:before {
    left: 0px;
  }
  body .btn.is_aboutpage a:after {
    right: 0;
    width: calc(100% + 50px);
  }
}

body .line {
  margin: 80px auto;
}

@media screen and (min-width: 768px) {
  body .line {
    width: 90vw;
    max-width: 1100px;
  }
}

@media screen and (max-width: 768px) {
  body .line {
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

body .parallax {
  position: fixed;
  width: auto;
  height: 430px;
  z-index: -10;
}

@media screen and (max-width: 768px) {
  body .parallax {
    opacity: 0.5;
  }
}

body .parallax.is_1 {
  left: 0;
  top: 520px;
}

body .parallax.is_2 {
  right: 0;
  top: 1291px;
}

body .parallax.is_3 {
  left: 0;
  top: 2160px;
  height: 330px;
}

body .vid_contents {
  width: 100%;
  text-align: center;
  margin: auto;
  padding: 4% 4% 4% 4%;
}

body .vid_contents video.vid_main {
  width: 100%;
  max-width: 920px;
}

/* ヘッダー */
#header {
  z-index: 100;
  position: fixed;
  top: 0px;
  width: 100%;
  border-top: 10px solid #1EAD39;
}

@media screen and (min-width: 768px) {
  #header {
    height: 100px;
    background-color: #FFFDFA;
  }
  #header h1.logo a {
    display: inline-block;
  }
  #header h1.logo a::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/corner.svg);
    background-repeat: no-repeat;
    display: block;
    position: fixed;
    top: 100px;
    left: 240px;
  }
  #header h1.logo a::after {
    content: "";
    width: 40px;
    height: 125px;
    position: relative;
    top: 0;
    left: 0;
    background-color: #FFFDFA;
    display: block;
  }
  #header h1.logo a img {
    width: 200px;
    height: auto;
    position: fixed;
    top: 40px;
    left: 40px;
  }
}

@media screen and (max-width: 768px) {
  #header h1.logo {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #header .header_nav {
    text-align: right;
    position: fixed;
    top: 40px;
    right: 40px;
  }
  #header .header_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 140px;
  }
  #header .header_nav ul li {
    margin-left: 40px;
  }
  #header .header_nav ul li a {
    color: #241815;
    font-weight: bold;
  }
  #header .header_nav ul li a.is-current {
    color: #1EAD39;
  }
  #header .header_nav ul li a:hover {
    color: #1EAD39;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

@media screen and (max-width: 768px) {
  #header .header_nav {
    /* Hamburger menu button */
    /* Hamburger Menu Animation Start */
    /* Hamburger Menu Animation End */
  }
  #header .header_nav .menu {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 0px;
    padding: 20px 0 40px 0;
    clear: both;
    background: #1EAD39;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: top;
            transform-origin: top;
    border-radius: 0 0 0 30px;
  }
  #header .header_nav .menu-btn:checked ~ .menu {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  #header .header_nav .menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #header .header_nav .menu li {
    border-bottom: 1px solid #fff;
    padding: 15px 0;
    margin: 0 40px;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #header .header_nav .menu-btn:checked ~ .menu a,
  #header .header_nav .menu-btn:checked ~ .menu li {
    opacity: 1;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  #header .header_nav .menu-btn {
    display: none;
  }
  #header .header_nav .menu-icon {
    float: right;
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #1EAD39;
    border-radius: 0 0 0 20px;
    z-index: 10;
  }
  #header .header_nav .navicon {
    background: #fff;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  #header .header_nav .navicon:before,
  #header .header_nav .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #fff;
    -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  #header .header_nav .navicon:before {
    top: 9px;
  }
  #header .header_nav .navicon:after {
    bottom: 9px;
  }
  #header .header_nav .menu-btn:checked ~ .menu-icon .navicon:before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #header .header_nav .menu-btn:checked ~ .menu-icon .navicon:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header .header_nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  #header .header_nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  #header .header_nav .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    -webkit-transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
}

/* フッター */
#footer .footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 80px auto 80px auto;
}

@media screen and (max-width: 768px) {
  #footer .footer_sns {
    margin-bottom: 100px;
  }
}

#footer .footer_sns li {
  width: 40px;
}

#footer .footer_sns li:first-of-type {
  width: 35px;
}

#footer .footer_sns li:not(:first-of-type) {
  margin-left: 40px;
}

#footer .footer_sns li.is_note a {
  display: block;
  width: 80px;
  margin-left: -15px;
}

#footer .footer_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto;
}

#footer .footer_info .logo img {
  width: 150px;
  margin-right: 50px;
}

#footer .footer_info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 400px;
  font-size: 14px;
}

#footer .footer_info dl dt {
  width: 80px;
  margin-bottom: 0.5em;
}

#footer .footer_info dl dd {
  margin: 0;
  width: 300px;
}

#footer .footer_totop {
  display: none;
  position: fixed;
  bottom: 40px;
  width: 50px;
}

@media screen and (min-width: 768px) {
  #footer .footer_totop {
    right: 40px;
  }
}

@media screen and (max-width: 768px) {
  #footer .footer_totop {
    right: 5vw;
  }
}

#footer .footer_totop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}

#footer .footer_totop a img {
  margin-bottom: 5px;
}

#footer small.footer_copy {
  background-color: #1EAD39;
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 6px;
  position: relative;
}

#footer small.footer_copy::before {
  content: '';
  background-image: url(../img/footer_3me.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 147px;
  height: 37px;
  display: block;
  position: absolute;
  bottom: 28px;
  right: 20vw;
}

@media screen and (max-width: 768px) {
  #footer small.footer_copy::before {
    left: 10vw;
  }
}

/* トップページ */
.page_top {
  overflow: hidden;
}

.page_top h1.logo {
  width: 150px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .page_top .sec_hajime {
    background-image: url(../img/map.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    margin-bottom: 160px;
  }
  .page_top .sec_hajime .imglist {
    position: absolute;
    bottom: -100px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page_top .sec_hajime .imglist li {
    width: 130px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .page_top .sec_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  .page_top .sec_links.is_yasai {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .page_top .sec_links .sec_links-img {
    width: 50%;
  }
  .page_top .sec_links .sec_links-img img {
    -webkit-box-shadow: 15px 15px 0px 0 #9e695c;
            box-shadow: 15px 15px 0px 0 #9e695c;
    border-radius: 20px;
  }
  .page_top .sec_links .sec_links-inr {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .page_top .sec_links .sec_links-inr h2.is_yasai {
    text-align: right;
  }
  .page_top .sec_links .sec_links-inr h2.is_nou {
    text-align: left;
  }
  .page_top .sec_links .sec_links-img {
    width: 100%;
    margin-top: 30px;
  }
  .page_top .sec_links .sec_links-img img {
    width: 100%;
    -webkit-box-shadow: 10px 10px 0px 0 #9e695c;
            box-shadow: 10px 10px 0px 0 #9e695c;
    border-radius: 20px;
  }
}

.page_top .sec_hibi {
  margin-top: 160px;
  text-align: center;
}

.page_top .sec_hibi .instagram_wrp {
  margin-top: 40px;
}

.page_top .sec_hibi .insta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.page_top .sec_hibi .insta_list li {
  position: relative;
  width: calc((100% - 40px)/3);
}

@media screen and (max-width: 768px) {
  .page_top .sec_hibi .insta_list li {
    width: calc((100% - 20px)/2);
  }
}

.page_top .sec_hibi .insta_list li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.page_top .sec_hibi .insta_list li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page_top .sec_hibi .insta_list li a:hover {
  opacity: 0.9;
}

.page_top .sec_hibi .insta_list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .page_top .sec_titimame {
    width: 800px;
    padding-left: 40px;
  }
}

@media screen and (min-width: 768px) {
  .page_top .sec_titimame .titimame_wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page_top .sec_titimame .titimame_wrp img {
    -webkit-box-shadow: 15px 15px 0px 0 #EAF4E7;
    box-shadow: 15px 15px 0px 0 #EAF4E7;
    border-radius: 20px;
  }
  .page_top .sec_titimame .titimame_wrp p {
    margin: 0 0 0 50px;
  }
  .page_top .sec_titimame .titimame_wrp a {
    margin: 20px 0 0 50px;
  }
}

/* 三つ豆ファームのこと */
.page_about .message_wrp {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page_about .message_wrp {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .message_wrp {
    margin-top: 60px;
  }
}

.page_about .message_wrp .message_txt {
  line-height: 2.3;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  background-image: url(../img/icn_hukjidasi-left.png), url(../img/icn_hukjidasi-right.png);
  background-repeat: no-repeat;
  background-position: top left, bottom right;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media screen and (min-width: 768px) {
  .page_about .message_wrp .message_txt {
    font-size: 22px;
    letter-spacing: 3px;
    padding: 0 60px;
    background-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .message_wrp .message_txt {
    font-size: 16px;
    letter-spacing: 1px;
    padding: 0 40px;
    background-size: 26px;
  }
}

.page_about .about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page_about .about_btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 900px;
    margin: 80px auto;
  }
  .page_about .about_btns li {
    width: 250px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .about_btns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 77vw;
    margin: 50px auto;
  }
  .page_about .about_btns li {
    width: 30vw;
  }
}

@media screen and (max-width: 1000px) and (min-width: 768px) {
  .page_about .about_btns {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 3vw;
  }
}

.page_about .sec_staff ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
}

.page_about .sec_staff ul li div p:first-child {
  font-weight: bold;
  margin-top: -5px;
}

@media screen and (min-width: 768px) {
  .page_about .sec_staff ul li .staff_img {
    margin-right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_staff ul li .staff_img {
    margin-right: 20px;
  }
  .page_about .sec_staff ul li .staff_img img {
    height: 40vw;
    width: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_staff h2 {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .page_about .sec_place {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page_about .sec_place .sec_place-img {
    width: 30%;
    margin-left: 50px;
    margin-right: 50px;
  }
  .page_about .sec_place .sec_place-inr {
    width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_place {
    position: relative;
  }
  .page_about .sec_place h2 {
    text-align: center;
    padding-bottom: 400px;
  }
  .page_about .sec_place .sec_place-img {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    height: 380px;
    text-align: center;
  }
}

.page_about .sec_history table {
  font-size: 14px;
  line-height: 2;
  margin-left: 60px;
}

.page_about .sec_history table tr {
  position: relative;
}

.page_about .sec_history table tr::before, .page_about .sec_history table tr::after {
  content: "";
  background-color: #1EAD39;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 14px;
  left: -20px;
}

.page_about .sec_history table tr:nth-last-child(2)::before {
  height: 3px;
}

.page_about .sec_history table tr:last-child::before, .page_about .sec_history table tr:last-child::after {
  height: 0;
}

.page_about .sec_history table tr::after {
  height: 10px;
  width: 10px;
  border-radius: 1em;
  top: 11px;
  left: -24px;
}

.page_about .sec_history table th {
  font-weight: bold;
  vertical-align: top;
  padding-right: 30px;
}

.page_about .sec_history table td {
  padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .page_about .sec_history h2 {
    text-align: center;
  }
  .page_about .sec_history table {
    margin-left: 20px;
  }
}

.page_about .sec_kodawari {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page_about .sec_kodawari ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 40px auto;
    width: 100%;
  }
}

.page_about .sec_kodawari ul li .card_ttl {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page_about .sec_kodawari ul li .card_ttl span {
  color: #1EAD39;
  font-size: 1.3em;
  margin-right: 0.5em;
}

.page_about .sec_kodawari ul li .card {
  margin-top: 20px;
  position: relative;
  width: 300px;
  height: 351px;
  cursor: pointer;
}

.page_about .sec_kodawari ul li .card div {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .7s;
  transition: .7s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.page_about .sec_kodawari ul li .card .omote {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.page_about .sec_kodawari ul li .card .ura {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.page_about .sec_kodawari ul li .card .ura .card_txt {
  color: #fff;
  position: absolute;
  top: 0;
  padding: 10px 20px;
  text-align: left;
}

.page_about .sec_kodawari ul li .card.flipped .omote {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.page_about .sec_kodawari ul li .card.flipped .ura {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

@media screen and (max-width: 768px) {
  .page_about .sec_kodawari ul li .card {
    margin: 20px auto 40px auto;
  }
  .page_about .sec_kodawari ul li .card div {
    left: 7px;
  }
  .page_about .sec_kodawari ul li .card .ura {
    left: 7px;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .page_about .sec_kodawari ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page_about .sec_kodawari ul li {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

.page_about .sec_yasai {
  text-align: center;
}

.page_about .sec_yasai h2 {
  text-align: center;
  background-color: #FFFDFA;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .page_about .sec_yasai h2 {
    padding: 0 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_yasai h2 {
    padding: 0 0.5em;
  }
}

.page_about .sec_yasai .yasai_inr {
  border: 3px solid #1EAD39;
  border-radius: 3px;
}

@media screen and (min-width: 768px) {
  .page_about .sec_yasai .yasai_inr {
    margin-top: -53px;
    text-align: left;
    padding: 40px 40px 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page_about .sec_yasai .yasai_inr .yasai_txt_wrp {
    width: 500px;
    margin-right: 100px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_yasai .yasai_inr {
    margin-top: -45px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 20px;
  }
}

.page_about .sec_yasai .yasai_inr .yasai_ttl {
  margin-bottom: -10px;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .page_about .sec_yasai .yasai_inr .yasai_ttl {
    margin-top: 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_yasai .yasai_inr .yasai_ttl {
    margin-top: 1em;
  }
}

.page_about .sec_yasai .yasai_inr .yasai_ttl::after {
  content: "";
  height: 7px;
  width: 100%;
  background-color: #1EAD39;
  opacity: 0.5;
  position: absolute;
  bottom: 1px;
  left: 0;
  margin: auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .page_about .sec_yasai .yasai_inr .yasai_img_wrp img {
    width: 190px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_yasai .yasai_inr .yasai_img_wrp {
    margin-top: 40px;
  }
  .page_about .sec_yasai .yasai_inr .yasai_img_wrp ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page_about .sec_yasai .yasai_inr .yasai_img_wrp li {
    width: 35vw;
    margin: 1.5vw;
  }
  .page_about .sec_yasai .yasai_inr .yasai_img_wrp img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_media h2 {
    text-align: center;
  }
  .page_about .sec_media h2 + p {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .page_about .sec_media .media_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .page_about .sec_media .media_list {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

.page_about .sec_media .media_list .media_item {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page_about .sec_media .media_list .media_item {
    margin: 40px;
  }
}

.page_about .sec_media .media_list .media_item:hover .media_item-img img {
  -webkit-transition: -webkit-transform .8s ease;
  transition: -webkit-transform .8s ease;
  transition: transform .8s ease;
  transition: transform .8s ease, -webkit-transform .8s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.page_about .sec_media .media_list .media_item .media_item-img {
  position: relative;
  height: 220px;
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto -10px auto;
}

.page_about .sec_media .media_list .media_item .media_item-img::before {
  content: "";
  background-color: #1EAD39;
  opacity: 0.1;
  width: 220px;
  height: 220px;
  border-radius: 110px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.page_about .sec_media .media_list .media_item .media_item-label {
  background-color: #1EAD39;
  color: #fff;
  display: inline-block;
  padding: 1px 0.5em 0.5px 0.5em;
  font-size: 14px;
}

.page_about .sec_media .media_list .media_item .media_item-name {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
  color: #241815;
}

.page_about .sec_media .slick-list {
  width: 300px;
  margin: auto;
}

.page_about .sec_media .slide-arrow {
  width: 20px;
  height: 80px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  top: 30%;
  z-index: 10;
}

.page_about .sec_media .slide-arrow.prev-arrow {
  left: 0;
  background-image: url(../img/slick_arrow-left.svg);
}

.page_about .sec_media .slide-arrow.next-arrow {
  right: 0;
  background-image: url(../img/slick_arrow-right.svg);
}

.page_about .sec_media .slide-arrow:hover {
  cursor: pointer;
  -webkit-transition: -webkit-transform .8s ease;
  transition: -webkit-transform .8s ease;
  transition: transform .8s ease;
  transition: transform .8s ease, -webkit-transform .8s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.page_about .sec_media .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page_about .sec_media .slick-dots li button {
  background-color: #adadad;
  border-radius: 15px;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border: none;
  font-size: 0;
}

.page_about .sec_media .slick-dots li.slick-active button {
  background-color: #1EAD39;
}

/* 体験・研修 */
.page_taiken {
  text-align: center;
}

.page_taiken .fv_wrp + .desc {
  margin-top: 40px;
}

.page_taiken .sec_taiken {
  margin: 40px auto 60px auto;
}

.page_taiken .sec_taiken h2 {
  text-align: center;
  background-color: #FFFDFA;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .page_taiken .sec_taiken h2 {
    padding: 0 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .page_taiken .sec_taiken h2 {
    padding: 0 0.5em;
  }
}

.page_taiken .sec_taiken .taiken_inr {
  text-align: left;
  border: 3px solid #1EAD39;
  border-radius: 3px;
}

@media screen and (min-width: 768px) {
  .page_taiken .sec_taiken .taiken_inr {
    width: 600px;
    margin: -53px auto 0 auto;
    padding: 40px 40px 30px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .page_taiken .sec_taiken .taiken_inr {
    margin-top: -45px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 10px 20px;
  }
}

.page_taiken .sec_taiken .taiken_inr table th {
  font-weight: bold;
  vertical-align: top;
  padding-right: 30px;
}

.page_taiken .sec_taiken .taiken_inr table td {
  padding-bottom: 1em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .page_taiken .sec_taiken .taiken_inr table {
    font-size: 14px;
  }
  .page_taiken .sec_taiken .taiken_inr table th {
    padding-right: 10px;
    white-space: nowrap;
    padding-top: 5px;
  }
}

.page_taiken .sec_taiken .taiken_inr + .desc {
  margin-top: 60px;
}

/* 体験・研修 */
.page_form {
  text-align: center;
}

.page_form .sec_form {
  margin-top: 40px;
}

.page_form .sec_form .form_btn {
  border: 0;
  border-radius: 10px;
  margin: 40px auto 0 auto;
  background-color: #1EAD39;
  color: #fff;
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 1;
  max-width: 240px;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 3px;
  width: 100%;
}

.page_form .sec_form .form_btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.page_form .sec_form .form {
  border: 2px solid #1EAD39;
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
}

.page_form .sec_form .form_list:not(:first-child) {
  margin-top: 30px;
}

.page_form .sec_form .form_title {
  text-align: left;
  color: #241815;
}

.page_form .sec_form .form_title .required {
  color: #fff;
  background-color: #1EAD39;
  margin-left: 4px;
  font-size: 12px;
  padding: 4px;
  border-radius: 3px;
}

.page_form .sec_form .form_input[type="text"],
.page_form .sec_form .form_input[type="email"] {
  background-color: #FAFAFA;
  border: 1px solid #CCC;
  padding: 16px;
  width: 100%;
}

.page_form .sec_form .form_input[type="text"]::-webkit-input-placeholder,
.page_form .sec_form .form_input[type="email"]::-webkit-input-placeholder {
  color: #aaa;
}

.page_form .sec_form .form_input[type="text"]:-ms-input-placeholder,
.page_form .sec_form .form_input[type="email"]:-ms-input-placeholder {
  color: #aaa;
}

.page_form .sec_form .form_input[type="text"]::-ms-input-placeholder,
.page_form .sec_form .form_input[type="email"]::-ms-input-placeholder {
  color: #aaa;
}

.page_form .sec_form .form_input[type="text"]::placeholder,
.page_form .sec_form .form_input[type="email"]::placeholder {
  color: #aaa;
}

.page_form .sec_form .form_contents {
  margin-top: 16px;
  margin-left: 0;
}

.page_form .sec_form .form_contents textarea {
  height: 200px;
}

@media screen and (max-width: 768px) {
  .page_form .sec_form.is_thanks p {
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */