@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');

:root {
  --main-bg-color: #faf8f5;
  --sub-bg-color: #005401;
  --main-font: 'Klee One', serif;
  --main-font-color: #005400;
  /*--main-font-color: rgba(0, 84, 0, 0.8);*/
  --en-font: 'Cormorant', serif;
  --serif-font: 'Noto Serif JP', serif;
  --sansserif-font: 'Noto Sans JP', sans-serif;
  --color-offwhite: rgba(255, 255, 255, 0.7);
  --mobile-header-ratio-l: 75 / 10;
  --mobile-header-ratio-s: 75 / 14;
}

.modalsw {
  cursor: pointer;
}

.en_font {
  font-family: var(--en-font);
  display: inline-block;
  transform: translateY(-0.08em);
}

.block {
  display: inline-block;
  margin-right: 1em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

li.hoverzoom > a {
  z-index: 10;
}

li.hoverzoom > picture,
picture.hoverzoom {
  width: 100%;
  display: flex;
  overflow: hidden;
}

li.hoverzoom > picture img,
picture.hoverzoom img {
  transform: scale(1, 1);
  transition: 0.5s;
}

li.hoverzoom:hover > picture img,
picture.hoverzoom:hover img {
  transform: scale(1.05, 1.05);
  transition: 1s;
}

picture.light2 {
  position: relative;
}

picture.light2 > a[data-lightbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

picture.light2 > img {
  user-select: none;
  pointer-events: none;
}

@media screen and (max-width: 768px){
  picture.hoverzoom img,
  pictire.hoverzoom:hover img {
    transform: none;
    transition: none;
  }
}

.map_wrap {
  width: 100%;
  overflow: hidden;
}

.map_wrap > div {
  width: 100%;
  height: 0;
  padding-top: 65%;
  position: relative;
  transform: translateX(-50%) translateY(-50%);
}

.map_wrap > div > iframe {
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1080px){
  .map_wrap > div {
    transform: translateX(-70%) translateY(-70%);
  }

  .map_wrap > div > iframe {
    width: 235%;
    height: 235%;
  }
}

@media  screen and (max-width: 768px){
  .map_wrap > div {
    transform: translateX(-85%) translateY(-85%);
  }

  .map_wrap > div > iframe {
    width: 270%;
    height: 270%;
  }
}

@media  screen and (max-width: 540px){
  .map_wrap > div {
    transform: translateX(-100%) translateY(-100%);
  }

  .map_wrap > div > iframe {
    width: 300%;
    height: 300%;
  }
}

#header_nav2,
#footer_nav2 {
  display: none;
}

br[data-brsp] {
  display: none;
}

br[data-brpc] {
  display: initial;
}

@media screen and (max-width: 768px){
  br[data-brsp] {
    display: initial;
  }

  br[data-brpc] {
    display: none;
  }
}

html {
  font-size: 62.5%;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px){
  html{
    font-size: calc(100vw / 54);
  }
}

@media screen and (max-width: 540px){
  html{
    font-size: calc(100vw / 37.5);
  }
}

@media screen and (max-width: 375px){
  html{
    font-size: calc(100vw / 32);
  }
}

body {
  font-family: var(--main-font);
  color:#333333;
  background-color: var(--main-bg-color);
}

h1, h2, h3, h4 {
  color: var(--main-font-color);
}

header > div,
footer > div,
section > div {
  width: 100%;
  max-width: 1366px;
  margin-inline: auto;
}

header {
  width: 100%;
  background-color: var(--main-bg-color);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75% 6% 1.75% 6%;
}

header .logo {
  position: relative;
  width: 18.5%;
}

header .logo > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#header_nav a,
#header_nav a:visited {
  text-decoration: none;
  color: #333333;
}

#header_nav li {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

#header_nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: 1.85em;
  font-size: 1.75rem;
  line-height: 1;
  font-feature-settings: 'palt';
}

#header_nav a > span:not(.en_font){
  letter-spacing: -0.08em;
}

#header_nav a > span.en_font {
  transform: translateY(0.08em);
}

#header_nav li.to_form a {
  padding: 0.55em 1.5em;
  background-color: var(--main-font-color);
  border-radius: 4px;
  font-size: 1.7rem;
  color: var(--main-bg-color);
}

#header_nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#nav_toggle {
  display: none;
}

@media screen and (max-width: 1080px){
  header > div {
    padding-inline: 3%;
  }

  header .logo {
    width: 25%;
  }

  #header_nav a {
    margin-left: 1.55em;
    font-size: 1.45rem;
  }

  #header_nav li.to_form a {
    font-size: 1.35rem;
  }
}

@media screen and (max-width: 880px){
  header > div {
    padding-inline: 2%;
  }

  header .logo {
    width: 23%;
  }

  #header_nav a {
    font-size: 1.3rem;
  }

  #header_nav li.to_form a {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px){
  header {
    aspect-ratio: var(--mobile-header-ratio-l);
  }

  header > div {
    padding-block: 4%;
    padding-inline: 4%;
  }

  #wpadminbar {
    display: none;
  }

  #header_nav {
    display: none;
  }

  #footer_nav {
    display: none;
  }

  header .logo {
    width: 34%;
  }

  #header_nav2,
  #nav_toggle {
    position: fixed;
  }

  #header_nav2 {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5%;
    overflow-x: hidden;
    z-index: 5;
    top: 0;
    left: 100%;
    transition: 0.3s;
    background-color: var(--main-bg-color);
    /* レイアウト用 */
    /*left: 0;*/
  }

  #header_nav2[data-menu-opened] {
    left: 0;
    transition: 0.3s;
  }

  /* ハンバーガーメニュー */
  #nav_toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    /*
    width: 100%;
    height: auto;
    aspect-ratio: var(--mobile-header-ratio-l);
    */
    z-index: 10;
    top: 0;
    right: 0;
  }

  input[name="toggle_sw"] {
    display: none;
  }

  label[for="toggle_box"] {
    display: flex;
    width: 1em;
    height: 1em;
    position: relative;
    position: absolute;
    font-size: 4rem;
    /*
    margin-block: 3% auto;
    margin-inline: auto 4%;
    */
    top: 46%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  label[for="toggle_box"] > span,
  label[for="toggle_box"]::after {
    display: inline-flex;
    font-size: inherit;
    line-height: 1;
    color: var(--main-font-color);
    opacity: 0.8;
  }

  label[for="toggle_box"] > span {
    width: 100%;
    height: fit-content;
    position: absolute;
    left: 0;
    transform: scaleX(1) translateY(5%);
    transition: 0.5s;
  }

  label[for="toggle_box"] > span:first-of-type {
    top: -33.33%;
    transform-origin: left center;
  }

  label[for="toggle_box"] > span:last-of-type {
    top: 33.33%;
    transform-origin: right center;

  }

  label[for="toggle_box"]::after {
    content: '\2500';
    transform: translateY(3%);
    transition: 0.5s;
  }

  input[name="toggle_sw"]:checked + label[for="toggle_box"] > span {
    transform: scaleX(0);
    transition: 0.3s;
  }

  input[name="toggle_sw"]:checked + label[for="toggle_box"]::after {
    transform: translateY(3%) rotateZ(135deg);
    content: '\253c';
    transition: 0.5s;
  }

  /* (モバイル)ヘッダーメニュー */
  #header_nav2 > ul {
    padding-block: 18% 0;
    padding-inline: 15%;
  }

  #header_nav2 > ul > li {
    font-size: 2.5rem;
  }

  #header_nav2 a,
  #header_nav2 a:visited {
    color: #333333;
    text-decoration: none;
  }

  #header_nav2 a {
    display: inline-block;
    width: fit-content;
    height: fit-content;
    font-size: inherit;
    line-height: 1;
  }

  #header_nav2  .logo a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #header_nav2 > ul > li > a {
    margin-bottom: 1.7em;
    font-weight: 500;
  }

  #header_nav2 > ul > li.to_form > a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--main-font-color);
    margin-top: 2em;
  }

  #header_nav2 > ul > li.to_form > a::after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 2em;
    margin-left: 0.5em;
    background-image: url(../img/icon/arrow_detail.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    font-size: 2.4rem;
  }

  #header_nav2 .sns_ec {
    width: 100%;
    margin-block: 14% 0;
    padding-inline: 15%;
  }

  #header_nav2 .sns_ec .inner {
    width: 77%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #header_nav2 .sns_ec .inner > li {
    width: 24%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header_nav2 .sns_ec #base_online_1 {
    width: 100%;
    margin-top: 10%;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid var(--main-font-color);
    border-radius: 6px;
    opacity: 0.8;
  }

  #header_nav2 .sns_ec #base_online_1::before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.25em;
    height: 1.25em;
    margin-right: 4%;
    background-image: url(../img/icon/cart-shopping-solid.svg);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 2.2rem;
  }

  #header_nav2 .sns_ec #base_online_1 span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.9rem;
    color: var(--main-font-color);
  }
}

