@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  display: none;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 64%;
  margin: 0 0 23% auto;
}
.global-select select {
  padding: 6% 10% 6% 6%;
}

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 6vw;
  right: 4%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 7.5vw;
  height: 5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--body-font-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: auto;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

.sp-menu-btn.active .top {
  top: 50%;
  transform: translateY(0) translateX(0px) rotate(45deg);
  background: var(--primary-color);
}

.sp-menu-btn.active .bottom {
  bottom: 50%;
  transform: translateY(1px) translateX(0px) rotate(-45deg);
  background: var(--primary-color);
}

/*  drawer inbox
  ------------------------------------ */
#drawer__nav {
  width: 55%;
  padding: 23% 6% 15%;
  background: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
#drawer__nav .drawer__nav {
  margin-bottom: 25%;
}
#drawer__nav .drawer__nav-item {
  border-bottom: 1px solid var(--color-gray);
}
#drawer__nav .drawer__nav-item .drawer__nav-link {
  padding: 10% 0;
  font-size: var(--font-size-14);
  border-bottom: none;
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span {
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span:before, #drawer__nav .drawer__nav .drawer__nav-dropdown span:after {
  background: var(--color-black);
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-item .drawer__nav-link {
  display: block;
  padding: 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown .show span:after {
  opacity: 0 !important;
}
#drawer__nav .drawer__nav .current span {
  padding-left: 8vw;
  position: relative;
  text-decoration: underline;
  color: var(--primary-color);
}
#drawer__nav .drawer__nav .current span::before, #drawer__nav .drawer__nav .current span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 2vw;
  height: 2vw;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#drawer__nav .drawer__nav .current span::before {
  left: 0;
}
#drawer__nav .drawer__nav .current span::after {
  left: 2.5vw;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link.show::before {
  background: none;
  border: none;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link span {
  padding: 0 0 0 5%;
}
#drawer__nav .c-line__button {
  width: 100%;
}
#drawer__nav .c-line__button-text {
  font-size: var(--font-size-11);
}
#drawer__nav .c-line__button-text::before, #drawer__nav .c-line__button-text::after {
  height: 3vw;
}
#drawer__nav .c-line__button-link {
  font-size: var(--font-size-12);
  min-height: 10vw;
  padding-right: 2vw;
}
#drawer__nav .c-line__button-link::after {
  right: 3%;
  font-size: var(--font-size-15);
}
#drawer__nav .drawer__nav-subpage {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 12%;
}
#drawer__nav .drawer__nav-subpage-link {
  text-decoration: underline;
}

/*
# c-line__button
------------------------*/
.c-line__button {
  width: 65vw;
  margin: 0 auto;
  text-align: center;
}
.c-line__button-text {
  position: relative;
  font-size: var(--font-size-13);
  margin-bottom: 2%;
}
.c-line__button-text::before, .c-line__button-text::after {
  position: absolute;
  content: "";
  width: 0.2vw;
  height: 4vw;
  background: var(--body-font-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.c-line__button-text::before {
  left: 7px;
  transform: rotate(-35deg);
}
.c-line__button-text::after {
  right: 7px;
  transform: rotate(35deg);
}
.c-line__button-link {
  min-height: 14vw;
  background: var(--body-font-color);
  color: var(--color-white);
  font-size: var(--font-size-15);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  text-align: left;
}
.com-table tr {
  display: block;
  padding: 6% 0;
}
.com-table tr th,
.com-table tr td {
  display: block;
}
.com-table tr th {
  margin-bottom: 4%;
}
.com-table tr td a[href^="tel:"],
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
}

/*==========================================
  共通ブロック・要素
  ===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
}

.com-text.align-center {
  text-align: center;
}
.com-text.text--lg {
  font-size: var(--font-size-17);
  line-height: 2.25;
}

/*
# com-button
------------------------*/
.com-button {
  border-radius: 8vw;
  text-align: center;
  min-height: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: var(--font-size-15);
}
.com-button::after {
  position: absolute;
  color: inherit;
  font-family: var(--bootstrap-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0 5% 0 auto;
  margin: auto 0;
  line-height: 1;
  letter-spacing: 0;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-medium);
  z-index: 1;
  content: "\f135";
}

/*==========================================
共通タイトル
===========================================*/
.primary-title {
  text-align: center;
  margin-bottom: 12%;
}
.primary-title span {
  display: block;
  letter-spacing: var(--body-letter-spacing);
}
.primary-title .title-en {
  font-family: var(--font-secondary);
  font-size: var(--font-size-45);
}
.primary-title .title-ja {
  font-size: var(--font-size-17);
}

.secondary-title {
  font-size: var(--font-size-21);
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 3%;
  margin-bottom: 5%;
  line-height: 1.6;
}

/*==========================================
header
===========================================*/
#header {
  padding: 3% 3.6458% 14% 3.6458%;
}
#header .header__logo {
  width: 25%;
  line-height: 1;
}
#header .header__right .header__nav,
#header .header__right .c-line__button {
  display: none;
}

