@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kameron:wght@400..700&display=swap"); /*--------------------------------

基本設定

---------------------------------*/
/* フォント */
@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Itim&family=Zen+Kaku+Gothic+New:wght@300&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/*===================================
 * カラー
===================================*/
/* 全体設定*/
body {
  box-sizing: border-box;
  overflow-x: hidden !important;
  background: #FAF3F3 !important;
  background-image: unset;
  color: #4A4A4A !important;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem !important;
  font-family: "Kameron", serif !important;
  font-optical-sizing: auto;
  letter-spacing: 0.08ex;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    font-size: 0.8rem;
  }
}

a {
  color: unset !important;
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-style: none;
  vertical-align: bottom;
}

ul,
li {
  list-style: none;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

._kb-link {
  color: #1967d2 !important;
  font-family: "Kameron", serif !important;
  font-optical-sizing: auto;
  text-decoration: underline !important;
}

/*--------------------------------

共通パーツ

---------------------------------*/
.kb-site-inner {
  width: 100%;
  max-width: calc(100vw - 160px);
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .kb-site-inner {
    max-width: unset;
    padding: 0 10px;
  }
}

.kb-front-section {
  z-index: 1;
  position: relative;
  padding: 160px 0;
  background: #FAF3F3;
}
@media screen and (max-width: 768px) {
  .kb-front-section {
    padding: 60px 0;
  }
}
.kb-front-section:last-child {
  padding: 160px 0 240px;
}
@media screen and (max-width: 768px) {
  .kb-front-section:last-child {
    padding: 60px 0 120px;
  }
}

.kb-site-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1px;
  border-bottom: 1px solid #4A4A4A;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .kb-site-title {
    font-size: 1.4rem;
  }
}
.kb-site-title-wrapper {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .kb-site-title-wrapper {
    width: 100%;
  }
}
.kb-site-title__sub {
  font-size: 1rem;
}
.kb-site-title__text {
  padding: 32px 0;
  font-size: 1.1rem;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  .kb-site-title__text {
    padding: 16px 0;
    font-size: 1rem;
  }
}
.kb-site-title__text._pb-16 {
  padding-bottom: 16px;
}

.kb-site-annotion {
  padding-left: 0 !important;
}
.kb-site-annotion-item {
  display: block;
  position: relative;
  padding-left: 1.5em;
  font-size: 0.9rem;
  line-height: 1.6rem;
  opacity: 0.6;
}
.kb-site-annotion-item span {
  position: absolute;
  top: 0;
  left: 0;
}

.kb-btn-white {
  display: block;
  position: relative;
  width: 300px;
  margin-top: 32px;
  padding: 16px 20px;
  border: 2px solid #765D11;
  border-radius: 50px;
  background: #fff;
  color: #765D11 !important;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kb-btn-white {
    width: 80%;
    margin: 32px auto 0;
    padding: 14px 16px;
    font-size: 1.2rem;
  }
}
.kb-btn-white::after {
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 90%;
  width: 60px;
  height: 8px;
  transform: skew(45deg);
  border-bottom: 2px solid #765D11;
  content: "";
  transition: 0.4s;
}
.kb-btn-white:hover::after {
  right: -40px;
  width: 80px;
  border-bottom: 2px solid #765D11;
}

.kb-link-container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
}
.kb-link-container a {
  position: relative;
  padding-right: 10px;
  color: #000;
  font-weight: 500;
  font-family: "Kameron", serif !important;
  font-optical-sizing: auto;
  text-decoration: underline;
}
.kb-link-container a::after {
  position: absolute;
  top: -2px;
  right: -6px;
  content: " >";
}
.kb-link-container a:hover {
  opacity: 0.6;
}

.kb-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 44px;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .kb-button-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
}
.kb-button-wrapper a img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  transition: opacity 0.3s ease;
}
.kb-button-wrapper a img:hover {
  opacity: 0.8;
}

