@charset "UTF-8";
#onetrust-banner-sdk {
  display: none !important;
}

.holdings-header__nav.pulldown .holdings-header__nav__panel {
  -webkit-transition: height 0.3s 0.3s !important;
  transition: height 0.3s 0.3s !important;
}

html {
  width: 100%;
  height: 100%;
}

html.is-windows.is-fixed {
  /* scrollbar track 表示 */
  overflow-y: scroll !important;
}

body {
  width: 100%;
  margin: 0;
  opacity: 0;
}

body.is-show {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 1;
}

.mk {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  overflow: hidden;
  width: 100%;
  margin: 0;
  /* 自動カーニング */
  /* font-feature-settings: "palt"; */
  letter-spacing: 0.1em;
  /* 半角英数連続文字改行（幅指定） */
  word-wrap: break-word;
  color: #46413d;
  background: #ffffff;
  /* フォントサイズ自動調整解除 */
  -webkit-text-size-adjust: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .mk {
    letter-spacing: 0.08em;
  }
}
.mk *,
.mk *::before,
.mk *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* タップ時のハイライト非表示 */
  /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
}

.mk *:last-child {
  margin-bottom: 0 !important;
}

.mk img {
  width: 100%;
  vertical-align: bottom;
}

.mk sup {
  font-size: 50%;
  vertical-align: 8px;
}

.mk input,
.mk textarea {
  /* フォーカス時の画面ズーム防止 */
  font-size: 16px;
}

.mk table {
  border-spacing: 0;
  border-collapse: collapse;
  border: none;
}

/* link
------------------------------*/
.mk a,
.mk a::before,
.mk a::after {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* display
------------------------------*/
.mk .pc {
  display: inline;
}

@media all and (max-width: 1023px) {
  .mk .pc {
    display: none;
  }
}
.mk .tb {
  display: none;
}

@media all and (max-width: 1023px) {
  .mk .tb {
    display: inline;
  }
}
@media all and (max-width: 576px) {
  .mk .tb {
    display: none;
  }
}
.mk .sp {
  display: none;
}

@media all and (max-width: 576px) {
  .mk .sp {
    display: inline;
  }
}
.mk .pc.tb {
  display: inline;
}

@media all and (max-width: 576px) {
  .mk .pc.tb {
    display: none;
  }
}
.mk .tb.sp {
  display: none;
}

@media all and (max-width: 1023px) {
  .mk .tb.sp {
    display: inline;
  }
}
/* btn
------------------------------*/
.c-btn-wrapper {
  width: 280px;
  height: 64px;
}
@media (max-width: 800px) {
  .c-btn-wrapper {
    width: 100%;
    max-width: 295px;
    height: 60px;
    margin-right: auto;
    margin-left: auto;
  }
}

.mk .c-btn {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-right: 26px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-decoration: none;
  color: #ffffff;
  border-radius: 6px;
  background-color: #09523f;
}

@media (max-width: 576px) {
  .mk .c-btn {
    font-size: 15px;
  }
}

.mk .c-btn span {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  overflow: hidden;
  width: 24px;
  height: 10px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.mk .c-btn span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translate3d(-10px, 0, 0);
          transform: translate3d(-10px, 0, 0);
  background: url(../img/common/ico_arrow_right_white.svg) no-repeat center center/contain;
}

.mk .c-btn:hover {
  background-color: #032e22;
}

.mk .c-btn:hover span::before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* delay scroll animation
------------------------------*/
.mk .fadeInUp {
  opacity: 0;
}

.mk .fadeInUp.is-show {
  -webkit-animation: fadeInUp 1s ease-out forwards;
          animation: fadeInUp 1s ease-out forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0.0001deg);
            transform: translate3d(0, 0, 0) rotate(0.0001deg);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0.0001deg);
            transform: translate3d(0, 0, 0) rotate(0.0001deg);
    opacity: 1;
  }
}
/* breadcrumb
------------------------------*/
.mk .breadcrumb {
  border-bottom: solid 1px #d8cec5;
}

