@charset "UTF-8";
/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 1.5s ease-in-out forwards;
          animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  -webkit-transform: translateZ(0) scale(1.2, 1.2);
          transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_n2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@font-face {
  font-family: YuMincho;
  font-weight: 400;
  src: url("../fonts/YuMincho.woff2") format("woff2");
  font-display: swap;
}
html {
  margin-top: 0 !important;
}

body {
  font-family: YuMincho, "游明朝", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #3E3A39;
  background-color: #F1F2EC;
  line-height: 1.875;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

main {
  margin-top: 91px;
}
@media (max-width: 768px) {
  main {
    margin-top: 66.8px;
  }
}
main.top {
  margin-top: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #3E3A39;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

ol, ul {
  list-style-type: none;
}

img, video, iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

.coming {
  text-align: center;
  font-size: 1.333em;
  margin-bottom: 3em;
}

/* section common
====================================== */
.section__inner {
  width: 75%;
  padding: 5em 0;
  max-width: 1080px;
  margin: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 4em 0;
    width: 82.9333%;
  }
}
.section__inner.--s {
  max-width: 880px;
}
.section__inner.--l {
  width: 88.889%;
  max-width: 1280px;
}
.section__inner.--center {
  text-align: center;
}
.section__title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 2rem;
  }
}
.section__title.--center {
  text-align: center;
}
.section__title-en {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.8125em;
  color: #A39354;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .section__title-en {
    font-size: 0.75em;
  }
}
.section__title-jp {
  font-size: 1.75em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section__title-jp {
    font-size: 1.5em;
    line-height: 1.6;
  }
}
.section__text {
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section__text {
    font-size: 0.875em;
    line-height: 1.8;
  }
}

.breadcrumbs {
  font-size: 0.875em;
  margin-bottom: 1.5rem;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
  color: #A39354;
}
.breadcrumbs span {
  display: block;
  color: #8C8A82;
}
.breadcrumbs span[property=name] {
  padding: 0;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* e_news
======================================= */
.news__item a:hover .news__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news__item a:hover .news__item-title {
  color: #A39354;
}
.news__item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.news__item-image::before {
  content: "";
  display: block;
  padding-top: 71%;
}
.news__item-image img, .news__item-image video, .news__item-image iframe, .news__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .news__item-image {
    position: relative;
  }
  .news__item-image::before {
    content: "";
    display: block;
    padding-top: 45.66%;
  }
  .news__item-image img, .news__item-image video, .news__item-image iframe, .news__item-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.news__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.news__item-title {
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.news__item-date {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #8C8A82;
  margin-bottom: 0.5rem;
}
.news__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
}
.news__item-cat {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  display: inline-block;
  font-size: 0.6875em;
  color: #A39354;
  padding: 0 0.5rem;
  height: 22px;
  line-height: 20px;
  border-radius: 20px;
  border: 1px solid #A39354;
}

/* e_news
======================================= */
.blog__item a:hover .blog__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog__item a:hover .blog__item-title {
  color: #A39354;
}
.blog__item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog__item-image::before {
  content: "";
  display: block;
  padding-top: 71%;
}
.blog__item-image img, .blog__item-image video, .blog__item-image iframe, .blog__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .blog__item-image {
    position: relative;
  }
  .blog__item-image::before {
    content: "";
    display: block;
    padding-top: 45.66%;
  }
  .blog__item-image img, .blog__item-image video, .blog__item-image iframe, .blog__item-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.blog__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.blog__item-title {
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .blog__item-title {
    font-size: 0.875em;
  }
}
.blog__item-date {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #8C8A82;
}
@media (max-width: 768px) {
  .blog__item-date {
    font-size: 0.875em;
  }
}

.pagination {
  margin-top: 4em;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 2em;
  }
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 0.5625rem;
}
.pagination .page-numbers {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #8C8A82;
  display: block;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 0.5em;
  text-align: center;
}
.pagination .page-numbers:hover {
  color: #A39354;
}
.pagination .page-numbers.current {
  color: #A39354;
  position: relative;
}
.pagination .page-numbers.current::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 0.5rem;
  background-color: #A39354;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 1em;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    font-size: 0;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