/*==========================================
mv
===========================================*/
.top-mv {
  height: 146vw;
  background: url(../img/mv/mv-rb_ill.png) right 7.3437% bottom/21% no-repeat;
}
.top-mv .mv__catch {
  inset: 66vw auto auto 5%;
}
.top-mv .mv__catch-ja {
  font-size: var(--font-size-18);
  line-height: 2;
  margin-bottom: 4%;
}
.top-mv .mv__catch-en {
  font-size: var(--font-size-13);
  line-height: 1.7777777778;
}
.top-mv .mv__imgs {
  height: 100%;
  width: 96.3542%;
  margin: 0 auto;
}
.top-mv .mv__imgs .mv__img:nth-child(1) {
  width: 43%;
  inset: 0 auto auto 3.6458%;
}
.top-mv .mv__imgs .mv__img:nth-child(2) {
  width: 44%;
  inset: auto auto -10% 10%;
}
.top-mv .mv__imgs .mv__img:nth-child(3) {
  width: 42%;
  inset: -7% 8% auto auto;
}
.top-mv .mv__imgs .mv__img:nth-child(3)::before {
  position: absolute;
  content: "";
  width: 33%;
  height: 13vw;
  inset: auto auto -10% -11%;
  background: url(../img/mv/mv-img02_ill.png) center/100% no-repeat;
}
.top-mv .mv__imgs .mv__img:nth-child(4) {
  width: 46%;
  inset: 31vw 2% auto auto;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 16% 0 12%;
  background: url(../img/common/ft_bg.jpg) center/cover no-repeat;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__logo {
  filter: brightness(0) invert(1);
  width: 38%;
  margin: 0 auto 16%;
  display: block;
}
#footer .footer__buttons .footer__button {
  margin-bottom: 8%;
  color: var(--color-white);
}
#footer .footer__buttons .footer__button:last-child {
  margin-bottom: 0;
}
#footer .footer__buttons .footer__button .c-line__button {
  background: none;
}
#footer .footer__buttons .footer__button .c-line__button-text::before, #footer .footer__buttons .footer__button .c-line__button-text::after {
  background: var(--color-white);
}
#footer .footer__buttons .footer__button .c-line__button-link {
  background: none;
}
#footer .footer__buttons .footer__button .com-button {
  width: 65vw;
  margin: 0 auto;
  border: 1px solid var(--color-white);
  min-height: 14vw;
  color: var(--color-white);
}
#footer .footer__buttons .footer__button .com-button::after {
  content: "";
}
#footer .footer__buttons .footer__button-link {
  background: url(../img/common/ft-btn_ic.png) right 9% center/4vw no-repeat;
}
#footer .footer__right {
  margin-top: 15%;
}
#footer .footer__sns-list {
  gap: 3vw 5vw;
  justify-content: center;
}
#footer .footer__sns-list .sns-button {
  min-height: 8vw;
  padding: 0 3vw;
  font-size: var(--font-size-13);
}
#footer .footer__sns-list .sns-button:hover {
  background: var(--color-white);
  color: var(--body-font-color);
  opacity: 1;
}
#footer .footer__sns-list .sns-icon {
  width: 7vw;
  height: 7vw;
}
#footer .footer__nav {
  margin: 20% 0 0 auto;
}
#footer .footer__nav-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 11vw 18vw;
}
#footer .footer__nav-link {
  font-size: var(--font-size-15);
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
#footer .footer__subnav-list {
  margin-top: 22%;
  gap: 2vw 8vw;
}
#footer .footer__subnav-list .footer__subnav-item {
  position: relative;
  font-size: var(--font-size-11);
}
#footer .footer__subnav-list .footer__subnav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 3vw;
  inset: 0 auto 0 -4vw;
  margin: auto 0;
  background: var(--color-white);
}
#footer .footer__subnav-list .footer__subnav-item:first-child::before {
  background: none;
}
#footer .footer__subnav-list .footer__subnav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  margin-top: 15%;
}
#copyright small {
  font-size: var(--font-size-11);
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  bottom: 8%;
  right: 3%;
  z-index: 999;
  width: 11vw;
  height: 11vw;
  font-size: var(--font-size-25);
}
.pagetop:hover {
  background: var(--body-font-color);
  color: var(--color-white);
  transform: scale(0.95);
  opacity: 1;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 40vw;
}
.lower-sv .sv__title {
  width: -moz-fit-content;
  width: fit-content;
  inset: 0 3% 5% auto;
  margin: auto 0;
  color: var(--color-white);
  text-shadow: 1px 2px 1px var(--body-font-color);
}
.lower-sv .sv__title span {
  letter-spacing: var(--body-letter-spacing);
}
.lower-sv .sv__title .title-ja {
  font-size: var(--font-size-24);
}
.lower-sv .sv__title .title-en {
  font-size: var(--font-size-14);
  margin-top: 3%;
}