/* wrap
------------------------------*/
.mk .l-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* main
------------------------------*/
.mk .l-main {
  position: relative;
  display: block;
  width: 100%;
  min-width: auto !important;
}

/* header
------------------------------*/
.mk .l-header {
  width: 100%;
  height: 90px;
}

@media all and (max-width: 1000px) {
  .mk .l-header {
    height: 60px;
  }
}
.mk .p-header {
  position: relative;
  /* z-index: 999; */
  z-index: 1010;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 30px 0 45px;
  -webkit-transition: z-index 0.2s ease-out 1s, -webkit-transform 0.2s ease-out;
  transition: z-index 0.2s ease-out 1s, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, z-index 0.2s ease-out 1s;
  transition: transform 0.2s ease-out, z-index 0.2s ease-out 1s, -webkit-transform 0.2s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border-bottom: solid 1px #ebe7df;
  background-color: #ffffff;
}

.mk .p-header.is-hide {
  z-index: 999;
  -webkit-transition: z-index 0.2s ease-out 0s;
  transition: z-index 0.2s ease-out 0s;
}

@media all and (max-width: 1200px) {
  .mk .p-header {
    padding: 0 20px;
  }
}
@media all and (max-width: 1000px) {
  .mk .p-header {
    height: 60px;
    padding: 0 20px;
  }
}
.mk .p-header.is-fixed {
  position: fixed;
}

.mk .p-header.is-fixed.is-down {
  -webkit-transition: -webkit-transform 0.2s ease-out 0.2s;
  transition: -webkit-transform 0.2s ease-out 0.2s;
  transition: transform 0.2s ease-out 0.2s;
  transition: transform 0.2s ease-out 0.2s, -webkit-transform 0.2s ease-out 0.2s;
  -webkit-transform: translate3d(0, 42px, 0);
          transform: translate3d(0, 42px, 0);
}

.mk .p-header__logo {
  line-height: 0;
  width: 200px;
  margin: 0 auto 0 0;
}

@media all and (max-width: 1000px) {
  .mk .p-header__logo {
    width: 185px;
  }
}
.mk ul.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  margin-right: 46px;
  padding: 0;
  list-style: none;
  gap: 10px 39px;
}

@media all and (max-width: 1350px) {
  .mk ul.p-header__list {
    margin-right: 20px;
  }
}
@media all and (max-width: 1000px) {
  .mk ul.p-header__list {
    display: none;
  }
}
.mk ul.p-header__list > li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
  letter-spacing: 0;
  color: #885c38;
}
.mk ul.p-header__list > li:hover {
  color: #09523f;
}
.mk ul.p-header__list > li + li::after {
  position: absolute;
  top: 50%;
  left: calc(39px / 2 * -1);
  width: 1px;
  height: 20px;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #885c38;
}

@media all and (max-width: 1200px) {
  .mk ul.p-header__list > li {
    font-size: 14px;
  }
}
.mk ul.p-header__list > li > a {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
  text-decoration: none;
  letter-spacing: 0;
  color: #937861;
}
.mk ul.p-header__list > li > a:hover {
  color: #09523f;
}
.mk ul.p-header__list > li > a.current {
  color: #09523f;
}

.mk ul.p-header__list > li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateZ(0) scaleX(0);
          transform: translateZ(0) scaleX(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  background: #09523f;
}

.mk ul.p-header__list > li:hover::before {
  -webkit-transform: translateZ(0) scaleX(1);
          transform: translateZ(0) scaleX(1);
}

.mk ul.p-header__list > li:has(.current)::before {
  -webkit-transform: translateZ(0) scaleX(1);
          transform: translateZ(0) scaleX(1);
}

.mk ul.p-header__list > li:last-child {
  margin-right: 0;
}

.mk ul.p-header__list > li > ul {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /* 子要素の幅に依存 */
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
  pointer-events: none;
  opacity: 0;
}

.mk ul.p-header__list > li > ul.is-show {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  pointer-events: auto;
  opacity: 1;
}

.mk ul.p-header__list > li > ul > li {
  border-bottom: solid 1px #d8cec5;
  background-color: #f7f5f1;
}

