@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# c-sns__list
------------------------*/
.c-sns__list {
  gap: 15px;
}

/*
# c-tel
------------------------*/
.c-tel .tel__num {
  font-size: var(--font-size-40);
  padding-left: 35px;
}
.c-tel .tel__num::before {
  font-size: var(--font-size-27);
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  padding: 205px 0 0;
  background: url(../img/common/contact_bg.png) top center/100% no-repeat;
}
.c-contact__section .contact__inbox {
  width: clamp(1100px, 66.666%, 1280px);
  padding: 65px 0 75px;
  text-align: center;
}
.c-contact__section .contact__text {
  margin-bottom: 30px;
}
.c-contact__section .contact__list {
  gap: 15px 30px;
}
.c-contact__section .com-button {
  width: 340px;
}
.c-contact__section .mail__button {
  padding-left: 35px;
}
.c-contact__section .mail__button span::before {
  left: -35px;
}
.c-contact__section .line__button span {
  position: relative;
  padding-left: 35px;
}
.c-contact__section .line__button span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/sns/LINE_logo.svg) left center/100% no-repeat;
  inset: 0 auto 0 0;
  margin: auto 0;
  z-index: 1;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 0 0;
}
.com-table tr th {
  padding: 11px 10px;
  width: 240px;
  vertical-align: top;
  background: var(--body-font-color);
  color: var(--color-white);
}
.com-table tr td {
  width: calc(100% - 240px);
  padding: 11px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 30px;
}

#g-map .map {
  height: 250px;
}

.com-text.align-center {
  text-align: center;
}

/*
# 縦書き
------------------------*/
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/*
# com-button
------------------------*/
.com-button {
  text-align: center;
  display: block;
  padding: 14px 10px;
  color: var(--color-white);
  background: var(--primary-color);
  font-weight: var(--font-weight-bold);
}
.com-button.bs-icon--arrow-right::before {
  right: 8%;
}
.com-button.bs-icon--arrow-right:hover::before {
  right: 6%;
}

/*
# more-button
------------------------*/
.more-button {
  border-bottom: 1px solid;
  padding-right: 25px;
}
.more-button::before {
  inset: 0 0 0 auto;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  font-size: var(--font-size-34);
  letter-spacing: 0.08em;
  margin-bottom: 45px;
  text-align: center;
  line-height: 1.7647058824;
}

.headline-title {
  border-bottom: 1px solid rgba(var(--body-font-color-rgb), 0.2);
  font-size: var(--font-size-22);
  padding: 5px 25px;
  margin-bottom: 25px;
  position: relative;
}
.headline-title::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: rgba(var(--body-font-color-rgb), 0.6);
  inset: 21px auto auto 0;
}

.sub-title {
  font-size: var(--font-size-26);
  padding: 10px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(var(--body-font-color-rgb), 0.2);
  border-bottom: 1px solid rgba(var(--body-font-color-rgb), 0.2);
}

/*==========================================
header
===========================================*/
#header {
  padding-right: 2.0833%;
}
#header .header__logo {
  width: 330px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
#header .header__logo a {
  height: 100%;
}
#header .header__right {
  width: 760px;
  gap: 10px 40px;
}
#header .header__nav {
  width: 650px;
}
#header .header__nav-list {
  gap: 10px 25px;
}
#header .header__nav-link {
  padding: 30px 0;
  display: block;
  font-size: var(--font-size-17);
  position: relative;
}
#header .header__nav-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  inset: auto 0 0;
  background: var(--color-white);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
#header .header__nav-link:hover::before {
  opacity: 1;
}
#header .header__nav-link.current::before {
  opacity: 1;
}
#header .header__sns-list {
  width: -moz-fit-content;
  width: fit-content;
}

