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

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 25px 0;
}
.com-table tr th {
  padding: 0 10px;
  width: 200px;
  vertical-align: middle;
  text-align: center;
}
.com-table tr td {
  width: calc(100% - 200px);
  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;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  line-height: 1.4;
  margin-bottom: 40px;
}
.section-title span {
  display: block;
}
.section-title .title-en {
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-size: clamp(1.7rem, 1.15vw, 2.2rem);
  font-family: var(--sub-font-family);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.section-title .title-ja {
  font-size: clamp(2.8rem, 2.15vw, 4rem);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}

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

.sub-title {
  font-size: clamp(2.5rem, 2.15vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  letter-spacing: var(--body-letter-spacing);
  margin-bottom: 20px;
}
.sub-title span {
  position: relative;
  padding-right: 40px;
}
.sub-title span::after {
  position: absolute;
  content: "";
  height: 90%;
  width: 1px;
  background: var(--body-font-color);
  transform: rotate(45deg);
  inset: 0 0 0 auto;
  margin: auto 0;
}

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

.com-text {
  line-height: 2.1;
  letter-spacing: var(--body-letter-spacing);
  font-size: clamp(1.25rem, 0.89vw, 1.7rem);
}

#g-map {
  width: 46.42857%;
}
#g-map .map {
  height: 100%;
  /*==========================================
  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: 60px;
  min-width: 250px;
  border-radius: 30px;
  color: var(--color-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  font-size: clamp(1.3rem, 0.85vw, 1.6rem);
  padding: 0 32px;
}
.com-button .com-button_arrow {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 25px;
}
.com-button .com-button_arrow::before, .com-button .com-button_arrow::after {
  position: absolute;
  content: "";
  z-index: 1;
  transition: all 0.3s;
}
.com-button .com-button_arrow::before {
  inset: 0 0 0 auto;
  margin: auto;
  width: 8px;
  height: 8px;
  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: 28px;
  height: 2px;
  background: var(--color-white);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.com-button:has(.com-button_arrow):hover {
  opacity: 0.9;
}
.com-button:has(.com-button_arrow):hover::before {
  transform: translateX(10px);
}
.com-button:has(.com-button_arrow):hover .com-button_arrow::before {
  right: -10px;
}
.com-button:has(.com-button_arrow):hover .com-button_arrow::after {
  width: 15px;
  right: -10px;
}

.circle-icon {
  position: relative;
}
.circle-icon::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 33px;
  border-radius: 50%;
  inset: 0 20px 0 auto;
  margin: auto 0;
  z-index: 1;
}
.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-17);
  font-weight: var(--font-weight-regular);
}
.bs-icon--box-arrow:hover {
  transform: translateY(-10px);
}
.bs-icon--box-arrow::before {
  content: "\f1c5";
}
.bs-icon--arrow::before {
  content: "\f138";
}

.com-tel {
  line-height: 1.2;
}
.com-tel .tel__num {
  font-size: clamp(2.7rem, 2.3vw, 4.5rem);
  font-weight: var(--font-weight-semibold);
  font-family: var(--sub-font-family);
  letter-spacing: 0.04em;
}
.com-tel .tel__num small {
  font-size: clamp(1.8rem, 1.6vw, 2.8rem);
}
.com-tel .tel__text {
  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: 120px;
  height: 101px;
  background: url(../img/top/greeting-top_frame.png) center/100% no-repeat;
  top: -101px;
}
.bg-color--gray.has-top-frame::before {
  left: 0;
}
.bg-color--gray.has-top-frame::after {
  right: 0;
  transform: scale(-1, 1);
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__section {
  background: var(--color-gray);
  padding: 175px 0;
}
.c-contact__section .contact__wrap {
  width: 88.09523%;
  background: var(--color-white);
  border-radius: 40px;
  padding: 90px 0 100px 5.74324%;
  gap: 45px 11%;
  position: relative;
}
.c-contact__section .contact__text-wrap .contact__text {
  font-size: clamp(1.5rem, 1.15vw, 2rem);
}
.c-contact__section .contact__info {
  width: 28.912%;
  min-width: 295px;
}
.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: clamp(1.4rem, 0.85vw, 1.6rem);
  color: var(--color-white);
  padding: 5px;
  margin-bottom: 15px;
}
.c-contact__section .contact__info .contact__tel {
  margin-bottom: 35px;
}
.c-contact__section .contact__info .contact__button {
  font-size: clamp(1.5rem, 1vw, 1.9rem);
}
.c-contact__section .contact__img {
  width: 40.7432%;
  position: absolute;
  inset: auto -15% -18% auto;
}
.c-contact__section .contact__img img {
  border-radius: 150px 40px 40px;
}

.c-sns__list {
  gap: 25px;
}

/*==========================================
header
===========================================*/
#header {
  padding-right: 1.8229%;
  position: fixed;
  z-index: 1001;
  width: 100%;
  inset: 0 0 auto;
  background: var(--color-white);
  height: clamp(70px, 6.2495vw, 120px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .header__logo {
  width: 6.25%;
  position: absolute;
  inset: 0 auto auto 0;
}
#header .header__logo img {
  width: 70%;
}
#header .header__logo a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(70px, 6.2495vw, 120px);
}
#header #nav {
  width: 91.75%;
}
#header #nav .nav__list {
  font-size: clamp(1.2rem, 0.8vw, 1.5rem);
  row-gap: 10px;
}
#header #nav .nav__list .nav__item .nav__item-link {
  padding-left: clamp(15px, 1.4vw, 25px);
}

