@charset "UTF-8";
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

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

/*==========================================
パンくずリスト
===========================================*/
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;
}

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

.section-title {
  color: var(--primary-color);
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.26em;
  position: relative;
  margin-bottom: 45px;
}
.section-title::before {
  position: absolute;
  content: "";
  width: calc((100vw - 1080px) / 2);
  height: 1px;
  inset: 30px auto auto calc(-1 * (100vw - 1040px) / 2);
  background: var(--primary-color);
  margin: auto 0;
}

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

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

.com-text {
  line-height: 2.2;
  letter-spacing: var(--body-letter-spacing);
}

.com-button {
  height: 60px;
  color: var(--color-white);
  font-size: var(--font-size-18);
  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 25px;
  position: relative;
  text-align: left;
}
.com-button span {
  width: 100%;
}
.com-button::after {
  position: absolute;
  inset: 0 45px 0 auto;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list {
  gap: 15px 30px;
}
.c-contact__list .com-tel {
  line-height: 1.1;
  text-align: center;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-30);
  letter-spacing: 0.08em;
  padding-left: 20px;
  background: url(../img/common/tel_ic.png) left bottom 7px no-repeat;
}
.c-contact__list .com-tel .tel__num small {
  font-size: var(--font-size-16);
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .com-mail .mail__button {
  width: 250px;
  color: var(--color-white);
  background: url(../img/common/mail_ic.png) left 16px center no-repeat, var(--accent-color);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-14);
  padding: 0 15px 0 75px;
  position: relative;
}
.c-contact__list .com-mail .mail__button::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  inset: 0 auto 0 55px;
  background: var(--color-white);
  z-index: 1;
}

.c-address {
  font-size: var(--font-size-14);
}
.c-address .address__locate {
  margin-bottom: 25px;
}
.c-address .address__worktime .worktime__item {
  margin-bottom: 5px;
  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: 8px;
  margin-right: 8px;
  position: relative;
}
.c-address .address__worktime .worktime__item dt::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: var(--body-font-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}

.c-sns__list {
  gap: 20px 30px;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  padding: 25px 2.3437% 0 2.60416%;
  z-index: 1001;
}
#header .header__right {
  width: 600px;
}

/*==========================================
nav
===========================================*/
#nav {
  margin-top: 20px;
}
#nav .nav__list {
  gap: 15px 25px;
  font-size: var(--font-size-14);
}
#nav .nav__list .nav__item-link {
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#nav .nav__list .nav__item-link::before, #nav .nav__list .nav__item-link::after {
  content: "";
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  display: block;
}
#nav .nav__list .nav__item-link::before {
  left: 50%;
}
#nav .nav__list .nav__item-link:after {
  right: 50%;
}
#nav .nav__list .nav__item-link:hover {
  color: var(--primary-color);
}
#nav .nav__list .nav__item-link:hover::before, #nav .nav__list .nav__item-link:hover::after {
  width: 50%;
  border-bottom: 1px solid var(--primary-color);
}
#nav .nav__list .nav__item-link.current {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}
#nav .nav__list .nav__item-link.current::before, #nav .nav__list .nav__item-link.current::after {
  border-bottom: none;
}
#nav .nav__list .nav__item-link.current:hover::before, #nav .nav__list .nav__item-link.current:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: clamp(700px, 53.6455vw, 1030px);
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
}
#top-mv .mv__catch {
  width: 48.802%;
  position: absolute;
  inset: 14.0776% 0 auto;
  margin: 0 auto;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 135px 0 140px;
  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-52);
  letter-spacing: 0.26em;
  text-align: center;
  margin-bottom: 55px;
  text-shadow: 2px 2px 10px rgba(var(--color-green-rgb), 1);
}
#top-about .about__title small {
  display: block;
  font-size: var(--font-size-32);
}
#top-about .about__title span {
  border-bottom: 1px solid;
  line-height: 1;
  display: inline-block;
}
#top-about .about__text {
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-18);
}

/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 90px 0 145px;
  background: url(../img/top/greeting_bg.jpg) center/cover no-repeat;
}
#top-greeting .inbox {
  width: clamp(1080px, 66.6666%, 1280px);
}
#top-greeting .greeting__title {
  width: 1080px;
}
#top-greeting .greeting__headline {
  position: relative;
  padding: 40px 0 0;
  min-height: 553px;
  width: 1080px;
  margin: 0 auto;
}
#top-greeting .greeting__headline-content {
  width: 580px;
  font-size: var(--font-size-18);
}
#top-greeting .greeting__headline-img {
  position: absolute;
  inset: 0 -55px auto auto;
}
#top-greeting .greeting__profile {
  margin-top: 45px;
  position: relative;
  background: var(--color-white);
  padding: 35px 0;
}
#top-greeting .greeting__profile .profile__title {
  position: absolute;
  inset: -30px 0 auto;
  width: 405px;
  margin: 0 auto;
  color: var(--color-white);
  font-size: var(--font-size-26);
  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.26em;
  padding: 5px 0;
}
#top-greeting .greeting__profile .profile__list {
  width: 1080px;
  margin: 0 auto;
}
#top-greeting .greeting__profile .profile__list .profile__item {
  border-bottom: 1px solid var(--form-border-color);
  padding: 12px 195px 12px 215px;
  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: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  inset: 23px auto auto 185px;
}

