@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;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  line-height: 1.6;
  margin-bottom: 12%;
}
.section-title span {
  display: block;
}
.section-title .title-en {
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-size: var(--font-size-17);
  font-family: var(--sub-font-family);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.section-title .title-ja {
  font-size: var(--font-size-24);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
}

.headline-title {
  color: var(--primary-color);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--body-letter-spacing);
  background: linear-gradient(to right, #e9f8f0 0%, #dff2f0 100%);
  border-radius: 3vw;
  padding: 2% 5%;
  margin-bottom: 10%;
}

.sub-title {
  font-size: var(--font-size-19);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  letter-spacing: var(--body-letter-spacing);
  margin-bottom: 6%;
}
.sub-title span {
  position: relative;
  padding-right: 8vw;
  display: inline-block;
}
.sub-title span::after {
  position: absolute;
  content: "";
  height: 7vw;
  width: 1px;
  background: var(--body-font-color);
  transform: rotate(45deg);
  inset: 1vw 3vw auto auto;
  margin: 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-radius: 20px;
  border: none;
}

.com-button {
  height: 14vw;
  border-radius: 8vw;
  color: var(--color-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  font-size: var(--font-size-14);
  padding: 0 8vw;
}
.com-button .com-button_arrow {
  position: relative;
  display: block;
  width: 100%;
}
.com-button .com-button_arrow::before, .com-button .com-button_arrow::after {
  position: absolute;
  content: "";
  z-index: 3;
}
.com-button .com-button_arrow::before {
  inset: 0 0 0 auto;
  margin: auto;
  width: 1.85vw;
  height: 1.85vw;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.3s;
}
.com-button .com-button_arrow::after {
  width: 6vw;
  height: 2px;
  background: var(--color-white);
  inset: 0 0 0 auto;
  margin: auto 0;
}

.circle-icon {
  position: relative;
}
.circle-icon::before {
  position: absolute;
  content: "";
  width: 7vw;
  height: 7vw;
  border-radius: 50%;
  inset: 0 20px 0 auto;
  margin: auto 0;
  z-index: 2;
}
.circle-icon--gradation::before {
  background: linear-gradient(to right, #4d9b5b 0%, #8dba57 52%, #f2db5e 100%);
}
.circle-icon--primary::before {
  background: var(--primary-color);
}
.circle-icon--green::before {
  background: var(--color-lightgreen);
}
.circle-icon--pink::before {
  background: var(--color-pink);
}
.circle-icon--yellow::before {
  background: var(--color-yellow);
}
.circle-icon--lightgreen::before {
  background: var(--color-lightgreen);
}
.circle-icon--lightblue::before {
  background: var(--color-lightblue);
}

.bs-icon::before {
  color: var(--color-white);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-regular);
}
.bs-icon--box-arrow::before {
  content: "\f1c5";
}
.bs-icon--arrow::before {
  content: "\f138";
}

.com-tel {
  line-height: 1.2;
  text-align: center;
}
.com-tel .tel__num {
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-semibold);
  font-family: var(--sub-font-family);
  letter-spacing: 0.04em;
}
.com-tel .tel__num small {
  font-size: var(--font-size-16);
}
.com-tel .tel__text {
  width: 79%;
  margin: 0 auto;
  display: block;
}

.bg-color--gray {
  background: var(--color-gray);
}
.bg-color--gray.has-top-frame {
  position: relative;
}
.bg-color--gray.has-top-frame::before, .bg-color--gray.has-top-frame::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 20vw;
  background: url(../img/top/greeting-top_frame.png) center bottom/100% no-repeat;
  top: -20vw;
}
.bg-color--gray.has-top-frame::before {
  left: 0;
}
.bg-color--gray.has-top-frame::after {
  right: 0;
  transform: scale(-1, 1);
}