/*==========================================
nav
===========================================*/
.com-nav__list {
  gap: 5px 15px;
  font-weight: var(--font-weight-bold);
}
.com-nav__list .com-nav__item .com-nav__link {
  padding-left: 25px;
  display: block;
  position: relative;
}
.com-nav__list .com-nav__item .com-nav__link::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  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);
}
.com-nav__list .com-nav__item:first-child {
  padding-left: 0;
}
.com-nav__list .com-nav__item:first-child .com-nav__link::before {
  background: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: clamp(600px, 48.958vw, 940px);
  background: url(../img/top/mv/mv_ill.png) right top/53.90625% no-repeat;
}
#top-mv .mv__catch {
  width: 42.96875%;
  position: absolute;
  inset: auto auto 24% 6.25%;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 140px 0 165px;
  background: url(../img/top/about-cont_deco.png) left 26.0416% bottom 275px/18.75% no-repeat;
}
#top-about .about__inbox {
  position: relative;
}
#top-about .about__title .title-ja {
  font-size: clamp(3.4rem, 2.708vw, 5.2rem);
}
#top-about .about__content {
  width: 35.7142%;
}
#top-about .about__content-inner {
  padding: 0 12% 0 15%;
}
#top-about .about__content .about__button {
  width: 68.9655%;
  margin-top: 40px;
}
#top-about .about__img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 52.7976%;
}

/*
# top-content
------------------------*/
#top-content {
  padding-bottom: 175px;
}
#top-content .content__inbox {
  padding: 85px 4.9479%;
  background: var(--color-gray);
  border-radius: 80px;
}
#top-content .content__title {
  text-align: center;
  margin-bottom: 45px;
}
#top-content .content__list {
  gap: 85px 5.40545%;
}
#top-content .content__list .content__item {
  width: 29.7297%;
}
#top-content .content__list .content__item-link {
  display: block;
}
#top-content .content__list .content__item-link::before {
  inset: clamp(160px, 14vw, 250px) auto auto 3.8636%;
  width: 41px;
  height: 41px;
}
#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: 70px 20px 20px 20px;
}
#top-content .content__list .content__item-title {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  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: 18.1818%;
}