@media screen and (max-width: 540px){
  #header_nav2 {
    /* レイアウト用 */
    /*left: 0;*/
  }

  header {
    aspect-ratio: var(--mobile-header-ratio-s);
  }

  header > div {
    width: 100%;
    height: 100%;
    padding-block: 5%;
    padding-inline: 5%;
  }

  header .logo {
    width: 47%;
  }

  #nav_toggle {
    /*
    aspect-ratio: var(--mobile-header-ratio-s);
    */
  }

  label[for="toggle_box"] {
    font-size: 3.6rem;
  }

  label[for="toggle_box"]::after {
    transform: translateY(5%);
  }

  input[name="toggle_sw"]:checked + label[for="toggle_box"]::after {
    transform: translateY(5%) rotateZ(135deg);
  }

  #header_nav2 > ul,
  #header_nav2 .sns_ec {
    padding-inline: 22.5%;
  }

  #header_nav2 > ul > li {
    font-size: 1.8rem;
    font-weight: 300;
  }

  #header_nav2 > ul > li.to_form > a::after {
    width: 4em;
    margin-left: 0.4em;
    font-size: 1.7rem;
  }

  #header_nav2 .sns_ec #base_online_1::before {
    margin-right: 9%;
    font-size: 1.7rem;
  }

  #header_nav2 .sns_ec #base_online_1 span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 375px){
  #header_nav2 {
    /* レイアウト用 */
    /*left: 0;*/
  }

  label[for="toggle_box"] {
    margin-block: 4.5% auto;
    font-size: 2.5rem;
  }

  label[for="toggle_box"]::after {
    transform: translateY(5.05%);
  }

  input[name="toggle_sw"]:checked + label[for="toggle_box"]::after {
    transform: translateY(5.05%) rotateZ(135deg);
  }

  #header_nav2 > ul > li {
    font-size: 1.5rem;
  }

  #header_nav2 > ul > li > a {
    margin-bottom: 2em;
    letter-spacing: -0.08em;
  }

  #header_nav2 > ul > li.to_form > a::after {
    width: 4em;
    margin-left: 0.4em;
    font-size: 1.7rem;
  }

  #header_nav2 .sns_ec {
    margin-block: 16% 0;
  }

  #header_nav2 .sns_ec .inner > li {
    width: 22.5%;
  }

  #header_nav2 .sns_ec #base_online_1::before {
    margin-right: 7%;
    font-size: 1.5rem;
  }

  #header_nav2 .sns_ec #base_online_1 span {
    font-size: 1.3rem;
    transform: translateY(0);
  }
}

section > div {
  position: relative;
  padding-inline: 6%;
}

@media screen and (max-width: 1080px){
  section > div {
    padding-inline: 3%;
  }
}

@media screen and (max-width: 880px){
  section > div {
    padding-inline: 2%;
  }
}

.mv > div {
  padding-inline: 6%;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.mv h1 {
  width: 25%;
  padding-top: 2%;
  padding-right: 10%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  font-weight: 500;
}

.mv h1 > span {
  display: flex;
  align-items: center;
  width: 33.33%;
  writing-mode: vertical-rl;
}

.mv h1 > span:first-of-type {
  align-items: flex-start;
  align-self: flex-start;
  font-size: 1.9rem;
  letter-spacing: 0.55em;
}

.mv h1 > span:nth-of-type(2) {
  align-self: center;
  padding: 0.3em;
  font-size: 4.2rem;
}

.mv h1 > span:last-of-type {
  align-items: flex-end;
  align-self: flex-end;
  font-size: 1.8rem;
  letter-spacing: 0.55em;
  transform: translateY(0.55em);
}

.mv picture {
  width: calc(100% - 25%);
  position: relative;
  overflow: hidden;
}

.mv > div::before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14%;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon/flowers_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 17%;
  bottom: 4%;
  z-index: 1;
}

.mv picture img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transform: scale(1.33);
}

@media screen and (max-width: 1080px){
  .mv > div {
    padding-inline: 3%;
  }

  .mv h1 > span:first-of-type,
  .mv h1 > span:last-of-type {
    font-size: 1.5rem;
  }

  .mv h1 > span:nth-of-type(2) {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 880px){
  .mv > div {
    padding-inline: 2%;
  }

  .mv h1 > span:first-of-type,
  .mv h1 > span:last-of-type {
    font-size: 1.35rem;
  }

  .mv h1 > span:nth-of-type(2) {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px){
  .mv > div {
    padding-inline: 0;
  }
  .mv > div::before {
    display: none;
  }
  .mv h1 {
    width: 33.33%;
    padding-inline: 0.5% 2%;
    padding-block: 5% 0;
    position: relative;
  }

  .mv h1 > span {
    width: fit-content;
    line-height: 1;
  }

  .mv h1 > span:first-of-type,
  .mv h1 > span:last-of-type {
    align-items: center;
    font-size: 2.2rem;
    letter-spacing: 0.3em;
  }

  .mv h1 > span:nth-of-type(2) {
    font-size: 3.7rem;
    padding-block: 0;
  }

  .mv > div::before {
    display: none;
  }

  .mv picture {
    width: calc(100% - 33.33%);
    overflow: hidden;
    overflow: visible;
  }

  .mv > div > picture::before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    aspect-ratio: 1 / 1;
    background-image: url(../img/icon/flowers_02.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -21%;
    bottom: 4%;
    z-index: 1;
  }

  .mv picture img {
    width: 100%;
    aspect-ratio: 25 / 32;
    aspect-ratio: initial;
    object-fit: cover;
    object-fit: contain;
    /*
    transform: scale(1.45) translateX(7%) translateY(3%);
    */
    transform: initial;
  }

  /*
  .mv h1::after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    aspect-ratio: 1 / 1;
    background-image: url(../img/icon/flowers_02.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -14%;
    bottom: -3%;
    z-index: 0;
  }
  */
}

@media screen and (max-width: 540px){
  section > div {
    padding-inline: 5%;
  }

  .mv h1 > span:first-of-type,
  .mv h1 > span:last-of-type {
    font-size: 1.7rem;
  }

  .mv h1 > span:nth-of-type(2) {
    padding-top: 0.8em;
    font-size: 2.5rem;
  }

  .mv h1::after {
    width:61%;
    right: -23%;
    bottom: -7%;
  }
}

@media screen and (max-width: 375px){
  .mv h1 > span:first-of-type,
  .mv h1 > span:last-of-type {
    font-size: 1.35rem;
  }

  .mv h1 > span:nth-of-type(2){
    font-size: 2.1rem;
  }
}

section:not(.mv) {
  margin-top: -1px;
}

body[data-content-type^="page_"] section:not(.mv) {
  margin-top: initial;
}

.intro > div {
  padding-block: 9rem 9rem;
}

.intro .outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9rem;
}

.intro .outer > li {
  width: 37%;
  overflow: hidden;
  position: relative;
}

.intro .outer > li:not(:last-of-type) > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.intro .outer > li:not(:last-of-type) picture {
  border-radius: 16px;
}

.intro .outer > li:not(:last-of-type) > span {
  display: flex;
  width: 30%;
  height: 2em;
  justify-content: center;
  align-items: center;
  background-color: var(--main-bg-color);
  border-top-left-radius: 8px;
  font-size: 1.7rem;
  text-indent: 0.5em;
  letter-spacing: 0.1em;
  color: var(--main-font-color);
  position: absolute;
  bottom: -2px;
  right: 0;
}

.intro .outer > li:not(:last-of-type) > span::after {
  content: '';
  width: 3.2em;
  aspect-ratio: 46 / 18;
  margin-left: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/icon/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0.5em;
  transform: translateY(-0.08em);
}

.intro .outer > li:first-of-type {
  margin-right: 4%;
}

.intro .outer > li:last-of-type {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
}

.intro .inner,
.intro .inner + a {
  width: 67%;
  margin-left: auto;
}

.intro .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5%;
}

.intro .inner > li {
  width: 28%;
}

.intro .inner > li,
.intro .inner + a {

}

.intro .inner > li > a {
  display: flex;
  height: 100%;
  aspect-ratio: 1 / 1;
  justify-content: center;
  align-items: center;
}

.intro .inner > li a img {
  aspect-ratio: 1 / 1;
}

.intro .inner + a,
.intro .inner + a:visited {
  text-decoration: none;
  color: var(--main-font-color);
}

.intro .inner + a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 6%;
  border: 1.5px solid var(--main-font-color);
  border-radius: 4px;
  font-size: 1.9rem;
}

.intro .inner + a::before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25em;
  height: 1.25em;
  margin-right: 4%;
  background-image: url(../img/icon/cart-shopping-solid.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 2rem;
}

.intro .inner + a > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-0.08em);
  font-size: 1.6rem;
  line-height: 1;
  white-space: nowrap;
}

.intro .outer + p {
  font-size: 1.9rem;
  text-align: center;
  color: var(--main-font-color);
}