.pl-md {
  padding-left: 8%;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*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: 12vw;
  height: 12vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, #f2db5e 0%, #8dba57 52%, #4d9b5b 100%);
}
.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: 8vw;
}
.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.25vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 15% 6%;
  background: var(--color-white);
}
#drawer-nav .drawer-logo {
  width: 40%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer-nav .drawer-nav {
  margin-bottom: 10%;
}
#drawer-nav .drawer-nav .drawer-link {
  padding: 9% 0 9% 5%;
  border-bottom: 1px solid var(--color-gray);
  font-size: var(--font-size-16);
}
#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 {
  position: relative;
  text-decoration: underline;
}
#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__sns-list {
  margin-bottom: 8%;
}
#drawer-nav .drawer__tel {
  margin-bottom: 8%;
}
#drawer-nav .drawer__tel .tel__text {
  width: 65%;
  margin: 0 auto;
}
#drawer-nav .drawer__mail-button {
  width: 80%;
  margin: 0 auto;
}
#drawer-nav .drawer__subpage {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 10%;
}
#drawer-nav .drawer__subpage-item a {
  text-decoration: underline;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__section {
  background: var(--color-gray);
  padding: 15% 0;
}
.c-contact__section .contact__wrap {
  background: var(--color-white);
  border-radius: 10vw;
  padding: 12% 6%;
  position: relative;
}
.c-contact__section .contact__title {
  text-align: center;
}
.c-contact__section .contact__text-wrap {
  text-align: center;
  margin-bottom: 12%;
}
.c-contact__section .contact__info .contact__subtitle {
  background: linear-gradient(to right, var(--color-yellow) 0%, var(--color-emerald) 51%, var(--color-lightblue) 100%);
  text-align: center;
  border-radius: 20px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-16);
  color: var(--color-white);
  padding: 2%;
  margin-bottom: 3%;
}
.c-contact__section .contact__info .contact__tel {
  margin-bottom: 12%;
}
.c-contact__section .contact__img {
  width: 70%;
  position: absolute;
  inset: auto -7% -40vw auto;
}
.c-contact__section .contact__img img {
  border-radius: 20vw 8vw 8vw;
}

.c-sns__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4vw 8vw;
}

/*==========================================
header
===========================================*/
#header {
  position: fixed;
  z-index: 1001;
  width: 100%;
  inset: 0 0 auto;
  background: var(--color-white);
  height: 15vw;
  display: flex;
  align-items: center;
  padding: 2% 4%;
}
#header .header__logo {
  width: 13%;
  line-height: 1;
}
#header #nav {
  display: none;
}

/*==========================================
nav
===========================================*/
.com-nav__list {
  gap: 2vw 3vw;
  font-weight: var(--font-weight-bold);
}
.com-nav__list .com-nav__item .com-nav__link {
  padding-left: 3vw;
  display: block;
  position: relative;
}
.com-nav__list .com-nav__item .com-nav__link::before {
  position: absolute;
  content: "";
  width: 1.6vw;
  height: 1.6vw;
  border-radius: 50%;
  inset: 0 auto 0 0;
  margin: auto 0;
  z-index: 1;
}
.com-nav__list .com-nav__item:nth-child(4n-3) .com-nav__link::before {
  background: var(--color-lightgreen);
}
.com-nav__list .com-nav__item:nth-child(4n-2) .com-nav__link::before {
  background: var(--color-pink);
}
.com-nav__list .com-nav__item:nth-child(4n-1) .com-nav__link::before {
  background: var(--color-yellow);
}
.com-nav__list .com-nav__item:nth-child(4n) .com-nav__link::before {
  background: var(--color-lightblue);
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: calc(100vh - 15vw);
  height: calc(100svh - 15vw);
  background: url(../img/top/mv/mv_ill.png) right top 4vw/95% no-repeat;
}
#top-mv .mv__catch {
  width: 90%;
  position: absolute;
  inset: auto auto 10% 0;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 18% 0;
  background: url(../img/top/about-cont_deco.png) right top 25vw/35% no-repeat;
}
#top-about .about__inbox {
  position: relative;
}
#top-about .about__title .title-ja {
  font-size: var(--font-size-24);
}
#top-about .about__content-inner {
  padding: 0 3% 0 8%;
}
#top-about .about__img {
  margin-bottom: 10%;
}
#top-about .about__button {
  margin-top: 15%;
}

/*
# top-content
------------------------*/
#top-content {
  padding: 0 3% 18%;
}
#top-content .content__inbox {
  padding: 15% 8%;
  background: var(--color-gray);
  border-radius: 6vw;
}
#top-content .content__title {
  text-align: center;
}
#top-content .content__list .content__item {
  width: 80%;
  margin: 0 auto 12%;
}
#top-content .content__list .content__item:last-child {
  margin-bottom: 0;
}
#top-content .content__list .content__item-link {
  display: block;
}
#top-content .content__list .content__item-link::before {
  inset: 41vw auto auto -4%;
}
#top-content .content__list .content__item-link:hover {
  transform: translateY(-10px);
}
#top-content .content__list .content__item-img {
  margin-bottom: 3.409%;
}
#top-content .content__list .content__item-img img {
  border-radius: 15vw 3vw 3vw 3vw;
}
#top-content .content__list .content__item-title {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  margin-bottom: 3.409%;
  line-height: 1.6;
}
#top-content .content__list .content__item-title, #top-content .content__list .content__item-text {
  padding-left: 11.1818%;
}
#top-content .content__list .content__item-text {
  font-size: var(--font-size-14);
}