/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 145px 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: 80.6547%;
  position: relative;
  margin-bottom: 110px;
}
#top-greeting .greeting__headline-img {
  width: 39.8523%;
  position: absolute;
  inset: 0 auto auto 7.38%;
}
#top-greeting .greeting__headline-img img {
  border-radius: 40px;
}
#top-greeting .greeting__headline-content {
  width: 41.3284%;
  margin-left: auto;
  min-height: clamp(350px, 25.26vw, 485px);
}
#top-greeting .greeting__headline-content .greeting__headline-text--name {
  text-align: right;
}
#top-greeting .greeting__profile-wrap {
  row-gap: 105px;
  position: relative;
}
#top-greeting .greeting__profile-wrap::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 96px;
  background: url(../img/top/greeting-cont_deco.png) center/100% no-repeat;
  inset: -40px calc(50% - 230px) auto auto;
}
#top-greeting .greeting__post-part {
  background: var(--color-white);
  width: 46.4285%;
  border-radius: 40px;
  position: relative;
  padding: 50px 5.3557%;
}
#top-greeting .greeting__post-part:nth-child(even) {
  margin-top: 160px;
}
#top-greeting .greeting__post-part .greeting__part-title {
  position: absolute;
  inset: -37px auto auto 10.9%;
  font-size: clamp(2.6rem, 1.87vw, 3.5rem);
}
#top-greeting .greeting__post-part .greeting__part-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
  font-size: clamp(1.3rem, 0.85vw, 1.6rem);
}
#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: 0.65vw;
  height: 0.65vw;
  border-radius: 50%;
  inset: clamp(6px, 0.45vw, 10px) 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: 300px;
  margin-top: 40px;
}
#top-greeting .greeting__part-img {
  width: 46.4285%;
  margin-top: -320px;
}
#top-greeting .greeting__part-img img {
  border-radius: 40px 150px 40px 40px;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 75px 0 165px;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__post-list {
  width: 77.3809%;
  gap: 6.15395%;
}
#top-news .news__post-list .news__post {
  width: 29.2307%;
  font-weight: var(--font-weight-bold);
}
#top-news .news__post-list .news__post-img {
  width: 100%;
  height: 270px;
  border-radius: 70px 20px 20px;
  margin-bottom: 10px;
}
#top-news .news__post-list .news__post-img img {
  border-radius: 70px 20px 20px;
}
#top-news .news__post-list .news__post-link::before, #top-news .news__post-list .news__post-link::after {
  opacity: 0;
}
#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: clamp(1.3rem, 0.85vw, 1.6rem);
  display: block;
  transition: all 0.3s;
}
#top-news .news__post-list .news__post-title {
  font-size: clamp(1.5rem, 1.05vw, 2rem);
  padding: 10px 0 20px;
  transition: all 0.3s;
}
#top-news .news__post-list .news__post-tags {
  gap: 5px;
}
#top-news .news__post-list .news__post-tags .news__post-tag {
  color: var(--primary-color);
  background: var(--color-lightgreen-light);
  padding: 0 5px;
  border-radius: 13.5px;
  font-size: clamp(1.1rem, 0.7vw, 1.3rem);
}
#top-news .news__button {
  position: absolute;
  inset: 140px auto auto 0;
  width: 14.1071%;
  min-width: 200px;
}

/*
# top-sns
------------------------*/
#top-sns {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
#top-sns::before, #top-sns::after {
  position: absolute;
  content: "";
  bottom: 0;
  background: url(../img/top/sns-btm_frame.png) center/100% no-repeat;
  width: 200px;
  height: 356px;
  z-index: -1;
}
#top-sns::before {
  left: 0;
}
#top-sns::after {
  right: 0;
  transform: scale(-1, 1);
}
#top-sns .sns__inbox {
  width: clamp(1200px, 77.34375%, 1485px);
}
#top-sns .sns__title {
  width: 25.55892%;
}
#top-sns .sns__list {
  width: 68.6868%;
  row-gap: 20px;
}
#top-sns .sns__list .sns__item {
  width: 49.196%;
}
#top-sns .sns__list .sns__item-link {
  width: 100%;
  display: block;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-semibold);
  font-size: clamp(2rem, 1.57vw, 3rem);
  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: 20px;
}
#top-sns .sns__list .sns__item-link::before {
  right: 30px;
}
#top-sns .sns__list .sns__item-link span {
  height: 110px;
  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: clamp(1.4rem, 1.05vw, 2rem);
}
#top-sns .sns__list .sns__item--instagram .sns__item-link span {
  background: url(../img/common/sns/Instagram_Glyph_Gradient.svg) left 8.5% center/40px no-repeat;
}
#top-sns .sns__list .sns__item--youtube .sns__item-link span {
  background: url(../img/common/youtube_ic.png) left 8.5% center/40px 34px no-repeat;
}
#top-sns .sns__list .sns__item--x .sns__item-link span {
  background: url(../img/common/sns/X_logo_Black.svg) left 8.5% center/39px 40px no-repeat;
}
#top-sns .sns__list .sns__item--line .sns__item-link span {
  background: url(../img/common/sns/LINE_logo.svg) left 8.5% center/40px no-repeat;
}

