@charset "UTF-8";

:root {
  --c-green: #479F89;
  --c-black: #30363B;
  --c-red: #E5001E;
  --c-lgry: #F8F8F8;
  --grd: linear-gradient(180deg, rgba(183, 225, 200, 1) 0%, rgba(197, 229, 233, 1) 100%);
}

/* ---------------------
base 
--------------------- */
html,
:host {
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: "Zen Kaku Gothic New", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding-top: 62px;
  line-height: inherit;
}

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

/* ---------------------
layout 
--------------------- */
.bg-white {
  background: #fff;
}

.bg-green {
  background: var(--c-green);
}

.bg-lgly {
  background: var(--c-lgry);
}

.wrap-common {
  padding-left: 8vw;
  padding-right: 8vw;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .wrap-common {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:text-left {
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .wrap-common {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .xl\:static {
    position: static;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:block {
    display: block;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:items-center {
    align-items: center;
  }

}

/* ---------------------
font-style 
--------------------- */
.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.not-italic {
  font-style: normal;
}

.en {
  font-family: 'Noto Serif';
}

.red {
  color: var(--c-red);
}

/* ---------------------
link-style 
--------------------- */
a,
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

a[href^="tel:"],
a[href^="mailto:"] {
  text-decoration: none;
  color: var(--c-black);
}

/* ---------------------
loading-style 
--------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

#loading span {
  width: 60px;
  height: 60px;
  border: 6px solid var(--c-green);
  border-top: 6px solid #eee;
  border-radius: 50%;
}

/* ---------------------
header-style 
--------------------- */
/* header logo */
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 12px 5%;
  width: 100%;
  height: 62px;
}

.header .logo {
  width: 65%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(10px, 2vw, 12px);
  line-height: 150%;
  position: relative;
  z-index: 99;
}

.header .logo .wrap-img {
  display: block;
  width: 115px;
}

.header .logo img {
  vertical-align: middle;
}

.header .logo-title {
  min-height: 0px;
  font-weight: 400;
  letter-spacing: .1em;
  padding-top: 7px;
}

/* header SNS ICON */
.header .sns-grid.header-top {
  position: absolute;
  top: 17px;
  right: 5%;
  z-index: 97;
}

.header .sns-grid {
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
}

.header .sns-grid img {
  width: 21px;
}

/* gnav */
.gnav-block {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  height: 0;
  margin: 0;
  padding-top: 65px;
  background: #F1F5ED;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.open .gnav-block {
  height: 100vh;
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.gnav-close {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  position: fixed;
  width: 37px;
  height: 37px;
  top: 12px;
  right: 5%;
  z-index: 99;
}

.open .gnav-close {
  display: block;
}

.gnav-close .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-green);
}

.gnav-close .top {
  transform: rotate(45deg) translate(6px, -4px);
}

.gnav-close .btm {
  transform: rotate(-45deg) translate(5px, 4px);
}

.inner-scroll {
  height: 100%;
  overflow-y: scroll;
  padding: 0 10% 70px;
}

.gnav-item {
  position: relative;
}

.gnav-item-link,
.pull-list-item a,
.gnav_btm-link {
  font-weight: 500;
  text-decoration: none;
  color: var(--c-black);
}

.gnav-item-link {
  display: block;
  width: 100%;
  padding: 20px 0;
  color: var(--c-green);
  border-bottom: solid 1px #D5D5D5;
}

.pull-toggle {
  position: absolute;
  top: 15px;
  right: 0;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  background: none;
  border: solid 1px var(--c-green);
  border-radius: 50%;
}

.pull-grid {
  opacity: 0;
  visibility: hidden;
}

.pull-list {
  padding: 10px 0;
}

.pull-list .pull-list-item {
  width: 100%;
}

.gnav-block .sns-grid {
  margin-bottom: 30px;
}

/* スマホ時表示CV */
.sp-cv-grid {
  gap: 9px;
  margin: 50px 0 0;
}

.sp-cv-grid .sp-cv-item {
  width: 100%;
}

.sp-cv-grid .sp-cv-item .cv-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--c-green);
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  padding: 30px 10px;
}

/* マイナビバナー */
.gnav_cv-mynavi {
  margin-top: 50px;
}

/* プライマリーリンク */
.gnav_btm-grid {
  gap: 30px;
  margin: 36px 0 64px;
}

.gnav_btm-grid .gnav_btm-item {
  width: 100%;
}

.gnav_btm-link {
  color: #757575;
}

a.clone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

a.clone::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-image: url(../img/common/ico-clone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.copyright {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: .05em;
}


@media (min-width: 768px) {}



/* ---------------------
cv-sidefix-style 
--------------------- */
.cv-sidefix {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 97;
  width: 100%;
  height: 73px;
}

.cv-sidefix .bg-green {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 0 0 5%;
}

/* entry */
.cv-sidefix-entry {
  flex-basis: 20%;
  max-width: 90px;
  line-height: .8;
}

.side_cv-mynavi {
  flex-basis: 40%;
}

.cv-sidefix-entry .cv-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.cv-sidefix-entry .cv-btn .en {
  font-style: italic;
  font-size: clamp(18px, 6.5vw, 26px);
}

.cv-sidefix-entry .cv-btn .jp {
  font-size: clamp(12px, 3vw, 14px);
}

/* back to top */
.btn-totop {
  flex-basis: 20%;
  background: none;
  border: none;
  color: #fff;
  font-size: 10px;
  letter-spacing: .1em;
  cursor: pointer;
}

.btn-totop::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 9px;
  background-image: url(../img/common/ico-arrow-top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(100%) sepia(0%) saturate(7493%) hue-rotate(329deg) brightness(113%) contrast(101%);
}

/* ハンバーガーボタン */
#menu-toggle {
  color: var(--c-green);
  aspect-ratio: 1 / 1;
  flex-basis: 15%;
  height: 46px;
  background: none;
  border: none;
  border-left: solid 1px #fff;
}

#menu-toggle .bar {
  width: 22px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

#menu-toggle .bar-top,
#menu-toggle .bar-mid {
  margin-bottom: 8px;
}