/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 18% 0 0;
  background: url(../img/top/greeting-tr_deco.png) top 105px right/12.9166% no-repeat, linear-gradient(to bottom, var(--color-gray) 95%, var(--color-white) 95%);
}
#top-greeting .greeting__headline {
  width: 90%;
  position: relative;
  margin: 0 auto 15%;
}
#top-greeting .greeting__headline .greeting__title {
  text-align: center;
}
#top-greeting .greeting__headline-img {
  margin-bottom: 8%;
}
#top-greeting .greeting__headline-img img {
  border-radius: 8vw;
}
#top-greeting .greeting__headline-content .greeting__headline-text--name {
  text-align: right;
}
#top-greeting .greeting__profile-wrap {
  position: relative;
}
#top-greeting .greeting__profile-wrap::before {
  position: absolute;
  content: "";
  width: 9%;
  height: 16vw;
  background: url(../img/top/greeting-cont_deco.png) center/100% no-repeat;
  inset: -3vw 3% auto auto;
  z-index: 1;
}
#top-greeting .greeting__post-part {
  background: var(--color-white);
  border-radius: 7vw;
  position: relative;
  padding: 12% 6%;
  margin-bottom: 15%;
}
#top-greeting .greeting__post-part .greeting__part-title {
  position: absolute;
  inset: -5vw auto auto 10%;
  font-size: var(--font-size-21);
}
#top-greeting .greeting__post-part .greeting__part-item {
  padding-left: 5%;
  position: relative;
  margin-bottom: 8%;
  font-size: var(--font-size-14);
}
#top-greeting .greeting__post-part .greeting__part-item:last-child {
  margin-bottom: 0;
}
#top-greeting .greeting__post-part .greeting__part-item::before {
  position: absolute;
  content: "";
  width: 1.25vw;
  height: 1.25vw;
  border-radius: 50%;
  inset: 2.5vw auto auto 0;
  margin: auto 0;
  background: var(--primary-color);
}
#top-greeting .greeting__post-part .greeting__part-item .performance__item-year {
  display: block;
  font-weight: var(--font-weight-bold);
}
#top-greeting .greeting__post-part .greeting__part-button {
  width: 100%;
  margin-top: 12%;
}
#top-greeting .greeting__part-img img {
  border-radius: 7vw 13vw 7vw 7vw;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 15% 0 18%;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__title {
  text-align: center;
}
#top-news .news__post-list {
  width: 85%;
  margin: 0 auto;
}
#top-news .news__post-list .news__post {
  width: 100%;
  font-weight: var(--font-weight-bold);
  margin-bottom: 12%;
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news__post-list .news__post:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
#top-news .news__post-list .news__post:first-child .news__post-link {
  padding-top: 0;
}
#top-news .news__post-list .news__post-img {
  width: 100%;
  height: 51vw;
  border-radius: 16vw 4vw 4vw;
  margin-bottom: 3%;
}
#top-news .news__post-list .news__post-img img {
  border-radius: 16vw 4vw 4vw;
}
#top-news .news__post-list .news__post-link {
  padding: 7% 0;
  display: block;
  position: relative;
}
#top-news .news__post-list .news__post-link::before {
  inset: auto 0 3vw auto;
}
#top-news .news__post-list .news__post-link:hover .news__post-date,
#top-news .news__post-list .news__post-link:hover .news__post-title {
  color: var(--primary-color);
}
#top-news .news__post-list .news__post-date {
  font-size: var(--font-size-13);
  display: block;
  transition: all 0.3s;
}
#top-news .news__post-list .news__post-title {
  font-size: var(--font-size-15);
  padding: 3% 0 5%;
  transition: all 0.3s;
}
#top-news .news__post-list .news__post-tags {
  gap: 1.5vw;
  display: flex;
  flex-wrap: wrap;
  width: 85%;
}
#top-news .news__post-list .news__post-tags .news__post-tag {
  color: var(--primary-color);
  background: var(--color-lightgreen-light);
  padding: 0 2vw;
  border-radius: 6vw;
  font-size: var(--font-size-12);
}
#top-news .news__button {
  margin-top: 15%;
}

