@charset "UTF-8";
/*! modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*===================================
	共通レイアウト
=====================================*/
html,
body {
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 1000px) {
  html {
    scroll-padding-top: 75px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #534741;
  margin: 0;
}
.lity-active body,
body.no-scroll {
  position: relative;
  overflow: hidden;
}

main {
  position: relative;
  display: block;
  padding-top: 100px;
}
@media screen and (max-width: 1000px) {
  main {
    padding-top: 75px;
  }
}

section {
  position: relative;
}

a {
  transition: all 0.3s ease;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

b,
strong,
.u-fw__bold {
  font-weight: 700;
}

.u-fw__semibold {
  font-weight: 600;
}

.u-fw__medium {
  font-weight: 500;
}

.u-fw__regular {
  font-weight: 400;
}

.u-ta__center {
  text-align: center !important;
}

.u-ta__right {
  text-align: right !important;
}

.u-sp__block {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-sp__block {
    display: inline;
  }
}

@media screen and (max-width: 600px) {
  .u-sp__none {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .u-pc__block {
    display: none;
  }
}

.u-pc__none {
  display: none;
}
@media screen and (max-width: 1000px) {
  .u-pc__none {
    display: inline;
  }
}

.u-hover__zoomImg {
  position: relative;
  display: block;
  overflow: hidden;
}
.u-hover__zoomImg img {
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.u-hover__zoomImg:hover img {
  transform: scale(1.08);
}

/* ボタン
-------------------------------------*/
.c-btn01 {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  background: #008169;
  border-radius: 50px;
  padding: 0.75em 2em 0.85em;
  opacity: 1;
  transition: all 0.2s ease;
}
.c-btn01:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1000px) {
  .c-btn01 {
    font-size: 1.5rem;
  }
}
.c-btn01::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.375em;
  aspect-ratio: 5.8/9.1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.c-btn01.--clr_white {
  color: #008169;
  background: #ffffff;
}
.c-btn01.--clr_white::before {
  background-image: url(../img/common/icn_arrow01_green.svg);
}
.c-btn01.--clr_green {
  color: #ffffff;
  background: #008169;
}
.c-btn01.--clr_green::before {
  background-image: url(../img/common/icn_arrow01_white.svg);
}

.c-btn02 {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.c-btn02:hover span {
  text-decoration: none;
}
.c-btn02 span {
  position: relative;
  text-decoration: underline;
  padding-right: 1.5em;
}
.c-btn02 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.15em;
  aspect-ratio: 1/1;
  background-color: #008169;
  background-image: url(../img/common/icn_arrow01_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-btn02.--clr_white {
  color: #ffffff;
}
.c-btn02.--clr_green {
  color: #008169;
}

/* page ttl
-------------------------------------*/
.l-pageTtl {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 200px;
  background: url(../img/common/bg_material01.jpg) repeat top left/1300px 875px;
  padding: 30px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-pageTtl {
    min-height: 150px;
  }
}
.l-pageTtl .l-pageTtl_obj {
  position: absolute;
}
.l-pageTtl .l-pageTtl_obj.--cloud01 {
  top: -298px;
  left: 51.5%;
  width: 1360px;
}
@media screen and (max-width: 767px) {
  .l-pageTtl .l-pageTtl_obj.--cloud01 {
    top: -200px;
    width: 900px;
  }
}
.l-pageTtl .l-pageTtl_obj.--cloud02 {
  bottom: -125px;
  right: 46.25%;
  width: 1196px;
}
@media screen and (max-width: 767px) {
  .l-pageTtl .l-pageTtl_obj.--cloud02 {
    bottom: -80px;
    width: 800px;
  }
}
.l-pageTtl .l-pageTtl_inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 230px;
}
@media screen and (max-width: 1000px) {
  .l-pageTtl .l-pageTtl_inner {
    padding-right: 0;
  }
}
.l-pageTtl .l-pageTtl_inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 52px;
  width: 139.5px;
  aspect-ratio: 139.5/157;
  background-image: url(../img/common/img_lamp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1000px) {
  .l-pageTtl .l-pageTtl_inner::before {
    right: 0;
    width: 100px;
  }
}
.l-pageTtl .l-pageTtl_inner .l-pageTtl_txt {
  position: relative;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .l-pageTtl .l-pageTtl_inner .l-pageTtl_txt {
    font-size: 2.2rem;
  }
}

/* breadcrumb
-------------------------------------*/
.l-breadcrumb {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    font-size: 1.5rem;
    padding-top: 15px;
  }
}
@media screen and (max-width: 600px) {
  .l-breadcrumb {
    font-size: 1.3rem;
  }
}
.l-breadcrumb li {
  position: relative;
}
.l-breadcrumb li:not(:last-child) {
  padding-right: 2.5em;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb li:not(:last-child) {
    padding-right: 1.5em;
  }
}
.l-breadcrumb li:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-breadcrumb li:not(:last-child)::after {
    right: 0.5em;
  }
}

/* editor
-------------------------------------*/
.l-editor *:first-child {
  margin-top: 0;
}
.l-editor h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  background: #faf4dc;
  margin: 2.5em 0 1.5em;
  padding: 0.5em 1.2em;
}
@media screen and (max-width: 767px) {
  .l-editor h2 {
    font-size: 2.2rem;
  }
}
.l-editor h3 {
  position: relative;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.75;
  background: #eae7e1;
  margin: 1.5em 0;
  padding: 1.25em 4em 1.25em 1.5em;
  padding: 0.4em 1.5em;
}
@media screen and (max-width: 767px) {
  .l-editor h3 {
    font-size: 1.8rem;
  }
}
.l-editor h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #008169;
}
.l-editor h4 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  margin: 1.5em 0;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .l-editor h4 {
    font-size: 1.7rem;
  }
}
.l-editor h4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #008169 0%, #008169 20%, #bcbcbc 20%, #bcbcbc 100%);
}
.l-editor h5 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #008169;
  border-top: 1px solid #008169;
  border-bottom: 1px solid #008169;
  margin: 1.5em 0;
  padding: 0.5em 0;
}
@media screen and (max-width: 767px) {
  .l-editor h5 {
    font-size: 1.7rem;
  }
}
.l-editor h6 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #008169;
  margin: 1.5em 0;
}
@media screen and (max-width: 767px) {
  .l-editor h6 {
    font-size: 1.7rem;
  }
}
.l-editor p,
.l-editor ul,
.l-editor ol,
.l-editor pre {
  font-size: 1.6rem;
  line-height: 2;
  margin: 16px 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-editor p,
  .l-editor ul,
  .l-editor ol,
  .l-editor pre {
    font-size: 1.5rem;
  }
}
.l-editor p a,
.l-editor ul a,
.l-editor ol a,
.l-editor pre a {
  position: relative;
  display: inline;
  color: #008169;
  text-decoration: underline;
  word-break: break-all;
}
.l-editor p a:hover,
.l-editor ul a:hover,
.l-editor ol a:hover,
.l-editor pre a:hover {
  text-decoration: none;
}
.l-editor p a[target="_blank"],
.l-editor ul a[target="_blank"],
.l-editor ol a[target="_blank"],
.l-editor pre a[target="_blank"] {
  padding-left: 1.5em;
}
.l-editor p a[target="_blank"]::after,
.l-editor ul a[target="_blank"]::after,
.l-editor ol a[target="_blank"]::after,
.l-editor pre a[target="_blank"]::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0.2em;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icn_blank_green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-editor p a[href$=".pdf"],
.l-editor ul a[href$=".pdf"],
.l-editor ol a[href$=".pdf"],
.l-editor pre a[href$=".pdf"] {
  padding-left: 1.5em;
}
.l-editor p a[href$=".pdf"]::after,
.l-editor ul a[href$=".pdf"]::after,
.l-editor ol a[href$=".pdf"]::after,
.l-editor pre a[href$=".pdf"]::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0.2em;
  width: 1em;
  aspect-ratio: 21/26;
  background-image: url(../img/common/icn_pdf_green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-editor img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.l-editor .wp-block-buttons {
  margin: 1.5em 0;
}
.l-editor .wp-block-buttons a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  min-width: 200px;
  background: #008169;
  border-radius: 50px;
  padding: 0.75em 2em 0.85em;
  opacity: 1;
  transition: all 0.2s ease;
}
.l-editor .wp-block-buttons a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1000px) {
  .l-editor .wp-block-buttons a {
    font-size: 1.5rem;
  }
}
.l-editor .wp-block-buttons a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.375em;
  aspect-ratio: 5.8/9.1;
  background-image: url(../img/common/icn_arrow01_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.l-editor .wp-block-buttons a[target="_blank"] {
  padding-left: 3em;
}
.l-editor .wp-block-buttons a[target="_blank"]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 1em;
  width: 1.25em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icn_blank_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.l-editor .wp-block-buttons a[href$=".pdf"] {
  padding-left: 3em;
}
.l-editor .wp-block-buttons a[href$=".pdf"]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 1em;
  width: 1.25em;
  aspect-ratio: 21/26;
  background-image: url(../img/common/icn_pdf_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.l-editor ul {
  padding-left: 1.5em;
  list-style-type: disc;
}
.l-editor ul ul {
  list-style-type: circle;
  margin-bottom: 0;
  margin-top: 0;
}
.l-editor ul ul ul {
  list-style-type: square;
  margin-bottom: 0;
}
.l-editor ol {
  padding-left: 1.5em;
  list-style-type: decimal;
}
.l-editor ol[type="a"] {
  list-style-type: lower-alpha;
}
.l-editor ol[type="A"] {
  list-style-type: upper-alpha;
}
.l-editor ol[type="i"] {
  list-style-type: lower-roman;
}
.l-editor ol[type="I"] {
  list-style-type: upper-roman;
}
.l-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.l-editor table tr th,
.l-editor table tr td {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  border: 1px dashed #948175;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .l-editor table tr th,
  .l-editor table tr td {
    font-size: 1.6rem;
  }
}
.l-editor table tr th a,
.l-editor table tr td a {
  margin: 0;
}
.l-editor table thead {
  border: none;
}
.l-editor table thead tr th:nth-child(odd) {
  background: #faf3d7;
}
.l-editor table thead tr th:nth-child(even) {
  background: #fcf8e8;
}
.l-editor table tbody {
  border: none;
}
.l-editor figure {
  margin: 1.5em 0;
}
.l-editor iframe {
  max-width: 100%;
}
.l-editor .wp-block-cover,
.l-editor .wp-block-cover-image {
  padding: 20px;
}
.l-editor .wp-block-embed__wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
/* スマホ時 表は横スクロールさせる */
@media screen and (max-width: 1000px) {
  .l-editor .js-table-wrap {
    overflow-x: scroll;
  }
  .l-editor .js-table-wrap > table {
    width: 1000px !important;
  }
}
/* news list
-------------------------------------*/
.l-newsList {
  border-top: 1px solid #d8caba;
}
.l-newsList .l-newsList_item {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.7rem;
  font-weight: 400;
  border-bottom: 1px solid #d8caba;
  padding: 1.5em 0;
}
@media screen and (max-width: 767px) {
  .l-newsList .l-newsList_item {
    font-size: 1.4rem;
  }
}
.l-newsList .l-newsList_item .l-newsList_item_date {
  width: 130px;
}
@media screen and (max-width: 600px) {
  .l-newsList .l-newsList_item .l-newsList_item_date {
    width: 100%;
  }
}
.l-newsList .l-newsList_item .l-newsList_item_ttl {
  display: inline-block;
  width: calc(100% - 130px);
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .l-newsList .l-newsList_item .l-newsList_item_ttl {
    width: 100%;
  }
}
.l-newsList .l-newsList_item .l-newsList_item_ttl:hover {
  text-decoration: none;
}

/* blog list
-------------------------------------*/
.l-blogList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 5%;
}
.l-blogList .l-blogList_item {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .l-blogList .l-blogList_item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-blogList .l-blogList_item {
    width: 47.5%;
  }
}
.l-blogList .l-blogList_item .l-blogList_item_img {
  position: relative;
  width: 100%;
  aspect-ratio: 275/275;
  overflow: hidden;
}
.l-blogList .l-blogList_item .l-blogList_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-blogList .l-blogList_item .l-blogList_item_date {
  margin-top: 1em;
}
.l-blogList .l-blogList_item .l-blogList_item_ttl {
  text-decoration: underline;
  margin-top: 0.5em;
}
.l-blogList .l-blogList_item:hover .l-blogList_item_ttl {
  text-decoration: none;
}

/* gallery list
-------------------------------------*/
.l-galleryList {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.l-galleryList .l-galleryList_item {
  width: calc((100% - 6px) / 4);
}
@media screen and (max-width: 767px) {
  .l-galleryList .l-galleryList_item {
    width: calc((100% - 4px) / 3);
  }
}
@media screen and (max-width: 600px) {
  .l-galleryList .l-galleryList_item {
    width: calc((100% - 2px) / 2);
  }
}
.l-galleryList .l-galleryList_item a {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.l-galleryList .l-galleryList_item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* pagenation
-------------------------------------*/
.l-pagenation {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-pagenation {
    padding-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  .l-pagenation {
    column-gap: 5px;
  }
}
.l-pagenation li {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 40px;
  color: #008169;
  text-align: center;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .l-pagenation li {
    line-height: 35px;
    width: 35px;
  }
}
.l-pagenation li a,
.l-pagenation li span.current {
  position: relative;
  display: block;
  border: 1px solid #008169;
  border-radius: 50px;
}
.l-pagenation li.prev,
.l-pagenation li.next {
  width: auto;
}
.l-pagenation li.prev a,
.l-pagenation li.next a {
  position: relative;
  padding: 0 3.75em;
}
@media screen and (max-width: 767px) {
  .l-pagenation li.prev a,
  .l-pagenation li.next a {
    padding-inline: 1em;
  }
}
.l-pagenation li.prev a::before,
.l-pagenation li.next a::before {
  content: "";
  position: absolute;
  width: 0.35em;
  aspect-ratio: 1/1;
  top: 50%;
  border-left: 2px solid #008169;
  border-bottom: 2px solid #008169;
}
.l-pagenation li.prev a:hover::before,
.l-pagenation li.next a:hover::before {
  border-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .l-pagenation li.prev {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-pagenation li.prev a {
    padding-left: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .l-pagenation li.prev a {
    font-size: 1.4rem;
  }
}
.l-pagenation li.prev a::before {
  left: 1em;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-pagenation li.prev a::before {
    left: 0.75em;
  }
}
@media screen and (min-width: 768px) {
  .l-pagenation li.next {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-pagenation li.next a {
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .l-pagenation li.next a {
    font-size: 1.4rem;
  }
}
.l-pagenation li.next a::before {
  right: 1em;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .l-pagenation li.next a::before {
    right: 0.75em;
  }
}
.l-pagenation li:hover a,
.l-pagenation li:hover span.current,
.l-pagenation li.current a,
.l-pagenation li.current span.current {
  color: #ffffff;
  background-color: #008169;
}

.l-article_pagenation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 35px;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .l-article_pagenation {
    column-gap: 15px;
    margin-top: 80px;
  }
}
.l-article_pagenation li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-article_pagenation li {
    font-size: 1.4rem;
  }
}
.l-article_pagenation li a {
  display: block;
  border: 1px solid #008169;
  border-radius: 50px;
  padding: 0.75em 3em;
}
@media screen and (max-width: 600px) {
  .l-article_pagenation li a {
    padding: 1em 2em;
  }
}
@media screen and (max-width: 600px) {
  .l-article_pagenation li:not(.prev, .next) {
    order: 3;
    width: 100%;
  }
}
.l-article_pagenation li:not(.prev, .next) a {
  color: #ffffff;
  background: #008169;
}
.l-article_pagenation li:not(.prev, .next) a:hover {
  color: #008169;
  background: #ffffff;
}
.l-article_pagenation li.prev a,
.l-article_pagenation li.next a {
  position: relative;
  color: #008169;
}
.l-article_pagenation li.prev a::before,
.l-article_pagenation li.next a::before {
  content: "";
  position: absolute;
  width: 0.35em;
  aspect-ratio: 1/1;
  top: 50%;
  border-left: 2px solid #008169;
  border-bottom: 2px solid #008169;
}
.l-article_pagenation li.prev a:hover,
.l-article_pagenation li.next a:hover {
  color: #ffffff;
  background: #008169;
}
.l-article_pagenation li.prev a:hover::before,
.l-article_pagenation li.next a:hover::before {
  border-color: #ffffff;
}
@media screen and (max-width: 600px) {
  .l-article_pagenation li.prev {
    order: 1;
    width: calc((100% - 15px) / 2);
  }
}
.l-article_pagenation li.prev a::before {
  left: 1em;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 600px) {
  .l-article_pagenation li.next {
    order: 2;
    width: calc((100% - 15px) / 2);
  }
}
.l-article_pagenation li.next a::before {
  right: 1em;
  transform: translateY(-50%) rotate(-135deg);
}

/* スライダー Dots
-------------------------------------*/
.l-sliderDots01 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .l-sliderDots01 {
    gap: 5px;
  }
}
.l-sliderDots01 li {
  position: relative;
  display: inline-block;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.l-sliderDots01 li:first-child:last-child {
  display: none;
}
.l-sliderDots01 li button {
  position: relative;
  font-size: 0;
  line-height: 0;
  width: 14px;
  height: 14px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .l-sliderDots01 li button {
    width: 10px;
    height: 10px;
  }
}
.l-sliderDots01 li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #c7c7c7;
  border-radius: 50%;
  transition: 0.3s ease-out;
}
.l-sliderDots01 li.slick-active button::before {
  background: #008169;
}
.l-sliderDots01.--base li button::before {
  border-color: #534741;
}
.l-sliderDots01.--base li.slick-active button::before {
  border-color: #534741;
  background-color: #534741;
}
.l-sliderDots01.--green01 li button::before {
  border-color: #008169;
}
.l-sliderDots01.--green01 li.slick-active button::before {
  border-color: #008169;
  background-color: #008169;
}

/* スライダー arrows
-------------------------------------*/
.l-sliderArrows01 {
  position: relative;
  width: 55px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s ease;
}
.l-sliderArrows01:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .l-sliderArrows01 {
    width: 40px;
  }
}
.l-sliderArrows01::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21px;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icn_arrow02_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .l-sliderArrows01::after {
    width: 15px;
  }
}
.l-sliderArrows01.arrow-prev::after {
  transform: translate(-50%, -50%) scaleX(-1);
}
.l-sliderArrows01.--clr_green {
  background: #008169;
}
.l-sliderArrows01.--clr_green::after {
  background-image: url(../img/common/icn_arrow02_white.svg);
}

/* lity
-------------------------------------*/
.lity-container {
  max-width: 90%;
  max-height: 90%;
}

/*===================================
	ヘッダー
=====================================*/
/* header
-------------------------------------*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  background: #ffffff;
  padding: 5px 30px;
  transition: 0.35s ease-in-out;
  z-index: 98;
}
@media screen and (max-width: 1200px) {
  .l-header {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .l-header {
    height: 75px;
  }
}
.l-header.is-fixed {
  position: fixed;
  animation: ani-headerShow 0.6s forwards;
}
@media screen and (min-width: 1001px) {
  .l-header.is-fixed {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.l-header .l-header_logo {
  width: 217px;
}
@media screen and (max-width: 1200px) {
  .l-header .l-header_logo {
    width: 180px;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-header_logo {
    width: 52vw;
    max-width: 195px;
  }
}
.l-header .l-nav_menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 217px);
}
@media screen and (max-width: 1200px) {
  .l-header .l-nav_menu {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu {
    position: fixed;
    top: 75px;
    left: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    opacity: 0;
    visibility: visible;
    transform: translate3d(100%, 0, 0);
    transition: opacity 0.6s ease, transform 0s 0.6s ease;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu.is-open {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.6s ease;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu.is-open .l-nav_mask {
    opacity: 1;
    transition: opacity 0.6s ease;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu.is-open .l-nav_container {
    transform: translateZ(0);
    transition: transform 0.6s ease;
  }
}
.l-header .l-nav_menu .l-nav_mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_mask {
    display: block;
  }
}
.l-header .l-nav_menu .l-nav_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 50px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-header .l-nav_menu .l-nav_container {
    column-gap: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container {
    display: block;
    width: auto;
    min-width: 375px;
    height: 100%;
    background-color: #ffffff;
    padding-bottom: 180px;
    overflow-y: scroll;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.6s ease;
  }
}
@media screen and (max-width: 600px) {
  .l-header .l-nav_menu .l-nav_container {
    width: 100%;
    min-width: auto;
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 2em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  .l-header .l-nav_menu .l-nav_container .l-navList {
    column-gap: 1.5em;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList {
    flex-flow: column;
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList a {
  position: relative;
  display: block;
  cursor: pointer;
}
.l-header .l-nav_menu .l-nav_container .l-navList > li {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList > li {
    color: #ffffff;
    width: 100%;
    background: #8e7d72;
    border-bottom: 2px solid #ffffff;
  }
}
@media screen and (min-width: 1001px) {
  .l-header .l-nav_menu .l-nav_container .l-navList > li:hover > a::after {
    visibility: visible;
    opacity: 1;
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList > li > a {
  padding: 0.5em 0;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList > li > a {
    padding: 1em 2.5em;
  }
}
@media screen and (min-width: 1001px) {
  .l-header .l-nav_menu .l-nav_container .l-navList > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 2px;
    background: #534741;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease-out;
  }
}
@media screen and (min-width: 1001px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent:hover ul.nav-child {
    visibility: visible;
    opacity: 1;
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn {
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
  width: 1.5em;
  aspect-ratio: 1/1;
  background: #534741;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn::before,
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.7em;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn::before {
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent .nav-toggle_btn.is-open::after {
    transform: translate(-50%, -50%);
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child {
  position: absolute;
  top: 2em;
  left: 50%;
  width: auto;
  padding-top: 2.35em;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
  z-index: 5;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child {
    display: none;
    position: relative;
    top: initial;
    left: initial;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li {
  position: relative;
  display: block;
  color: #ffffff;
  text-align: center;
  width: 100%;
  background: #008169;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li {
    color: #534741;
    background: #ffffff;
    border-bottom: 2px solid #534741;
    border-top: none;
    border-right: none;
    border-left: none;
  }
}
@media screen and (min-width: 1001px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li:not(:last-child) {
    border-bottom: none;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li:last-child {
    border-bottom: none;
  }
}
.l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li a {
  min-width: 200px;
  padding: 1em 0.75em;
}
.l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li:hover {
  background: #339a87;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-navList .nav-parent ul.nav-child > li:hover {
    background: #bab1ab;
  }
}
.l-header .l-nav_menu .l-nav_container .l-nav_btn {
  display: block;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-nav_btn {
    padding: 30px;
  }
}
.l-header .l-nav_menu .l-nav_container .l-nav_btn a {
  display: block;
  padding-left: 1.5em;
}
@media screen and (max-width: 1200px) {
  .l-header .l-nav_menu .l-nav_container .l-nav_btn a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_menu .l-nav_container .l-nav_btn a {
    font-size: 1.8rem;
  }
}
.l-header .l-nav_trigger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header .l-nav_trigger {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
  }
}
.l-header .l-nav_trigger .l-nav_trigger_line {
  position: relative;
  width: 35px;
  height: 25px;
}
.l-header .l-nav_trigger .l-nav_trigger_line span {
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 4px;
  background-color: #008169;
  transform: translateX(-50%);
  transition: all 0.2s ease;
}
.l-header .l-nav_trigger .l-nav_trigger_line span:nth-of-type(1) {
  top: 0;
}
.l-header .l-nav_trigger .l-nav_trigger_line span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-header .l-nav_trigger .l-nav_trigger_line span:nth-of-type(3) {
  top: calc(100% - 4px);
}
.l-header .l-nav_trigger p {
  color: #008169;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-align: center;
  width: 100%;
  margin-top: 0.5em;
}
.l-header .l-nav_trigger.is-open .l-nav_trigger_line span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}
.l-header .l-nav_trigger.is-open .l-nav_trigger_line span:nth-of-type(2) {
  opacity: 0;
}
.l-header .l-nav_trigger.is-open .l-nav_trigger_line span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}

/*===================================
	フッター
=====================================*/
/* footer
-------------------------------------*/
.l-footer {
  position: relative;
  background-color: #008169;
  padding: 45px 0 55px;
}
@media screen and (max-width: 600px) {
  .l-footer {
    padding-bottom: 25px;
  }
}
.l-footer .l-footer_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1120px;
  width: 96%;
  margin-inline: auto;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer_inner {
    width: 90%;
  }
}
.l-footer .l-footer_inner .l-footer_info {
  width: 330px;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer_inner .l-footer_info {
    width: 100%;
  }
}
.l-footer .l-footer_inner .l-footer_info .l-footer_logo {
  display: block;
  max-width: 220px;
  opacity: 1;
  transition: all 0.2s ease;
}
.l-footer .l-footer_inner .l-footer_info .l-footer_logo:hover {
  opacity: 0.8;
}
.l-footer .l-footer_inner .l-footer_info .l-footer_add {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin-top: 2em;
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_info .l-footer_add {
    font-size: 1.5rem;
  }
}
.l-footer .l-footer_inner .l-footer_info .l-footer_add p:not(:first-child) {
  margin-top: 0.5em;
}
.l-footer .l-footer_inner .l-footer_info .l-footer_btn {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_info .l-footer_btn {
    margin-top: 30px;
  }
}
.l-footer .l-footer_inner .l-footer_nav {
  width: calc(100% - 330px);
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer_inner .l-footer_nav {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_nav {
    margin-top: 30px;
  }
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 2em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap .l-footer_navList {
    width: 100%;
  }
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap .l-footer_navList li {
  position: relative;
  padding-left: 1em;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap .l-footer_navList li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap .l-footer_navList li:not(:first-child) {
  margin-top: 0.5em;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_navList_wrap .l-footer_navList li a:hover {
  text-decoration: underline;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
  border-top: 1px solid #ffffff;
  margin-top: 35px;
  padding-top: 35px;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns {
  display: flex;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  width: 43%;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns {
    font-size: 1.4rem;
  }
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns p {
  padding-right: 1em;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li {
  position: relative;
  padding-left: 35px;
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li {
    padding-left: 30px;
  }
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li::before {
    width: 22px;
  }
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li:not(:first-child) {
  margin-top: 1em;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li.is-instagram::before {
  background-image: url(../img/common/icn_instagram.png);
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li.is-facebook::before {
  background-image: url(../img/common/icn_facebook.png);
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_sns .l-footer_snsList li a:hover {
  text-decoration: underline;
}
.l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_bnr {
  width: 57%;
  max-width: 440px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer_inner .l-footer_nav .l-footer_links .l-footer_bnr {
    width: 100%;
  }
}
.l-footer .l-footer_inner .l-footer_copy {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  width: 100%;
  margin-top: 45px;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer_inner .l-footer_copy {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer_inner .l-footer_copy {
    font-size: 1.2rem;
  }
}

/* pageTop
-------------------------------------*/
.l-pageTop {
  position: fixed;
  display: block;
  bottom: 45px;
  right: 45px;
  width: 46px;
  aspect-ratio: 1/1;
  background: #ffffff;
  border: 2px solid #008169;
  border-radius: 50%;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.2s ease;
  z-index: 9;
}
@media screen and (max-width: 600px) {
  .l-pageTop {
    bottom: 15px;
    right: 15px;
    width: 40px;
  }
}
.l-pageTop::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  aspect-ratio: 22/14;
  background-image: url(../img/common/icn_arrow01_green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.l-pageTop.is-show {
  animation: ani-pageTopIn 0.5s forwards;
}
.l-pageTop.is-hide {
  animation: ani-pageTopOut 0.5s forwards;
}
.l-pageTop:hover {
  opacity: 0.8;
}

/*===================================
	animation
=====================================*/
/* header
-------------------------------------*/
@keyframes ani-headerShow {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ani-headerTop {
  0% {
    position: fixed;
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    position: fixed;
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    position: absolute;
    opacity: 1;
    transform: translateY(0);
  }
}
/* page top
-------------------------------------*/
@keyframes ani-pageTopIn {
  from {
    opacity: 0;
    transform: translateY(200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ani-pageTopOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200%);
  }
}
/* フェードイン
-------------------------------------*/
.ani-fadeInB {
  opacity: 0;
}
.ani-fadeInB.is-active {
  animation: ani-fadeInB 0.85s ease both;
}

@keyframes ani-fadeInB {
  0% {
    transform: translateY(5rem);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.ani-fadeInR {
  opacity: 0;
}
.ani-fadeInR.is-active {
  animation: ani-fadeInR 1.05s ease both;
}

@keyframes ani-fadeInR {
  0% {
    transform: translateX(20rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.ani-fadeInL {
  opacity: 0;
}
.ani-fadeInL.is-active {
  animation: ani-fadeInL 1.05s ease both;
}

@keyframes ani-fadeInL {
  0% {
    transform: translateX(-20rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ギャラリー モーダル調整 */
.lity-container {
  padding-top: 40px;
}
.lity-image img {
  max-width: 80vw !important;
  max-height: 80vh !important;
}
.lity-close {
  font-size: 50px !important;
  position: absolute !important;
  top: 0 !important;
  right: -8px !important;
}