/*
# top-company
------------------------*/
#top-company {
  padding: 160px 0 0;
  background: var(--color-gray);
}
#top-company .company__title {
  text-align: center;
}
#top-company .company__table {
  width: 46.42857%;
}
#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: clamp(150px, 11.979vw, 213px);
  height: clamp(150px, 11.979vw, 213px);
  inset: -16% 21.7948% auto auto;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../img/common/ft-lt_frame.png) left top no-repeat, url(../img/common/ft-rt_frame.png) right top no-repeat, var(--color-white);
  padding: 85px 0 55px;
}
#footer .footer__inbox {
  width: clamp(1200px, 66.666%, 1280px);
  position: relative;
}
#footer .footer__inbox::before {
  position: absolute;
  content: "";
  width: 204px;
  height: 199px;
  background: url(../img/common/ft-left_deco.png) center/100% no-repeat;
  inset: -125px auto auto 14.4532%;
}
#footer .footer__headline {
  margin-bottom: 10px;
}
#footer .footer__left {
  width: 400px;
}
#footer .footer__right {
  width: 635px;
}
#footer .footer__right .footer__sns-list {
  justify-content: flex-end;
  margin-bottom: 35px;
}
#footer .footer__right .footer__nav-list {
  background: linear-gradient(to right, #e9f8f0 0%, #dff2f0 100%);
  border-radius: 20px;
  padding: 30px 40px;
}
#footer .footer__right .footer__nav-list .footer__nav-item {
  font-size: var(--font-size-14);
}
#footer .footer__right .footer__nav-list .footer__nav-item .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__right .footer__nav-list .footer__nav-item:nth-child(1) .footer__nav-link, #footer .footer__right .footer__nav-list .footer__nav-item:nth-child(5) .footer__nav-link {
  padding-left: 0;
}
#footer .footer__right .footer__nav-list .footer__nav-item:nth-child(1) .footer__nav-link::before, #footer .footer__right .footer__nav-list .footer__nav-item:nth-child(5) .footer__nav-link::before {
  background: none;
}
#footer .footer__bottom-nav .bottom__nav-list {
  gap: 10px 35px;
}
#footer .footer__bottom-nav .bottom__nav-list .bottom__nav-item {
  position: relative;
  font-size: clamp(1.2rem, 0.8vw, 1.4rem);
}
#footer .footer__bottom-nav .bottom__nav-list .bottom__nav-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  inset: 0 -20px 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;
}
#copyright small {
  font-size: clamp(1.1rem, 0.7vw, 1.2rem);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  margin-top: clamp(70px, 6.2495vw, 120px);
  height: clamp(240px, 18.7495vw, 360px);
  overflow: hidden;
}
.lower-sv .sv__frame {
  width: clamp(1200px, 77.8333%, 1480px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.lower-sv .sv__title {
  font-size: clamp(3.5rem, 2.6038vw, 5rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../img/sv/sv-ttl_deco.png) center/100% no-repeat;
  width: clamp(150px, 15.26vw, 293px);
  height: 313px;
  inset: -120px auto auto -100px;
  margin: auto 0;
}
.lower-sv .sv__bg {
  width: 43.75%;
  height: 100%;
  border-radius: 150px 40px 40px;
  position: absolute;
  inset: 0 6.25% 0 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 {
  width: 1280px;
  padding: 0 100px;
  background: url(../img/about/psychoro-headline_bg.png) top 115px center no-repeat;
}
#about-psychoro .psychoro__headline {
  position: relative;
  margin-bottom: 30px;
}
#about-psychoro .psychoro__headline .psychoro__content {
  width: 515px;
  padding-left: 90px;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item {
  margin-bottom: 80px;
  position: relative;
  padding-top: 55px;
}
#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: 10px auto auto 0;
  font-size: clamp(2.5rem, 1.85vw, 3.5rem);
  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 20px;
  height: calc(100% - 70px);
  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: clamp(3rem, 2.3434vw, 4.5rem);
  display: inline-block;
  position: relative;
  padding-right: 40px;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__item-title .policy__item-title-en::after {
  position: absolute;
  content: "";
  height: 90%;
  width: 1.5px;
  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: 46px;
  height: 96px;
  inset: -15px 215px 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: 138px;
  height: 138px;
  inset: -30px -60px 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 {
  margin-top: 15px;
}
#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: clamp(1.8rem, 1.458vw, 2.8rem);
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__num-item {
  margin-bottom: 45px;
}
#about-psychoro .psychoro__policy-list .psychoro__policy-item .policy__num-item:last-child {
  margin-bottom: 0;
}
#about-psychoro .psychoro__policy-list .policy__item-content {
  background: var(--color-gray);
  border-radius: 40px;
  padding: 35px 90px 35px 35px;
}
#about-psychoro .psychoro__policy-list .policy__item-content .bg-gradation__item {
  display: inline-block;
  font-size: clamp(1.5rem, 1.05vw, 2rem);
  border-radius: 24px;
  margin-right: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  padding: 5px 20px;
}
#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%);
}