.mk ul.p-header__list > li > ul > li:last-child {
  border-bottom: none;
}

.mk ul.p-header__list > li > ul > li a {
  font-size: 16px;
  line-height: 1;
  position: relative;
  display: block;
  padding: 18px 60px 18px 20px;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
  text-decoration: none;
  color: #937861;
}
.mk ul.p-header__list > li > ul > li a:hover {
  color: #09523f;
}

.mk ul.p-header__list > li > ul > li a span {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  overflow: hidden;
  width: 24px;
  height: 10px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.mk ul.p-header__list > li > ul > li a span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translate3d(-10px, 0, 0);
          transform: translate3d(-10px, 0, 0);
  background: url(../img/common/ico_arrow_right_black.svg) no-repeat center center/cover;
}

.mk ul.p-header__list > li > ul > li a:hover span::before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media all and (max-width: 1200px) {
  .mk ul.p-header__list > li > ul > li a {
    font-size: 14px;
  }
}
.mk .p-header__contact {
  width: 173px;
  height: 63px;
}
.mk .p-header__contact .c-btn {
  font-size: 16px;
  padding-right: 8px;
  text-align: center;
  background-color: #c45c1b;
}
.mk .p-header__contact .c-btn span {
  width: 14px;
  height: 13px;
}

@media all and (max-width: 1200px) {
  .mk .p-header__contact .c-btn {
    font-size: 14px;
  }

  .mk .p-header__contact .c-btn span {
    right: 10px;
  }
}
@media all and (max-width: 1000px) {
  .mk .p-header__contact {
    display: none;
  }
}
.mk .p-header__btn {
  display: none;
}

@media all and (max-width: 1000px) {
  .mk .p-header__btn {
    display: block;
    width: 38px;
    cursor: pointer;
  }
}
/* nav
------------------------------*/
.mk .p-nav {
  position: fixed;
  z-index: 99999;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: none;
}

.mk .p-nav__inner {
  /* padding: 90px 20px 0px; */
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.mk .p-nav__inner::before {
  position: absolute;
  bottom: -12px;
  left: -10px;
  display: block;
  width: calc(110 / 375 * 100%);
  content: "";
  background: url(../img/common/img_nav_flower01.svg) no-repeat center center/contain;
  aspect-ratio: calc(110 / 124);
}

.mk .p-nav__content {
  overflow: auto;
  width: 100%;
  max-height: 100%;
  padding: 0 20px 30px;
  /* スクロール非表示（Firefox） */
  scrollbar-width: none;
}

.mk .p-nav__content::-webkit-scrollbar {
  /* スクロール非表示（Chrome, Edge, Safari） */
  display: none;
}

.mk .p-nav__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% + 20px * 2);
  height: 60px;
  margin: 0 -20px;
  padding: 0 20px;
  border-bottom: solid 1px #d8cec5;
}

.mk .p-nav__header-logo {
  line-height: 0;
  width: 185px;
  margin: 0 auto 0 0;
}

.mk .p-nav__header-btn {
  display: block;
  width: 38px;
  cursor: pointer;
}

.mk dl.p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.mk dl.p-nav__list:first-of-type {
  margin-top: 20px;
}

.mk dl.p-nav__list dt {
  position: relative;
  display: block;
  width: 100%;
}

.mk dl.p-nav__list dt .toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 6px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translate3d(0, -50%, 0) rotate(0deg);
          transform: translate3d(0, -50%, 0) rotate(0deg);
  background: url(../img/common/ico_caret_bottom_black.svg) no-repeat center center/contain;
}

.mk dl.p-nav__list dt .toggle.is-show {
  -webkit-transform: translate3d(0, -50%, 0) rotate(180deg);
          transform: translate3d(0, -50%, 0) rotate(180deg);
}

.mk dl.p-nav__list dt a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
  color: #885c38;
}
.mk dl.p-nav__list dt a.current {
  color: #09523f;
}

.mk dl.p-nav__list dd {
  display: none;
  margin: 0;
  padding: 0 0 30px;
}