#news-sv {
  background: url(../../img/sv/news-sv_bg.jpg) left 3.6458% center/cover no-repeat;
}

#contact-sv {
  background: url(../../img/sv/contact-sv_bg.jpg) left 3.6458% center/cover no-repeat;
}

#complete-sv {
  background: url(../../img/sv/complete-sv_bg.jpg) left 3.6458% center/cover no-repeat;
}

#privacy-sv {
  background: url(../../img/sv/privacy-sv_bg.jpg) left 3.6458% center/cover no-repeat;
}

#site-sv {
  background: url(../../img/sv/site-sv_bg.jpg) left 3.6458% center/cover no-repeat;
}

#e404-sv {
  background: url(../../img/sv/e404-sv_bg.jpg) left 3.6458% center/cover no-repeat;
}

/*==========================================
top
===========================================*/
/*
# about
------------------------*/
.about__inbox {
  padding: 39% 8% 0;
  z-index: 1;
}
.about__inbox::before, .about__inbox::after {
  position: absolute;
  content: "";
  width: 18%;
  height: 14vw;
  bottom: 0;
  z-index: -1;
  background: url(../img/about/about-btm_ill.png) center/100% no-repeat;
}
.about__inbox::before {
  left: 5%;
}
.about__inbox::after {
  right: 5%;
  transform: scale(-1, 1);
}
.about-btm__img {
  margin-top: 22%;
}

/*
# experience
------------------------*/
.experience {
  padding: 24% 0;
}
.experience__list {
  position: relative;
}
.experience__list::before, .experience__list::after {
  position: absolute;
  content: "";
  z-index: 1;
}
.experience__list::before {
  background: url(../img/experience/experience-rc_ill.png) center/100% no-repeat;
  width: 21%;
  height: 25vw;
  inset: 101vw -7% auto auto;
}
.experience__list::after {
  background: url(../img/experience/experience-lb_ill.png) center/100% no-repeat;
  width: 20%;
  height: 22vw;
  inset: auto auto 15vw -6%;
}
.experience__card {
  width: 85%;
  margin: 0 auto 17%;
}
.experience__card:last-child {
  margin-bottom: 0;
}
.experience__card::before {
  color: var(--color-gray);
  font-family: var(--font-tertiary);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-40);
  margin-bottom: 3%;
  display: block;
}
.experience__card-text {
  text-align: center;
  font-size: var(--font-size-20);
  margin-top: 10%;
  line-height: 2;
}