/*
# top-sns
------------------------*/
#top-sns {
  position: relative;
  z-index: 1;
  padding-bottom: 18%;
}
#top-sns::before, #top-sns::after {
  position: absolute;
  content: "";
  bottom: 0;
  background: url(../img/top/sns-btm_frame.png) center bottom/100% no-repeat;
  width: 20%;
  height: 41vw;
  z-index: -1;
}
#top-sns::before {
  left: 0;
}
#top-sns::after {
  right: 0;
  transform: scale(-1, 1);
}
#top-sns .sns__inbox {
  padding: 0 5%;
}
#top-sns .sns__title {
  text-align: center;
}
#top-sns .sns__list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 4vw 4%;
}
#top-sns .sns__list .sns__item {
  width: 48%;
}
#top-sns .sns__list .sns__item-link {
  width: 100%;
  display: block;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-16);
  font-family: var(--sub-font-family);
  background-image: repeating-linear-gradient(-45deg, #e2f3ea 0, #e2f3ea 4px, transparent 0, transparent 50%);
  background-size: 13px 13px;
  background-color: #eff8f3;
  border-radius: 4vw;
}
#top-sns .sns__list .sns__item-link::before {
  right: 4%;
  width: 6vw;
  height: 6vw;
  font-size: var(--font-size-12);
}
#top-sns .sns__list .sns__item-link span {
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  position: relative;
}
#top-sns .sns__list .sns__item-link small {
  font-size: var(--font-size-12);
}
#top-sns .sns__list .sns__item--instagram .sns__item-link span {
  background: url(../img/common/sns/Instagram_Glyph_Gradient.svg) left 3% center/6vw no-repeat;
}
#top-sns .sns__list .sns__item--youtube .sns__item-link span {
  background: url(../img/common/youtube_ic.png) left 3% center/6vw no-repeat;
}
#top-sns .sns__list .sns__item--x .sns__item-link span {
  background: url(../img/common/sns/X_logo_Black.svg) left 3% center/6vw no-repeat;
}
#top-sns .sns__list .sns__item--line .sns__item-link span {
  background: url(../img/common/sns/LINE_logo.svg) left 3% center/6vw no-repeat;
}

/*
# top-company
------------------------*/
#top-company {
  padding: 18% 0 0;
  background: var(--color-gray);
}
#top-company .company__title {
  text-align: center;
}
#top-company .company__table {
  margin-bottom: 15%;
}
#top-company #g-map {
  position: relative;
  z-index: 1;
}
#top-company #g-map::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../img/top/company-map_deco.png) center/100% no-repeat;
  width: 20vw;
  height: 20vw;
  inset: auto -5% -5vw auto;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../img/common/ft-lt_frame.png) left top/20% no-repeat, url(../img/common/ft-rt_frame.png) right top/20% no-repeat, var(--color-white);
  padding: 35% 0 12%;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__inbox::before {
  position: absolute;
  content: "";
  width: 28%;
  height: 27vw;
  background: url(../img/common/ft-left_deco.png) center/100% no-repeat;
  inset: -38vw auto auto 5%;
}
#footer .footer__headline {
  margin-bottom: 5%;
}
#footer .footer__left {
  text-align: center;
}
#footer .footer__logo {
  display: inline-block;
  width: 28%;
  margin-bottom: 13%;
}
#footer .footer__right .footer__sns-list {
  margin-bottom: 10%;
}
#footer .footer__right .footer__nav-list {
  background: linear-gradient(to right, #e9f8f0 0%, #dff2f0 100%);
  border-radius: 5vw;
  padding: 8% 4%;
  display: flex;
  flex-wrap: wrap;
}
#footer .footer__right .footer__nav-list .footer__nav-item {
  font-size: var(--font-size-12);
}
#footer .footer__right .footer__nav-list .footer__nav-item .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__bottom-nav .bottom__nav-list {
  display: flex;
  justify-content: center;
  gap: 2vw 5vw;
}
#footer .footer__bottom-nav .bottom__nav-list .bottom__nav-item {
  position: relative;
  font-size: var(--font-size-12);
}
#footer .footer__bottom-nav .bottom__nav-list .bottom__nav-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  inset: 0 -2.5vw 0 auto;
  margin: auto 0;
  background: var(--body-font-color);
}
#footer .footer__bottom-nav .bottom__nav-list .bottom__nav-item:last-child::after {
  background: none;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  margin-top: 15vw;
  height: 51vw;
}
.lower-sv .sv__title {
  font-size: var(--font-size-23);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  position: absolute;
  inset: auto auto 0 3%;
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../img/sv/sv-ttl_deco.png) center/100% no-repeat;
  width: 55%;
  height: 45vw;
  inset: -26vw auto auto -10%;
  margin: auto 0;
}
.lower-sv .sv__bg {
  width: 88%;
  height: 75%;
  border-radius: 15vw 0 0 4vw;
  position: absolute;
  inset: 0 0 auto auto;
}