.pl-md {
  padding-left: 95px;
}

.com-number__list .com-number__item .com-number__title {
  padding-left: 60px;
  height: 40px;
  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: 40px;
  height: 40px;
  font-size: clamp(2rem, 1.28vw, 2.6rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.com-number__list .com-number__item .com-number__title span {
  font-size: clamp(1.8rem, 1.458vw, 2.8rem);
}
.com-number__list .com-number__item .com-number__content {
  background: var(--color-gray);
  border-radius: 40px;
  padding: 35px 90px 35px 35px;
}

/*
# about-history
------------------------*/
#about-history .history__list {
  width: 980px;
  margin: 0 auto;
}
#about-history .history__list .history__item {
  margin-bottom: 30px;
}
#about-history .history__list .history__item:last-child {
  margin-bottom: 0;
}
#about-history .history__list .history__item-link {
  border-radius: 40px;
  background: var(--color-white);
  padding: 40px 140px 40px 35px;
  gap: 15px 35px;
  font-size: clamp(1.6rem, 1vw, 1.9rem);
}
#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: 41px;
  height: 41px;
  right: 70px;
  font-size: var(--font-size-20);
}
#about-history .history__list .history__item-link .history__item-date {
  width: 120px;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}
#about-history .history__list .history__item-link .history__item-title {
  width: -moz-fit-content;
  width: fit-content;
}

/*
# about-single
------------------------*/
#about-single .about__post-title .title-year {
  font-size: clamp(2rem, 1.57vw, 3rem);
  font-weight: var(--font-weight-bold);
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}
#about-single .about__post-title .title-year::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  inset: clamp(10px, 0.85vw, 15px) auto auto 0;
}
#about-single .about__post-title .title-ja {
  font-size: clamp(2rem, 1.57vw, 3rem);
}
#about-single .about__post-gallery {
  gap: 45px;
  margin-top: 80px;
}
#about-single .about__post-gallery .gallery__item {
  width: 330px;
  height: 270px;
  border-radius: 70px 20px 20px;
}
#about-single .about__post-gallery .gallery__item img {
  border-radius: 70px 20px 20px;
}

/*==========================================
mental-health
===========================================*/
/*
# mh-worries
------------------------*/
#mh-worries {
  position: relative;
}
#mh-worries .inbox {
  background: url(../img/mental-health/worries_deco.png) right top 45px no-repeat;
}
#mh-worries .worries__list .worries__item {
  width: 588px;
  margin-bottom: 25px;
  background: linear-gradient(to right, #e9f8f0 0%, #dff2f0 100%);
  border-radius: 29.5px;
  padding: 25px 15px 25px 75px;
  font-weight: var(--font-weight-bold);
  font-size: clamp(1.6rem, 1.15vw, 1.8rem);
}
#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: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  font-size: var(--font-size-30);
  inset: 0 auto 0 25px;
}
#mh-worries .worries__img {
  position: absolute;
  inset: auto 6.25% -75px auto;
  width: 32.29166%;
  z-index: 1;
}
#mh-worries .worries__img img {
  border-radius: 40px 120px 40px 40px;
}