/*==========================================
nav
===========================================*/
.nav-link--base {
  padding-right: 25px !important;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(638px, 49.875vw, 800px);
  position: relative;
  /*==========================================
  メインビジュアル(スライダー)
  ===========================================*/
}
#top-mv .mv__catch {
  width: 63.02%;
  margin: auto;
  inset: 15% 0 auto;
  font-size: var(--font-size-34);
  letter-spacing: 0.2em;
  z-index: 100;
}
#top-mv .mv__catch span {
  padding: 25px 7px 0;
  margin-left: 20px;
}
#top-mv .mv__catch span:last-child {
  margin-top: 65px;
}
#top-mv #mv__slider {
  height: clamp(638px, 49.875vw, 800px);
  position: relative;
}
#top-mv #mv__slider li {
  height: 100%;
}
#top-mv #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/mv-slide01.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/mv-slide02.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/mv-slide03.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(4) {
  background: url(../img/top/mv/mv-slide04.jpg) center/cover no-repeat;
}
#top-mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv .bx-pager {
  display: none;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 95px 0;
}
#footer .fixed-button__list {
  z-index: 999;
  inset: auto 0 120px auto;
  width: 70px;
}
#footer .fixed-button__list .fixed-button__item {
  margin-bottom: 20px;
}
#footer .fixed-button__list .fixed-button__item:last-child {
  margin-bottom: 0;
}
#footer .fixed-button__list .fixed-button__item .fixed-button__link {
  width: 100%;
}
#footer .fixed-button__list .fixed-button__item--contact .fixed-button__link {
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin-left: auto;
  height: 180px;
}
#footer .fixed-button__list .fixed-button__item--contact .fixed-button__link span {
  padding-top: 20px;
}
#footer .fixed-button__list .fixed-button__item--contact .fixed-button__link span::before {
  inset: 0 0 auto;
}
#footer .fixed-button__list .fixed-button__item--base .fixed-button__link {
  height: 70px;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__left {
  width: 410px;
  padding-bottom: 50px;
}
#footer .footer__logo {
  margin-bottom: 50px;
  display: inline-block;
}
#footer .footer__sns-list {
  justify-content: flex-start;
}
#footer .footer__right {
  width: 380px;
}
#footer .footer__nav-list {
  padding-left: 15px;
  border-left: 1px solid rgba(var(--color-white-rgb), 0.2);
  line-height: 0.75;
}
#footer .footer__nav-item {
  margin-bottom: 25px;
}
#footer .footer__nav-item:last-child {
  margin-bottom: 0;
}

#copyright {
  word-break: normal;
  text-align: center;
  position: absolute;
  inset: auto auto 0 0;
  color: rgba(var(--color-white-rgb), 0.6);
}
#copyright small {
  font-size: var(--font-size-12);
}
#copyright a {
  color: rgba(var(--color-white-rgb), 0.6);
  text-decoration: underline;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  bottom: 8%;
  right: 0.85%;
  z-index: 999;
  width: 30px;
  height: 30px;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 380px;
}
.lower-sv .sv__title {
  font-size: var(--font-size-44);
}

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

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

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

#info-sv {
  background: url(../../img/sv/info-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;
}

/*==========================================
top
===========================================*/
#top-greeting .greeting__inbox {
  padding: 90px 0;
  position: relative;
  text-align: center;
  width: clamp(1080px, 66.6666%, 1280px);
}
#top-greeting .greeting__inbox::before, #top-greeting .greeting__inbox::after {
  position: absolute;
  content: "";
}
#top-greeting .greeting__inbox::before {
  width: 18.2031%;
  height: 361px;
  inset: 0 auto auto -20px;
  background: url(../img/top/greeting-lt_img.png) top center/100% no-repeat;
}
#top-greeting .greeting__inbox::after {
  width: 26.875%;
  height: 194px;
  inset: auto -30px -45px auto;
  background: url(../img/top/greeting-rb_img.png) bottom center/100% no-repeat;
}

/*
# top-reason
------------------------*/
#top-reason {
  padding: 85px 0 100px;
}
#top-reason .reason__inbox {
  text-align: center;
}
#top-reason .reason__button {
  width: 280px;
  margin: 35px auto 0;
}

/*
# top-purchased
------------------------*/
#top-purchased {
  padding: 90px 0 95px;
}
#top-purchased .purchased__title {
  text-align: center;
  font-size: var(--font-size-40);
  margin-bottom: 30px;
}
#top-purchased .purchased__title span {
  position: relative;
}
#top-purchased .purchased__title span::before, #top-purchased .purchased__title span::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: var(--body-font-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-purchased .purchased__title span::before {
  left: -75px;
}
#top-purchased .purchased__title span::after {
  right: -75px;
}
#top-purchased .purchased__text {
  margin-bottom: 70px;
}
#top-purchased .purchased__list {
  gap: 20px 30px;
}
#top-purchased .purchased__list .purchased__item {
  width: 340px;
  text-align: center;
}
#top-purchased .purchased__list .purchased__item-title {
  margin-top: 5px;
  font-size: var(--font-size-22);
}

/*
# top-performance
------------------------*/
#top-performance {
  padding: 95px 0;
}
#top-performance .performance__inbox {
  position: relative;
}
#top-performance .performance__title {
  width: 150px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