/* ---------------------
footer-style 
--------------------- */
.footer {
  padding-bottom: 73px;
  background: #F1F5ED;
}

.cv-footer {
  background: #F1F5ED;
  padding-top: 60px;
  position: relative;
}



.cv-footer::before {
  content: "";
  width: 59px;
  height: 73px;
  background-image: url(../img/top/sakura-img03.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -35px;
  left: 5%;
}

.cv-footer-grid {
  gap: 20px;
  margin-bottom: 60px;
}

.cv-footer-item {
  width: 100%;
}

.cv-footer__faq {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
  height: 100%;
}

.cv-footer__faq .txt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.cv-footer__faq .txt .en {
  font-size: 40px;
  font-style: italic;
  font-weight: 200;
}

.cv-footer__faq .btn.en {
  font-style: normal;
  font-size: 14px;
  background: #fff;
}

.cv-footer__faq .btn.en {
  display: none;
  text-decoration: none;
  color: var(--c-black);
  background: #fff;
  border-radius: 100px;
  padding: 11px 70px;
  margin-top: 25px;
  overflow: hidden;
  position: relative;
}

.cv-footer__faq .btn.en strong {
  position: relative;
  z-index: 1;
}

.cv-footer__faq .img {
  height: 100%;
  overflow: hidden;
}

.cv-footer__faq .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-footer__faq:hover .btn.en::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cv-footer__faq .btn.en::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 17px;
  height: 7px;
  margin: auto 0;
  background-image: url(../img/common/ico-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(56%) sepia(27%) saturate(687%) hue-rotate(115deg) brightness(93%) contrast(91%);
}

.bnr-wh {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  text-decoration: none;
  color: var(--c-black);
  background: #fff;
  padding: 20px 5px;
}

.bnr-wh::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.bnr-wh .txt-main {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 500;
}

.cv-footer__intern::before {
  width: 45px;
  height: 43px;
  background-image: url(../img/common/f-ico02.svg);
}

.cv-footer__volunteer::before {
  width: 46px;
  height: 49px;
  background-image: url(../img/common/f-ico01.svg);
}

.cv-footer__entry {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1.5;
  text-decoration: none;
  color: #fff;
  background: var(--c-green);
  padding: 10px 30% 20px 10%;
  position: relative;
}

.cv-footer__entry .txt-main,
.cv-footer__entry .txt-sub {
  width: 100%;
}

.cv-footer__entry .txt-main {
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 200;
  font-style: italic;
}

.cv-footer__entry::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: solid 1px #000;
  border-radius: 50%;
  background-image: url(../img/common/ico-arrow-top.svg);
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(100%) sepia(24%) saturate(2%) hue-rotate(108deg) brightness(110%) contrast(101%);
  transform: rotate(90deg);
}