.mk dl.p-nav__list dd ul {
  margin: 0;
  padding: 10px 0 0 18px;
  list-style: none;
}

.mk dl.p-nav__list dd ul li {
  line-height: 1.5;
  margin: 0 0 24px;
}

.mk dl.p-nav__list dd ul li a {
  font-size: 14px;
  text-decoration: underline;
  color: #121212;
}

.mk .p-nav__btn {
  width: 100%;
  max-width: 173px;
  height: 63px;
  margin: 22px auto 0;
  text-align: center;
}

.mk .p-nav__btn .c-btn {
  font-size: 16px;
  background-color: #c45c1b;
}

@media all and (max-width: 360px) {
  .mk .p-nav__btn .c-btn {
    font-size: 16px;
  }
}
/* link
------------------------------*/
.mk .p-link {
  padding: 0 20px 160px;
}

@media all and (max-width: 576px) {
  .mk .p-link {
    padding: 0 20px 80px;
  }
}
.mk ul.p-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 968px;
  margin: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: solid 1px #d8cec5;
  border-left: solid 1px #d8cec5;
}

.mk ul.p-link__list li {
  width: 50%;
  height: 140px;
  border-right: solid 1px #d8cec5;
  border-bottom: solid 1px #d8cec5;
}

@media all and (max-width: 800px) {
  .mk ul.p-link__list li {
    width: 100%;
    height: 100px;
  }
}
.mk ul.p-link__list li a {
  position: relative;
  z-index: 0;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 120px;
  padding-left: 12%;
  color: inherit;
}

@media all and (max-width: 800px) {
  .mk ul.p-link__list li a {
    padding-right: 90px;
    padding-left: 30px;
  }
}
.mk ul.p-link__list li a::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  -webkit-transform: translateZ(0) scaleX(0);
          transform: translateZ(0) scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background-color: #f7f5f1;
}

.mk ul.p-link__list li a:hover::before {
  -webkit-transform: translateZ(0) scaleX(1);
          transform: translateZ(0) scaleX(1);
}

.mk ul.p-link__list li a > span {
  position: absolute;
  top: 50%;
  right: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  border-radius: 100%;
  background-color: #09523f;
}

@media all and (max-width: 800px) {
  .mk ul.p-link__list li a > span {
    right: 30px;
    width: 40px;
    height: 40px;
  }
}
.mk ul.p-link__list li a > span::before {
  display: block;
  width: 9px;
  height: 15px;
  content: "";
  background: url(../img/common/ico_caret_right_white.svg) no-repeat center center/contain;
}

@media all and (max-width: 800px) {
  .mk ul.p-link__list li a > span::before {
    width: 6px;
    height: 10px;
  }
}
.mk ul.p-link__list li a .p-link__list-heading span:nth-of-type(1) {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}

.mk ul.p-link__list li a .p-link__list-heading span:nth-of-type(2) {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.4;
  display: block;
  color: #937861;
}

.mk ul.p-link__list li.p-link__item01 a .p-link__list-icon {
  width: 50px;
  margin-right: 10%;
}

/* .mk ul.p-link__list li.p-link__item01 a .p-link__list-heading {
  width: 173px;
} */
.mk ul.p-link__list li.p-link__item02 a .p-link__list-icon {
  width: 68px;
  margin-right: 6%;
}

/* .mk ul.p-link__list li.p-link__item02 a .p-link__list-heading {
  width: 150px;
} */
.mk ul.p-link__list li.p-link__item03 a .p-link__list-icon {
  width: 48px;
  margin-right: 11%;
}

/* .mk ul.p-link__list li.p-link__item03 a .p-link__list-heading {
  width: 107px;
} */
.mk ul.p-link__list li.p-link__item04 a .p-link__list-icon {
  width: 50px;
  margin-right: 12%;
}