#about-sv .sv__bg {
  background: url(../img/sv/about-sv_img.jpg) center/100% no-repeat;
}

#mental-health-sv .sv__bg {
  background: url(../img/sv/mental-health-sv_img.jpg) center/100% no-repeat;
}

#expert-sv .sv__bg {
  background: url(../img/sv/expert-sv_img.jpg) center/100% no-repeat;
}

#other-business-sv .sv__bg {
  background: url(../img/sv/other-business-sv_img.jpg) center/100% no-repeat;
}

#news-sv .sv__bg {
  background: url(../img/sv/news-sv_img.jpg) center/100% no-repeat;
}

#contact-sv .sv__bg {
  background: url(../img/sv/contact-sv_img.jpg) center/100% no-repeat;
}

#complete-sv .sv__bg {
  background: url(../img/sv/complete-sv_img.jpg) center/100% no-repeat;
}

#privacy-sv .sv__bg {
  background: url(../img/sv/privacy-sv_img.jpg) center/100% no-repeat;
}

#site-sv .sv__bg {
  background: url(../img/sv/site-sv_img.jpg) center/100% no-repeat;
}

#e404-sv .sv__bg {
  background: url(../img/sv/e404-sv_img.jpg) center/100% no-repeat;
}

/*==========================================
about
===========================================*/
/*
# about-psychoro
------------------------*/
#about-psychoro .psychoro__inbox {
  background: url(../img/about/psychoro-headline_bg.png) top 115px center no-repeat;
}
#about-psychoro .psychoro__headline {
  position: relative;
  margin-bottom: 12%;
}
#about-psychoro .psychoro__headline .psychoro__img {
  margin-bottom: 8%;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item {
  margin-bottom: 15%;
  position: relative;
  padding-left: 17%;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item:last-child {
  margin-bottom: 0;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item::before {
  position: absolute;
  inset: 0 auto auto 0;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  content: counter(number, decimal-leading-zero) ".";
  line-height: 1;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item::after {
  position: absolute;
  content: "";
  inset: auto auto 0 4%;
  height: calc(100% - 12vw);
  width: 2px;
  background: linear-gradient(to bottom, var(--color-lightgreen) 0%, var(--color-emerald) 51%, var(--color-yellow) 100%);
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__item-title {
  margin-bottom: 20px;
  position: relative;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__item-title::before {
  position: absolute;
  content: "";
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__item-title .policy__item-title-en {
  font-size: var(--font-size-20);
  display: inline-block;
  position: relative;
  padding-right: 7vw;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__item-title .policy__item-title-en::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: var(--body-font-color);
  transform: rotate(45deg);
  inset: 0 0 0 auto;
  margin: auto 0;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item:nth-child(2) .policy__item-title::before {
  width: 12%;
  height: 18vw;
  inset: -5vw 0 auto auto;
  background: url(../img/about/psychoro-vision_deco.png) center/100% no-repeat;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item:nth-child(3) .policy__item-title::before {
  width: 23vw;
  height: 23vw;
  inset: -10vw 0 auto auto;
  background: url(../img/about/psychoro-value_deco.png) center/100% no-repeat;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__item-title-ja,
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__num-item-title-ja {
  font-size: var(--font-size-19);
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__num-item {
  margin-bottom: 15%;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__num-item:last-child {
  margin-bottom: 0;
}
#about-psychoro .psychoro__policy-list .policy__item-content .bg-gradation__item {
  display: inline-block;
  font-size: var(--font-size-14);
  border-radius: 7vw;
  margin: 0 4% 3% 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  padding: 0.5vw 2vw;
}
#about-psychoro .psychoro__policy-list .policy__item-content .bg-gradation__item:last-child {
  margin-right: 0;
}
#about-psychoro .psychoro__policy-list .policy__item-content .bg-gradation__item--pattern01 {
  background: linear-gradient(to right, #80b2d9 0%, #4bc5b3 100%);
}
#about-psychoro .psychoro__policy-list .policy__item-content .bg-gradation__item--pattern02 {
  background: var(--color-emerald);
}
#about-psychoro .psychoro__policy-list .policy__item-content .bg-gradation__item--pattern03 {
  background: linear-gradient(to right, #4bc5b3 0%, var(--color-yellow) 100%);
}

.com-number__list .com-number__item .com-number__title {
  padding-left: 14%;
  display: flex;
  align-items: center;
}
.com-number__list .com-number__item .com-number__title::before {
  position: absolute;
  content: counter(number, counter-increment);
  inset: 0 auto 0 0;
  color: var(--color-white);
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8vw;
  height: 8vw;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.com-number__list .com-number__item .com-number__title span {
  font-size: var(--font-size-18);
}
.com-number__list .com-number__item .com-number__content {
  background: var(--color-gray);
  border-radius: 6vw;
  padding: 8% 6%;
}

/*
# about-history
------------------------*/
#about-history .history__list .history__item {
  margin-bottom: 10%;
}
#about-history .history__list .history__item:last-child {
  margin-bottom: 0;
}
#about-history .history__list .history__item-link {
  display: flex;
  align-items: baseline;
  border-radius: 6vw;
  background: var(--color-white);
  padding: 8% 17% 8% 4%;
  gap: 0 4vw;
}
#about-history .history__list .history__item-link:hover {
  opacity: 0.9;
  background: var(--color-lightgreen-light);
  transform: translateX(10px);
}
#about-history .history__list .history__item-link.circle-icon::before {
  width: 8vw;
  height: 8vw;
  right: 5%;
}
#about-history .history__list .history__item-link .history__item-date {
  width: 30%;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-13);
}
#about-history .history__list .history__item-link .history__item-title {
  width: 65%;
  font-size: var(--font-size-15);
}

/*
# about-single
------------------------*/
#about-single .about__post-title .title-year {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  padding-left: 6%;
  position: relative;
  margin-bottom: 3%;
}
#about-single .about__post-title .title-year::before {
  position: absolute;
  content: "";
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: var(--primary-color);
  inset: 2.85vw auto auto 0;
}
#about-single .about__post-title .title-ja {
  font-size: var(--font-size-21);
}
#about-single .about__post-gallery {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-top: 10%;
  row-gap: 4vw;
}
#about-single .about__post-gallery .gallery__item {
  width: 48%;
  height: 31vw;
  border-radius: 16vw 4vw 4vw;
}
#about-single .about__post-gallery .gallery__item img {
  border-radius: 16vw 4vw 4vw;
}

