@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@300;400;500;700&family=Roboto:wght@100;300;400;500;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* 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 {
  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;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.on-sp {
  display: block;
}

@media only screen and (min-width: 899px) {
  .on-sp {
    display: none;
  }
  .on-pc {
    display: block;
  }
}
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.gbf--wrapper {
  overflow: hidden;
}

:root {
  --_container-max-width: 1280px;
  --_margin-scale: 1;
  --_space: 1.8rem;
  --accent-color: #cd162c;
  --dark-accent-color: #710c18;
  --light-accent-color: #ed5c6d;
  --lighter-accent-color: #f49aa5;
  --lightest-accent-color: #f6aab3;
  --sub-accent-color: #707593;
  --dark-sub-accent-color: #444759;
  --light-sub-accent-color: #aaadbf;
  --lighter-sub-accent-color: #d1d3dd;
  --lightest-sub-accent-color: #dcdde4;
  --_half-leading: 0.4;
  --font-family: "Noto Sans JP", sans-serif;
  --_base-font-family: var(--font-family);
  --line-height-sm-small: calc(16 / 14 + var(--_half-leading) * 2);
  --line-height-sm-normal: calc(16 / 16 + var(--_half-leading) * 2);
  --line-height-sm-medium: calc(16 / 20 + var(--_half-leading) * 2);
  --line-height-sm-large: calc(16 / 28 + var(--_half-leading) * 2);
  --line-height-sm-xlarge: calc(16 / 44 + var(--_half-leading) * 2);
  --line-height-sm-xxlarge: calc(16 / 76 + var(--_half-leading) * 2);
  --line-height-sm-xxxlarge: calc(16 / 140 + var(--_half-leading) * 2);
  --_base-font-size-px: 16px;
}

:root {
  --_container-max-width: 1120px;
  --accent-color: rgb(174, 156, 105);
  --dark-accent-color: #73653e;
  --light-accent-color: #d2c8ab;
  --lighter-accent-color: #eae5d8;
  --lightest-accent-color: #f0ede4;
  --sub-accent-color: #707593;
  --dark-sub-accent-color: #444759;
  --light-sub-accent-color: #aaadbf;
  --lighter-sub-accent-color: #d1d3dd;
  --lightest-sub-accent-color: #dcdde4;
  --entry-content-h2-border-left: 1px solid var(--accent-color, #cd162c);
  --entry-content-h2-background-color: #f7f7f7;
  --entry-content-h2-padding: calc(var(--_space, 1.76923rem) * 0.25) calc(var(--_space, 1.76923rem) * 0.25)
    calc(var(--_space, 1.76923rem) * 0.25) calc(var(--_space, 1.76923rem) * 0.5);
  --entry-content-h3-border-bottom: 1px solid #eee;
  --entry-content-h3-padding: 0 0 calc(var(--_space, 1.76923rem) * 0.25);
  --widget-title-display: flex;
  --widget-title-flex-direction: row;
  --widget-title-align-items: center;
  --widget-title-justify-content: center;
  --widget-title-pseudo-display: block;
  --widget-title-pseudo-content: "";
  --widget-title-pseudo-height: 1px;
  --widget-title-pseudo-background-color: #111;
  --widget-title-pseudo-flex: 1 0 0%;
  --widget-title-pseudo-min-width: 20px;
  --widget-title-before-margin-right: 0.5em;
  --widget-title-after-margin-left: 0.5em;
  --_half-leading: 0.5;
  --font-family: "Noto Serif JP", serif;
}

html {
  font-size: 14px;
  letter-spacing: 0.06rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-variant-ligatures: none;
  overflow-wrap: break-word;
  overflow-x: hidden;
  visibility: visible;
  -webkit-font-smoothing: antialiased;
  color: hsl(0deg, 0%, 20%);
  font-size: 1rem;
  font-weight: 500;
  line-height: calc(1 + var(--_half-leading, 0.4) * 2);
}

header {
  background-color: hsl(351deg, 87%, 32%);
  position: fixed;
  left: 0;
  height: 0;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: calc(var(--_container-margin, 0.9rem) + env(safe-area-inset-left));
  padding-right: calc(var(--_container-margin, 0.9rem) + env(safe-area-inset-right));
  z-index: 1000;
}
header .site-logo {
  padding-block: calc(var(--_space) * 0.25);
}
header .site-logo a {
  display: block;
}
header .site-logo a img {
  width: 144px;
  height: auto;
}
@media only screen and (min-width: 899px) {
  header .site-logo a img {
    width: 180px;
  }
}
header nav.global-nav .burger {
  width: fit-content;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
@media only screen and (min-width: 899px) {
  header nav.global-nav .burger {
    display: none;
  }
}
header nav.global-nav .burger .bgr-bars {
  box-sizing: content-box;
  display: inline-block;
  height: 16px;
  width: 22px;
  margin: 3px auto;
  position: relative;
}
header nav.global-nav .burger .bgr-bars div {
  transition: 0.3s;
  background-color: #fff;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
header nav.global-nav .burger .bgr-bars div:first-of-type {
  top: 0;
}
header nav.global-nav .burger .bgr-bars div:nth-of-type(2) {
  top: 7px;
}
header nav.global-nav .burger .bgr-bars div:last-of-type {
  top: 14px;
}
header nav.global-nav .burger .burger__txt {
  display: block;
  font-family: "Arial Narrow", Verdana, sans-serif;
  font-size: 8px;
  line-height: 1;
  color: #fff;
  letter-spacing: normal;
}
header nav.global-nav .burger.on .bgr-bars div {
  top: 6px;
  transform-origin: center;
}
header nav.global-nav .burger.on .bgr-bars div:first-child {
  rotate: 45deg;
}
header nav.global-nav .burger.on .bgr-bars div:nth-child(2) {
  rotate: -45deg;
}
header nav.global-nav .burger.on .bgr-bars div:last-child {
  left: 30;
  right: unset;
  opacity: 0;
}
header nav.global-nav .global-nav__container {
  background-color: hsl(43deg, 30%, 55%);
  position: fixed;
  top: -100vh;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 500;
  padding-top: 6em;
  opacity: 0;
  transition: 0.3s;
}
@media only screen and (min-width: 899px) {
  header nav.global-nav .global-nav__container {
    background-color: transparent;
    position: relative;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    height: auto;
    width: fit-content;
    padding-top: 0;
    opacity: 1;
  }
}
header nav.global-nav .global-nav__container.active {
  top: 0;
  opacity: 1;
}
header nav.global-nav .global-nav__container ul {
  list-style: none;
  margin: 0;
  padding: 0.9rem;
  padding-block: 0;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
}
header nav.global-nav .global-nav__container ul li {
  border-bottom: 1px solid #fff;
  width: 100%;
}
@media only screen and (min-width: 899px) {
  header nav.global-nav .global-nav__container ul li {
    border-bottom: none;
    width: fit-content;
  }
}
header nav.global-nav .global-nav__container ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  padding-block: 1.35rem;
  display: block;
}
@media only screen and (min-width: 899px) {
  header nav.global-nav .global-nav__container ul li a {
    padding: 1.35rem;
  }
}
@media only screen and (min-width: 899px) {
  header nav.global-nav .global-nav__container ul li a:hover {
    color: hsl(43deg, 30%, 55%);
  }
}

[data-scrolled=true] header {
  background-color: #fff;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.05);
}
[data-scrolled=true] header nav.global-nav .burger .bgr-bars div {
  background-color: #333;
}
[data-scrolled=true] header nav.global-nav .burger .burger__txt {
  color: #333;
}
@media only screen and (min-width: 899px) {
  [data-scrolled=true] header nav.global-nav .global-nav__container ul li a {
    color: hsl(0deg, 0%, 20%);
  }
}
@media only screen and (min-width: 899px) {
  [data-scrolled=true] header nav.global-nav .global-nav__container ul li a:hover {
    color: hsl(43deg, 30%, 55%);
  }
}

.gbf--wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.jumbotron.page__hero {
  padding-block: calc(var(--_space, 1.8rem) * 1.5);
  position: relative;
}
@media only screen and (min-width: 899px) {
  .jumbotron.page__hero {
    padding-block: 75px;
    height: 500px;
  }
}
.jumbotron.page__hero .page__bg {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.jumbotron.page__hero .page__bg img {
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: none;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  object-position: 50% 50%;
  width: 100%;
}
.jumbotron.page__hero .spacer-div {
  height: 50px;
}
@media only screen and (min-width: 899px) {
  .jumbotron.page__hero .spacer-div {
    height: 100px;
  }
}
.jumbotron.page__hero .page__ttl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.jumbotron.page__hero .page__ttl .underlayer-heading {
  background-color: rgba(176, 156, 105, 0.96);
  padding: 10px 5%;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 2rem;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 1.8rem;
  width: 90vw;
  max-width: 450px;
  position: relative;
  line-height: 1.6;
}
@media only screen and (min-width: 899px) {
  .jumbotron.page__hero .page__ttl .underlayer-heading {
    font-size: 3rem;
    padding: 10px 22px 10px 110px;
    width: 1112px;
    width: 51vw;
    max-width: none;
    line-height: 1.5;
  }
  .jumbotron.page__hero .page__ttl .underlayer-heading:after {
    position: absolute;
    content: "";
    background: url(../images/fv-arrow-down.png) no-repeat center center/contain;
    height: 100px;
    width: 13px;
    left: 16%;
    top: calc(100% + 28px);
  }
}
.jumbotron.page__hero .page__ttl .underlayer-heading span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}
@media only screen and (min-width: 899px) {
  .jumbotron.page__hero .page__ttl .underlayer-heading span {
    font-size: 2rem;
  }
}
.jumbotron.news-hero {
  /* min-height: 500px; */
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
.jumbotron.news-hero .page__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.jumbotron.news-hero .page__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(153, 11, 32, 0.6);
  z-index: 0;
}
.jumbotron.news-hero .page__bg figure,
.jumbotron.news-hero .page__bg picture,
.jumbotron.news-hero .page__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.jumbotron.news-hero .news--title {
  position: relative;
  z-index: 10;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  max-width: 1069px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 5%;
}
.jumbotron.home-hero {
  height: 100vh;
  background: url(../images/mainvisual01-scaled.jpg) no-repeat center center/cover;
  margin-top: 70px;
}
@media only screen and (min-width: 899px) {
  .jumbotron.home-hero {
    margin-top: 0;
  }
}
.jumbotron.home-hero .slogan {
  padding-top: 8%;
  margin-left: 5%;
  position: relative;
}
.jumbotron.home-hero .slogan h1 {
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  padding-right: 5%;
  line-height: 1.5;
}
@media only screen and (min-width: 899px) {
  .jumbotron.home-hero .slogan h1 {
    font-size: 7rem;
    line-height: 1.4;
    padding-right: 0;
  }
}
.jumbotron.home-hero .slogan:after {
  content: "";
  position: absolute;
  background: url(../images/fv-arrow-down.png) no-repeat center center/contain;
  height: 150px;
  width: 16px;
  bottom: -140px;
  left: 0;
}

:where(.layout__flex) {
  gap: 2em;
}

.contents .section-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
}
@media only screen and (min-width: 899px) {
  .contents .section-ttl {
    font-size: 2.4rem;
    max-width: 500px;
    margin-inline: auto;
  }
}
.contents .section-ttl:after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 0;
  margin-right: auto;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
  margin-top: calc(var(--_space, 1.8rem) * 0.5 * var(--_margin-scale, 1));
}
.contents .txt-body {
  margin-top: calc(var(--_space, 1.8rem) * 1 * var(--_margin-scale, 1));
}
.contents .layout__flex {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 899px) {
  .contents .layout__flex {
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 899px) {
  .contents .layout__flex.flex__reverse {
    flex-direction: row-reverse;
  }
}
.contents .layout__flex .layout__flow {
  flex-basis: 100%;
  width: 100%;
  align-self: flex-start;
  flex-grow: 1;
  position: relative;
}
@media only screen and (min-width: 899px) {
  .contents .layout__flex .layout__flow {
    flex-basis: 50%;
    flex-grow: unset;
  }
}
.contents .layout__flex .layout__flow:not(:last-child) {
  padding-bottom: calc(var(--_space, 1.8rem) * 2.5);
}
@media only screen and (min-width: 899px) {
  .contents .layout__flex .layout__flow:not(:last-child) {
    padding-bottom: 0;
  }
}
.contents .layout__flex .layout__flow .layout__flow__container {
  padding-top: calc(var(--_space, 1.8rem) * 1.5);
  padding-left: calc(var(--_container-margin, 0.9rem) + env(safe-area-inset-left));
  padding-right: calc(var(--_container-margin, 0.9rem) + env(safe-area-inset-right));
}
@media only screen and (min-width: 899px) {
  .contents .layout__flex .layout__flow.about01-1 .layout__flow__container {
    padding-block: 5.4rem !important;
    padding-left: 1.8rem;
    padding-right: 5.8rem;
  }
}
@media only screen and (min-width: 899px) {
  .contents .layout__flex .layout__flow.about02-1 .layout__flow__container {
    padding-block: 5.4rem !important;
    padding-left: 5.8rem;
    padding-right: 1.8rem;
  }
}
.contents .layout__flex .layout__flow .layout__bg {
  background-color: #980b20;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: -2;
}
.contents.home__contents {
  padding-top: 3rem;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents {
    padding-top: 7rem;
  }
}
.contents.home__contents .front-page__leda {
  position: relative;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda {
    margin-bottom: 200px;
  }
}
.contents.home__contents .front-page__leda .cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contents.home__contents .front-page__leda .cols .col {
  flex-basis: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda .cols .col {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.contents.home__contents .front-page__leda .cols .col .leda__contents {
  position: relative;
  padding-inline: 0.9rem;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda .cols .col .leda__contents {
    padding-inline: 0;
    left: 25%;
    width: 57%;
  }
}
.contents.home__contents .front-page__leda .cols .col .leda__contents h2 {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda .cols .col .leda__contents h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.contents.home__contents .front-page__leda .cols .col .leda__contents h2::after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 0;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
  margin-top: 0.5rem;
}
.contents.home__contents .front-page__leda .cols .col .leda__contents .front-page__leda-body .in__link.btn {
  margin-top: 1.8rem;
}
.contents.home__contents .front-page__leda .cols .col .leda__contents .front-page__leda-body .in__link.btn a {
  background-color: hsl(351deg, 87%, 32%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1.2rem 2.6rem;
  font-size: 1.2rem;
}
.contents.home__contents .front-page__leda .cols .col figure {
  position: relative;
  transform: translateY(-10%);
  z-index: -1;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda .cols .col figure {
    right: -1.8rem;
    transform: translateY(0);
    z-index: auto;
  }
}
.contents.home__contents .front-page__leda .cols .col figure picture .photomount {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: hsl(351deg, 87%, 32%);
  transform: translate(-10%, 13%);
  z-index: -1;
}
.contents.home__contents .front-page__leda .cols.col__reverse {
  flex-direction: row-reverse;
}
.contents.home__contents .front-page__leda .cols.col__reverse .col figure {
  right: unset;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda .cols.col__reverse .col figure {
    left: -1.8rem;
  }
}
.contents.home__contents .front-page__leda .cols.col__reverse .col figure picture .photomount {
  transform: translate(10%, 13%);
}
.contents.home__contents .front-page__leda::after {
  content: "For out customers";
  font-size: 7vw;
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f0eee5;
  bottom: -3px;
  left: 7%;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda::after {
    bottom: -175px;
    left: 13%;
    font-weight: 600;
  }
}
.contents.home__contents .front-page__leda:nth-of-type(2)::after {
  content: "Satisfaction No.1";
  left: auto;
  right: 7%;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .front-page__leda:nth-of-type(2)::after {
    right: auto;
    left: 13%;
  }
}
.contents.home__contents .layout__ribbon .container__inner {
  max-width: 1069px;
  width: 100%;
  margin-inline: auto;
}
.contents.home__contents .layout__ribbon .container__inner h2 {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .layout__ribbon .container__inner h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.contents.home__contents .layout__ribbon .container__inner h2::after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 0;
  margin-inline: auto;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container {
  margin-inline: 1.8rem;
  border: 1px solid #333;
  background-color: #fff;
  padding: 2.4rem 1.8rem;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .layout__ribbon .container__inner .news__list__container {
    padding-inline: 5rem;
  }
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container ul {
  list-style-type: none;
  padding-left: 0;
  border-bottom: 1px solid #eee;
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li {
  border-top: 1px solid #eee;
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li a {
  color: #333;
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary {
  display: flex;
  padding: 1.2rem;
  flex-wrap: wrap;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary {
    flex-wrap: nowrap;
    padding: 0;
    padding-block: 0.8rem;
  }
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary .entry--date {
  width: 100%;
  color: black;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary .entry--date {
    width: fit-content;
  }
}
.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary .entry--title {
  width: 100%;
}
@media only screen and (min-width: 899px) {
  .contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary .entry--title {
    padding-left: 8%;
  }
}
.contents.home__contents .layout__ribbon .container__inner .in__link.btn {
  text-align: center;
  margin-top: 1.8rem;
}
.contents.home__contents .layout__ribbon .container__inner .in__link.btn a {
  background-color: hsl(351deg, 87%, 32%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 1.2rem 2.6rem;
  font-size: 1.2rem;
  margin-inline: auto;
}
.contents.about__contents {
  padding-top: 60px;
}
.contents.about__contents .page__body:not(:first-of-type) {
  margin-top: 50px;
}
.contents.about__contents .about__content__body {
  background-color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  z-index: 0;
  margin-inline: auto;
  padding-block: calc(var(--_space, 1.8rem) * 1.5);
  padding-left: calc(var(--_container-margin, 0.9rem) + env(safe-area-inset-left));
  padding-right: calc(var(--_container-margin, 0.9rem) + env(safe-area-inset-right));
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .about__content__body {
    padding-block: 5.4rem;
    padding-inline: 3.4 rem;
  }
}
.contents.about__contents .about__content__body .txt-body {
  max-width: 500px;
  margin-inline: auto;
}
.contents.about__contents figure {
  position: relative;
}
.contents.about__contents figure.about-img01 {
  margin-top: -30%;
  z-index: -1;
}
@media only screen and (min-width: 899px) {
  .contents.about__contents figure.about-img01 {
    margin-top: 147px;
  }
}
@media only screen and (min-width: 899px) {
  .contents.about__contents figure.about-img02 {
    z-index: -1;
    margin-top: 147px;
  }
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .about01 .about01-2 {
    margin-left: -146px;
  }
}
.contents.about__contents .about02 .layout__flex .layout__flow:not(:last-child) {
  padding-bottom: calc(var(--_space, 1.8em) * 1.25);
}
.contents.about__contents .about02 .about02-2 {
  margin-right: -146px;
}
.contents.about__contents .container__inner {
  display: flex;
  align-items: center;
  padding-left: 0.9em;
  padding-right: 0.9em;
}
.contents.about__contents .layout__ribbon .inner__box {
  border: 1px solid #000;
  background-color: #fff;
  margin-inline: auto;
  width: 100%;
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .layout__ribbon .inner__box {
    max-width: 900px;
    padding: 90px 30px;
  }
}
.contents.about__contents .layout__ribbon .inner__box.our-policy {
  padding: 30px 7%;
}
.contents.about__contents .layout__ribbon .inner__box.our-policy p {
  text-align: center;
}
.contents.about__contents .layout__ribbon .inner__box.our-policy p strong {
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 700;
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .layout__ribbon .inner__box.our-policy p strong {
    font-size: 2rem;
  }
}
.contents.about__contents .layout__ribbon .inner__box.our-policy ol {
  padding-left: 0;
  list-style: none;
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .layout__ribbon .inner__box.our-policy ol {
    margin-top: 1.8rem;
  }
}
.contents.about__contents .layout__ribbon .inner__box.our-policy ol li {
  max-width: 400px;
  width: 100%;
  padding-left: 2.7em;
  text-indent: -2.7em;
  font-weight: 500;
  line-height: 2;
  font-size: 16px;
  counter-increment: num;
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .layout__ribbon .inner__box.our-policy ol li {
    line-height: 2.5;
    margin-inline: auto;
  }
}
.contents.about__contents .layout__ribbon .inner__box.our-policy ol li::before {
  margin-right: 0.2em;
  font-family: "Noto Serif JP", serif;
  color: #ae9c69;
  font-size: 24px;
  font-weight: 600;
  content: counter(num, decimal-leading-zero) ".";
}
@media only screen and (min-width: 899px) {
  .contents.about__contents .layout__ribbon .inner__box.our-policy ol li::before {
    font-size: 38px;
  }
}
.contents.service__contents .service-page__body {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  padding-top: 5.4rem;
  padding-inline: 13px;
  position: relative;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .service-page__body {
    padding-inline: 25px;
  }
}
.contents.service__contents .service-page__body .contents__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 8.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .service-page__body .contents__heading {
    font-size: 2rem;
  }
}
.contents.service__contents .service-page__body .service__contents__body {
  border: 1px solid #333;
  background-color: #fff;
  padding: 2.7rem;
  position: relative;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .service-page__body .service__contents__body {
    padding: 5.4rem;
  }
}
.contents.service__contents .service-page__body .service__contents__body h2 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .service-page__body .service__contents__body h2 {
    font-size: 2rem;
  }
}
.contents.service__contents .service-page__body .service__contents__body::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: -50px;
  left: 10%;
  width: 100%;
  height: 100%;
  background: hsl(351deg, 87%, 32%);
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .service-page__body .service__contents__body::after {
    top: -75px;
    left: 38%;
    width: 75%;
    height: calc(100% + 30px);
  }
}
.contents.service__contents .service-page__body .service__contents__body .service--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
}
.contents.service__contents .service-page__body .service__contents__body .service--list li {
  flex-basis: 100%;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .service-page__body .service__contents__body .service--list li {
    flex-basis: 25%;
  }
}
.contents.service__contents .service-page__body .service__contents__body .service--list li figure {
  padding: 0;
  margin: 0;
}
.contents.service__contents .service-page__body .service__contents__body .service--list li figure picture {
  margin-bottom: 2rem;
}
.contents.service__contents .service-page__body .service__contents__body .service--list li figure picture img {
  width: 100px;
  height: auto;
  margin-inline: auto;
}
.contents.service__contents .service-page__body .service__contents__body .service--list li figure figcaption {
  text-align: center;
}
.contents.service__contents .layout__ribbon .container__inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.contents.service__contents .layout__ribbon .container__inner h2 {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .layout__ribbon .container__inner h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.contents.service__contents .layout__ribbon .container__inner h2::after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 0;
  margin-inline: auto;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
}
.contents.service__contents .layout__ribbon .container__inner p {
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
}
@media only screen and (min-width: 899px) {
  .contents.service__contents .layout__ribbon .container__inner p {
    font-size: inherit;
  }
}
.contents.service__contents .layout__ribbon .container__inner figure picture {
  text-align: center;
}
.contents.service__contents .layout__ribbon .container__inner figure picture img {
  max-width: 709px;
  width: 100%;
  margin-inline: auto;
}
.contents.company__contents .container__inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  padding-top: 4.5rem;
  padding-inline: 1.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .container__inner {
    padding-inline: 25px;
    padding-top: 5.4rem;
  }
}
.contents.company__contents .container__inner h2 {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 4.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .container__inner h2 {
    font-size: 2rem;
    margin-bottom: 5.4rem;
  }
}
.contents.company__contents .container__inner h2::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.6rem;
  margin-bottom: 0;
  margin-inline: auto;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
}
.contents.company__contents .container__inner .layout__flex .layout__flow .text__body p:not(:first-child) {
  margin-top: 1.8rem;
}
.contents.company__contents .container__inner .layout__flex .layout__flow figure figcaption {
  text-align: center;
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .container__inner .layout__flex .layout__flow:first-child {
    flex-basis: 53%;
  }
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .container__inner .layout__flex .layout__flow:last-child {
    flex-basis: 46%;
    margin-left: 1.8rem;
  }
}
.contents.company__contents .layout__ribbon .container__inner {
  padding-top: 0;
}
.contents.company__contents .layout__ribbon .container__inner h2 {
  margin-bottom: 2.5rem;
}
.contents.company__contents .layout__ribbon .container__inner table {
  border-collapse: collapse;
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .layout__ribbon .container__inner table {
    max-width: 850px;
    width: 100%;
    margin-inline: auto;
  }
}
.contents.company__contents .layout__ribbon .container__inner table tbody tr {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.contents.company__contents .layout__ribbon .container__inner table tbody tr th, .contents.company__contents .layout__ribbon .container__inner table tbody tr td {
  font-size: 14px;
  font-weight: normal;
  padding: 10px 10px 10px 4%;
  text-align: left;
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .layout__ribbon .container__inner table tbody tr th, .contents.company__contents .layout__ribbon .container__inner table tbody tr td {
    padding-block: 1.5rem;
    padding-left: 5%;
    font-size: 16px;
  }
}
@media only screen and (min-width: 899px) {
  .contents.company__contents .layout__ribbon .container__inner table tbody tr:last-child th, .contents.company__contents .layout__ribbon .container__inner table tbody tr:last-child td {
    padding-block: 0.8rem;
  }
}
.contents.recruit__contents .container__inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  padding-top: 4.5rem;
  padding-inline: 1.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.recruit__contents .container__inner {
    padding-inline: 25px;
    padding-top: 5.4rem;
  }
}
.contents.recruit__contents .container__inner .txt-body {
  max-width: 800px;
  margin-inline: auto;
  width: 100%;
}
.contents.recruit__contents .container__inner h2 {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 4.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.recruit__contents .container__inner h2 {
    font-size: 2rem;
    margin-bottom: 5.4rem;
  }
}
.contents.recruit__contents .container__inner h2::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.6rem;
  margin-bottom: 0;
  margin-inline: auto;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
}
.contents.recruit__contents .container__inner p:not(:first-child) {
  margin-top: 1.5rem;
}
.contents.recruit__contents .layout__ribbon .container__inner {
  padding-top: 0;
}
.contents.recruit__contents .layout__ribbon .container__inner h2 {
  margin-bottom: 2.5rem;
}
.contents.recruit__contents .layout__ribbon .container__inner .recruit__body table {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  border-collapse: collapse;
}
.contents.recruit__contents .layout__ribbon .container__inner .recruit__body table:not(:first-child) {
  margin-top: 3rem;
}
.contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr th, .contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr td {
  font-size: 14px;
  font-weight: normal;
  padding: 10px;
}
@media only screen and (min-width: 899px) {
  .contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr th, .contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr td {
    padding-block: 1.2rem;
    font-size: 16px;
  }
}
.contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr th {
  background-color: hsl(351deg, 87%, 32%);
  color: #fff;
  border: 1px solid hsl(351deg, 87%, 32%);
  border-bottom: 1px solid #fff;
  min-width: 90px;
  max-width: 170px;
}
.contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr td {
  background-color: #fff;
  border: 1px solid #333;
  padding-left: 5%;
}
.contents.recruit__contents .layout__ribbon .container__inner .recruit__body table tbody tr:last-child th {
  border-bottom: 1px solid hsl(351deg, 87%, 32%);
}
.contents.recruit__contents .layout__ribbon--red {
  background-color: hsl(351deg, 87%, 32%);
  padding: 1.6rem;
  position: relative;
}
.contents.recruit__contents .layout__ribbon--red .box {
  border: 1px solid #fff;
  text-align: center;
  padding: 5.4rem 2.5rem;
}
.contents.recruit__contents .layout__ribbon--red .box p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #fff;
}
.contents.recruit__contents .layout__ribbon--red .box a.btn {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 436px;
  width: 100%;
  height: 100px;
  margin-inline: auto;
  background: #c6b37c;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 899px) {
  .contents.recruit__contents .layout__ribbon--red .box a.btn {
    height: 100px;
  }
}
.contents.recruit__contents .layout__ribbon--red .box a.btn span {
  position: relative;
  padding-left: 25px;
}
.contents.recruit__contents .layout__ribbon--red .box a.btn span::before {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  right: 100%;
  background: url(../images/icon_arrow_right.png) no-repeat center center/contain;
  height: 15px;
  width: 24px;
}
@media only screen and (min-width: 899px) {
  .contents.recruit__contents .layout__ribbon--red .box a.btn span::before {
    width: 40px;
  }
}
.contents.news__archive .container__inner {
  padding-top: 1rem;
}
@media only screen and (min-width: 899px) {
  .contents.news__archive .container__inner {
    max-width: 1069px;
    width: 100%;
    margin-inline: auto;
  }
}
.contents.news__archive .container__inner h2 {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 4.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.news__archive .container__inner h2 {
    font-size: 2rem;
    margin-bottom: 5.4rem;
  }
}
.contents.news__archive .container__inner h2::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.6rem;
  margin-bottom: 0;
  margin-inline: auto;
  width: 60px;
  background-color: hsl(43deg, 30%, 55%);
}
.contents.news__archive .container__inner .gbf-archive {
  padding-inline: 0.9rem;
}
@media only screen and (min-width: 899px) {
  .contents.news__archive .container__inner .gbf-archive {
    padding-inline: 1.8rem;
  }
}
.contents.news__archive .container__inner .gbf-archive ul {
  list-style-type: none;
  padding-left: 0;
  border-bottom: 1px solid #eee;
}
.contents.news__archive .container__inner .gbf-archive ul li {
  border-top: 1px solid #eee;
}
.contents.news__archive .container__inner .gbf-archive ul li a {
  color: #333;
}
.contents.news__archive .container__inner .gbf-archive ul li .entry--summary {
  display: flex;
  padding: 1.2rem;
  flex-wrap: wrap;
}
@media only screen and (min-width: 899px) {
  .contents.news__archive .container__inner .gbf-archive ul li .entry--summary {
    flex-wrap: nowrap;
    padding: 0;
    padding-block: 0.8rem;
  }
}
.contents.news__archive .container__inner .gbf-archive ul li .entry--summary .entry--date {
  width: 100%;
  color: black;
}
@media only screen and (min-width: 899px) {
  .contents.news__archive .container__inner .gbf-archive ul li .entry--summary .entry--date {
    width: fit-content;
  }
}
.contents.news__archive .container__inner .gbf-archive ul li .entry--summary .entry--title {
  width: 100%;
}
@media only screen and (min-width: 899px) {
  .contents.news__archive .container__inner .gbf-archive ul li .entry--summary .entry--title {
    padding-left: 8%;
  }
}
.contents.news__contents .news__container {
  padding-block: 2.8rem;
  display: flex;
  justify-content: space-between;
  max-width: 1069px;
  width: calc(100% - 40px);
  margin-inline: auto;
}
.contents.news__contents .news__container sidebar {
  width: 336px;
}
.contents.news__contents .news__container sidebar .search__block__inner {
  border: 1px solid #85b7d9;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  padding: 0.5rem 0.5rem 0.5rem 0.7rem;
  margin-bottom: 1.5rem;
}
.contents.news__contents .news__container sidebar .search__block__inner input {
  border: none;
  font-size: 14px;
  padding: 0.5rem 0.2rem;
  width: calc(100% - 51px);
}
.contents.news__contents .news__container sidebar .search__block__inner input:focus-visible {
  outline-color: transparent;
}
.contents.news__contents .news__container sidebar .search__block__inner .search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #85b7d9;
  border-radius: 6px;
  background-color: #fff;
  padding: 0.8rem 1rem;
}
.contents.news__contents .news__container sidebar .widget h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contents.news__contents .news__container sidebar .widget h3 span {
  width: fit-content;
  white-space: nowrap;
  margin: 0.8em;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
}
.contents.news__contents .news__container sidebar .widget h3::before, .contents.news__contents .news__container sidebar .widget h3::after {
  content: "";
  width: 1fr;
  height: 1px;
  width: 100%;
  background-color: #333;
  display: block;
}
.contents.news__contents .news__container sidebar .widget ul {
  list-style: none;
  padding-left: 0;
}
.contents.news__contents .news__container sidebar .widget ul li a {
  font-size: 0.9rem;
  font-family: "Noto Serif JP", serif;
  color: hsl(43deg, 30%, 55%);
  text-decoration: underline;
}
.contents.news__contents .news__container .news__body {
  width: calc(100% - 386px);
}
.contents.news__contents .news__container .news__body p {
  font-family: "Noto Serif JP", serif;
}
.contents.news__contents .news__container .news__body p:not(:first-child) {
  margin-top: 1.8rem;
}
.contents.news__contents .news__container .news__body .pager {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
.contents.news__contents .news__container .news__body .pager a {
  color: #fff;
  position: relative;
  z-index: 10;
}
.contents.news__contents .news__container .news__body .pager .previous,
.contents.news__contents .news__container .news__body .pager .next {
  width: calc(50% - 0.9rem);
  position: relative;
}
.contents.news__contents .news__container .news__body .pager .previous a,
.contents.news__contents .news__container .news__body .pager .next a {
  background: url(../images/thumbnail.jpg) no-repeat center center/cover;
  display: block;
  padding: 1.4rem 1.6rem;
}
.contents.news__contents .news__container .news__body .pager .previous a::after,
.contents.news__contents .news__container .news__body .pager .next a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.contents.news__contents .news__container .news__body .pager .previous svg,
.contents.news__contents .news__container .news__body .pager .next svg {
  color: #fff;
  height: 14px;
  width: auto;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.contents.news__contents .news__container .news__body .pager .previous .prev__nav__index,
.contents.news__contents .news__container .news__body .pager .previous .next__nav__index,
.contents.news__contents .news__container .news__body .pager .next .prev__nav__index,
.contents.news__contents .news__container .news__body .pager .next .next__nav__index {
  font-size: 0.8rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 10;
}
.contents.news__contents .news__container .news__body .pager .previous .prev__entry__ttl,
.contents.news__contents .news__container .news__body .pager .previous .next__entry__ttl,
.contents.news__contents .news__container .news__body .pager .next .prev__entry__ttl,
.contents.news__contents .news__container .news__body .pager .next .next__entry__ttl {
  font-size: 1.2rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .contents.news__contents .news__container {
    flex-wrap: wrap;
  }

  .contents.news__contents .news__container .news__body {
    width: 100%;
    margin-bottom: 60px;
  }

  .contents.news__contents .news__container sidebar {
    width: 100%;
  }
}
.contents.contact__contents {
  padding-bottom: 8rem;
}
.contents.contact__contents .container__inner {
  max-width: 750px;
  width: 100%;
  margin-inline: auto;
  padding-top: 6rem;
}
.contents.contact__contents .container__inner .contact-pager {
  max-width: 520px;
  width: 100%;
  padding-inline: 4.2rem;
  margin-inline: auto;
}
@media only screen and (min-width: 899px) {
  .contents.contact__contents .container__inner .contact-pager {
    padding-inline: 0;
  }
}
.contents.contact__contents .container__inner .contact-pager ol {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.contents.contact__contents .container__inner .contact-pager ol.step2 {
  display: none;
}
.contents.contact__contents .container__inner .contact-pager ol li:not(.line) {
  width: 24px;
}
.contents.contact__contents .container__inner .contact-pager ol li:not(.line) .item--number {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  letter-spacing: 0;
  border-radius: 24px;
  height: 24px;
  color: #fff;
}
.contents.contact__contents .container__inner .contact-pager ol li:not(.line) .item--txt {
  white-space: nowrap;
  color: #ccc;
  margin-top: 0.8rem;
  position: relative;
  left: -0.2em;
}
.contents.contact__contents .container__inner .contact-pager ol li.here .item--number {
  background-color: #333;
}
.contents.contact__contents .container__inner .contact-pager ol li.here .item--txt {
  color: #333;
}
.contents.contact__contents .container__inner .contact-pager ol li.line {
  width: calc(50% - 36px);
  background: #ccc;
  height: 1px;
  position: relative;
  top: 11px;
}
.contents.contact__contents .container__inner .form__body {
  padding-top: 2rem;
  padding-inline: 0.9rem;
}
@media only screen and (min-width: 899px) {
  .contents.contact__contents .container__inner .form__body {
    padding-inline: 1.8rem;
  }
}
.contents.contact__contents .container__inner .form__body p {
  margin-bottom: 1.8rem;
}
.contents.contact__contents .container__inner .form__body p.end-message {
  width: fit-content;
  margin-inline: auto;
}
.contents.contact__contents .container__inner .form__body dl {
  display: table;
  width: 100%;
}
@media only screen and (min-width: 899px) {
  .contents.contact__contents .container__inner .form__body dl .form--item {
    display: table-row;
  }
}
@media only screen and (min-width: 899px) {
  .contents.contact__contents .container__inner .form__body dl .form--item dt, .contents.contact__contents .container__inner .form__body dl .form--item dd {
    display: table-cell;
  }
}
.contents.contact__contents .container__inner .form__body dl .form--item dt {
  vertical-align: top;
  padding-right: 5.4rem;
  width: 14em;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd input, .contents.contact__contents .container__inner .form__body dl .form--item dd textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd input:focus, .contents.contact__contents .container__inner .form__body dl .form--item dd textarea:focus {
  border: 1px solid #85b7d9;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd input:focus-visible, .contents.contact__contents .container__inner .form__body dl .form--item dd textarea:focus-visible {
  outline: #85b7d9 thin;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd input {
  max-width: 20em;
  width: 100%;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd textarea {
  height: 10em;
  width: 100%;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd .placeholder {
  color: #666;
  font-size: 0.875rem;
  line-height: 2.8;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd p:first-child {
  display: none;
}
.contents.contact__contents .container__inner .form__body dl .form--item dd p:not(:last-of-type) {
  margin-bottom: 0;
}
.contents.contact__contents .container__inner .privacy-policy {
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  margin-top: 1.5rem;
  margin-bottom: 2.8rem;
  background-color: hsl(45deg, 33%, 98%);
  padding: 1.8rem 2rem;
}
.contents.contact__contents .container__inner .privacy-policy p {
  text-align: center;
}
.contents.contact__contents .container__inner .privacy-policy p strong {
  font-size: 16px;
}
.contents.contact__contents .container__inner .privacy-policy p:not(:first-child) {
  text-align: left;
}
.contents.contact__contents .container__inner .privacy-policy p:not(:first-child) a {
  text-decoration: underline;
  color: hsl(43deg, 30%, 55%);
}
.contents.contact__contents .container__inner .btn-confirm {
  text-align: center;
  display: flex;
  justify-content: center;
}
.contents.contact__contents .container__inner .btn-confirm input[type=submit] {
  color: #fff;
  background-color: hsl(43deg, 30%, 55%);
  border: none;
  padding: 0.3rem 3rem;
  border-radius: 3px;
  margin-inline: 1rem;
}
.contents.contact__contents .container__inner .mw_wp_form_confirm .contact-pager ol.step1 {
  display: none;
}
.contents.contact__contents .container__inner .mw_wp_form_confirm .contact-pager ol.step2 {
  display: flex;
}
.contents.contact__contents .container__inner .mw_wp_form_confirm .form__body .form--txt > p {
  display: none;
}
.contents.contact__contents .container__inner .mw_wp_form_confirm .form__body .form--item {
  display: block;
  margin-bottom: 1.8rem;
}
.contents.contact__contents .container__inner .mw_wp_form_confirm .form__body dl dd p {
  display: none;
}
.contents.gbf-docs .page__body {
  padding: 0.9rem;
}
@media only screen and (min-width: 899px) {
  .contents.gbf-docs .page__body {
    padding: 1.8rem;
  }
}
.contents.gbf-docs .container__inner {
  max-width: 1069px;
  width: 100%;
  margin-inline: auto;
}
.contents.gbf-docs .container__inner h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 899px) {
  .contents.gbf-docs .container__inner h2 {
    font-size: 2.5rem;
  }
}
.contents.gbf-docs .container__inner h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  background-color: #f7f7f7;
  padding: 0.5em 0.8em;
  border-left: 1px solid hsl(43deg, 30%, 55%);
}
.contents.gbf-docs .container__inner p {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
}
.contents.gbf-docs .container__inner p:not(:first-child) {
  margin-top: 1.5rem;
}
.contents.gbf-docs .container__inner ol, .contents.gbf-docs .container__inner ul {
  padding-left: 1.5rem;
}
.contents.gbf-docs .container__inner ol li, .contents.gbf-docs .container__inner ul li {
  font-family: "Noto Serif JP", serif;
}
.contents.gbf-docs .container__inner .leda, .contents.gbf-docs .container__inner div[class$=__item] {
  margin-bottom: 2.4rem;
}

.layout__ribbon {
  background-color: hsl(45deg, 33%, 98%);
  padding-top: calc(var(--_space, 1.8rem) * 1.5);
  padding-bottom: calc(var(--_space, 1.8rem) * 1.5);
  margin-top: 80px;
}
@media only screen and (min-width: 899px) {
  .layout__ribbon {
    padding-block: 5.4rem;
  }
}

footer {
  flex: none;
}
footer .footer__cv {
  background: url(../images/thumbnail-scaled.jpg) no-repeat top center/cover;
  padding-block: 60px;
  position: relative;
  list-style-type: none;
  margin: 0 auto;
  padding-inline: 0;
}
@media only screen and (min-width: 899px) {
  footer .footer__cv {
    display: flex;
    padding: 150px 0;
  }
  footer .footer__cv:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    background: #fff;
    width: 1px;
    height: 100%;
  }
}
footer .footer__cv li:not(:first-child) {
  margin-top: 1.2rem;
}
@media only screen and (min-width: 899px) {
  footer .footer__cv li:not(:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 899px) {
  footer .footer__cv li {
    width: 50%;
  }
}
footer .footer__cv li .cv-container {
  width: 436px;
  max-width: 80%;
  margin-inline: auto;
}
footer .footer__cv li .footer__cv__ttl {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
footer .footer__cv li .footer__cv__btn {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #c6b37c;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 899px) {
  footer .footer__cv li .footer__cv__btn {
    height: 100px;
  }
}
footer .footer__cv li .footer__cv__btn span {
  position: relative;
  padding-left: 25px;
}
footer .footer__cv li .footer__cv__btn span::before {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  right: 100%;
  background: url(../images/icon_arrow_right.png) no-repeat center center/contain;
  height: 15px;
  width: 24px;
}
@media only screen and (min-width: 899px) {
  footer .footer__cv li .footer__cv__btn span::before {
    width: 40px;
  }
}
footer .l-footer {
  border-top: 1px solid #f7f7f7;
  background-color: hsl(45deg, 33%, 98%);
  padding-block: calc(var(--_space, 1.8rem) * 1);
  padding-inline: clamp(0.9rem, 1vw, 1.8rem);
  display: flex;
  flex-wrap: wrap;
}
footer .l-footer .footer-logo {
  width: 100%;
  margin-bottom: 25px;
}
@media only screen and (min-width: 899px) {
  footer .l-footer .footer-logo {
    max-width: 25%;
  }
}
footer .l-footer .footer-logo img {
  width: 144px;
  height: auto;
}
footer .l-footer .footer-nav {
  width: 100%;
}
@media only screen and (min-width: 899px) {
  footer .l-footer .footer-nav {
    max-width: 50%;
    display: flex;
    flex-wrap: wrap;
  }
}
footer .l-footer .footer-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 899px) {
  footer .l-footer .footer-nav ul {
    width: 50%;
  }
}
footer .l-footer .footer-nav ul li a {
  font-family: "Noto Serif JP", serif;
  font-size: 12.25px;
  color: hsl(0deg, 0%, 20%);
}
footer .l-footer .footer-nav ul:last-child {
  margin-top: 1.5em;
}
@media only screen and (min-width: 899px) {
  footer .l-footer .footer-nav ul:last-child {
    margin-top: 0;
  }
}
footer .l-footer .footer-nav ul:last-child li a {
  font-size: 11px;
  color: hsl(0deg, 0%, 44%);
}
footer .copyright {
  padding-left: 0.9em;
  font-size: 12.25px;
  font-family: "Noto Serif JP", serif;
  color: hsl(0deg, 0%, 44%);
  padding-block: 0.9em;
  background-color: hsl(45deg, 33%, 98%);
}

.toTop {
  position: fixed;
  bottom: 50px;
  right: 0px;
  height: 50px;
  width: 50px;
  display: none;
  transition: 0.3s;
}
.toTop.visible {
  display: block;
}
.toTop a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: hsl(43deg, 30%, 55%);
  transition: 0.3s;
}
.toTop a svg {
  color: #fff;
  width: 17px;
  height: auto;
}
.toTop a:hover {
  background-color: #9c8754;
}


/*===================================================================
  20250410_「コラム」追加
===================================================================*/
.column-main {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f0eee5;
  font-family: "Noto Serif JP", serif;
}

.inner--column {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.column-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.column-list {
  width: 33%;
  padding: 4px;
  text-decoration: none;
  list-style: none;
  color: #333;
}

.column-item {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  color: #333;
  position: relative;
}

.column-thumb {
  height: 170px;
  width: 100%;
  overflow: hidden;
}

.column-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.column-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.column-item:hover img {
  transform: scale(1.2);
}

.column-body {
  padding: 5px 10px 40px;
}

.column-title {
  font-size: 16px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.5;
}

.column-text {
  font-size: 12px;
  line-height: 1.5;
}

.column-date {
  font-size: 12px;
  position: absolute;
  bottom: 8px;
  left: 12px;
}

@media screen and (max-width: 600px) {
  .column-list {
    width: 50%;
  }

  .column-thumb {
    height: 120px;
  }

  .column-body {
    padding: 0px 10px 25px;
  }

  .column-text {
    display: none;
  }

  .column-date {
    bottom: 4px;
  }
}



/*========================
    pagination
========================*/
.pagination {
  text-align: center;
  width: 100%;
  margin: 40px auto 0 !important;
  display: flex;
  justify-content: center;
}

.page-numbers {
  width: 52px;
  height: 48px;
  transition: .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 3px;
  background-color: #fff;
  color: #333;
}

.current {
  background-color: #980B20;
  color: #fff;
  pointer-events: none;
}

.page-numbers:hover {
  background-color: #c6b37c;
  color: #fff;
}

.prev.page-numbers,
.next.page-numbers {
    display: none;
}


/*========================
  single-column
========================*/
.single--column {
  padding: 90px 0 120px;
  background-color: #f0eee5;
  font-family: "Noto Serif JP", serif;
}

.single-column-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.single-column-main {
  width: calc(100% - 360px);
}

.single-column-contents {
  width: 100%;
  padding: 60px 30px;
  background-color: #fff;
  line-height: 2;
}

.single-column-date {
  font-size: 12px;
  display: block;
  margin-bottom: 20px;
}

.single-column-contents p {
  margin-bottom: 15px;
}


.sidebar-column {
  width: 330px;
  padding: 25px 10px 10px;
  background-color: #fff;
  border: 2px solid #980B20;
}

.sidebar-column-tit {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  background-color: #980B20;
  text-align: center;
}

.sidebar-column-item {
  display: block;
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
}

.sidebar-column-date {
  font-size: 12px;
  display: block;
  color: #333;
}

.sidebar-column-item-tit {
  font-weight: 700;
  color: #333;
}

/*========================
  pager-column
========================*/
.pager--column {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.previous--column,
.next--column {
  width: calc(50% - 0.9rem);
  position: relative;
  background-color: #710c18;
  padding: 1.4rem 1.6rem;
  border: 2px solid #b09c69f5;
}

.arrow-column {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

.arrow-column img {
  width: 10px;
}

.pager-tit {
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .single-column-block {
    flex-wrap: wrap;
  }

  .single-column-main {
    width: 100%;
    margin-bottom: 90px;
    order: 1;
  }

  .single-column-contents {
    padding: 30px 20px;
  }

  .sidebar-column {
    width: 100%;
    order: 2;
  }

  .pager--column {
    flex-wrap: wrap;
  }

  .previous--column, .next--column {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* =========================
   カスタムカラーパレット用CSS
   ========================= */
.has-black-color {
  color: #333333;
}
.has-black-background-color {
  background-color: #333333;
}

.has-white-color {
  color: #ffffff;
}
.has-white-background-color {
  background-color: #ffffff;
}

.has-gray-color {
  color: #fcfbf8;
}
.has-gray-background-color {
  background-color: #fcfbf8;
}

/* --- カスタムカラー --- */
.has-main-red-color {
  color: #980B20;
}
.has-main-red-background-color {
  background-color: #980B20;
}

.has-gold-color {
  color: #c6b37c;
}
.has-gold-background-color {
  background-color: #c6b37c;
}

.has-beige-color {
  color: #f0eee5;
}
.has-beige-background-color {
  background-color: #f0eee5;
}


/* TOPページ　お知らせの一覧に投稿タイプ名表示 */
.type-label {
  font-size: 12px;
  color: #fff;
  background-color: #990b20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 20px;
  margin-left: 20px;
}

.type-label.type--post {
  background-color: #990b20;
}

.type-label.type--column {
    background-color: #af9b6a;
}

.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary {
  align-items: center;
}

.contents.home__contents .layout__ribbon .container__inner .news__list__container ul li .entry--summary .entry--title {
  padding-left: 5%;
}
