@charset "UTF-8";
/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
テーブルレイアウト
===========================================*/
.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;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.15em;
}

.section-title {
  color: var(--primary-color);
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.15em;
  position: relative;
  margin-bottom: 45px;
}
.section-title::before {
  position: absolute;
  content: "";
  width: 47.5vw;
  height: 1px;
  inset: 5vw auto auto -49.5vw;
  background: var(--primary-color);
}

.headline-title {
  color: var(--primary-color);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-left: 4%;
  margin-bottom: 3%;
}
.headline-title::before {
  position: absolute;
  content: "";
  width: 1.25vw;
  height: 1.25vw;
  border-radius: 50%;
  background: var(--primary-color);
  inset: 4vw auto auto 0;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}
.com-content p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4%;
}
#g-map h4 span {
  padding-left: 5%;
}
#g-map .map {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-button {
  height: 13vw;
  color: var(--color-white);
  font-size: var(--font-size-15);
  letter-spacing: var(--body-letter-spacing);
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  position: relative;
  text-align: left;
}
.com-button span {
  width: 100%;
}
.com-button::after {
  position: absolute;
  inset: 0 8% 0 auto;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 1.25vw;
  height: 1.25vw;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  top: 2vw;
  right: 3%;
  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: 12.5vw;
  height: 12.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 1px;
  background: var(--accent-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 3.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 8.5vw;
}
.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 {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 8% 6% 15%;
  background: var(--bg-color-lightblue);
}
#drawer-nav .drawer-logo {
  width: 30%;
  margin-bottom: 8%;
  text-align: left;
}
#drawer-nav .drawer-nav {
  margin-bottom: 10%;
}
#drawer-nav .drawer-nav .drawer-link {
  padding: 6% 0;
  border-bottom: 1px solid var(--color-gray);
  font-size: var(--font-size-17);
}
#drawer-nav .drawer-nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav .drawer-nav .drawer-dropdown span {
  display: block;
}
#drawer-nav .drawer-nav .drawer-dropdown span:before, #drawer-nav .drawer-nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav .drawer-nav .current {
  padding-left: 11%;
  position: relative;
  color: var(--primary-color);
  text-decoration: underline;
}
#drawer-nav .drawer-nav .current::before, #drawer-nav .drawer-nav .current::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  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::before {
  left: 0;
}
#drawer-nav .drawer-nav .current::after {
  left: 3%;
}
#drawer-nav .drawer-nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav .drawer-nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav .drawer-nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--body-font-color);
  border-bottom: 1px solid var(--body-font-color);
}
#drawer-nav .drawer-nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .drawer__contact-list {
  margin-bottom: 10%;
}
#drawer-nav .drawer__subpage {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 7%;
}
#drawer-nav .drawer__subpage-item a {
  text-decoration: underline;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list .com-tel {
  line-height: 1.1;
  text-align: center;
  margin-bottom: 6%;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-25);
  letter-spacing: 0.08em;
  padding-left: 6vw;
  background: url(../img/common/tel_ic.png) left bottom 1.5vw/3.5vw no-repeat;
}
.c-contact__list .com-tel .tel__num small {
  font-size: var(--font-size-14);
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .com-mail .mail__button {
  width: 66vw;
  margin: 0 auto;
  color: var(--color-white);
  background: url(../img/common/mail_ic.png) left 3vw center/5vw no-repeat, var(--accent-color);
  height: 13vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-14);
  padding: 0 4vw 0 16vw;
  position: relative;
}
.c-contact__list .com-mail .mail__button::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  inset: 0 auto 0 11vw;
  background: var(--color-white);
  z-index: 1;
}

.c-address {
  font-size: var(--font-size-14);
}
.c-address .address__locate {
  margin-bottom: 8%;
}
.c-address .address__worktime .worktime__item {
  margin-bottom: 1%;
  display: flex;
  align-items: baseline;
}
.c-address .address__worktime .worktime__item:last-child {
  margin-bottom: 0;
}
.c-address .address__worktime .worktime__item dt {
  padding-right: 2vw;
  margin-right: 2vw;
  position: relative;
}
.c-address .address__worktime .worktime__item dt::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 3vw;
  background: var(--body-font-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}