/* .mk ul.p-link__list li.p-link__item04 a .p-link__list-heading {
  width: 105px;
} */
@media all and (max-width: 800px) {
  .mk ul.p-link__list li a .p-link__list-heading span:nth-of-type(1) {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .mk ul.p-link__list li a .p-link__list-heading span:nth-of-type(2) {
    font-size: 12px;
  }

  .mk ul.p-link__list li.p-link__item01 a .p-link__list-icon {
    width: 32px;
    margin-right: 28px;
  }

  /* .mk ul.p-link__list li.p-link__item01 a .p-link__list-heading {
    width: 150px;
  } */
  .mk ul.p-link__list li.p-link__item02 a .p-link__list-icon {
    width: 42px;
    margin-right: 16px;
  }

  /* .mk ul.p-link__list li.p-link__item02 a .p-link__list-heading {
    width: 130px;
  } */
  .mk ul.p-link__list li.p-link__item03 a .p-link__list-icon {
    width: 32px;
    margin-right: 28px;
  }

  /* .mk ul.p-link__list li.p-link__item03 a .p-link__list-heading {
    width: 92px;
  } */
  .mk ul.p-link__list li.p-link__item04 a .p-link__list-icon {
    width: 32px;
    margin-right: 28px;
  }

  /* .mk ul.p-link__list li.p-link__item04 a .p-link__list-heading {
    width: 90px;
  } */
}
/* contact
------------------------------*/
.mk .p-contact-top {
  padding: 140px 20px;
}

@media all and (max-width: 576px) {
  .mk .p-contact-top {
    padding: 60px 0;
  }
}
.mk .p-contact-top__header-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 24px;
  text-align: center;
  letter-spacing: 0.2em;
}

@media all and (max-width: 576px) {
  .mk .p-contact-top__header-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.mk .p-contact-top__header-sub-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1;
  margin: 0 0 60px;
  text-align: center;
  letter-spacing: 0.14em;
  color: #937861;
}