@media screen and (max-width: 1080px){
  .intro .inner,
  .intro .inner + a {
    width: 83%;
  }

  .intro .inner + a::before {
    font-size: 1.6rem;
  }

  .intro .inner + a > span {
    font-size: 1.4rem;
  }

  .intro .outer > li:not(:last-of-type) > span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 880px){
  .intro .outer > li:first-of-type,
  .intro .outer > li:nth-of-type(2) {
    margin-right: 2%;
  }

  .intro .inner, .intro .inner + a {
    width: 100%;
  }

  .intro .outer + p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px){
  .intro > div {
    padding-block: 12.5%;
    padding-inline: 4%;
  }

  .intro .outer {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }

  .intro .outer > li:first-of-type,
  .intro .outer > li:nth-of-type(2){
    width: 48%;
    margin-right: 0;
  }

  .intro .outer > li:not(:last-of-type) > span {
    width: 40%;
    font-size: 1.5rem;
  }

  .intro .outer > li:last-of-type {
    width: 100%;
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .intro .outer > li:last-of-type > .inner {
    margin-bottom: 0;
  }

  .intro .inner {
    width: 40%;
    margin-left: 0;
  }

  .intro .inner > li {
    width: 25%;
  }

  .intro .inner + a {
    width: 55%;
    margin-left: 0;
    padding-inline: 4%;
    border-width: 1.5px;
    border-radius: 6px;
  }

  .intro .inner + a::before {
    font-size: 2.6rem;
  }

  .intro .inner + a > span {
    font-size: 2.4rem;
  }

  .intro .outer + p {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 540px){
  .intro > div {
    padding-inline: 5%;
  }

  .intro .outer > li {
    border-radius: 12px;
  }

  .intro .outer > li:not(:last-of-type) > span {
    width: 55%;
    font-size: 1.3rem;
  }

  .intro .inner {
    width: 38%;
  }

  .intro .inner > li {
    width: 24%;
  }

  .intro .inner + a {
    padding-inline: 0;
    border-radius: 5px;
  }

  .intro .inner + a::before {
    margin-right: 0.75em;
    font-size: 1.9rem;
  }

  .intro .inner + a > span {
    font-size: 1.6rem;
  }

  .intro .outer + p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 375px){
  .intro .outer {
    margin-bottom: 4rem;
  }

  .intro .outer > li:not(:last-of-type) > span {
    height: 1.8em;
    font-size: 1.15rem;
  }

  .intro .inner + a::before {
    font-size: 1.55rem;
  }

  .intro .inner + a > span {
    transform: translateY(0);
    font-size: 1.3rem;
  }

  .intro .outer + p {
    font-size: 1.3rem;
  }
}

.news_area > div {
  width: calc(100% - 12%);
  padding: 4rem 12rem 4rem 10rem;
  background-color: #ffffff;
  border-radius: 16px;
  position: relative;
  text-align: justify;
}

h2 {
  margin-bottom: 1.25em;
  font-size: 2.5rem;
  font-weight: 400;
}

.news_area .container {
  max-height: 8em;
  font-size: 1.6rem;
  overflow-y: scroll;
}

.news_area .container li {
  display: flex;
  align-items: center;
  line-height: 1;
  height: fit-content;
  margin-bottom: 1.4em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.news_area .container li > time {
  margin-right: 2em;
}

.news_area .container li > time > span:first-of-type {
  display: inline-block;
  width: 3.4em;
}
.news_area .container li > time > span:nth-of-type(2),
.news_area .container li > time > span:last-of-type {
  display: inline-block;
  width: 2.25em;
  text-align: end;
}

.news_area .container li > p {
  overflow: hidden;
  text-align: justify;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_area .container li > p a {
  border-bottom: 1px solid #333333;
  display: inline-block;
}

/* 新着情報 本文内は埋め込み型コンテンツ用の要素非表示 */
.news_area .container > li > p picture,
.news_area .container > li > p img,
.news_area .container > li > p iframe,
.news_area .container > li > p embed,
.news_area .container > li > p object,
.news_area .container > li > p param,
.news_area .container > li > p video,
.news_area .container > li > p audio,
.news_area .container > li > p source,
.news_area .container > li > p track,
.news_area .container > li > p map,
.news_area .container > li > p area,
.news_area .container > li > p math,
.news_area .container > li > p svg {
  display: none;
}

.news_area .container > li > p a,
.news_area .container > li > p a:visited {
  color: inherit;
}

.news_area > div > .mark,
.service > div > .mark,
.guide_area > div > .mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-family: var(--en-font);
  color: var(--main-font-color);
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 6.5rem;
  left: 1rem;
}

.news_area > div > .mark::before,
.service > div > .mark::before,
.guide_area > div > .mark::before {
  content: '\2500\2500\2500';
  display: inherit;
  justify-content: inherit;
  align-items: inherit;
  width: inherit;
  padding-bottom: 1.5em;
  font-family: inherit;
  writing-mode: inherit;
  font-size: 0.8em;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-0.08em);
}

.news_area > div::before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  /*height: 50%;*/
  aspect-ratio: 2 / 3;
  background-image: url(../img/icon/leaves.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 5%;
  right: 1.5%;
  z-index: 1;
}

@media screen and (max-width: 1080px){
  .news_area > div {
    width: calc(100% - 6%);
    padding: 4rem 6rem 4rem;
  }

  .news_area .container li > time {
    margin-right: 1em;
  }
}

@media screen and (max-width: 880px){
  .news_area > div {
    width: calc(100% - 4%);
    padding: 2.5rem 3.5rem 2.5rem 4.5rem;
  }
}

@media screen and (max-width: 768px){
  .news_area {
    padding-bottom: 5rem;
  }

  h2 {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .news_area > div {
    width: calc(100% - 8%);
    padding: 2% 4%;
  }

  .news_area > div > .mark,
  .service > div > .mark,
  .guide_area > div > .mark {
    display: none;
  }

  .news_area .container {
    max-height: 26.5em;
  }

  .news_area .container li {
    display: block;
    line-height: initial;
  }

  .news_area .container li > time {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 0.8em;
    line-height: 1;
  }

  .news_area .container li > p {
    overflow: hidden;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 任意の行数を指定 */
    white-space: initial;
    text-overflow: initial;
  }
}

@media screen and (max-width: 540px){
  section > div > h2 {
    margin-bottom: 1em;
  }

  .news_area > div {
    width: calc(100% - 10%);
    padding-inline: 5% 10%;
  }

  h2 {
    margin-bottom: 0.5em;
    line-height: 1;
  }

  .news_area .container {
    font-size: 1.45rem;
  }

  .news_area .container li > time {
    margin-bottom: 0.5em;
  }

  .news_area > div::before {
    width: 19%;
    right: 4%;
  }
}

@media screen and (max-width: 375px){
  .news_area > div {
    padding-block: 5% 1%;
  }

  .news_area > div::before {
    width: 17%;
    right: 6.5%;
  }

  section > div > h2 {
    font-size: 1.7rem;
  }

  .news_area > div > h2 {
    margin-bottom: 0.8em;
  }

  .news_area .container {
    font-size: 1.2rem;
  }
}

.service > div {
  padding-block: 6.5% 5%;
  padding-inline: 14%;
}

#service_cont > li {
  display: flex;
  width: 100%;
  margin-bottom: 10%;
  position: relative;
}

#service_cont > li:last-child {
  margin-bottom: 0;
}

#service_cont > li:nth-of-type(even) {
  flex-direction: row-reverse;
}

#service_cont > li > h3 {
  writing-mode: vertical-lr;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  gap: 1%;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
}

#service_cont > li:nth-of-type(even) > h3 {
  writing-mode: vertical-rl;
  left: initial;
  right: 0;
}

#service_cont > li > h3 > span:first-of-type {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-right: 1em;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

#service_cont > li:nth-of-type(even) > h3 > span:first-of-type {
  margin-left: 1em;
  margin-right: 0;
}

#service_cont > li > h3 > span:last-of-type {
  display: block;
  width: fit-content;
  height: 100%;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.15em;
}

#service_cont > li > figure {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

#service_cont > li:nth-of-type(even) > figure {
  flex-direction: row-reverse;
}

#service_cont > li > figure::before {
  content: '';
  width: 8%;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon/leaf_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  bottom: -12%;
  right: 1.5em;
  z-index: 2;
}

#service_cont > li:nth-of-type(2) > figure::before {
  background-image: url(../img/icon/leaf_02.png);
  right: initial;
  left: 1.5em;
}

#service_cont > li:nth-of-type(3) > figure::before {
  background-image: url(../img/icon/leaf_03.png);
}

#service_cont > li > figure > figcaption {
  width: 50%;
}

#service_cont > li > figure > picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  position: relative;
}

#service_cont > li > figure > picture > img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

#service_cont > li > figure > figcaption {
  font-size: 1.6rem;
  line-height: 1.7;
}

#service_cont > li > figure > figcaption > p {
  margin-bottom: 2em;
}