/*--------------------------------

サイドバー

---------------------------------*/
.kb-sidebar {
  z-index: 10;
  position: fixed;
  right: 0;
  bottom: 57%;
  transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .kb-sidebar {
    right: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .kb-sidebar-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: 0 !important;
  }
}
.kb-sidebar-item {
  width: 100%;
  height: auto;
  line-height: 0.8rem;
}
@media screen and (max-width: 768px) {
  .kb-sidebar-item {
    width: 50%;
  }
}
.kb-sidebar-btn, .kb-sidebar-btn--bottom, .kb-sidebar-btn--top {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-height: 160px;
  padding: 32px 0;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.16);
  color: #fff !important;
  font-weight: bold;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .kb-sidebar-btn, .kb-sidebar-btn--bottom, .kb-sidebar-btn--top {
    flex-direction: row-reverse;
    width: 100%;
    height: 48px;
    min-height: auto;
    padding: 0 6px;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.9rem;
    writing-mode: horizontal-tb;
  }
}
.kb-sidebar-btn--top {
  background-color: #eea8ae;
}
.kb-sidebar-btn--bottom {
  background-color: #21932b;
}

/*--------------------------------
ヘッダー・グローバルナビ
---------------------------------*/
/*　PC(851〜)　*/
.kb-header {
  z-index: 5;
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #FAF3F3;
}
@media screen and (max-width: 920px) {
  .kb-header {
    height: 66px;
  }
}

.header-gnav__pc {
  display: block;
}
@media screen and (max-width: 920px) {
  .header-gnav__pc {
    display: none;
  }
}
.header-gnav__sp {
  display: none;
}
@media screen and (max-width: 920px) {
  .header-gnav__sp {
    display: block;
  }
}

.gnav-logo {
  width: 110px;
  float: left;
}
@media screen and (max-width: 920px) {
  .gnav-logo {
    width: 81px;
  }
}
.gnav-list {
  margin-top: 24px;
  float: right;
}
.gnav-item {
  position: relative;
  margin-right: 64px;
  float: left;
  text-align: left;
}
.gnav-item:last-child {
  margin-right: 64px;
}
.gnav-item a {
  display: block;
  position: relative;
  font-size: 1.2rem;
  line-height: 1.3rem;
  letter-spacing: 0.2em;
  transition: 0.3s;
}
.gnav-item a:hover {
  opacity: 0.8;
}
.gnav-item a span {
  font-size: 0.8rem;
}

/*　SP(〜850)　*/
.ham-gnav {
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: #4A4A4A;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: 0.8s all;
  -webkit-overflow-scrolling: touch;
}
.ham-gnav-list {
  margin: 0 auto;
  padding-top: 80px;
  padding-left: 0 !important;
  text-align: center;
}
.ham-gnav-item {
  margin-bottom: 32px;
  font-size: 1.2rem;
}
.ham-gnav-item span {
  display: block;
  font-size: 0.8rem;
}

/* 開く */
#hamBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 66px;
  height: 66px;
  padding: 14px;
  border: none;
  outline: none;
  background: #4A4A4A;
  cursor: pointer;
  transition: 0.8s all;
}
#hamBtn::before {
  display: block;
  height: 2px;
  transform: translateY(13px);
  transform: translate(0, -4px);
  background-color: #fff;
  content: "";
  transition: 0.3s ease-in-out;
}
#hamBtn::after {
  display: block;
  height: 2px;
  transform: translateY(13px);
  transform: translate(0, 4px);
  background-color: #fff;
  content: "";
  transition: 0.3s ease-in-out;
}

/* 閉じる */
.open #hamBtn {
  z-index: 100;
}
.open #hamBtn::before {
  transform: translate(0, 1.5px) rotate(-45deg);
  color: #4A4A4A;
}
.open #hamBtn:after {
  transform: translate(0, 0) rotate(45deg);
  color: #4A4A4A;
}
.open .ham-gnav {
  opacity: 1;
  pointer-events: auto;
}

/*--------------------------------

Footer

---------------------------------*/
.kb-footer {
  position: relative;
  background: #4A4A4A;
}

.footer-list {
  display: flex;
  justify-content: space-between;
  padding: 44px 0;
  color: #fff;
  font-size: 2rem;
}
@media screen and (max-width: 999px) {
  .footer-list {
    flex-wrap: wrap;
    padding: 24px 0 8px;
  }
}
@media screen and (max-width: 768px) {
  .footer-list {
    padding: 24px 0 72px;
  }
}
@media screen and (max-width: 999px) {
  .footer-list div {
    width: 100%;
  }
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-left: 0 !important;
  font-size: 0.8rem;
}
@media screen and (max-width: 999px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
.footer-nav-item {
  margin-right: 44px;
  font-size: 0.8rem;
}
.footer-nav-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 999px) {
  .footer-nav-item {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-item {
    margin-right: 0;
  }
}
.footer-text {
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}