@charset "UTF-8";
/*
Theme Name: theme LOC
Author: LOC
Version: 1.0
*/
html {
  font-size: 16px;
}

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

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure {
  margin: 0;
  padding: 0;
}

body {
  color: #44311A;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif !important;
  /* view 375px to 1440px size 10px to 18px */
  font-size: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
  background-color: #F8F2E5;
  opacity: 0;
  transition: opacity 0.2s;
}

body.loaded {
  opacity: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

main {
  overflow: clip;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_container {
  height: 6em;
  padding: 0 1.4em 0 2.3em;
  background-color: #F8F2E5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo a img {
  width: 11.8em;
}

.floating_button--box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}

a.floating_button {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  height: 3.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.floating_button:first-of-type {
  background-color: #1B9143;
}
a.floating_button:last-of-type {
  background-color: #44311A;
}

button.header_menu--button {
  width: 3.4em;
  background: #1B9143;
  border: 1px solid #44311A;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s;
  z-index: 30;
  aspect-ratio: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  button.header_menu--button {
    display: none;
  }
}
body.open_menu button.header_menu--button::before {
  opacity: 1;
}
button.header_menu--button div {
  width: 45%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.4s;
}
button.header_menu--button div:first-of-type {
  transform: translate(-50%, calc(-50% - 6px)) rotate(0deg) scaleX(1);
}
body.open_menu button.header_menu--button div:first-of-type {
  transform: translate(-50%, -50%) rotate(35deg) scaleX(1.2);
}
button.header_menu--button div:nth-of-type(2) {
  transform: translate(-50%, -50%) scaleX(1);
  transform-origin: left;
}
body.open_menu button.header_menu--button div:nth-of-type(2) {
  transform: translate(-50%, -50%) scaleX(0);
}
button.header_menu--button div:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + 6px)) rotate(0deg);
  transform-origin: left;
}
body.open_menu button.header_menu--button div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-35deg) scaleX(1.2);
  transform-origin: center;
}

.header_menu--container {
  width: 25.3em;
  height: 100dvh;
  padding: 6em 0 3em;
  background: linear-gradient(140deg, rgb(184, 173, 132) 0%, rgb(92, 87, 66) 100%);
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  translate: 101% 0;
  transition: all 0.8s cubic-bezier(0.36, 0.14, 0, 1);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header_menu--container {
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    opacity: 1;
    overflow: inherit;
    display: flex;
    align-items: center;
    pointer-events: auto;
    position: relative;
    translate: 0 0;
  }
}
.open_menu .header_menu--container {
  translate: 0 0;
}

section {
  position: relative;
}