.c-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5vw 7vw;
  margin-bottom: 10%;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  width: 100%;
  inset: 0 0 auto;
  padding: 4% 2.3437% 0 2.60416%;
  z-index: 1001;
}
#header .header__logo {
  width: 25%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: 100vw;
  background: url(../img/top/mv/mv_bg.jpg) center bottom/100% no-repeat;
}
#top-mv .mv__catch {
  width: 85%;
  position: absolute;
  inset: 30% 0 auto;
  margin: 0 auto;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 18% 0;
  background: url(../img/top/about_bg.jpg) center/cover no-repeat;
}
#top-about .about__title {
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-23);
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 12%;
  text-shadow: 2px 2px 10px rgba(var(--color-green-rgb), 1);
}
#top-about .about__title small {
  display: block;
  font-size: var(--font-size-20);
}
#top-about .about__title span {
  border-bottom: 1px solid;
  line-height: 1;
  display: inline-block;
}
#top-about .about__text {
  color: var(--color-white);
}

/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 18% 0;
  background: url(../img/top/greeting_bg.jpg) center/cover no-repeat;
}
#top-greeting .greeting__headline-img {
  width: 75%;
  margin: 0 auto 8%;
}
#top-greeting .greeting__profile {
  margin-top: 25%;
  position: relative;
  background: var(--color-white);
  padding: 14% 6% 8%;
}
#top-greeting .greeting__profile .profile__title {
  position: absolute;
  inset: -6vw 0 auto;
  width: 75%;
  margin: 0 auto;
  color: var(--color-white);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-black);
  background: linear-gradient(to right, transparent 0%, #3cb9d0 5%, #3cb9d0 95%, transparent 100%);
  text-align: center;
  letter-spacing: 0.15em;
  padding: 2% 0;
}
#top-greeting .greeting__profile .profile__list .profile__item {
  border-bottom: 1px solid var(--color-gray);
  padding: 4% 3% 4% 5%;
  letter-spacing: var(--body-letter-spacing);
  position: relative;
}
#top-greeting .greeting__profile .profile__list .profile__item:last-child {
  border-bottom: none;
}
#top-greeting .greeting__profile .profile__list .profile__item::before {
  position: absolute;
  content: "";
  width: 1vw;
  height: 1vw;
  background: var(--primary-color);
  border-radius: 50%;
  inset: 7.5vw auto auto 0;
}