#top-performance .performance__list {
  width: 780px;
  gap: 30px;
}
#top-performance .performance__item {
  width: 240px;
}
#top-performance .performance__item-img {
  width: 100%;
  height: 240px;
  margin-bottom: 5px;
}
#top-performance .performance__item-date {
  font-size: var(--font-size-17);
  display: block;
  text-align: center;
}
#top-performance .performance__item-title {
  font-size: var(--font-size-20);
  text-align: center;
}
#top-performance .performance__button {
  inset: auto auto 85px 0;
}

/*
# top-info
------------------------*/
#top-info {
  padding: 90px 0 100px;
}
#top-info .info__table {
  width: 530px;
}
#top-info .info__table th {
  width: 180px;
}
#top-info .info__table td {
  width: calc(100% - 180px);
}
#top-info #g-map {
  width: 530px;
}
#top-info .info__button {
  width: 280px;
  margin: 40px auto 0;
}

/*
# top-news
------------------------*/
#top-news {
  background: linear-gradient(to bottom, rgba(var(--color-white-rgb), 1) 0%, rgba(var(--color-white-rgb), 1) 26%, transparent 26%, transparent 100%), url(../img/common/ptrn-dark_bg.png);
}
#top-news .news__inbox {
  width: 83.333%;
  min-width: 1200px;
  padding: 85px 6.25% 95px;
  margin: 0 0 0 auto;
}
#top-news .news__wrap {
  width: 1080px;
  position: relative;
  min-height: 250px;
}
#top-news .news__title {
  width: 150px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
#top-news .news__post-list {
  width: 780px;
}
#top-news .news__post {
  border-bottom: 1px solid rgba(var(--body-font-color-rgb), 0.2);
}
#top-news .news__post-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 20px 0;
}
#top-news .news__post:first-child .news__post-link {
  padding-top: 0;
}
#top-news .news__post-date {
  grid-area: 1/1/3/2;
  width: 165px;
  text-align: center;
  font-size: var(--font-size-20);
}
#top-news .news__post-tags {
  width: 615px;
  grid-area: 1/2/2/3;
}
#top-news .news__post-tags .news__post-tag {
  font-size: var(--font-size-14);
}
#top-news .news__post-tags .news__post-tag:not(:first-child) {
  padding-left: 7px;
  margin-left: 7px;
  position: relative;
}
#top-news .news__post-tags .news__post-tag:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: var(--body-font-color);
  opacity: 0.2;
  inset: 0 auto 0 0;
  margin: auto 0;
}
#top-news .news__post-title {
  grid-area: 2/2/3/3;
  width: 615px;
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 25px 0;
}

/*==========================================
reason
===========================================*/
/*
# reason-archive
------------------------*/
#reason-archive .archive__text {
  margin-bottom: 50px;
}
#reason-archive .archive__check-list {
  width: 940px;
  margin: 0 auto 80px;
  gap: 0 20px;
}
#reason-archive .archive__check-list .archive__check-item {
  width: 460px;
  border-bottom: 1px solid rgba(var(--body-font-color-rgb), 0.2);
  font-size: var(--font-size-20);
}
#reason-archive .archive__check-list .archive__check-item:nth-child(-n+2) {
  border-top: 1px solid rgba(var(--body-font-color-rgb), 0.2);
}
#reason-archive .archive__check-list .archive__check-item-link {
  padding: 15px 5px 15px 65px;
}
#reason-archive .archive__check-list .archive__check-item-link::before {
  color: var(--primary-color);
  inset: 0 auto 0 30px;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-medium);
}
#reason-archive .archive__check-list .archive__check-item span {
  font-size: var(--font-size-26);
}
#reason-archive .archive__detail-list .archive__detail-item {
  margin-bottom: 45px;
}
#reason-archive .archive__detail-list .archive__detail-item:last-child {
  margin-bottom: 0;
}
#reason-archive .archive__detail-list .archive__detail-item .archive__detail-title {
  padding: 15px;
  font-size: var(--font-size-26);
  text-align: center;
  margin-bottom: 20px;
}
#reason-archive .archive__detail-list .archive__detail-item .archive__detail-text {
  padding: 0 25px;
}

/*
# reason-steps
------------------------*/
#reason-steps .steps__item {
  margin-bottom: 40px;
  padding: 45px 50px 45px 180px;
  position: relative;
}
#reason-steps .steps__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  inset: 115px auto auto 100px;
  background: rgba(var(--body-font-color-rgb), 0.2);
}
#reason-steps .steps__item:last-child {
  margin-bottom: 0;
}
#reason-steps .steps__item-title {
  font-size: var(--font-size-26);
  margin-bottom: 20px;
}
#reason-steps .steps__item-title::before {
  position: absolute;
  inset: 0 auto auto -135px;
  content: "Step " counter(number, decimal-leading-zero);
}
#reason-steps .steps__item-img {
  position: absolute;
  inset: 45px 50px auto auto;
}
#reason-steps .steps__item-content {
  width: 600px;
  min-height: 130px;
}