.FP_header {
  height: calc(100svh - 9.4em);
}
.FP_header h1 {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.FP_header--container {
  height: 100%;
}

.FP_header--swiper {
  height: 100%;
}

.FP_header--swiperItem img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2.FP_h2 {
  font-size: 3em;
  font-weight: 600;
  font-family: "Figtree" !important;
}

a.FP_common--button {
  font-size: 1.5em;
  font-weight: bold;
  width: 12.5em;
  height: 3.4em;
  border: 1px solid #44311A;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.FP_section.news_section {
  padding: 5em 0;
}
section.FP_section.news_section .wave {
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -57% 95%;
  width: 300%;
  z-index: 1;
}
section.FP_section.news_section .section_container {
  width: 84%;
  margin-inline: auto;
}
section.FP_section.news_section .section_container h2.FP_h2 {
  color: #1B9143;
  margin-bottom: 0.5em;
}
section.FP_section.news_section .section_container > p.text {
  color: #1B9143;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 3em;
}
section.FP_section.news_section .section_container > p.text br {
  display: block !important;
}
section.FP_section.news_section .section_container a.FP_common--button {
  color: #fff;
  margin-inline: auto;
  background-color: #1B9143;
}

.FP_news_section--swiperBox {
  width: 71%;
  margin: 0 auto 3em;
  position: relative;
}

.FP_news_section--swiper {
  overflow: hidden;
}

.FP_news_section--swiperItem a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.FP_news_section--swiperItem a .thumbnail {
  margin-bottom: 1.1em;
  border-radius: 20px;
  grid-column: span 2;
}
.FP_news_section--swiperItem a .thumbnail img {
  width: 100%;
  height: 15em;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.FP_news_section--swiperItem a p.tag {
  color: #fff;
  font-size: 1.3em;
  padding: 0.8em 1.3em;
  background-color: #FF6C20;
}
.FP_news_section--swiperItem a p.date {
  text-align: right;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.FP_news_section--swiperItem a p.text {
  font-size: 1.6em;
  line-height: 1.4;
  margin-top: 1.2em;
  grid-column: span 2;
}

.FP_news_section--swiperButton.swiper-button-prev, .FP_news_section--swiperButton.swiper-button-next {
  width: 3.9em;
  height: auto;
  margin: 0;
  background-color: #44311A;
  border-radius: 50%;
  top: 7.5em;
  aspect-ratio: 1;
}
.FP_news_section--swiperButton.swiper-button-prev.swiper-button-disabled, .FP_news_section--swiperButton.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background-color: #BABABA;
}
.FP_news_section--swiperButton.swiper-button-prev::after, .FP_news_section--swiperButton.swiper-button-next::after {
  color: #fff;
  font-size: 2em;
}
.FP_news_section--swiperButton.swiper-button-prev {
  left: 0;
  translate: -150% -50%;
}
.FP_news_section--swiperButton.swiper-button-next {
  right: 0;
  translate: 150% -50%;
}

section.FP_section.media_section {
  padding: 5em 0 4em;
  background-color: #1B9143;
}
section.FP_section.media_section .section_container {
  width: 84%;
  margin-inline: auto;
}
section.FP_section.media_section .section_container h2.FP_h2 {
  color: #fff;
  margin-bottom: 0.5em;
}
section.FP_section.media_section .section_container > p.text {
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 3em;
}
section.FP_section.media_section .section_container > p.text br {
  display: block !important;
}
section.FP_section.media_section .section_container a.FP_common--button {
  color: #2C8031;
  margin-inline: auto;
  background-color: #fff;
}

.FP_media_section--swiperBox {
  width: 71%;
  margin: 0 auto 3em;
  position: relative;
}

.FP_media_section--swiper {
  overflow: hidden;
}

.FP_media_section--swiperItem a .thumbnail {
  margin-bottom: 1.1em;
  border-radius: 20px;
}
.FP_media_section--swiperItem a .thumbnail img {
  width: 100%;
  height: 15em;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.FP_media_section--swiperItem a p.tag {
  color: #2C8031;
  font-size: 1.3em;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.8em 1.3em;
  background-color: #fff;
}
.FP_media_section--swiperItem a p.text {
  color: #fff;
  font-size: 1.6em;
  line-height: 1.4;
  margin-top: 1.2em;
}

.FP_media_section--swiperButton.swiper-button-prev, .FP_media_section--swiperButton.swiper-button-next {
  width: 3.9em;
  height: auto;
  margin: 0;
  background-color: #44311A;
  border-radius: 50%;
  top: 7.5em;
  aspect-ratio: 1;
}
.FP_media_section--swiperButton.swiper-button-prev.swiper-button-disabled, .FP_media_section--swiperButton.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background-color: #BABABA;
}
.FP_media_section--swiperButton.swiper-button-prev::after, .FP_media_section--swiperButton.swiper-button-next::after {
  color: #fff;
  font-size: 2em;
}
.FP_media_section--swiperButton.swiper-button-prev {
  left: 0;
  translate: -150% -50%;
}
.FP_media_section--swiperButton.swiper-button-next {
  right: 0;
  translate: 150% -50%;
}

section.FP_section.happiness_section {
  padding: 5em 0 4em;
}
section.FP_section.happiness_section .section_container h2.FP_h2 {
  color: #1B9143;
  width: 84%;
  margin: 0 auto 1em;
}
section.FP_section.happiness_section .section_container > p.text {
  color: #1B9143;
  font-size: 2.4em;
  font-weight: bold;
  line-height: 1.6;
  width: 84%;
  margin: 0 auto 1.5em;
}
section.FP_section.happiness_section .section_container > p.text br {
  display: block !important;
}
section.FP_section.happiness_section .section_container .img {
  margin-bottom: 3em;
}
section.FP_section.happiness_section .section_container .img img {
  width: 100%;
  height: 25em;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.FP_section.happiness_section .section_container .text_box {
  width: 84%;
  margin: 0 auto 3em;
}
section.FP_section.happiness_section .section_container .text_box p {
  font-size: 1.6em;
  line-height: 1.8;
}
section.FP_section.happiness_section .section_container .text_box a.FP_common--button {
  color: #fff;
  margin-top: 2em;
  background-color: #2C8031;
}