/*
# mh-about
------------------------*/
#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: 280px;
  height: 298px;
  background: url(../img/mental-health/about_deco.png) center/100% no-repeat;
  inset: auto auto 0 -100px;
}
#mh-about .inbox::after {
  inset: auto 0 -85px;
  margin: auto;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(135deg);
}
#mh-about .about__question {
  margin-top: 80px;
}
#mh-about .about__question .question__title {
  font-size: clamp(2rem, 1.48vw, 2.8rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
#mh-about .about__question .question__text {
  margin-left: 60px;
  padding-left: 35px;
  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: 90px 0 195px;
  position: relative;
}
#mh-communicate::before, #mh-communicate::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 356px;
  background: url(../img/mental-health/communication-top_frame.png) center/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: clamp(2rem, 1.48vw, 3rem);
  padding: 0 30px;
}
#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: clamp(4rem, 2.585vw, 5rem);
}
#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 {
  width: 805px;
  margin: 0 auto 90px;
}
#mh-communicate .communicate__part {
  margin-bottom: 130px;
}
#mh-communicate .communicate__part:last-child {
  margin-bottom: 0;
}
#mh-communicate .communicate__part .communicate__part-list .part__list-item {
  margin-bottom: 55px;
}
#mh-communicate .communicate__part .communicate__part-list .part__list-item:last-child {
  margin-bottom: 0;
}
#mh-communicate .communicate__part--interpersonal {
  position: relative;
  padding-bottom: 35px;
  background: url(../img/mental-health/communication-Interpersonal_deco.png) left 400px bottom no-repeat;
}
#mh-communicate .communicate__part--interpersonal .communicate__part-img {
  position: absolute;
  inset: 0 0 auto auto;
}
#mh-communicate .communicate__part--interpersonal .communicate__part-content {
  width: 550px;
  min-height: 360px;
}
#mh-communicate .communicate__part--institution .communicate__part-text {
  margin-bottom: 40px;
}

/*
# mh-counseling
------------------------*/
#mh-counseling .inbox {
  position: relative;
}
#mh-counseling .inbox::before {
  position: absolute;
  content: "";
  width: 271px;
  height: 273px;
  inset: -70px -100px auto auto;
  background: url(../img/mental-health/counseling_deco.png) center/100% no-repeat;
  z-index: 1;
}
#mh-counseling .counseling__title .title-ja::first-line {
  font-size: clamp(2rem, 1.58vw, 3rem);
}
#mh-counseling .counseling__inner {
  width: 890px;
  margin: 0 auto;
}
#mh-counseling .counseling__inner .counseling__leadtext {
  margin-bottom: 40px;
}
#mh-counseling .counseling__inner .counseling__movie {
  margin-bottom: 50px;
}
#mh-counseling .counseling__inner .counseling__movie iframe {
  height: 500px;
}
#mh-counseling .counseling__inner .counseling__button-list {
  gap: 30px;
}
#mh-counseling .counseling__inner .counseling__button-list .counseling__button-item {
  width: 430px;
}

/*
# mh-others
------------------------*/
#mh-others .inbox {
  background: url(../img/mental-health/others_deco.png) top -50px right 185px no-repeat;
}
#mh-others .others__inner {
  gap: 55px 0;
}
#mh-others .others__inner .others__part {
  width: 450px;
  position: relative;
}
#mh-others .others__inner .others__part-text {
  margin-bottom: 40px;
}
#mh-others .others__inner .others__part .channel__label {
  position: absolute;
  inset: 10px 0 auto auto;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
#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: 10px;
  text-align: center;
}
#mh-others .others__inner .others__part .channel__label .channel__name {
  font-size: var(--font-size-18);
}
#mh-others .others__inner .others__part-movie {
  margin-bottom: 30px;
}
#mh-others .others__inner .others__part-movie iframe {
  height: 253px;
}
#mh-others .others__inner .others__part-button {
  width: 260px;
  margin: 0 auto;
}

/*==========================================
expert
===========================================*/
/*
# expert-support
------------------------*/
#expert-support {
  position: relative;
}
#expert-support .support__leadtext {
  margin-bottom: 110px;
}
#expert-support .support__movie {
  padding: 65px 95px;
  background: var(--color-gray);
  border-radius: 40px;
  position: relative;
}
#expert-support .support__movie-title {
  position: absolute;
  inset: -35px auto auto 95px;
}
#expert-support .support__movie iframe {
  height: 500px;
}