@media all and (max-width: 576px) {
  .mk .p-contact-top__header-sub-heading {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.mk .p-contact-top__header-txt {
  font-size: 16px;
  text-align: center;
}

@media all and (max-width: 360px) {
  .mk .p-contact-top__header-txt br {
    display: none;
  }
}
.mk .p-contact-btm {
  padding: 56px 20px;
  background-color: #f7f5f1;
}

@media all and (max-width: 576px) {
  .mk .p-contact-btm {
    padding: 50px 20px;
  }
}
.mk .p-contact-btm__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 830px;
  margin: 0 auto;
}

@media all and (max-width: 870px) {
  .mk .p-contact-btm__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mk .p-contact-btm__tel {
  max-width: 298px;
}

@media all and (max-width: 870px) {
  .mk .p-contact-btm__tel {
    margin-bottom: 35px;
  }
}
.mk .p-contact-btm__tel a {
  pointer-events: none;
}

@media all and (max-width: 576px) {
  .mk .p-contact-btm__tel a {
    pointer-events: auto;
  }
}
.mk .p-contact-btm__btn {
  width: 100%;
  max-width: 465px;
  height: 110px;
}

@media all and (max-width: 576px) {
  .mk .p-contact-btm__btn {
    max-width: 335px;
    height: 80px;
  }
}
@media all and (max-width: 360px) {
  .mk .p-contact-btm__btn {
    height: 60px;
  }
}
.mk .p-contact-btm__btn .c-btn {
  font-size: 22px;
  padding-left: 84px;
}

@media all and (max-width: 576px) {
  .mk .p-contact-btm__btn .c-btn {
    font-size: 18px;
    padding-left: 50px;
  }
}
@media all and (max-width: 360px) {
  .mk .p-contact-btm__btn .c-btn {
    font-size: 16px;
    padding-left: 30px;
  }
}
.mk .p-contact-btm__btn .c-btn span {
  right: 65px;
}

@media all and (max-width: 576px) {
  .mk .p-contact-btm__btn .c-btn span {
    right: 30px;
  }
}
@media all and (max-width: 360px) {
  .mk .p-contact-btm__btn .c-btn span {
    right: 15px;
  }
}
/* pagetop
------------------------------*/
.mk .p-pagetop {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  position: fixed;
  z-index: 4;
  right: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  padding-top: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #ffffff;
  border-radius: 100%;
  background-color: #09523f;
}

@media all and (max-width: 576px) {
  .mk .p-pagetop {
    font-size: 10px;
    right: 20px;
    bottom: 15px;
    width: 65px;
    height: 65px;
    padding-top: 18px;
    background-color: #032e22;
  }
}
.mk .p-pagetop span {
  position: absolute;
  top: 25%;
  left: 50%;
  overflow: hidden;
  width: 10px;
  height: 22px;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

@media all and (max-width: 576px) {
  .mk .p-pagetop span {
    top: 12%;
  }
}
.mk .p-pagetop span::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translate3d(0, 6px, 0);
          transform: translate3d(0, 6px, 0);
  background: url(../img/common/ico_arrow_top_white.svg) no-repeat center center/contain;
}

.mk .p-pagetop:hover {
  background-color: #032e22;
}

.mk .p-pagetop:hover span::before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.mk .p-contact-fixed {
  display: none;
}

@media all and (max-width: 576px) {
  .mk .p-contact-fixed {
    position: fixed;
    z-index: 3;
    bottom: 20px;
    left: 20px;
    display: block;
    width: 240px;
    height: 60px;
  }

  .mk .p-contact-fixed .c-btn {
    font-weight: 500;
    padding-left: 4px;
    text-align: center;
    background-color: #c45c1b;
  }
  .mk .p-contact-fixed .c-btn span {
    right: 15px;
  }
}
@media all and (max-width: 360px) {
  .mk .p-contact-fixed {
    width: 200px;
  }

  .mk .p-contact-fixed .c-btn {
    font-size: 14px;
    padding-left: 20px;
  }

  .mk .p-contact-fixed .c-btn span {
    right: 10px;
  }
}
.holdings-footer__pagetop {
  display: none !important;
}

@media screen and (max-width: 1850px) {
  .holdings-footer {
    padding-bottom: 100px;
  }
}
/* fixedBnr
------------------------------*/
#fixedBnr {
  display: none;
}

@media screen and (max-width: 640px) {
  #fixedBnr {
    position: fixed;
    z-index: 98;
    bottom: 80px;
    left: 0;
    width: 90%;
    max-width: 304px;
  }

  #fixedBnr .pc {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  #fixedBnr a {
    display: block;
  }

  #fixedBnr a img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 641px) {
  #fixedBnr {
    position: fixed;
    z-index: 98;
    bottom: 15px;
    left: 11px;
    width: 286px;
  }

  #fixedBnr a {
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }

  #fixedBnr a img {
    width: 100%;
    height: auto;
  }

  #fixedBnr a:hover {
    opacity: 0.9;
  }

  #fixedBnr .sp {
    display: none;
  }
}
#fixedBnr {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.show_check #fixedBnr {
  visibility: hidden;
  opacity: 0;
}

/* modal
------------------------------*/
.c-modal {
  position: fixed;
  z-index: 9999;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: none;
}

.c-modal__inner {
  /* background-color: #fff; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* align-items: flex-start; */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 120px 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

@media all and (max-width: 576px) {
  .c-modal__inner {
    padding: 120px 20px 20px;
  }
}
.c-modal__content {
  position: relative;
  /* padding: 20px; */
  /* 親要素の高さを子要素に合わせる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* background-color: #fff; */
  width: 100%;
  max-width: 640px;
  max-height: 100%;
}

.c-modal__content__inner {
  overflow: auto;
  width: 100%;
  /* スクロール非表示（Firefox） */
  scrollbar-width: none;
}

.c-modal__content__inner::-webkit-scrollbar {
  /* スクロール非表示（Chrome, Edge, Safari） */
  display: none;
}

.c-modal__close {
  /* background: url(../img/common/close.svg) no-repeat center center / 100% auto; */
  /* position: fixed; */
  position: absolute;
  /* top: 30px; */
  /* right: 30px; */
  top: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.c-modal__close::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transform: rotate(45deg) translate3d(0, -50%, 0);
          transform: rotate(45deg) translate3d(0, -50%, 0);
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #ffffff;
}

.c-modal__close::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transform: rotate(-45deg) translate3d(0, -50%, 0);
          transform: rotate(-45deg) translate3d(0, -50%, 0);
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #ffffff;
}