/*
# page__buttons
------------------------*/
.page__buttons {
  padding: 100px 0;
  gap: 25px 40px;
}
.page__buttons .page__button {
  width: 520px;
}
.page__buttons .page__button--purchased .page__button-link {
  background: url(../img/reason/purchased-button_img.jpg) left center no-repeat;
}
.page__buttons .page__button--info .page__button-link {
  background: url(../img/reason/info-button_img.jpg) left center no-repeat;
}
.page__buttons .page__button--performance .page__button-link {
  background: url(../img/reason/performance-button_img.jpg) left center no-repeat;
}
.page__buttons .page__button-link {
  height: 180px;
}
.page__buttons .page__button-link::before {
  right: 40px;
  font-size: var(--font-size-30);
}
.page__buttons .page__button-link span {
  width: 340px;
  height: 100%;
  margin-left: auto;
  padding: 0 35px;
  text-align: left;
  font-size: var(--font-size-20);
}
.page__buttons .page__button-link:hover {
  transform: translateY(-10px);
}

/*==========================================
purchased
===========================================*/
/*
# purchased-archive
------------------------*/
#purchased-archive .purchased__tags {
  gap: 15px 30px;
  margin-bottom: 75px;
}
#purchased-archive .purchased__tags .purchased__tag-link::before {
  transform: rotate(90deg);
}
#purchased-archive .purchased__tag-wrap {
  margin-bottom: 60px;
}
#purchased-archive .purchased__tag-wrap:last-child {
  margin-bottom: 0;
}
#purchased-archive .purchased__tag-wrap .purchased__tag-title {
  text-align: center;
}
#purchased-archive .purchased__tag-wrap .purchased__tag-text {
  margin-bottom: 40px;
}
#purchased-archive .purchased__post {
  margin-bottom: 40px;
  padding: 30px 40px;
  position: relative;
  background: rgba(var(--body-font-color-rgb), 0.06);
}
#purchased-archive .purchased__post:last-child {
  margin-bottom: 0;
}
#purchased-archive .purchased__post-img {
  width: 240px;
  height: 240px;
}
#purchased-archive .purchased__post-content {
  width: 735px;
  margin-left: auto;
}
#purchased-archive .purchased__post-artist {
  font-size: var(--font-size-20);
  margin-bottom: 15px;
}

/*==========================================
performance
===========================================*/
#performance-archive .performance__tags {
  gap: 10px;
  margin-bottom: 50px;
}
#performance-archive .performance__tags .performance__tag-link {
  display: inline-block;
  padding: 0 15px;
}
#performance-archive .performance__tags .performance__tag-link:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
#performance-archive .performance__tags .performance__tag-link.current {
  background: var(--primary-color);
  color: var(--color-white);
}
#performance-archive .performance__post {
  margin-bottom: 45px;
  padding: 40px;
  position: relative;
}
#performance-archive .performance__post:last-child {
  margin-bottom: 0;
}
#performance-archive .performance__post-img {
  width: 320px;
  height: 320px;
  position: absolute;
  inset: 40px auto auto 40px;
}
#performance-archive .performance__post-content {
  width: 645px;
  margin-left: auto;
  min-height: 320px;
}
#performance-archive .performance__post-title {
  padding-left: 35px;
  position: relative;
}
#performance-archive .performance__post-title::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--body-font-color);
}
#performance-archive .performance__post-prof {
  font-weight: var(--font-weight-bold);
  text-align: right;
}
#performance-archive .performance__post-text {
  margin-bottom: 0;
}

/*==========================================
info
===========================================*/
/*
# info-greeting
------------------------*/
#info-greeting .greeting__subtitle {
  text-align: center;
  margin-bottom: 35px;
}
#info-greeting .greeting__content {
  width: 525px;
}
#info-greeting .greeting__video {
  width: 520px;
}
#info-greeting .greeting__video video {
  width: 100%;
}

/*
# info-section
------------------------*/
#info-section .info__table {
  margin-bottom: 50px;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  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: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact-way .c-tel {
  text-align: center;
}
#contact-way .c-tel .tel__num {
  width: 420px;
  margin: 0 auto;
  display: block;
  background: url(../img/common/ptrn-dark_bg.png);
}
#contact-way .c-tel .tel__num::before {
  left: 55px;
}

#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 11px 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .flex:has(.upload-part) {
  gap: 15px 75px;
}
#contact .contact__form .upload-part {
  width: 310px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#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 input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

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

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