#service_cont > li > figure > figcaption a,
#service_cont > li > figure > figcaption a:visited {
  color: var(--main-font-color);
  text-decoration: none;
  position: absolute;
}

#service_cont figcaption > a {
  display: flex;
  align-items: center;
}

#service_cont figcaption > a::after {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 2em;
  margin-left: 0.5em;
  background-image: url(../img/icon/arrow_detail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  font-size: 1.9rem;
}

.service > div > .mark {
  left: 90%;
  bottom: 6.5%;
}

@media screen and (max-width: 1080px){
  .service > div {
    padding-inline: 6%;
  }

  #service_cont > li > h3 > span:first-of-type {
    font-size: 1.5em;
  }

  #service_cont > li > h3 > span:last-of-type {
    font-size: 2.5em;
  }

  #service_cont > li > figure > figcaption {
    padding-right: 0.5em;
  }

  .service > div > .mark {
    left: initial;
    right: 2%;
    bottom: 2%;
  }
}

@media screen and (max-width: 880px){
  .service > div {
    padding-block: 4%;
    padding-inline: 2%;
  }

  #service_cont > li > h3 > span:first-of-type {
    margin-right: 0.3em;
  }

  #service_cont > li > figure > figcaption {
    padding-right: 1em;
  }

  .service > div > .mark {
    left: initial;
    right: 1%;
    bottom: -2%;
  }
}

@media screen and (max-width: 768px){
  .service > div {
    padding-block: 4%;
    padding-inline: 4%;
  }

  #service_cont > li {
    display: block;
  }

  #service_cont > li > h3,
  #service_cont > li:nth-of-type(even) > h3 {
    writing-mode: initial;
    position: initial;
  }

  #service_cont > li > h3 > span:first-of-type,
  #service_cont > li:nth-of-type(even) > h3 > span:first-of-type {
    margin-inline: 0;
    margin-bottom: 0.3em;
  }

  #service_cont > li > h3 > span:last-of-type {
    margin-bottom: 0.8em;
    font-size: 1.9em;
    letter-spacing: initial;
  }

  #service_cont > li > figure,
  #service_cont > li:nth-of-type(even) > figure {
    flex-direction: column-reverse;
  }

  #service_cont > li > figure > figcaption,
  #service_cont > li > figure > picture {
    width: 100%;
    margin-bottom: 5%;
    padding-inline: 0;
  }

  #service_cont > li > figure::before {
    width: 12%;
    top: 46%;
    bottom: initial;
    right: 2%;
  }

  #service_cont > li:nth-of-type(2) > figure::before {
    top: 47.5%;
  }

  #service_cont > li:nth-of-type(3) > figure::before {
    top: 44.5%;
  }

  #service_cont > li:nth-of-type(2) > figure::before,
  #service_cont > li:nth-of-type(3) > figure::before {
    background-image: url(../img/icon/leaf_01.png);
    left: initial;
    right: 2%;
  }

  #service_cont > li > figure > figcaption a {
    justify-content: flex-end;
    position: relative;
  }

  #service_cont figcaption > a::after {
    width: 3.5em;
    height: auto;
    aspect-ratio: 29 / 17;
  }
}

@media screen and (max-width: 540px){
  .service > div {
    padding-block: 5% 7%;
    padding-inline: 5%;
  }

  #service_cont > li {
    margin-bottom: 12%;
  }

  #service_cont > li > figure > figcaption {
    font-size: 1.5rem;
  }
  #service_cont figcaption > a::after {
    width: 3em;
  }
}

@media screen and (max-width: 375px) {
  #service_cont > li > h3 > span:first-of-type {
    font-size: 1.2em;
  }

  #service_cont > li > h3 > span:last-of-type {
    font-size: 1.6em;
  }

  #service_cont > li > figure > figcaption {
    font-size: 1.2rem;
  }
}

.hr {
  width: 100%;
  aspect-ratio: 2044 / 140;
  background-image: url(../img/bg/hr_block_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

.hr.rev {
  background-image: url(../img/bg/hr_block_rev_bg.webp);
}

.guide_area {
  background-color: #ffffff;
}

.guide_area > div {
  padding-block: 4% 7%;
  padding-inline: 7%;
}

.guide_area > div > h2,
.guide_area > div > h3 {
  text-align: center;
}

.guide_area > div > h3 {
  margin-bottom: 1.7em;
  padding-top: 0.3em;
  font-size: 4rem;
  font-family: var(--serif-font);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.guide_area > div > ul {
  padding-inline: 7%;
}

.guide_area .fig_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.guide_area .fig_wrap figcaption,
.guide_area .fig_wrap > picture {
  width: 50%;
}

.guide_area > div > ul > li {
  margin-bottom: 20px;
}

.guide_area > div > ul > li:first-of-type {
  margin-bottom: 50px;
}

.guide_area > div > ul > li:last-of-type {
  margin-bottom: 0;
}

.guide_area > div > ul > li:first-of-type .fig_wrap figcaption {
  position: relative;
}

.guide_area > div > ul > li:first-of-type .fig_wrap figcaption::after {
  content: '';
  width: 33.33%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/icon/flowers_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 5%;
  z-index: 3;
}

.guide_area .fig_wrap figcaption {
  padding-top: 1.5%;
}

.guide_area .fig_wrap figcaption .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.85em;
  margin-bottom: 1em;
  border: 1px solid var(--main-font-color);
  border-radius: 2em;
  font-size: 1.7rem;
  padding: 0.15em 0 0.25em;
  color: var(--main-font-color);
  line-height: 1;
}

.guide_area .fig_wrap figcaption h4 {
  margin-bottom: 1.1em;
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1;
}

.guide_area .fig_wrap figcaption h4 small {
  font-size: 0.7em;
}

.guide_area .fig_wrap figcaption p {
  margin-bottom: 2em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.guide_area .fig_wrap figcaption > p:last-child {
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

.guide_area .fig_wrap > picture {
  margin-bottom: 7.5%;
  position: relative;
}

.guide_area .fig_wrap > picture img {
  width: 100%;
  aspect-ratio: 10 / 7;
  /*object-fit: none;*/
}

.guide_area .fig_wrap > picture .sub {
  width: 50%;
  /*aspect-ratio: 5 / 4;
  object-fit: none;*/
  position: absolute;
  bottom: -15%;
  left: -17%;
}

.guide_area .fig_wrap figcaption ~ .slide {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guide_area .fig_wrap figcaption ~ .slide picture {
  width: 24.5%;
  border-radius: 12px;
  overflow: hidden;
}

.guide_area .fig_wrap figcaption ~ .slide picture img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /*object-fit: none;*/
}

.guide_area > div > ul > li:nth-of-type(2) .fig_wrap figcaption h4 {
  white-space: nowrap;
}

.guide_area > div > ul > li:nth-of-type(2) .fig_wrap > picture {
  margin-bottom: 0;
}

.guide_area .fig_wrap .list {
  margin-top: 40px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--main-font-color);
  border-radius: 16px;
}

.fig_wrap .list h5 {
  margin-bottom: 0.8em;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--main-font-color);
  letter-spacing: 0.08em;
  line-height: 1;
}

.fig_wrap .list h5 small {
  font-size: 0.8em;
}

.fig_wrap .list dl {
  font-size: 1.6rem;
}

.fig_wrap .list dl > div:not(:last-child){
  margin-bottom: 0.8em;
}

.fig_wrap .list dl dt {
  color: var(--main-font-color);
}

.fig_wrap .list dl dt::before {
  display: inline;
  content: '\30fb';
  font-size: inherit;
  color: var(--main-font-color);
  line-height: 1;
}

.fig_wrap .list dl dd {
  padding-left: 1em;
}

.guide_area > div > .mark {
  left: 7%;
  bottom: 5.5%;
}

@media screen and (max-width: 1220px){
  .guide_area .fig_wrap > picture .sub {
    width: 45%;
    bottom: -5%;
    left: -5%;
  }
}

@media screen and (max-width: 1080px){
  .guide_area > div {
    padding-inline: 3%;
  }

  .guide_area > div > ul {
    padding-inline: 0;
  }
  .guide_area .fig_wrap > picture .sub {
    bottom: 12%;
    left: -8%;
  }

  .guide_area .fig_wrap figcaption {
    padding-right: 2em;
  }

  .guide_area .fig_wrap .list {
    margin-top: 4rem;
    margin-inline: auto;
  }

  .guide_area > div > .mark {
    left: initial;
    right: 2%;
    bottom: 2.5%;
  }
}

@media screen and (max-width: 880px){
  .guide_area > div {
    padding-block: 4% 6%;
    padding-inline: 2%;
  }

  .guide_area .fig_wrap figcaption {
    padding-top: 0;
    padding-right: 5%;
  }

  .guide_area .fig_wrap > picture .sub {
    width: 40%;
    bottom: -12%;
    left: -8%;
  }

  .guide_area > div > ul > li:first-of-type .fig_wrap figcaption::after {
    width: 28%;
    left: 5%;
  }

  .guide_area > div > .mark {
    left: 1.5%;
    bottom: 3.5%;
  }
}

@media screen and (max-width: 768px){
  .guide_area > div {
    padding-block: 4% 6%;
    padding-inline: 4%;
  }

  .guide_area > div > h2 {
    font-size: 2.2rem;
  }

  .guide_area > div > h3 {
    padding-top: 0;
    font-size: 3.5rem;
  }

  .guide_area .fig_wrap > figcaption {
    width: 100%;
    padding-right: 0;
  }

  .guide_area > div > ul > li:last-of-type {
    margin-bottom: 15%;
  }

  .guide_area .fig_wrap > figcaption > picture {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin-bottom: 5%;
  }

  .guide_area > div > ul > li:first-of-type .fig_wrap figcaption > picture img {
    /*width: 90%;*/
    margin-left: auto;
    aspect-ratio: 10 / 7;
    object-fit: cover;
  }

  .guide_area > div > ul > li:first-of-type .fig_wrap figcaption > picture img.sub {
    width: 40%;
    margin-top: -15%;
    margin-bottom: 5%;
    margin-left: 0;
    margin-right: auto;
  }

  .guide_area > div > ul > li:first-of-type .fig_wrap figcaption::after {
    width: 28%;
    position: initial;
  }

  .guide_area > div > ul > li:not(:first-of-type) .fig_wrap > figcaption > picture {
    margin-bottom: 5%;
  }

  .guide_area .fig_wrap .list {
    width: 100%;
    margin-top: 2rem;
    margin-inline: 0;
  }

  .guide_area .fig_wrap .list h5 {
    line-height: 1.5;
  }

  #guide .slide.slick-slider {
    width: 104%;
  }

  #guide .slide.slick-slider .slick-track .slick-slide {
    margin-right: 2%;
  }

  #guide .slide.slick-slider .slick-track .slick-slide:last-of-type {
    margin-right: 0;
  }

  #guide .slick-slider .slick-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7%;
    height: auto;
    aspect-ratio: 97 / 22;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -15%;
  }

  #guide .slick-slider .slick-arrow.slick-disabled {
    opacity: 0.4;
  }

  #guide .slick-slider .prev-arrow {
    background-image: url(../img/icon/slick_arrow_prev.png);
    left: 0;
  }

  #guide .slick-slider .next-arrow {
    background-image: url(../img/icon/slick_arrow_next.png);
    right: 4%;
  }
}