@media all and (max-width: 576px) {
  .c-modal__close {
    top: -30px;
    width: 30px;
    height: 30px;
  }
}
.c-modal__close:hover {
  opacity: 0.4;
}

.c-modal__open {
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.c-embed {
  width: 100%;
  aspect-ratio: 16/9;
}

.c-embed iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.l-container {
  max-width: calc(976px + 20px * 2);
  margin: 0 auto;
  padding: 0 20px;
}

.l-container--wide {
  position: relative;
  max-width: calc(1365px + 20px * 2);
  margin: 0 auto;
  padding: 0 20px;
}

.mk .c-btn span {
  overflow: visible;
  width: 20px;
  height: 19px;
}
.mk .c-btn span:before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  background: url(../img/common/ico_arrow01.svg) no-repeat center center/contain;
}

.mk .c-btn:hover span:before {
  -webkit-transform: translate3d(10px, 0, 0);
          transform: translate3d(10px, 0, 0);
}

/* news
------------------------------*/
.p-news .c-top-header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11px;
}
.p-news .c-top-header--main {
  font-size: 30px;
  font-weight: 500;
  color: #46413d;
}
@media (max-width: 576px) {
  .p-news .c-top-header--main {
    font-size: 26px;
  }
}

ul.p-news__contents-list li + li {
  margin-top: 30px;
}

/* news
------------------------------*/
.mk .p-link {
  padding: 0 20px;
}

.p-link__inner {
  padding: 96px 0 98px;
}
@media (max-width: 576px) {
  .p-link__inner {
    padding: 60px 0 70px;
  }
}
.p-link__inner a {
  text-decoration: none;
}

/* contact
------------------------------*/
.p-contact-top {
  background-color: #f7f5f0;
}

.mk .p-contact-btm__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: none;
}

.p-contact-btm__tel {
  margin-top: 46px;
}
@media (max-width: 576px) {
  .p-contact-btm__tel {
    margin-top: 32px;
  }
}
.p-contact-btm__tel a {
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  line-height: calc(84 / 60);
  text-align: center;
  text-decoration: none;
  color: #171717;
}
@media (max-width: 576px) {
  .p-contact-btm__tel a {
    font-size: 34px;
  }
}
.p-contact-btm__tel .p-contact-btm__tel-desc {
  font-size: 18px;
  margin-top: 7px;
}

.mk .p-contact-top__header-txt {
  font-size: 18px;
  margin: 43px 0 0;
}
@media (max-width: 576px) {
  .mk .p-contact-top__header-txt {
    font-size: 16px;
  }
}

.p-contact-top__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 70px;
  gap: 70px;
}
@media (max-width: 576px) {
  .p-contact-top__link {
    margin-top: 50px;
    gap: 30px;
  }
}

.p-contact-top__link-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% / 2 - 70px / 2);
  text-decoration: none;
}
@media (max-width: 576px) {
  .p-contact-top__link-item {
    width: 100%;
  }
}
.p-contact-top__link-item img {
  display: block;
  border-radius: 8px 8px 0 0;
}
.p-contact-top__link-item .c-btn-wrapper {
  width: 100%;
  height: 89px;
}
@media (max-width: 576px) {
  .p-contact-top__link-item .c-btn-wrapper {
    width: 100%;
    max-width: none;
    height: 63px;
  }
}
.p-contact-top__link-item .c-btn {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 576px) {
  .p-contact-top__link-item .c-btn {
    font-size: 16px;
  }
}
.p-contact-top__link-item:hover .c-btn {
  background-color: #032e22;
}
.p-contact-top__link-item:hover .c-btn span:before {
  -webkit-transform: translate3d(10px, 0, 0);
          transform: translate3d(10px, 0, 0);
}