/*
# top-support
------------------------*/
#top-support {
  padding: 8% 0;
}
#top-support .support__list .support__item {
  border-bottom: 1px solid var(--color-gray);
}
#top-support .support__list .support__item:first-child {
  border-top: 1px solid var(--color-gray);
}
#top-support .support__list .support__item-link {
  display: flex;
  flex-wrap: wrap;
  background: var(--color-white);
  padding: 8% 6%;
}
#top-support .support__list .support__item-link:hover {
  opacity: 0.9;
  transform: translateY(-10px);
}
#top-support .support__list .support__item-link:hover .support__item-title {
  color: var(--primary-color);
}
#top-support .support__list .support__item-link:hover .support__item-img img {
  transform: scale(1.05);
}
#top-support .support__list .support__item-title {
  width: 100%;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.15em;
  text-align: left;
  padding-left: 7%;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 6%;
}
#top-support .support__list .support__item-title::before {
  content: "\f133";
  right: 2%;
  color: var(--accent-color);
  font-size: var(--font-size-25);
}
#top-support .support__list .support__item-title::after {
  position: absolute;
  content: "";
  width: 1.5vw;
  height: 1.5vw;
  inset: 4vw auto auto 0;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary-color);
}
#top-support .support__list .support__item-text {
  width: 100%;
  order: 3;
  margin-bottom: 8%;
}
#top-support .support__list .support__item-img {
  width: 100%;
  order: 2;
  text-align: center;
  overflow: hidden;
  margin-bottom: 6%;
}
#top-support .support__list .support__item-img img {
  transition: all 0.3s;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 10% 0;
}
#top-news .news__post-list .news__post {
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news__post-list .news__post:first-child .news__post-link {
  padding-top: 0;
}
#top-news .news__post-list .news__post:last-child {
  border-bottom: none;
}
#top-news .news__post-list .news__post:last-child .news__post-link {
  padding-bottom: 0;
}
#top-news .news__post-list .news__post-link {
  padding: 6% 10%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5vw;
}
#top-news .news__post-list .news__post-link:hover {
  opacity: 0.9;
}
#top-news .news__post-list .news__post-link:hover .news__post-title {
  color: var(--primary-color);
  text-decoration: underline;
}
#top-news .news__post-list .news__post-thumb {
  width: 100%;
  height: 52vw;
}
#top-news .news__post-list .news__post-date, #top-news .news__post-list .news__post-tags {
  color: var(--primary-color);
  letter-spacing: var(--body-letter-spacing);
  font-size: var(--font-size-13);
}
#top-news .news__post-list .news__post-date {
  width: 33%;
}
#top-news .news__post-list .news__post-tags {
  width: 67%;
  display: flex;
  flex-wrap: wrap;
}
#top-news .news__post-list .news__post-tags li {
  padding: 0 2vw;
  position: relative;
}
#top-news .news__post-list .news__post-tags li:before, #top-news .news__post-list .news__post-tags li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-news .news__post-list .news__post-tags li::before {
  left: 0;
}
#top-news .news__post-list .news__post-tags li::after {
  right: 0;
}
#top-news .news__post-list .news__post-title {
  width: 100%;
  font-size: var(--font-size-15);
  letter-spacing: var(--body-letter-spacing);
  line-height: 1.6;
  transition: all 0.3s;
}
#top-news .news__butoon {
  width: 75%;
  margin: 15% 0 0 auto;
}