/*
# expert-workshop
------------------------*/
#expert-workshop .inbox {
  width: clamp(1200px, 66.6666%, 1280px);
  position: relative;
}
#expert-workshop .inbox::before {
  position: absolute;
  content: "";
  width: 134px;
  height: 131px;
  background: url(../img/expert/workshop_deco.png) center/100% no-repeat;
  inset: -200px 260px auto auto;
}
#expert-workshop .workshop__leadtext {
  margin-bottom: 105px;
}
#expert-workshop .workshop__part {
  margin-bottom: 140px;
  background: var(--color-white);
  border-radius: 40px;
  padding: 60px 0;
  position: relative;
}
#expert-workshop .workshop__part:last-child {
  margin-bottom: 0;
}
#expert-workshop .workshop__part-title {
  position: absolute;
  inset: -35px auto auto 7.4218%;
}
#expert-workshop .workshop__part-button {
  width: 260px;
  margin: 70px auto 0;
}

.c-workshop__list {
  width: 1080px;
  margin: 0 auto;
  gap: 75px;
}
.c-workshop__list .workshop__item {
  width: 310px;
  font-weight: var(--font-weight-bold);
}
.c-workshop__list .workshop__item-link {
  display: block;
}
.c-workshop__list .workshop__item-link:before, .c-workshop__list .workshop__item-link::after {
  opacity: 0;
}
.c-workshop__list .workshop__item-link:hover .workshop__item-date,
.c-workshop__list .workshop__item-link:hover .workshop__item-title {
  color: var(--primary-color);
}
.c-workshop__list .workshop__item-img {
  width: 100%;
  height: 230px;
  margin-bottom: 10px;
  border-radius: 70px 20px 20px;
}
.c-workshop__list .workshop__item-img img {
  border-radius: 70px 20px 20px;
}
.c-workshop__list .workshop__item-date {
  font-size: clamp(1.3rem, 0.85vw, 1.6rem);
  display: block;
  transition: all 0.3s;
}
.c-workshop__list .workshop__item-title {
  font-size: clamp(1.5rem, 1.06vw, 2rem);
  padding: 10px 0;
  transition: all 0.3s;
}
.c-workshop__list .workshop__item-tag-list {
  gap: 10px;
}
.c-workshop__list .workshop__item-tag-list .workshop__tag-item {
  font-size: clamp(1.3rem, 0.85vw, 1.6rem);
}
.c-workshop__list .workshop__item-tags {
  gap: 10px;
}
.c-workshop__list .workshop__item-tags .workshop__tag-item {
  font-size: var(--font-size-13);
  color: var(--primary-color);
  border-radius: 9px;
  padding: 0 7px;
  background: var(--color-lightgreen-light);
}

/*
# other-business
------------------------*/
#other-business-archive .other-business__post {
  background: var(--color-gray);
  border-radius: 40px;
  padding: 55px 60px;
  margin-bottom: 80px;
}
#other-business-archive .other-business__post:last-child {
  margin-bottom: 0;
}
#other-business-archive .other-business__post-img {
  width: 450px;
  height: 380px;
  border-radius: 70px 20px 20px;
}
#other-business-archive .other-business__post-img img {
  border-radius: 70px 20px 20px;
}
#other-business-archive .other-business__post-content {
  width: 470px;
}
#other-business-archive .other-business__post-button {
  width: 237px;
  margin-top: 40px;
}

/*
# other-business-single
------------------------*/
#other-business-single .other-business__post-content {
  margin-bottom: 40px;
}
#other-business-single .business__post-inner {
  width: 880px;
  margin: 0 auto;
}
#other-business-single .business__post-inner .other-business__post-movie {
  margin-bottom: 65px;
}
#other-business-single .business__post-inner .other-business__post-movie iframe {
  width: 100%;
  height: 495px;
}
#other-business-single .business__post-inner .other-business__gallery {
  row-gap: 55px;
}
#other-business-single .business__post-inner .other-business__gallery-item {
  width: 410px;
  height: 270px;
  border-radius: 70px 20px 20px;
}
#other-business-single .business__post-inner .other-business__gallery-item img {
  border-radius: 70px 20px 20px;
}

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