/* recruit/company
------------------------------*/
.p-info {
  padding: 104px 0 120px;
}
@media (max-width: 576px) {
  .p-info {
    padding: 50px 0 70px;
  }
}

.p-info-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 85px;
  gap: 82px;
}
@media (max-width: 576px) {
  .p-info-contents {
    gap: 30px;
  }
}

.p-info-contents__item {
  width: calc(100% / 2 - 82px / 2);
}
@media (max-width: 576px) {
  .p-info-contents__item {
    width: 100%;
  }
}
.p-info-contents__item img {
  -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, box-shadow 0.3s;
  transition: border 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  border: 1px solid #f4f4f4;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.p-info-contents__item:hover img {
  border: 1px solid #09523f;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}

.c-img-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 800px) {
  .c-img-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 800px) {
  .c-img-flex--reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
.c-img-flex--reverse .c-img-flex__content-inner {
  margin-left: auto;
  padding: 0 20px;
}
.c-img-flex--reverse .c-img-flex__content {
  width: calc(670 / 1365 * 100%);
}
@media (max-width: 800px) {
  .c-img-flex--reverse .c-img-flex__content {
    width: 100%;
  }
}
.c-img-flex--reverse .c-img-flex__img {
  width: calc((1365 - 670) / 1365 * 100%);
}
@media (max-width: 800px) {
  .c-img-flex--reverse .c-img-flex__img {
    width: 100%;
  }
}

.c-img-flex__content {
  width: calc(((1365 - 670) / 1365) * 100%);
}
@media (max-width: 800px) {
  .c-img-flex__content {
    width: 100%;
  }
}

.c-img-flex__img {
  width: calc(670 / 1365 * 100%);
}
@media (max-width: 800px) {
  .c-img-flex__img {
    width: 100%;
  }
}

.c-img-flex__content-inner {
  max-width: 501px;
  padding: 0 0 0 80px;
}
@media (max-width: 800px) {
  .c-img-flex__content-inner {
    max-width: 100%;
    margin: 40px 0;
    padding: 0 20px;
  }
}

.c-img-flex__content-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: calc(42 / 22);
  margin: 0;
}
@media (max-width: 576px) {
  .c-img-flex__content-desc {
    font-size: 16px;
  }
}
.c-img-flex__content-desc span {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}

.c-img-flex__content-note {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  display: block;
  padding-left: 14px;
  text-indent: -14px;
}
@media (max-width: 576px) {
  .c-img-flex__content-note {
    font-size: 12px;
    padding-left: 12px;
    text-indent: -12px;
  }
}

.c-text--24 {
  font-size: 24px;
}
@media (max-width: 800px) {
  .c-text--24 {
    font-size: 16px;
  }
}

.c-flower {
  position: absolute;
  z-index: -1;
  opacity: 0.3 !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.c-text-note--14 {
  font-size: 14px;
  line-height: 2;
  padding-left: 14px;
  text-indent: -14px;
}
@media (max-width: 576px) {
  .c-text-note--14 {
    font-size: 12px;
    padding-left: 12px;
    text-indent: -12px;
  }
}

.c-text-note--16 {
  font-size: 16px;
  line-height: 2;
  padding-left: 16px;
  text-indent: -16px;
}
@media (max-width: 576px) {
  .c-text-note--16 {
    font-size: 12px;
    padding-left: 12px;
    text-indent: -12px;
  }
}

.c-top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}
@media (max-width: 576px) {
  .c-top-header {
    gap: 10px;
  }
}
.c-top-header + * {
  margin-top: 72px;
}
@media (max-width: 800px) {
  .c-top-header + * {
    margin-top: 40px;
  }
}

.c-top-header--main {
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: calc(49 / 34);
  margin: 0;
  letter-spacing: 0.15em;
  color: #09523f;
}
@media (max-width: 576px) {
  .c-top-header--main {
    font-size: 26px;
  }
}

.c-top-header--en {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: calc(22 / 16);
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8cec5;
}
@media (max-width: 576px) {
  .c-top-header--en {
    font-size: 14px;
  }
}