/*
# pianist
------------------------*/
.pianist {
  padding: 11% 0 25%;
}
.pianist__inbox {
  position: relative;
}
.pianist__inbox::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 24vw;
  inset: auto 2% -11vw auto;
  background: url(../img/pianist/pianist-rb_ill.png) center/100% no-repeat;
}
.pianist__title {
  width: 79%;
  text-align: left;
  background: url(../img/pianist/pianist-ttl_ill.png) right center/31% no-repeat;
}
.pianist__fig-caption {
  text-align: center;
  margin: 10% 0;
}
.pianist__fig-caption .caption-en {
  font-size: var(--font-size-14);
}
.pianist__fig-caption .caption-ja {
  margin-top: 3%;
  font-size: var(--font-size-22);
}
.pianist__text.text--lg {
  font-size: var(--font-size-16);
  text-align: center;
}
.pianist-top__img {
  margin-top: 15%;
}

/*
# pianistism
------------------------*/
.pianism {
  padding: 11% 0 25%;
}
.pianism__inbox {
  position: relative;
  padding-bottom: 18%;
  background: url(../img/pianism/pianism-cb_ill.png) right 5% bottom/26% no-repeat;
}
.pianism__img {
  width: 88%;
  margin: 0 auto 15%;
}

/*
# feel
------------------------*/
.feel {
  padding: 8% 0 22%;
  position: relative;
}
.feel__content {
  position: relative;
  text-align: center;
  margin-bottom: 15%;
}
.feel__content::before {
  position: absolute;
  content: "";
  width: 145px;
  height: 238px;
  inset: auto -180px 0 auto;
  background: url(../img/feel/feel-rb_ill.png) center/100% no-repeat;
}
.feel__movie-wrap {
  position: relative;
  width: 88%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.feel__movie-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*
# gallery
------------------------*/
.gallery {
  padding: 22% 0 16%;
  background: url(../img/gallery/gallery_bg.jpg) center/cover no-repeat;
}
.gallery__title {
  text-align: left;
}
.gallery__list {
  height: 150vw;
  position: relative;
}
.gallery__img {
  position: absolute;
}
.gallery__img:nth-child(1) {
  width: 56%;
  inset: 0 auto auto 0;
}
.gallery__img:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 26%;
  height: 17vw;
  inset: auto -5vw -7vw auto;
  background: url(../img/gallery/gallery_ill01.png) center/100% no-repeat;
}
.gallery__img:nth-child(2) {
  width: 60%;
  inset: 32% auto auto -4%;
}
.gallery__img:nth-child(3) {
  width: 43%;
  inset: -19% -3% auto auto;
}
.gallery__img:nth-child(3)::before {
  position: absolute;
  content: "";
  width: 39%;
  height: 14vw;
  inset: auto -8% -7vw auto;
  background: url(../img/gallery/gallery_ill03.png) center/100% no-repeat;
}
.gallery__img:nth-child(4) {
  width: 43%;
  inset: 27vw -5% auto auto;
}
.gallery__img:nth-child(4)::before {
  position: absolute;
  content: "";
  width: 27%;
  height: 13vw;
  inset: auto auto -8vw -8%;
  background: url(../img/gallery/gallery_ill04.png) center/100% no-repeat;
}
.gallery__img:nth-child(5) {
  width: 61%;
  inset: auto auto 8% -5%;
}
.gallery__img:nth-child(5)::before {
  position: absolute;
  content: "";
  width: 25%;
  height: 18vw;
  inset: auto -11% -6vw auto;
  background: url(../img/gallery/gallery_ill05.png) center/100% no-repeat;
}
.gallery__img:nth-child(6) {
  inset: auto -6% 20% auto;
  width: 45%;
}

/*==========================================
  contact
  ===========================================*/