@media screen and (max-width: 540px){
  .guide_area > div {
    padding-block: 18% 6%;
    padding-inline: 5%;
  }

  .guide_area > div > h2 {
    margin-bottom: 0.7em;
    font-size: 2.1rem;
  }

  .guide_area > div > h3 {
    font-size: 2.55rem;
  }

  .guide_area .fig_wrap figcaption .tag {
    margin-bottom: 0.7em;
  }

  .guide_area .fig_wrap figcaption h4 {
    margin-bottom: 0.55em;
    font-size: 2.3rem;
    letter-spacing: -0.05em;
  }
}

@media screen and (max-width: 768px){
  .guide_area + .hr::after {
    width: 10%;
  }
}

@media screen and (max-width: 540px){
  .guide_area > div > ul > li:first-of-type {
    margin-bottom: 33.33%;
    margin-bottom: 80px;
  }

  .guide_area .fig_wrap figcaption p {
    font-size: 1.5rem;
  }

  #guide .slide.slick-slider {
    width: 105%;
  }

  #guide .slick-slider .slick-arrow {
    width: 10%;
    bottom: -20%;
  }

  #guide .slick-slider .next-arrow {
    right: 5%;
  }

  .guide_area .fig_wrap .list h5 {
    font-size: 1.65rem;
  }

  .fig_wrap .list dl {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 375px){
  .guide_area > div > h2 {
    font-size: 1.7rem;
  }

  .guide_area > div > h3 {
    margin-bottom: 1.9em;
    font-size: 2.15rem;
  }

  .guide_area > div > ul > li:first-of-type {
    margin-bottom: 36%;
  }

  .guide_area .fig_wrap figcaption .tag {
    margin-bottom: 0.7em;
    font-size: 1.55rem;
  }

  .guide_area .fig_wrap figcaption h4 {
    font-size: 1.9rem;
  }

  .guide_area .fig_wrap figcaption p {
    font-size: 1.3rem;
  }

  .guide_area .fig_wrap .list h5 {
    font-size: 1.35rem;
  }

  .fig_wrap .list dl {
    font-size: 1.25rem;
  }
}

.guide_area + .hr {
  position: relative;
}

.guide_area + .hr::after {
  content: '';
  width: 7.5%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/icon/green_bird.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 30%;
  left: 8%;
  z-index: 3;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 540px){
  .guide_area + .hr::after {
    width: 14%;
    top: 25%;
    left: 11%;
  }
}

.addr > div {
  padding-block: 9% 15%;
  padding-inline: 13% 12%;
  position: relative;
}

.addr > div > ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.addr > div > ul > li:last-of-type {
  width: 50%;
}

.addr h5 {
  margin-bottom: 0.6em;
  font-size: 3.4rem;
  letter-spacing: 0.08em;
  font-family: var(--serif-font);
  font-weight: 400;
  color: var(--main-font-color);
  line-height: 1;
}

.addr h5 + ul {
  font-size: 1.8rem;
}

.addr h5 + ul .biz_hour {
  color: var(--main-font-color);
}

.addr h5 + ul > li > span {
  display: inline-block;
  height: fit-content;
  line-height: 1;
}

.addr h5 + ul > li {
  margin-bottom: 0.3em;
}

.addr h5 + ul > li:nth-of-type(1){
  margin-bottom: 1.8em;
}

.addr h5 + ul > li:nth-of-type(3){
  padding-bottom: 1.5em;
  border-bottom: 2px solid #e3e2e1;
}

.addr h5 + ul > li:nth-of-type(4){
  margin-top: 1.5em;
}

.addr h5 + ul > li:nth-of-type(5) > span {
  line-height: 1.6;
}

@media screen and (max-width: 1080px){
  .addr > div {
    padding-inline: 4%;
  }
}

@media screen and (max-width: 880px){
  .addr > div {
    padding-block: 9% 15%;
    padding-inline: 2%;
  }

  .addr > div > ul > li:first-of-type {
    padding-right: 2%;
  }
}

@media screen and (max-width: 768px){
  .addr > div {
    padding-inline: 4%;
  }

  .addr > div > ul {
    display: block;
  }

  .addr h5 {
    font-size: 2.5rem;
  }

  .addr > div > ul > li:first-of-type {
    margin-bottom: 5%;
    padding-right: 0;
  }

  .addr > div > ul > li:last-of-type {
    width: 100%;
  }
}

@media screen and (max-width: 540px){
  .addr > div {
    padding-block: 15% 27%;
    padding-inline: 5%;
  }

  .addr h5 {
    font-size: 2.1rem;
  }

  .addr h5 + ul {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 375px){
  .addr h5 {
    font-size: 1.8rem;
  }

  .addr h5 + ul {
    font-size: 1.25rem;
  }
}

footer {
  background-color: var(--main-font-color);
  color: var(--color-offwhite);
}

footer > div {
  max-width: 1000px;
  padding-block: 4% 0.5%;
  padding-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

footer a,
footer a:visited {
  color: inherit;
  text-decoration: none;
}

footer > div .logo {
  width: 33%;
  margin-bottom: 3%;
  font-size: 1.4rem;
}

footer > div .logo {
  width: 60%;
  margin-bottom: 0;
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer > div #logo_0 li {
  position: relative;
}

footer > div #logo_0 li:first-of-type {
  margin-bottom: 12px;
}

footer > div #logo_0 li:first-of-type {
  margin-bottom: 0;
}

footer > div #logo_0 > li:first-of-type {
  width: 95%;
  margin-bottom: 20px;
}



footer > div #logo_0 li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

footer > div #logo_0 > li > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer_nav {
  width: 33%;
  font-size: 1.65rem;
}

footer > div #logo_0 > li > ul > li:first-of-type {
  margin-right: 10px;
}

footer .copyrights {
  width: 100%;
  font-size: 1.3rem;
  text-align: end;
}

footer > div .logo > li:first-child {
  width: 74%;
  margin-bottom: 10%;
  position: relative;
}

footer > div .logo > li:first-child {
  width: 45%;
  margin-bottom: 0;
}

footer > div .logo > li:first-child > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

footer > div .logo > li:first-child > img {
  width: 100%;
  aspect-ratio: 251 / 60;
}

footer > div .logo > li:last-child {
  width: 100%;
  line-height: 1;
}

footer > div .logo > li:last-child {
  width: fit-content;
}

footer > div .logo > li:last-child > ul > li:not(:last-of-type) {
  margin-bottom: 1.5em;
}

footer > div .logo > li:last-child > ul > li.narrow {
  margin-bottom: 0.5em;
}

#footer_nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  line-height: 1;
}

#footer_nav > ul:last-child {
  margin-left: auto;
}