.footer .copyright {
  background: #fff;
  margin: 0;
  padding: 20px 10%;
}

@media (min-width: 768px) {

  .cv-footer__faq .btn.en {
    display: inline-block;
  }

  .bnr-wh {
    align-items: center;
    padding: 25px 80px 25px 25px;
    gap: 35px;
    position: relative;
  }

  .bnr-wh::before {
    width: 46px;
  }

  .bnr-wh .txt-main {
    text-align: left;
    width: calc(100% - 46px - 35px);
  }

  .bnr-wh::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto 0;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: solid 1px #000;
    border-radius: 50%;
    background-image: url(../img/common/ico-arrow-top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
    filter: invert(56%) sepia(27%) saturate(687%) hue-rotate(115deg) brightness(93%) contrast(91%);
    transform: rotate(90deg);
  }

  .cv-footer__entry {
    width: calc(100% - 10vw);
    margin: 0 auto;
    padding: 40px 30% 46px 10%;
    align-items: baseline;
    gap: 28px;
  }

  .cv-footer__entry .txt-main,
  .cv-footer__entry .txt-sub {
    width: auto;
  }
}

/* ---------------------
3カラムレイアウト
--------------------- */
@media (min-width: 1180px) {
  body {
    padding-top: 0;
  }

  #menu-toggle{
    display: none;
  }

  .header {
    width: 180px;
    height: 100%;
    padding: 0;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    height: 100%;
    padding-bottom: 15%;
  }

  .header .logo {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 5%;
  }

  .header .logo .wrap-img {
    width: 156px;
  }

  .header .logo-title {
    padding: 0;
    text-align: center;
  }

  .header .sns-grid.header-top {
    display: none;
  }

  .main,
  .footer {
    width: calc(100% - 180px - 60px);
    margin-left: 180px;
  }

  .gnav-block {
    position: static;
    height: calc(100% - 250px);
    padding: 0;
    transform: none;
    visibility: visible;
    opacity: 1;
    background: none;
  }

  .inner-scroll {
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
  }

  .gnav {
    width: 100%;
    margin: 0;
  }

  .gnav-close{
    display: none;
  }

  .gnav-block .sns-grid {
    display: none;
  }

  .gnav-item-link {
    font-size: 12px;
    padding: 10px 15%;
    color: var(--c-black);
    border-bottom: none;
  }

  .gnav-item-link:hover {
    color: var(--c-green);
  }

  .pull-toggle {
    opacity: 0;
    visibility: hidden;
  }

  .pull-grid {
    width: calc(100vw - 240px - 15px);
    height: 100vh;
    position: fixed;
    left: 180px;
    top: 0;
    margin-left: 0;
    padding: 0 4vw;
    background: #f1f5ed;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    transition: all 0.3s ease;
  }

  .gnav-item:hover .pull-grid {
    opacity: 1;
    visibility: visible;
  }

  .pull-img {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 0.671;
  }

  .pull-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .pull-list-item a:hover {
    color: var(--c-green);
  }

  .pull-list-item a:hover .pull-img img {
    transform: scale(1.05);
  }

  .pull-title {
    display: block;
    width: 100%;
    line-height: 200%;
    color: var(--c-green);
    margin-bottom: 65px;
  }

  .pull-title .en,
  .pull-title .jp {
    display: block;
    text-align: center;
  }

  .pull-title .en {
    font-size: 34px;
    font-style: italic;
    font-weight: 200;
    margin: 0;
  }

  .pull-title .jp {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
  }

  .pull-list {
    width: 100%;
    justify-content: center;
    gap: 51px 17px;
  }

  .pull-list .pull-list-item {
    width: calc(16.666% - 17px);
  }

  .pull-subtitle {
    font-size: 12px;
  }


  .gnav_cv-mynavi {
    padding: 0 15%;
    margin-top: 0;
  }

  .sp-cv-grid {
    display: none;
  }

  .gnav_btm-grid {
    gap: 12px;
    padding: 0 15%;
    margin: 0;
  }

  .gnav_btm-link {
    font-size: 10px;
  }

  .header .copyright {
    display: none;
  }

  .cv-sidefix {
    position: fixed;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    z-index: 97;
    width: 60px;
    height: 100%;
  }

  .cv-sidefix .bg-green {
    height: 75%;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .cv-sidefix-entry {
    line-height: unset;
  }

  .cv-sidefix-entry .cv-btn {
    width: 100%;
    justify-content: center;
  }

  .cv-sidefix-entry .cv-btn:hover {
    transform: scale(1.1);
  }

  .cv-sidefix-entry .cv-btn .en {
    writing-mode: tb;
    letter-spacing: 0.15em;
    font-size: 18px;
    border-bottom: solid 1px #fff;
    padding: 30px 0 25px;
    margin-bottom: 10px;
  }

  .cv-sidefix-entry .cv-btn .jp {
    writing-mode: tb;
    font-size: 12px;
  }

  .cv-sidefix-entry .cv-btn .jp::before {
    content: "●";
    font-size: 9px;
    margin-bottom: 6px;

  }

  .btn-totop {
    width: 100%;
    padding: 0;
  }

  .btn-totop .en {
    writing-mode: tb;
  }

  .btn-totop::before {
    transition: all 0.5s ease;
  }

  .btn-totop:hover::before {
    transform: translateY(-5px);
  }

  .cv-sidefix .sns-grid {
    display: flex;
    height: 25%;
    background: #F2F8F7;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .side_cv-mynavi {
    display: none;
  }

  .cv-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-bottom: 20px;
  }

  .cv-footer-item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
  }

  .cv-footer-item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }

  .cv-footer-item:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .bnr-wh {
    height: 100%;
  }

  .cv-footer__entry {
    width: calc(100% - 14vw);
    margin-bottom: 60px;
  }


  .footer {
    padding-bottom: 0;
  }

}