/*==========================================
mental-health
===========================================*/
/*
# mh-worries
------------------------*/
#mh-worries {
  position: relative;
}
#mh-worries .inbox {
  background: url(../img/mental-health/worries_deco.png) right 8% top/35% no-repeat;
}
#mh-worries .worries__title .title-ja {
  font-size: var(--font-size-22);
}
#mh-worries .worries__list .worries__item {
  margin-bottom: 8%;
  background: var(--color-lightgreen-light);
  border-radius: 7vw;
  padding: 4% 3% 4% 15%;
  font-size: var(--font-size-15);
}
#mh-worries .worries__list .worries__item:last-child {
  margin-bottom: 0;
}
#mh-worries .worries__list .worries__item::before {
  content: "\f26e";
  color: var(--color-white);
  width: 5vw;
  height: 5vw;
  background: var(--primary-color);
  border-radius: 50%;
  font-size: var(--font-size-16);
  inset: 4vw auto 0 4%;
  margin: 0;
}
#mh-worries .worries__img {
  width: 75%;
  margin: 15% auto 0;
}
#mh-worries .worries__img img {
  border-radius: 10vw 30vw 10vw 10vw;
}

/*
# mh-about
------------------------*/
#mh-about {
  padding-bottom: 25%;
}
#mh-about .inbox {
  position: relative;
  z-index: 1;
}
#mh-about .inbox::before, #mh-about .inbox::after {
  position: absolute;
  content: "";
}
#mh-about .inbox::before {
  z-index: -1;
  width: 38%;
  height: 42vw;
  background: url(../img/mental-health/about_deco.png) center/100% no-repeat;
  inset: auto auto 25vw 0;
}
#mh-about .inbox::after {
  inset: auto 0 -15vw;
  margin: auto;
  vertical-align: middle;
  width: 10vw;
  height: 10vw;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(135deg);
}
#mh-about .about__question {
  margin-top: 15%;
}
#mh-about .about__question .question__title {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  margin-bottom: 6%;
}
#mh-about .about__question .question__text {
  margin-left: 6%;
  padding-left: 6%;
  position: relative;
}
#mh-about .about__question .question__text::before {
  position: absolute;
  content: "";
  inset: 0 auto auto 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-lightgreen) 0%, var(--color-emerald) 51%, var(--color-yellow) 100%);
}