.pagination .page-numbers.prev::after, .pagination .page-numbers.next::after {
  display: none;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-right: 1px solid #3E3A39;
  border-bottom: 1px solid #3E3A39;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
  color: #A39354;
}
.pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
  border-right: 1px solid #A39354;
  border-bottom: 1px solid #A39354;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
    border-right: 2px solid #A39354;
    border-bottom: 2px solid #A39354;
  }
}
.pagination .page-numbers.prev {
  text-align: right;
}
.pagination .page-numbers.prev::before {
  left: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.pagination .page-numbers.next {
  text-align: left;
}
.pagination .page-numbers.next::before {
  right: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.pagination2 {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .pagination2 {
    margin-top: 2em;
  }
}
.pagination2 .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.pagination2 .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: #8C8A82;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers:hover {
  color: #1B357A;
}
.pagination2 .page-numbers.current {
  color: #A39354;
}
.pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
  border: 2px solid #1B357A;
  border-radius: 20px;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
    font-size: 0;
  }
}
.pagination2 .page-numbers.prev::after, .pagination2 .page-numbers.next::after {
  display: none;
}
.pagination2 .page-numbers.prev::before, .pagination2 .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 3px solid #1B357A;
  border-bottom: 3px solid #1B357A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers.prev:hover, .pagination2 .page-numbers.next:hover {
  color: #fff;
  background-color: #1B357A;
}
.pagination2 .page-numbers.prev:hover::before, .pagination2 .page-numbers.next:hover::before {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.pagination2 .page-numbers.prev::before {
  -webkit-transform: translate(-40%, -50%) rotate(135deg);
          transform: translate(-40%, -50%) rotate(135deg);
}
.pagination2 .page-numbers.next::before {
  -webkit-transform: translate(-60%, -50%) rotate(-45deg);
          transform: translate(-60%, -50%) rotate(-45deg);
}

.footer__inner {
  padding-top: 7.5em;
  padding-bottom: 8.125em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__inner {
    width: 87.2% !important;
    padding-top: 4em;
    padding-bottom: 2.5em;
  }
}
.footer__left {
  width: 182px;
}
@media (max-width: 768px) {
  .footer__left {
    width: 127px;
  }
}
.footer__logo {
  margin-bottom: 1.1875em;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 0.5rem;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.1875rem;
}
@media (max-width: 768px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
  }
}
.footer__nav-item {
  height: 100%;
}
.footer__nav-item > a {
  display: block;
  font-size: 0.875em;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__nav-item > a {
    font-size: 0.8125em;
  }
}
.footer__nav-item > a:hover {
  color: #A39354;
}
.footer__nav-contact a {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 5px 1em;
  border-radius: 20px;
}
.footer__nav-contact a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #A39354;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__nav-contact a:hover {
  background-color: #A39354;
  color: #fff;
}
.footer__nav-contact a:hover::before {
  background-color: #fff;
}
.footer__info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0.5rem;
  }
}
.footer__info-item a {
  display: block;
  font-size: 0.75em;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__info-item a {
    line-height: 2;
  }
}
.footer__info-item a:hover {
  color: #A39354;
}
.footer__copy {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.6875em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 91px;
}
@media (max-width: 1024px) {
  .header {
    height: 66.8px;
  }
}
.header.is-white .header__logo a img.white {
  display: block !important;
}
.header.is-white .header__logo a img.black {
  display: none !important;
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.224% 0 2.6%;
}
@media (max-width: 1280px) {
  .header__inner {
    padding: 0 2%;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding: 1.5em;
  }
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__logo a {
  display: block;
  width: clamp(160px, 13.73125vw, 263px);
}
@media (max-width: 768px) {
  .header__logo a {
    width: 131.5px;
  }
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img.white {
  display: none;
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 2vw, 38.4px);
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item {
  height: 100%;
}
.header__nav-item > a {
  font-family: Marcellus;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding: 0.265em clamp(10px, 2.222vw, 16px);
}
.header__nav-item > a:hover {
  color: #A39354;
}
.header__nav-item > a img {
  width: auto;
  height: auto;
}
.header__nav-item > a span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-contact a {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 5px 1em;
  border-radius: 20px;
}
.header__nav-contact a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #A39354;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-contact a:hover {
  background-color: #A39354;
  color: #fff;
}
.header__nav-contact a:hover::before {
  background-color: #fff;
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 8;
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .header__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
}
.header__btn::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #3E3A39;
  border-radius: 50%;
}
.header__btn .close {
  display: none;
  color: #3E3A39;
}
.header__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  background-color: #F1F2EC;
}
.header__menu-inner {
  margin: 66.8px auto 0;
  padding-top: 66.8px;
}
.header__menu-list {
  margin-bottom: 0.5rem;
}
.header__menu-item a {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: block;
  padding: 0.5rem 0;
}
.header__menu-item a:hover {
  color: #A39354;
}
.header__menu-contact {
  width: 111px;
  margin-bottom: 1.5em;
}
.header__menu-contact a {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 5px 0;
  border-radius: 20px;
}
.header__menu-contact a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #A39354;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-contact a:hover {
  background-color: #A39354;
  color: #fff;
}
.header__menu-contact a:hover::before {
  background-color: #fff;
}
.header__menu-info-item:nth-child(n+2) {
  margin-top: 0.5rem;
}
.header__menu-info-item a {
  font-size: 0.75em;
  font-weight: 400;
  line-height: 2;
}
.header__menu-info-item a:hover {
  color: #A39354;
}