/* ------------------------------- 
共通パーツ
------------------------------- */
/* 下層ページタイトル */
.page-title {
  line-height: 200%;
  background-color: #F1F5ED;
  position: relative;
  padding-top: 40px;
  padding-bottom: 10px;
}

.page-title>.wrap-common {
  position: relative;
  z-index: 1;
}

.page-title .en {
  display: block;
  color: var(--c-green);
  font-size: clamp(26px, 5vw, 60px);
  font-style: italic;
  font-weight: 200;
  margin: 0;
}

.page-title .jp {
  display: block;
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 400;
  letter-spacing: .1em;
  margin: 0;
}

.page-title .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-title .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-title {
    line-height: 1.5;
  }
}

@media (min-width: 1280px) {
  .page-title {
    padding-top: 76px;
    padding-bottom: 15px;
  }

  .page-title .jp {
    margin-bottom: 40px;
  }
}

/* セクションタイトル */
.sec-title {
  line-height: 200%;
}

.sec-title .en {
  font-size: clamp(40px, 9vw, 68px);
  font-style: italic;
  font-weight: 200;
  margin: 0;
}

.sec-title .jp {
  color: var(--c-green);
  font-size: clamp(16px, 5vw, 16px);
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .sec-title {
    line-height: 1.5;
  }
}