/*
# mh-communicate
------------------------*/
#mh-communicate {
  padding: 18% 0;
  position: relative;
}
#mh-communicate::before, #mh-communicate::after {
  position: absolute;
  content: "";
  width: 16%;
  height: 29vw;
  background: url(../img/mental-health/communication-top_frame.png) center top/100% no-repeat;
  top: 0;
}
#mh-communicate::before {
  left: 0;
}
#mh-communicate::after {
  right: 0;
  transform: scale(-1, 1);
}
#mh-communicate .communicate__title {
  text-align: center;
}
#mh-communicate .communicate__title .title-notice {
  position: relative;
  display: inline-block;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-19);
  padding: 0 8vw;
}
#mh-communicate .communicate__title .title-notice::before, #mh-communicate .communicate__title .title-notice::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--body-font-color);
}
#mh-communicate .communicate__title .title-notice::before {
  left: 0;
  transform: rotate(-40deg);
}
#mh-communicate .communicate__title .title-notice::after {
  right: 0;
  transform: rotate(40deg);
}
#mh-communicate .communicate__title .title-ja em {
  font-size: var(--font-size-21);
}
#mh-communicate .communicate__title .title-ja .color-pink {
  color: var(--color-pink);
}
#mh-communicate .communicate__title .title-ja .color-gradation {
  background: linear-gradient(to right, var(--color-yellow) 0%, var(--color-emerald) 51%, var(--color-lightblue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#mh-communicate .communicate__leadtext {
  margin-bottom: 10%;
}
#mh-communicate .communicate__part {
  margin-bottom: 15%;
}
#mh-communicate .communicate__part:last-child {
  margin-bottom: 0;
}
#mh-communicate .communicate__part .communicate__part-list .part__list-item {
  margin-bottom: 10%;
}
#mh-communicate .communicate__part .communicate__part-list .part__list-item:last-child {
  margin-bottom: 0;
}
#mh-communicate .communicate__part--interpersonal {
  position: relative;
  padding-bottom: 10vw;
  background: url(../img/mental-health/communication-Interpersonal_deco.png) right bottom/8% no-repeat;
}
#mh-communicate .communicate__part--interpersonal .communicate__part-img {
  width: 92%;
  margin: 0 0 8% auto;
}
#mh-communicate .communicate__part--institution .communicate__part-text {
  margin-bottom: 10%;
}
#mh-communicate .communicate__part--institution .communicate__part-img {
  padding-left: 0;
}

/*
# mh-counseling
------------------------*/
#mh-counseling .inbox {
  position: relative;
  padding: 18% 8%;
}
#mh-counseling .inbox::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 40vw;
  inset: 0 4% auto auto;
  background: url(../img/mental-health/counseling_deco.png) center/100% no-repeat;
}
#mh-counseling .counseling__title .title-ja {
  font-size: var(--font-size-20);
}
#mh-counseling .counseling__inner .counseling__leadtext {
  margin-bottom: 10%;
}
#mh-counseling .counseling__inner .counseling__movie {
  margin-bottom: 15%;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#mh-counseling .counseling__inner .counseling__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
}
#mh-counseling .counseling__inner .counseling__button-list .counseling__button-item {
  margin-bottom: 10%;
}
#mh-counseling .counseling__inner .counseling__button-list .counseling__button-item:last-child {
  margin-bottom: 0;
}