/*
# top-info
------------------------*/
#top-info {
  padding: 18% 0;
  position: relative;
  background: url(../img/top/info_bg.jpg) center/cover no-repeat;
}
#top-info .info__table {
  margin-bottom: 15%;
}
#top-info #g-map .map {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#top-info #g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--color-gray);
  padding: 15% 0;
}
#footer .footer__left .footer__logo {
  width: 45%;
  display: block;
  margin: 0 auto 8%;
}
#footer .footer__left .footer__address {
  margin-bottom: 12%;
}
#footer .footer__right .footer__contact-list {
  margin-bottom: 50px;
}
#footer .footer__right .footer__nav-list {
  -moz-column-count: 2;
       column-count: 2;
  font-size: var(--font-size-13);
}
#footer .footer__right .footer__nav-list .footer__nav-item {
  margin-bottom: 10%;
}
#footer .footer__right .footer__nav-list .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  margin-top: 12%;
  color: #a9a9a9;
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: #a9a9a9;
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  height: 45vw;
}
.lower-sv .sv__title {
  width: 88%;
  margin: 0 auto;
  position: absolute;
  inset: auto 0 15%;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-black);
  text-align: center;
  background: rgba(var(--color-white-rgb), 0.9);
}
.lower-sv .sv__title span {
  display: inline-block;
  background: linear-gradient(90deg, #3cb9d0 0%, #0083c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

/*==========================================
下層共通要素
===========================================*/
.com-applies__section {
  background: url(../img/components/applies/applies_bg.jpg) center/cover no-repeat;
}
.com-applies__section .inbox {
  padding: 0 5%;
}
.com-applies__section .applies__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw 3vw;
}
.com-applies__section .applies__list .applies__item {
  width: 43vw;
  height: 43vw;
  background: var(--color-white);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.6;
}
.com-applies__section .applies__list .applies__item:last-child {
  margin-right: 0;
}
.com-applies__section .applies__list .applies__item-icon {
  width: 42%;
  margin: 0 auto;
  flex-grow: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.com-applies__section .applies__list .applies__item-text {
  flex-grow: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: var(--font-size-13);
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}
.com-applies__section .applies__list .applies__item-text small {
  display: block;
  font-size: var(--font-size-10);
}
.com-applies__section .applies__text-etc {
  text-align: right;
  font-size: var(--font-size-18);
  color: var(--primary-color);
  margin-top: 3%;
}

.com-content__section .content__title {
  font-size: var(--font-size-21);
}
.com-content__section .content__item {
  background: var(--color-white);
  margin-bottom: 12%;
}
.com-content__section .content__item:last-child {
  margin-bottom: 0;
}
.com-content__section .content__item-title {
  border-bottom: 1px solid var(--form-border-color);
  padding: 5% 4% 5% 14%;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-black);
  background: url(../img/components/content/content-check_ic.png) left 5% top 6vw/5vw no-repeat;
}
.com-content__section .content__item-text {
  padding: 4% 6% 8%;
}

.c-support__section .support__item {
  margin-bottom: 12%;
}
.c-support__section .support__item:last-child {
  margin-bottom: 0;
}
.c-support__section .support__item-thumb {
  width: 100%;
  height: 56vw;
  margin-bottom: 3%;
}
.c-support__section .support__item-title {
  margin-bottom: 3%;
}

.c-price__section .price__item {
  background: var(--color-white);
  margin-bottom: 30px;
  position: relative;
}
.c-price__section .price__item:last-child {
  margin-bottom: 0;
}
.c-price__section .price__item-title {
  color: var(--primary-color);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-black);
  padding: 6% 5%;
  border-bottom: 1px solid var(--form-border-color);
  margin-bottom: 3%;
}
.c-price__section .price__item-content {
  padding: 6% 5%;
}
.c-price__section .price__item-price {
  text-align: right;
  font-weight: var(--font-weight-bold);
}

.c-report__section .report__item {
  margin-bottom: 18%;
  padding: 10% 5%;
  position: relative;
}
.c-report__section .report__item:last-child {
  margin-bottom: 0;
}
.c-report__section .report__item-thumb {
  width: 35%;
  position: absolute;
  inset: 3vw auto auto 5%;
}
.c-report__section .report__item-content {
  gap: 2vw;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: baseline;
}
.c-report__section .report__item-content:has(.report__item-tags) .report__item-text {
  margin-top: 18vw;
}
.c-report__section .report__item-tags {
  max-width: 60%;
  width: auto;
  gap: 1.5vw;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: var(--font-size-13);
}
.c-report__section .report__item-tags li {
  background: var(--primary-color);
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  padding: 0 3vw;
}
.c-report__section .report__item-profile {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-13);
}
.c-report__section .report__item-profile:has(.profile__age) .profile__gender {
  position: relative;
  padding-right: 2vw;
  margin-right: 2vw;
}
.c-report__section .report__item-profile:has(.profile__age) .profile__gender::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  background: var(--primary-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.c-report__section .report__item-text {
  width: 100%;
  margin-top: 25vw;
}

/*==========================================
corp
===========================================*/
#corp-applies .applies__list .applies__item:nth-child(1) {
  width: 100%;
  border-radius: 20vw;
  padding: 8% 7% 6%;
  height: auto;
}
#corp-applies .applies__list .applies__item:nth-child(1) .applies__item-icon {
  width: 23%;
  margin-bottom: 6%;
}
#corp-applies .applies__list .applies__item:nth-child(1) .applies__item-text {
  text-align: left;
}

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

/*==========================================
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%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.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;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  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 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  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 {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-13);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

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

/*==========================================
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フレーム時)
===========================================*/