/* h3タイトル */
.title-h3 {
  padding: 85px 0 44px;
}

.title-h3 .en,
.title-h3 .jp {
  display: block;
  margin: 0;
  text-align: center;
}

.title-h3 .en {
  font-size: 16px;
  font-style: italic;
  font-weight: 200;
  color: var(--c-green);
}

.title-h3 .jp {
  font-size: 30px;
  font-weight: 400;
}

/* h4タイトル */
.title-h4 {
  color: var(--c-green);
  font-size: clamp(16px, 5vw, 20px);
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px;
  padding-bottom: 20px;
  background: url(../img/common/h4title-line.svg) no-repeat center bottom;
}

/* バナースタイル */
.bnr-grid {
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bnr-item {
  width: 100%;
  aspect-ratio: 1 / 0.458;
}

.bnr-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-size: clamp(16px, 5vw, 18px);
  font-weight: 500;
  letter-spacing: .1em;
  position: relative;
}

.bnr-link .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.bnr-link .img {
  height: 100%;
  display: block;
  overflow: hidden;
}

.bnr-link .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.bnr-link:hover .img img {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .bnr-grid {
    gap: 28px;
  }
}


/* aboutus nav*/
.block-pagelink {
  margin: 136px 0;
}

.block-pagelink .bnr-grid {
  gap: 20px;
}

.block-pagelink .bnr-item {
  width: 100%;
}

.block-pagelink .bnr-item .bnr-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 95, 85, 0.7);
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .block-pagelink .bnr-grid {
    gap: 20px;
  }

  .block-pagelink .bnr-item {
    width: calc(33.333% - 13.332px);
  }
}

@media (min-width: 1280px) {
  .block-pagelink .bnr-grid {
    gap: 78px;
  }

  .block-pagelink .bnr-item {
    width: calc(33.333% - 52px);
  }
}


/* ボタン */
.btn-green {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--c-green);
  border-radius: 100px;
  padding: 11px 70px;
  overflow: hidden;
  position: relative;
}

.btn-green span {
  position: relative;
  z-index: 1;
}

.btn-green::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-black);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.btn-green:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-green.ico-more::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 11px;
  height: 11px;
  margin: auto 0;
  background-image: url(../img/common/ico-list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(86deg) brightness(104%) contrast(101%);
}

/* お知らせ一覧 */
.news-grid {
  gap: 40px 5%;
  list-style: none;
  padding: 0;
  margin: 0 0 59px;
}

.news-grid-item {
  width: 100%;
}

.news-link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-decoration: none;
  color: var(--c-black);
}