/*
# mh-others
------------------------*/
#mh-others .inbox {
  padding: 18% 8%;
  background: url(../img/mental-health/others_deco.png) top -15vw right 15%/30% no-repeat;
}
#mh-others .others__inner .others__part {
  position: relative;
  margin-bottom: 21%;
}
#mh-others .others__inner .others__part:last-child {
  margin-bottom: 0;
}
#mh-others .others__inner .others__part-text {
  margin-bottom: 10%;
}
#mh-others .others__inner .others__part .channel__label {
  position: absolute;
  inset: -3vw 0 auto auto;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  text-align: center;
}
#mh-others .others__inner .others__part .channel__label .channel__title {
  color: var(--color-white);
  font-size: var(--font-size-13);
  background: var(--color-pink);
  border-radius: 6vw;
  padding: 1vw 2vw;
  text-align: center;
}
#mh-others .others__inner .others__part .channel__label .channel__name {
  font-size: var(--font-size-15);
}
#mh-others .others__inner .others__part-movie {
  margin-bottom: 10%;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#mh-others .others__inner .others__part-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
}
#mh-others .others__inner .others__part-button {
  width: 100%;
  margin: 0 auto;
}

/*==========================================
expert
===========================================*/
/*
# expert-support
------------------------*/
#expert-support .support__leadtext {
  margin-bottom: 20%;
}
#expert-support .support__movie {
  padding: 10% 5%;
  background: var(--color-gray);
  border-radius: 6vw;
  position: relative;
}
#expert-support .support__movie-title {
  position: absolute;
  inset: -5vw auto auto 8%;
  font-size: var(--font-size-20);
}
#expert-support .support__movie .support__movie-wrap {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#expert-support .support__movie .support__movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
}

/*
# expert-workshop
------------------------*/
#expert-workshop .workshop__leadtext {
  margin-bottom: 20%;
}
#expert-workshop .workshop__part {
  margin-bottom: 20%;
  background: var(--color-white);
  border-radius: 6vw;
  padding: 12% 5%;
  position: relative;
}
#expert-workshop .workshop__part:last-child {
  margin-bottom: 0;
}
#expert-workshop .workshop__part-title {
  position: absolute;
  inset: -5vw auto auto 7.4218%;
}
#expert-workshop .workshop__part-button {
  width: 100%;
  margin: 15% auto 0;
}

.c-workshop__list .workshop__item {
  width: 100%;
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-gray);
}
.c-workshop__list .workshop__item:last-child {
  border-bottom: none;
}
.c-workshop__list .workshop__item-link {
  display: block;
  padding: 7% 0;
  position: relative;
}
.c-workshop__list .workshop__item-link::before {
  inset: auto 5% 5vw auto;
}
.c-workshop__list .workshop__item-img {
  width: 100%;
  height: 54vw;
  margin-bottom: 4%;
  border-radius: 16vw 4vw 4vw;
}
.c-workshop__list .workshop__item-img img {
  border-radius: 16vw 4vw 4vw;
}
.c-workshop__list .workshop__item-date {
  font-size: var(--font-size-13);
  display: block;
}
.c-workshop__list .workshop__item-title {
  font-size: var(--font-size-15);
  padding: 3% 15% 3% 0;
}

/*
# other-business
------------------------*/
#other-business-archive .other-business__post {
  background: var(--color-gray);
  border-radius: 6vw;
  padding: 10% 5%;
  margin-bottom: 15%;
}
#other-business-archive .other-business__post:last-child {
  margin-bottom: 0;
}
#other-business-archive .other-business__post-img {
  width: 100%;
  height: 51vw;
  margin-bottom: 8%;
  border-radius: 16vw 4vw 4vw;
}
#other-business-archive .other-business__post-img img {
  border-radius: 16vw 4vw 4vw;
}
#other-business-archive .other-business__post-button {
  width: 100%;
  margin-top: 15%;
}

/*
# other-business-single
------------------------*/
#other-business-single .other-business__post-content {
  margin-bottom: 10%;
}
#other-business-single .business__post-inner .other-business__post-movie {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10%;
}
#other-business-single .business__post-inner .other-business__post-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
}
#other-business-single .business__post-inner .other-business__gallery {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  row-gap: 4vw;
}
#other-business-single .business__post-inner .other-business__gallery-item {
  width: 48%;
  height: 31vw;
  border-radius: 16vw 4vw 4vw;
}
#other-business-single .business__post-inner .other-business__gallery-item img {
  border-radius: 16vw 4vw 4vw;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.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フレーム時)
===========================================*/