#footer_nav > ul > li:not(:last-of-type) {
  display: flex;
  height: fit-content;
  margin-bottom: 1.5em;
}

#footer_nav > ul > li > a {
  display: inline-flex;
}

#footer_nav > ul > li > a::before {
  display: inline;
  content: '\30fb';
}

@media screen and (max-width: 1080px){
  footer > div {
    padding-inline: 6%;
  }

  /*
  footer > div .logo,
  #footer_nav {
    width: 37.5%;
  }
  */

  #footer_nav {
    width: 37.5%;
  }

  footer > div .logo > li:first-child {
    width: 40%;
  }
}

@media screen and (max-width: 960px){
  footer > div .logo {
    display: block;
  }

  footer > div .logo > li:first-child {
    width: 60%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 880px){
  footer > div {
    padding-inline: 2%;
  }

  /*
  footer > div .logo,
  #footer_nav {
    width: 43%;
  }
  */

  #footer_nav {
    width: 43%;
  }
}

@media screen and (max-width: 768px){
  footer > div {
    padding-inline: 0;
  }
  #footer_nav {
    display: none;
  }

  footer > div .logo {
    width: 100%;
    padding-block: 10%;
    padding-inline: 10%;
  }

  footer > div #logo_0 {
    margin-bottom: 30px;
  }

  footer > div .logo li {
    width: fit-content;
    margin-inline: auto;
  }

  footer > div .logo > li:first-child {
    width: 70%;
  }

  footer > div .logo li.bizhour {
    line-height: 1.5;
    transform: translateX(-0.75em);
  }

  footer .copyrights {
    margin-bottom: 2em;
    text-align: center;
    line-height: 1;
  }
}

@media screen and (max-width: 540px){
  footer > div .logo > li:first-child {
    width: 65%;
  }

  footer > div .logo {
    padding-inline: 8%;
  }

  footer .copyrights {
    margin-bottom: 0.5em;
  }
}

@media screen and (max-width: 375px){
  footer > div .logo {
    font-size: 1.15rem;
  }

  footer .copyrights {
    font-size: 1rem;
  }
}

@media screen and (max-width: 540px){
  .addr .en_font,
  footer .en_font {
    font-family: var(--main-font);
  }
}

body[data-modal-opened] {
  overflow: hidden;
  position: relative;
}

body::after {
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity;
  transition: 0.3s;
}

body[data-modal-opened]::after {
  opacity: 1;
  visibility: visible;
  transition-property: opacity;
  transition: 0.5s;
}

#modal_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
}

body[data-modal-opened] #modal_wrapper {
  opacity: 1;
  visibility: visible;
  transition-property: opacity;
  transition: 0.5s;
}

#modal_wrapper .modal_back {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  height: fit-content;
  margin-block: auto;
  margin-inline: auto;
}

#modal_wrapper .modal_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

#modal_wrapper .modal_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  margin-top: -1em;
  margin-right: -1em;
  transform: scale(1.5) translateX(150%) translateY(-150%);
  transform: scale(1.732);
  transform-origin: left bottom;
  font-size: 2rem;
  /*background-color: var(--main-bg-color);
  border: none;*/
  border-radius: 100%;
  cursor: pointer;
}

#modal_wrapper .modal_close::after {
  content: '\254b';
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  transform: translateY(3%) rotateZ(135deg);
  font-size: 2rem;
  color: #ffffff;
}

@media screen and (max-width: 768px){
  #modal_wrapper .modal_close {
    margin: 0;
    transform: scale(1.732) translateX(-50%) translateY(-50%);
    position: absolute;
    right: 1%;
    top: 35%;
  }
}

body[data-content-type^="page_"] .breadcrumbs,
body[data-content-type^="page_"] h1,
body[data-content-type^="page_"] main section > div {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 0;
}

body[data-content-type^="page_"] .breadcrumbs {
  margin-block: 1em;
}

.breadcrumbs a,
.breadcrumbs a:visited,
.breadcrumbs span {
  text-decoration: none;
  font-size: 1.6rem;
  color: #005400;
}

.breadcrumbs a.home span,
body[data-content-type="page_flower_green"] .breadcrumbs span.current-item {
  font-family: 'Cormorant', serif;
}

.breadcrumbs span[property="itemListElement"]::after {
  content: '/';
  display: inline-block;
  width: fit-content;
  height: fit-content;
  margin-inline: 1em 1em;
  font-size: inherit;
  line-height: 1;
}

.breadcrumbs span[property="itemListElement"]:last-of-type:after {
  display: none;
}

@media screen and (max-width: 375px) {
  .breadcrumbs a,
  .breadcrumbs a:visited,
  .breadcrumbs span {
    font-size: 1.196rem;
  }
}

body[data-content-type^="page_"] h1 {
  width: fit-content;
  height: 180px;
  display: flex;
  margin-block: 60px 40px;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;

  position: relative;
}

body[data-content-type="page_flower_green"] h1 {
  font-family: 'Cormorant', serif;
}

body[data-content-type^="page_"] h1 span {
  background-color: var(--main-bg-color);
  position: relative;
  z-index: 1;
}