.news-link .data {
  flex-basis: 25%;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  padding-right: 16px;
  background-image: radial-gradient(circle, #bbbbbb 1px, transparent 1px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 2px 8px;
}

.news-link .data::before {
  content: "Post";
  font-size: 12px;
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 5px;
  border-radius: 3px;
  background: #F1F5ED;
  color: var(--c-green);
}

.news-link .data span:nth-child(1) {
  display: block;
  font-size: 14px;
}

.news-link .data span:nth-child(2) {
  font-size: 22px;
}

.news-link .title {
  font-weight: 500;
  flex-basis: calc(100% - 25% - 16px);
  margin: 0;
}

@media (min-width: 768px) {
  .news-link .data {
    flex-basis: 92px;
  }

  .news-link .title {
    flex-basis: calc(100% - 92px - 16px);
  }
}

@media (min-width: 1280px) {

  .news-grid-item {
    width: calc(33.333% - 3.35%);
  }

  .news-link:hover {
    background: #F1F5ED;
  }
}


/* スタッフ */
.sec-staff>.wrap-common {
  position: relative;
}

.sec-staff .sec-title {
  text-align: center;
  margin-bottom: 38px;
}

.sec-staff .btn-green {
  margin-top: 50px;
}

.staff-link {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.staff-link::before {
  content: "View more";
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: solid 1px #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Noto Serif';
}

.staff-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(66, 95, 85, 0.6);
}

.staff-link::before,
.staff-link::after {
  transition: all 0.3s ease;
  opacity: 0;
}

.staff-link:hover::before,
.staff-link:hover::after {
  opacity: 1;
}

.staff-link .num,
.staff-link .info {
  position: absolute;
}

.staff-link .num {
  top: 20px;
  left: 20px;
  font-style: italic;
  font-weight: 200;
  font-size: 40px;
  line-height: 1;
  color: #B36D92;
  mix-blend-mode: exclusion;
}

.staff-link .info {
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 30px 20px 15px;
  margin: 0;
}

.staff-link .info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #425F55;
  background: linear-gradient(0deg, rgba(66, 95, 85, 1) 0%, rgba(66, 95, 85, 0) 100%);
  mix-blend-mode: multiply;
}

.staff-link .info span {
  display: block;
  position: relative;
  z-index: 1;
}


.staff-link .img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.287;
}

.staff-link .img img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--c-green);
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -24px;
  /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}

/* 次ページボタンのスタイル */
.swiper-button-next {
  background-image: url(../img/common/ico-tri.svg);
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  background-image: url(../img/common/ico-tri.svg);
  transform: scale(-1, 1);
}

@media (min-width: 1280px) {
  .sec-staff .sec-title {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 17px;
  }

  .block-navigation {
    width: 120px;
    position: absolute;
    top: 63px;
    right: 7vw;
  }
}

/* ---------------------
breadcrumbs-style 
--------------------- */
.breadcrumbs {
  margin: 0;
  padding: 0;
  text-align: right;
}

.breadcrumbs .breadcrumbs-inner {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  justify-content: flex-end;
  gap: 0 .6rem;
}

.breadcrumbs .breadcrumbs-inner .item {
  font-size: 10px;
  font-weight: 500;
  line-height: 32px;
  text-align: right;
}

.breadcrumbs .breadcrumbs-inner .item a {
  color: var(--c-black);
  text-decoration: none;
}

.breadcrumbs .breadcrumbs-inner .item a:hover {
  color: var(--c-green);
}

.breadcrumbs .breadcrumbs-inner .item:after {
  content: "/";
  display: inline-block;
  margin-left: .6rem;
  color: var(--c-black);
}

.breadcrumbs .breadcrumbs-inner .item:nth-last-child(1):after {
  display: none;
}

@media (min-width: 1280px) {

  .breadcrumbs .breadcrumbs-inner .item {
    font-size: 12px;
  }
}


/* ---------------------
pager-style 
--------------------- */
.pager {
  list-style: none;
  padding: 0;
  margin: 2rem auto 3rem;
  justify-content: center;
  gap: 5px;
}

.pager .pager-item {
  aspect-ratio: 1/1;
  min-width: 46px;
  position: relative;
}

.pager .pager-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  margin: auto 0;
  display: block;
  width: 5px;
  height: 1px;
  background: var(--c-black);
}

.pager .pager-item:nth-last-child(1):after {
  display: none;
}

.pager .pager-item .link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 45px;
  text-align: center;
  color: var(--c-black);
  font-family: 'Noto Serif';
}

.pager .pager-item.active .link,
.pager .pager-item .link:hover {
  color: var(--c-green);
}

@media (min-width: 1024px) {
  .pager {
    margin: 4rem auto 6rem;
  }
}