.top .header__logo a img.white {
  display: block;
}
.top .header__logo a img.black {
  display: none;
}
.top .header__nav-item > a {
  color: #fff;
}
.top .header__btn .menu {
  color: #fff;
}
.top .header__btn::before {
  background-color: #fff;
}
.top.is-scrolled .header__logo a img.white {
  display: none;
}
.top.is-scrolled .header__logo a img.black {
  display: block;
}
.top.is-scrolled .header__nav-item > a {
  color: #3E3A39;
}
.top.is-scrolled .header__nav-item > a:hover {
  color: #A39354;
}
.top.is-scrolled .header__btn::before {
  background-color: #3E3A39;
}
.top.is-scrolled .header__btn .menu {
  color: #3E3A39;
}

.header.is-open {
  height: 100vh;
}

.is-open .header__inner {
  height: 66.8px;
}
.is-open .header__logo a img.black {
  display: block;
}
.is-open .header__logo a img.white {
  display: none;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__btn::before {
  background-color: #3E3A39;
}
.is-open .header__btn .menu {
  display: none;
}
.is-open .header__btn .close {
  display: block;
}

/* btn 
========================================= */
.btn {
  position: relative;
}
.btn > a, .btn > span, .btn > input {
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__01 {
  margin: 0 auto;
  max-width: 155.5px;
}
@media (max-width: 768px) {
  .btn__01 {
    max-width: 135.5px;
  }
}
.btn__01 > a {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  border: 1px solid #fff;
  padding: 0.5rem;
  line-height: 1;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8125rem;
  position: relative;
}
@media (max-width: 768px) {
  .btn__01 > a {
    font-size: 0.6875em;
  }
}
.btn__01 > a::after {
  content: "";
  display: block;
  width: 15.5px;
  height: 0.5px;
  background-color: #fff;
}
.btn__01 > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  border: 0.5px solid #fff;
  top: 50%;
  right: 1.375rem;
  -webkit-transform: translateY(calc(-50% - 0.25px));
          transform: translateY(calc(-50% - 0.25px));
}
@media (max-width: 768px) {
  .btn__01 > a::before {
    -webkit-transform: translateY(calc(-50% + 0.25px));
            transform: translateY(calc(-50% + 0.25px));
  }
}
.btn__01 > a:hover {
  opacity: 0.5;
}
.btn__01.--black > a {
  font-family: YuMincho, "游明朝", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  border: 1px solid #3E3A39;
  color: #3E3A39;
  padding: 0.845rem;
}
.btn__01.--black > a::after {
  background-color: #3E3A39;
}
.btn__01.--black > a::before {
  border: 0.5px solid #3E3A39;
}
.btn__02 > a {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8125em;
  position: relative;
}
@media (max-width: 768px) {
  .btn__02 > a {
    font-size: 0.8125em;
  }
}
.btn__02 > a::after {
  content: "";
  display: block;
  width: 15.5px;
  height: 0.5px;
  background-color: #3E3A39;
  margin-right: 3px;
}
.btn__02 > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  border: 0.5px solid #3E3A39;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__02 > a:hover {
  opacity: 0.5;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* splide
========================================= */
.splide__track {
  height: 100%;
}
/* tab
========================================= */
.tab1, .tab2 {
  cursor: pointer;
}
.panel1, .panel2 {
  display: none;
}
.panel1.is-active, .panel2.is-active {
  display: block;
}