body[data-content-type^="page_"] h1::before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 113%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url(../img/icon/flowers_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

body[data-content-type^="page_"] section > div > h3 {
  margin-bottom: 1em;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
}

body[data-content-type^="page_"] section > div {
  position: relative;
}

@media screen and (max-width: 1080px) {
  body[data-content-type^="page_"] .breadcrumbs,
  body[data-content-type^="page_"] h1,
  body[data-content-type^="page_"] main section > div {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 540px){
  body[data-content-type^="page_"] h1 {
    width: 50%;
    height: auto;
    aspect-ratio: 5 / 3;
    margin-block: 0 20px;
    font-size: 2.4rem;
    line-height: 1;
  }

  body[data-content-type^="page_"] h1::before {
    width: 60%;
    height: auto;
  }
}

body[data-content-type^="page_"] section > div > h3 + p {
  margin-bottom: 100px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}


body[data-content-type^="page_"] section[class^="fg_"] > div > h4 {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
}

body[data-content-type^="page_"] section[class^="fg_"] > div > h4::before {
  content: '\2500\2500';
  display: flex;
  width: fit-content;
  height: fit-content;
  font-size: inherit;
  line-height: 1;
  margin-right: 0.7em;
  transform: scaleY(0.667);
}

body[data-content-type^="page_"] section[class^="fg_"] > div > h4 > span:nth-of-type(1){
  font-size: inherit;
  font-family: 'Cormorant', serif;
}

body[data-content-type^="page_"] section[class^="fg_"] > div h4 .ind {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 1.75em;
  margin-left: 1em;
  font-size: 1.6rem;
  font-family: var(--main-font);
  line-height: 1;
  border: 1px solid var(--main-font-color);
  border-radius: 2em;
}

body[data-content-type^="page_"] section[class^="fg_"] > div > h4 + p {
  margin-bottom: 30px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.fg_gift > div > ul {
  margin-bottom: 100px;
}

.fg_gift > div > ul > li,
.fg_gift > div > ul > li > picture {
  display: flex;
  align-items: flex-start;
}

.fg_gift .fg_g_arr,
.fg_gift .fg_g_st {
  display: grid;
  grid-template-columns: 450px repeat(2, 265px);
  grid-template-rows: repeat(2, 219px);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.fg_g_arr > .d_d,
.fg_g_st > .d_d {
  grid-area: 1 / 1 / 3 / 2;
}

.fg_g_arr > li:nth-of-type(2),
.fg_g_st > li:nth-of-type(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.fg_g_arr > li:nth-of-type(3),
.fg_g_st > li:nth-of-type(3) {
  grid-area: 1 / 3 / 2 / 4;
}

.fg_g_arr > li:nth-of-type(4),
.fg_g_st > li:nth-of-type(4) {
  grid-area: 2 / 2 / 3 / 3;
}

.fg_g_arr > li:nth-of-type(5),
.fg_g_st > li:nth-of-type(5) {
  grid-area: 2 / 3 / 3 / 4;
}

.fg_gift .fg_g_bq {
  display: grid;
  grid-template-columns: repeat(2, 265px) 450px;
  grid-template-rows: repeat(2, 219px);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.fg_g_bq > li:nth-of-type(1) {
  grid-area: 1 / 1 / 2 / 2;
}

.fg_g_bq > li:nth-of-type(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.fg_g_bq > li:nth-of-type(3) {
  grid-area: 2 / 1 / 3 / 2;
}

.fg_g_bq > li:nth-of-type(4) {
  grid-area: 2 / 2 / 3 / 3;
}

.fg_g_bq > .d_d {
  grid-area: 1 / 3 / 3 / 4;
}

@media screen and (max-width: 1080px) {
  .fg_gift .fg_g_arr,
  .fg_gift .fg_g_st {
    grid-template-columns: 45% repeat(2, 26.5%);
    grid-template-rows: repeat(2, 48.8%);
    grid-column-gap: 1%;
    grid-row-gap: 2.23%;
  }

  .fg_gift .fg_g_bq {
    grid-template-columns: repeat(2, 26.5%) 45%;
    grid-template-rows: repeat(2, 48.8%);
        grid-column-gap: 1%;
    grid-row-gap: 2.23%;
  }
}

@media screen and (max-width: 768px) {
  .fg_gift .fg_g_arr,
  .fg_gift .fg_g_st,
  .fg_gift .fg_g_bq {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .fg_gift .fg_g_arr > li,
  .fg_gift .fg_g_st  > li,
  .fg_gift .fg_g_bq > li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }

  .fg_gift .fg_g_arr > li.d_d,
  .fg_gift .fg_g_st  > li.d_d,
  .fg_gift .fg_g_bq  > li.d_d {
    width: 100%;
  }
}

.fg_gift .fg_g_inner {
  margin-bottom: 50px;
  padding-block: 40px;
  padding-inline: 20px;
  background-color: #ffffff;
  border: 1px solid var(--main-font-color);
  border-radius: 20px;
}

.fg_g_inner h4 {
  width: fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fg_g_inner h4 > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5rem;
  line-height: 1;
  font-family: 'Cormorant', serif;
}

.fg_g_inner h4 > span > span {
  margin-top: 0.8em;
  font-size: 2rem;
  font-family: var(--main-font);
  line-height: 1;
}

.fg_g_inner > p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

.fg_g_inner .fg_g_ff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
}

.fg_gift > div > .to_ec {
  text-align: center;
  font-size: 2rem;
  color: var(--main-font-color);
}

.fg_gift > div > .to_ec + a,
.fg_gift > div > .to_ec + a:visited {
  color: #ffffff;
  text-decoration: none;
}

.fg_gift > div > .to_ec + a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 276px;
  height: 60px;
  margin-block: 1em 100px;
  margin-inline: auto;
  background-color: var(--main-font-color);
  background-color: #075403;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: 'Cormorant', serif;
  letter-spacing: 0.1em;
}

.fg_gift > div > .to_ec + a::before {
  content: '';
  width: 8%;
  aspect-ratio: 11 / 10;
  margin-right: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/icon/cart-shopping-solid.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 768px) {
  .fg_g_inner .fg_g_ff {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10px;
  }
}

body[data-content-type^="page_"] section.fg_rg > div > h3 + p {
  margin-bottom: 50px;
}

.fg_rg {
  background-color: #ffffff;
  padding-block: 60px 0;
  position: relative;
  z-index: 1;
}

.fg_rg .fg_rg_li {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.fg_rg .fg_rg_li > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.fg_rg .fg_rg_li > li picture {
  display: flex;
  width: 100%;
}

.fg_rg .fg_rg_li > li h6 {
  text-align: center;
  font-size: 1.6rem;
  color: #333333;
}

.fg_rg .fg_rg_li + p {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.6rem;
}

.fg_rg .fg_rg_li ~ figure {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.fg_rg .fg_rg_li ~ figure figcaption {
  width: 57%;
  border: 1px solid #015401;
  border-radius: 20px;
  padding: 30px;
}

.fg_rg .fg_rg_li ~ figure figcaption h5 {
  margin-bottom: 1.25em;
  font-size: 2rem;
  color: var(--main-font-color);
}

.fg_rg .fg_rg_li ~ figure figcaption > dl > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cccccc;
}

.fg_rg .fg_rg_li ~ figure figcaption > dl > div:last-of-type {
  border-bottom: none;
}

.fg_rg .fg_rg_li ~ figure picture {
  display: flex;
  width: 39.7%;
}

.fg_rg .fg_rg_li ~ figure figcaption > dl dt,
.fg_rg .fg_rg_li ~ figure figcaption > dl dd {
  padding-block: 0.7em;
  font-size: 1.6rem;
  line-height: 1;
}

.fg_rg .fg_rg_li ~ figure figcaption > dl dt {
  width: 36.73%;
}

.fg_rg .fg_rg_li ~ figure figcaption > dl dd:nth-of-type(1){
  width: 30.6%;
}

.fg_rg .fg_rg_li ~ figure figcaption > dl dd:nth-of-type(2){
  text-align: end;
  width: 24.5%;
}

@media screen and (max-width: 768px) {
  .fg_rg .fg_rg_li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .fg_rg .fg_rg_li > li {
    width: 33.33%;
  }
}

body[data-content-type^="page_"] section > div > .mark {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  font-family: 'Cormorant', serif;
  color: var(--main-font-color);
  letter-spacing: 0.1em;
  position: absolute;
  left: -5em;
  bottom: 0;
}

body[data-content-type^="page_"] section > div > .mark::before {
  content: '\2500\2500\2500';
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin-bottom: 1em;
  font-size: 1.8rem;
  letter-spacing: -0.1em;
  transform: translateX(-0.1em);
}

body[data-content-type^="page_"] section:nth-of-type(even) > div > .mark {
  left: initial;
  right: -5em;
}

@media screen and (max-width: 1200px){
  body[data-content-type^="page_"] section > div > .mark {
    left: -2em;
    bottom: -2em;
  }

  body[data-content-type^="page_"] section:nth-of-type(even) > div > .mark {
    right: -2em;
  }
}

@media screen and (max-width: 1080px){
  body[data-content-type^="page_"] section > div > .mark {
    display: none;
  }

  body[data-content-type^="page_"] section:nth-of-type(even) > div > .mark {
    display: none;
  }
}

body[data-content-type="page_flower_green"] section.fg_rg > div > h4 > span:nth-of-type(1) {
  font-family: var(--main-font);
}

section.fg_rg .order_fl > div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--main-bg-color);
}

section.fg_rg .order_fl dt {
  width: 25%;
  font-size: 2rem;
  color: var(--main-font-color);
}

section.fg_rg .order_fl dd {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .fg_rg .fg_rg_li ~ figure figcaption > dl dt,
  .fg_rg .fg_rg_li ~ figure figcaption > dl dd {
    font-size: 1.2rem;
  }

  section.fg_rg .order_fl dt {
    font-size: 1.5rem;
  }

  section.fg_rg .order_fl dd {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .fg_rg .fg_rg_li ~ figure {
    display: block;
  }

  .fg_rg .fg_rg_li ~ figure figcaption,
  .fg_rg .fg_rg_li ~ figure picture {
    width: 100%;
    margin-bottom: 30px;
  }

  .fg_rg .fg_rg_li ~ figure figcaption dl > div,
  section.fg_rg .order_fl > div {
    flex-wrap: wrap;
  }

  .fg_rg .fg_rg_li ~ figure figcaption dl dt,
  .fg_rg .fg_rg_li ~ figure figcaption dl dd {
    font-size: 1.8rem;
  }

  .fg_rg .fg_rg_li ~ figure figcaption dl dt,
  section.fg_rg .order_fl dt,
  section.fg_rg .order_fl dd {
    width: 100%;
  }

  .fg_rg .fg_rg_li ~ figure figcaption dl dd {
    padding-top: 0;
  }

  .fg_rg .fg_rg_li ~ figure figcaption > dl dd:nth-of-type(1),
  .fg_rg .fg_rg_li ~ figure figcaption > dl dd:nth-of-type(2) {
    width: 49%;
  }

  section.fg_rg .order_fl dt {
    margin-bottom: 0.8em;
    font-size: 2rem;
  }

  section.fg_rg .order_fl dd {
    font-size: 1.8rem;
  }
}

body[data-content-type="page_flower_green"] main section.blank {
  margin-top: -40px;
  height: 200px;
  background-color: #ffffff;
  position: relative;
  z-index: 0;
}

body[data-content-type="page_flower_green"] footer {
  position: relative;
}

body[data-content-type="page_flower_green"] footer::after {
  position: absolute;
  top: 10%;
  left: 95%;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px){
  body[data-content-type="page_flower_green"] footer::after {
    display: none;
  }

  section.blank {
    height: 100px;
  }
}

@media screen and (max-width: 540px){
  body[data-content-type^="page_"] section[class^="fg_"] h3 {
    margin-bottom: 0.5em;
    font-size: 2.2rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h3 + p {
    margin-bottom: 50px;
    font-size: 1.4rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h4 {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div h4 .ind {
    width: 5.85em;
    margin-left: 1.45em;
    font-size: 1.4rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h4::before {
    margin-right: 1.5em;
    font-size: 0.667em;
    transform: scaleY(1);
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h4 + p {
    margin-bottom: 16px;
    text-align: justify;
    font-size: 1.395rem;
  }

  .fg_gift > div > ul {
    margin-bottom: 40px;
  }

  .fg_gift > div > ul:last-of-type {
    margin-bottom: 50px;
  }

  .fg_gift .fg_g_inner {
    margin-bottom: 20px;
    padding-block: 20px;
    padding-inline: 10px;
  }

  .fg_g_inner h4 > span {
    font-size: 2rem;
  }

  .fg_g_inner h4 > span > span {
    margin-top: 0.5em;
    font-size: 1.8rem;
  }

  .fg_g_inner h4::before {
    content: '';
    display: flex;
    width: 5.85em;
    height: 1px;
    margin-right: 0.25em;
    font-size: 1.4rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div .fg_g_inner h4 .ind {
    margin-left: 0.25em;
  }

  .fg_g_inner > p {
    margin-bottom: 16px;
    font-size: 1.4rem;
  }

  .fg_g_ff picture {
    display: flex;
  }

  .fg_gift > div > .to_ec {
    font-size: 1.8rem;
  }

  .fg_gift > div > .to_ec + a {
    width: 59.7%;
    height: auto;
    aspect-ratio: 5 / 1;
    margin-bottom: 50px;
    font-size: 1.4rem;
  }

  .fg_gift > div > .to_ec + a::before {
    width: 11%;
    margin-right: 1em;
  }

  body[data-content-type^="page_"] section.fg_rg > div > h3 + p {
    margin-bottom: 20px;
  }

  .fg_rg .fg_rg_li {
    margin-bottom: 0;
  }

  .fg_rg .fg_rg_li > li {
    margin-bottom: 20px;
  }

  .fg_rg .fg_rg_li > li h6,
  .fg_rg .fg_rg_li + p {
    font-size: 1.4rem;
  }

  .fg_rg .fg_rg_li + p {
    margin-bottom: 20px;
    padding-inline: 0.75em;
    line-height: 1.8;
  }

  .fg_rg .fg_rg_li ~ figure {
    margin-bottom: 50px;
  }

  .fg_rg .fg_rg_li ~ figure figcaption,
  .fg_rg .fg_rg_li ~ figure picture {
    margin-bottom: 20px;
  }

  .fg_rg .fg_rg_li ~ figure figcaption {
    padding: 20px;
  }

  .fg_rg .fg_rg_li ~ figure figcaption h5 {
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .fg_rg .fg_rg_li ~ figure figcaption dl dt,
  .fg_rg .fg_rg_li ~ figure figcaption dl dd {
    font-size: 1.4rem;
    color: inherit;
  }

  body[data-content-type^="page_"] section.fg_rg > div > h4 {
    margin-bottom: 20px;
  }

  section.fg_rg .order_fl > div {
    margin-bottom: 10px;
    padding: 10px;
  }

  section.fg_rg .order_fl dt {
    font-size: 1.8rem;
  }

  section.fg_rg .order_fl dd {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px) {
  body[data-content-type^="page_"] h1 {
    font-size: 2.048rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] h3 {
    font-size: 1.878rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h3 + p {
    margin-bottom: 40px;
    font-size: 1.195rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h4 {
    font-size: 1.707rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div h4 .ind {
    font-size: 1.195rem;
  }

  body[data-content-type^="page_"] section[class^="fg_"] > div > h4 + p {
    font-size: 1.19rem;
  }

  .fg_g_inner h4 {
    margin-bottom: 16px;
  }

  .fg_g_inner h4 > span {
    font-size: 1.707rem;
  }

  .fg_g_inner h4 > span > span {
    font-size: 1.536rem;
  }

  .fg_g_inner > p {
    font-size: 1.195rem;
  }

  .fg_gift > div > .to_ec {
    font-size: 1.536rem;
  }

  .fg_gift > div > .to_ec + a {
    font-size: 1.195rem;
  }

  body[data-content-type^="page_"] section.fg_rg > div > h3 + p {
    margin-bottom: 10px;
  }

  .fg_rg .fg_rg_li > li h6,
  .fg_rg .fg_rg_li + p {
    font-size: 1.195rem;
  }

  .fg_rg .fg_rg_li ~ figure figcaption h5 {
    font-size: 1.536rem;
  }

  .fg_rg .fg_rg_li ~ figure figcaption dl dt,
  .fg_rg .fg_rg_li ~ figure figcaption dl dd {
    font-size: 1.195rem;
  }

  section.fg_rg .order_fl dt {
    font-size: 1.536rem;
  }

  section.fg_rg .order_fl dd {
    font-size: 1.195rem;
  }
}

.rf_outer {
  margin-bottom: 100px;
}

.rf_garden .rf_outer {
  margin-bottom: 200px;
}

.rf_outer > li,
.own_outer > li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rf_outer picture,
.own_outer picture  {
  display: flex;
  width: 100%;
  height: 100%;
}

.rf_outer picture img,
.own_outer picture img {
  object-fit: cover;
}

.rf_outer > li > picture {
  width: 45%;
  aspect-ratio: 1 / 1;
}

.rf_outer > li > .rf_inner {
  width: 54%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
}

.rf_outer > li > .rf_inner > li {
  width: calc(50% - 5px);
  aspect-ratio: 265 / 143;
}

.rf_outer > li > .rf_inner > li.d_row {
  aspect-ratio: 265 / 296;
}

body[data-content-type="page_reform"] section > div > h3 + p {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .rf_outer > li {
    display: block;
  }

  .rf_outer > li > picture,
  .rf_outer > li > .rf_inner {
    width: 100%;
    margin-bottom: 10px;
  }

  .rf_outer > li > .rf_inner > li {
    aspect-ratio: 162 / 88;
  }

  .rf_outer > li > .rf_inner > li.d_row {
    aspect-ratio: 162 / 180;
  }
}

@media screen and (max-width: 540px){
  body[data-content-type="page_reform"] section > div > h3 {
    font-size: 2.2rem;
  }

  body[data-content-type="page_reform"] section > div > h3 + p {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .rf_outer {
    margin-bottom: 50px;
  }

  .rf_garden .rf_outer {
    margin-bottom: 100px;
  }

  body[data-content-type="page_reform"] section > div > h3 {
    font-size: 1.877rem;
  }

  body[data-content-type="page_reform"] section > div > h3 + p {
    margin-inline: 0.2em;
    font-size: 1.195rem;
  }
}

body[data-content-type="page_own"] h1 {
  margin-bottom: 50px;
}

.own_outer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.own_outer > li {
  width: calc(50% - 5px);
}

.own_outer > li > picture {
  aspect-ratio: 495 / 450;
}

.own_outer > li > .own_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
}

.own_outer > li > .own_inner > li {
  width: 100%;
}

.own_outer > li > .own_inner > li > picture {
  aspect-ratio: 495 / 183;
}

.own_outer + p {
  margin-bottom: 40px;
  font-size: 1.8rem;
  line-height: 2;
}

.own_outer + p + a {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  font-size: 1.6rem;
}

.own_outer + p + a,
.own_outer + p + a:visited {
  color: var(--main-font-color);
  text-decoration: none;
}

.own_outer + p + a::after {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 2em;
  margin-left: 0.5em;
  background-image: url(../img/icon/arrow_detail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  font-size: 1.9rem;
}

.own > div > .to_otherdomain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 200px;
  padding-block: 30px;
  background-color: #ffffff;
  border: 1px solid #075400;
  border-radius: 20px;
}

.to_otherdomain p {
  margin-bottom: 1.25em;
  font-size: 1.8rem;
  line-height: 1;
}

.to_otherdomain a {
  width: 238px;
  aspect-ratio: 238 / 56;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #015401;
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1;
}

.to_otherdomain a,
.to_otherdomain a:visited {
  color: #ffffff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .own_outer {
    display: block;
    margin-bottom: 20px;
  }

  .own_outer > li {
    width: 100%;
  }

  .own_outer > li > picture {
    aspect-ratio: 335 / 305;
  }

  .own_outer > li > .own_inner > li > picture {
    aspect-ratio: 335 / 149;
  }

  .own_outer + p,
  .own_outer + p + a,
  .to_otherdomain p,
  .to_otherdomain a {
    font-size: 1.8rem;
  }

  .own_outer + p {
    text-align: justify;
    margin-bottom: 30px;
  }

  .own_outer + p + a {
    margin-bottom: 40px;
  }

  .own > div > .to_otherdomain {
    padding-block: calc(20px - 0.5em) 20px;
    margin-bottom: 120px;
  }

  .to_otherdomain a {
    width: 48.06%;
    aspect-ratio: 161 / 34;
  }

  .to_otherdomain p {
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.6;
  }
}

@media screen and (max-width: 540px){
  body[data-content-type="page_own"] h1 {
    margin-bottom: 20px;
  }

  .own_outer + p,
  .own_outer + p + a,
  .to_otherdomain p,
  .to_otherdomain a {
    font-size: 1.4rem;
  }

  .own_outer + p {
    margin-bottom: 10px;
  }

  .own_outer + p + a {
    margin-bottom: 20px;
  }

  .own > div > .to_otherdomain {
    margin-bottom: 100px;
  }

  .to_otherdomain p {
    margin-bottom: 5px;
  }

  .to_otherdomain a > span {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    transform: translateY(-0.05em);
  }
}

@media screen and (max-width: 375px){
  .own_outer + p,
  .own_outer + p + a,
  .to_otherdomain p,
  .to_otherdomain a {
    font-size: 1.195rem;
  }
}