/*
# top-support
------------------------*/
#top-support {
  padding: 135px 0 150px;
}
#top-support .support__list {
  gap: 25px 13.3333px;
}
#top-support .support__list .support__item {
  width: 260px;
}
#top-support .support__list .support__item-link {
  display: block;
  background: var(--color-white);
}
#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 {
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-black);
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  margin: 0 auto 30px;
  height: 385px;
  letter-spacing: 0.26em;
  text-align: left;
  padding-top: 75px;
  position: relative;
  transition: all 0.3s;
}
#top-support .support__list .support__item-title::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  inset: 35px 0 auto;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary-color);
}
#top-support .support__list .support__item-text {
  text-align: center;
  padding: 0 25px;
  margin-bottom: 40px;
}
#top-support .support__list .support__item-img {
  overflow: hidden;
}
#top-support .support__list .support__item-img img {
  transition: all 0.3s;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 115px 0 140px;
}
#top-news .inbox {
  position: relative;
}
#top-news .news__post-list {
  gap: 30px;
}
#top-news .news__post-list .news__post {
  width: 340px;
}
#top-news .news__post-list .news__post-link {
  row-gap: 10px;
}
#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: 270px;
}
#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);
}
#top-news .news__post-list .news__post-date {
  width: 125px;
}
#top-news .news__post-list .news__post-tags {
  width: calc(100% - 125px);
}
#top-news .news__post-list .news__post-tags li {
  padding: 0 7px;
  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 {
  font-size: var(--font-size-18);
  letter-spacing: var(--body-letter-spacing);
  line-height: 1.6;
  transition: all 0.3s;
}
#top-news .news__butoon {
  width: 300px;
  position: absolute;
  inset: 10px 0 auto auto;
}

/*
# top-info
------------------------*/
#top-info {
  padding: 140px 0 135px;
  position: relative;
  background: url(../img/top/info_bg.jpg) center/cover no-repeat;
}
#top-info .info__table {
  width: 565px;
}
#top-info #g-map {
  width: 45.20832%;
  position: absolute;
  inset: 235px 0 auto auto;
}
#top-info #g-map .map {
  height: 515px;
  /*==========================================
  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: 90px 0;
}
#footer .footer__inbox {
  width: clamp(1080px, 66.6666%, 1280px);
}
#footer .footer__left {
  width: 385px;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
#footer .footer__left .footer__address {
  margin-bottom: 60px;
}
#footer .footer__right {
  width: 620px;
}
#footer .footer__right .footer__contact-list {
  margin-bottom: 50px;
}
#footer .footer__right .footer__nav-list {
  width: 515px;
  margin-left: auto;
  gap: 5px 22px;
  font-size: var(--font-size-14);
}
#footer .footer__right .footer__nav-list .footer__nav-link:hover {
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower-sv .sv__title {
  width: 880px;
  margin: 0 auto;
  font-size: var(--font-size-48);
  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 .applies__list {
  row-gap: 35px;
}
.com-applies__section .applies__list .applies__item {
  width: 250px;
  height: 250px;
  margin-right: 26.666px;
  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 {
  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-20);
  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-13);
}
.com-applies__section .applies__text-etc {
  text-align: right;
  font-size: var(--font-size-18);
  color: var(--primary-color);
}

.com-content__section .content__item {
  background: var(--color-white);
  margin-bottom: 20px;
}
.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: 30px 110px;
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  background: url(../img/components/content/content-check_ic.png) left 70px top 43px no-repeat;
}
.com-content__section .content__item-text {
  padding: 25px 70px 45px;
}

.c-support__section .support__list {
  row-gap: 40px;
}
.c-support__section .support__item {
  width: 520px;
}
.c-support__section .support__item-thumb {
  width: 100%;
  height: 330px;
  margin-bottom: 10px;
}
.c-support__section .support__item-title {
  margin-bottom: 10px;
}

.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-24);
  font-weight: var(--font-weight-black);
  padding: 30px 215px 30px 65px;
  border-bottom: 1px solid var(--form-border-color);
}
.c-price__section .price__item-content {
  padding: 20px 70px 45px;
}
.c-price__section .price__item-price {
  width: 200px;
  position: absolute;
  inset: 40px 0 auto auto;
  font-weight: var(--font-weight-bold);
}

.c-report__section .report__item {
  margin-bottom: 30px;
  padding: 35px 65px;
}
.c-report__section .report__item:last-child {
  margin-bottom: 0;
}
.c-report__section .report__item-thumb {
  width: 160px;
}
.c-report__section .report__item-content {
  width: 740px;
  gap: 20px;
}
.c-report__section .report__item-tags {
  max-width: calc(100% - 150px);
  width: auto;
  gap: 8px;
}
.c-report__section .report__item-tags li {
  background: var(--primary-color);
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  padding: 0 25px;
}
.c-report__section .report__item-profile {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
}
.c-report__section .report__item-profile:has(.profile__age) .profile__gender {
  position: relative;
  padding-right: 8px;
  margin-right: 8px;
}
.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%;
}

/*==========================================
corp
===========================================*/
#corp-applies .applies__list .applies__item:nth-child(1) {
  width: 880px;
  border-radius: 137px;
}

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

/*==========================================
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 .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#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 .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フレーム時)
===========================================*/