#s-contact {
  padding: 22% 0;
  background: url(../img/contact/contact-lt_bg.png) left top/60.5208% no-repeat, url(../img/contact/contact-rb_bg.png) right bottom/60.5208% no-repeat;
}
#s-contact .contact__buttons {
  gap: 5vw 4%;
}
#s-contact .contact__buttons .contact__button {
  margin-bottom: 8%;
}
#s-contact .contact__buttons .contact__button:last-child {
  margin-bottom: 0;
}
#s-contact .contact__buttons .contact__button-link {
  width: 65vw;
  margin: 0 auto;
  font-size: var(--font-size-13);
}
#s-contact .contact__form {
  margin: 15% 0;
}
#s-contact .contact__form-item .contact__form-label {
  font-size: var(--font-size-14);
}
#s-contact .contact__form-item .contact__form-label .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
}
#s-contact .contact__form-item .contact__form-input {
  padding: 3% 0;
  font-size: var(--font-size-14);
}
#s-contact .contact__form-item .contact__form-input .contact__form-list li {
  margin-bottom: 5%;
}
#s-contact .contact__form-item .contact__form-input .contact__form-list li:last-child {
  margin-bottom: 0;
}
#s-contact .contact__form-item .contact__form-input textarea {
  height: 37vw;
}
#s-contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: left;
}
#s-contact .contact__form-value {
  padding: 3%;
}
#s-contact .contact__form-select {
  width: 50%;
  position: relative;
}
#s-contact .contact__form-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#s-contact .contact__form-select select {
  padding: 6% 7% 6% 4%;
}
#s-contact .contact__form #pc01,
#s-contact .contact__form #pc02 {
  width: 95px;
}
#s-contact .contact__form #date1,
#s-contact .contact__form #date2,
#s-contact .contact__form #date3 {
  width: 73%;
}
#s-contact .contact__form #address {
  margin-top: 4%;
}
#s-contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#s-contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#s-contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#s-contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#s-contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#s-contact .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#s-contact .contact__submits-wrap .contact__submits-check {
  width: 75%;
}
#s-contact .contact__submits-wrap .contact__submits-back {
  width: 52%;
}
#s-contact .contact__submits-wrap .contact__submits-send {
  width: 40%;
}
#s-contact input[type=button],
#s-contact input[type=submit],
#s-contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#s-contact input[type=submit],
#s-contact select {
  -webkit-appearance: none;
}

/*
# news
------------------------*/
.news {
  padding: 22% 0;
}
.news__inbox {
  position: relative;
}
.news__inbox::before, .news__inbox::after {
  position: absolute;
  content: "";
}
.news__inbox::before {
  width: 17%;
  height: 20vw;
  background: url(../img/news/news-rt_ill.png) center/100% no-repeat;
  inset: -3vw 5% auto auto;
}
.news .news__left {
  margin-bottom: 18%;
}
.news__title {
  margin-bottom: 6%;
  text-align: left;
}
.news__post {
  border-bottom: 1px solid var(--color-gray);
}
.news__post-link {
  padding: 7% 8% 7% 0;
  row-gap: 3vw;
  position: relative;
}
.news__post-link::after {
  position: absolute;
  color: inherit;
  font-family: var(--bootstrap-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0 0 0 auto;
  margin: auto 0;
  line-height: 1;
  letter-spacing: 0;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-medium);
  z-index: 1;
  content: "\f135";
}
.news__post-link:hover {
  transform: translateX(10px);
}
.news__post-link:hover .news__post-title {
  text-decoration: underline;
}
.news__post:first-child .news__post-link {
  padding-top: 0;
}
.news__post-date {
  font-size: var(--font-size-13);
  width: 31%;
}
.news__post-tags {
  width: 68%;
  gap: 1.5vw;
}
.news__post-tags .news__post-tag {
  font-size: var(--font-size-13);
}
.news__post-title {
  font-size: var(--font-size-15);
}
.news .news__button {
  width: 50%;
  margin-left: auto;
  min-height: 13vw;
  font-size: var(--font-size-14);
  background: #676767;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__list .column__post-meta {
  margin-bottom: 4%;
}
.column__wrap .column__list .column__post-meta time {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2vw;
  gap: 1vw 1.5vw;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-17);
  margin: 3% 0;
}
.column__wrap .column__list .column__post-body {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 40%;
  height: 33vw;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 55%;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 10%;
}
.single__post-meta time {
  font-size: var(--font-size-13);
  width: 27%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single__post-meta .category-label {
  width: 70%;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-13);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 4% 0 4% 8%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/