@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  display: none;
}

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

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 2vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: var(--primary-color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 3vw;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 2px;
  background: var(--color-white);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

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

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

/*  drawer inbox
  ------------------------------------ */
#drawer__nav {
  padding: 8% 6% 15%;
  background: var(--color-gray-light);
}
#drawer__nav .drawer__nav-logo {
  width: 40%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer__nav .drawer__nav {
  margin-bottom: 15%;
}
#drawer__nav .drawer__nav-item {
  border-bottom: 1px solid var(--color-gray);
}
#drawer__nav .drawer__nav-item .drawer__nav-link {
  padding: 6% 0;
  font-size: var(--font-size-17);
  border-bottom: none;
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span {
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span:before, #drawer__nav .drawer__nav .drawer__nav-dropdown span:after {
  background: var(--color-black);
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-item .drawer__nav-link {
  display: block;
  padding: 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown .show span:after {
  opacity: 0 !important;
}
#drawer__nav .drawer__nav .current span {
  padding-left: 8vw;
  position: relative;
  text-decoration: underline;
  color: var(--primary-color);
}
#drawer__nav .drawer__nav .current span::before, #drawer__nav .drawer__nav .current span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#drawer__nav .drawer__nav .current span::before {
  left: 0;
}
#drawer__nav .drawer__nav .current span::after {
  left: 2.5vw;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link.show::before {
  background: none;
  border: none;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link span {
  padding: 0 0 0 5%;
}
#drawer__nav .drawer__nav-address {
  margin: 10% auto;
}
#drawer__nav .drawer__nav-address li {
  margin-bottom: 6%;
}
#drawer__nav .drawer__nav-address li:last-child {
  margin-bottom: 0;
}
#drawer__nav .drawer__nav-subpage {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 12%;
}
#drawer__nav .drawer__nav-subpage-link {
  text-decoration: underline;
}

/*
# .c-contact__list
------------------------*/
.c-contact__list .contact__item {
  margin-bottom: 8vw;
}
.c-contact__list .contact__item:last-child {
  margin-bottom: 0;
}
.c-contact__list .contact__item .contact__button {
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  font-size: var(--font-size-15);
}
.c-contact__list .contact__item .contact__button:not(:has(.tel__num)) {
  position: relative;
}
.c-contact__list .contact__item .contact__button:not(:has(.tel__num)):hover {
  transform: scale(0.95);
}
.c-contact__list .contact__item .contact__button:not(:has(.tel__num))::before {
  position: absolute;
  content: "";
  margin: auto 0;
  z-index: 1;
}
.c-contact__list .contact__item .contact__button-line {
  padding-left: 6vw;
}
.c-contact__list .contact__item .contact__button-line::before {
  width: 6vw;
  height: 6vw;
  background: url(../../img/common/sns/LINE_logo.svg) center/100% no-repeat;
  inset: 0 auto 0 6%;
}
.c-contact__list .contact__item .contact__button-mail {
  padding-left: 6vw;
}
.c-contact__list .contact__item .contact__button-mail::before {
  width: 5vw;
  height: 4vw;
  background: url(../../img/common/mail_ic.png) center/100% no-repeat;
  inset: 0 auto 0 6%;
}
.c-contact__list .contact__item .contact__button-tel {
  line-height: 1;
}
.c-contact__list .contact__item .contact__button-tel .tel__num {
  font-size: var(--font-size-28);
  line-height: 1;
  margin-bottom: 1vw;
}
.c-contact__list .contact__item .contact__button-tel .tel__num small {
  font-size: var(--font-size-14);
}

/*
# .c-contact__section
------------------------*/
.c-contact__section {
  background: url(../../img/top/contact_deco.png) right 12.7604% top no-repeat, var(--color-gray-light);
  border-radius: 10vw 10vw 0 0;
  padding: 18% 0;
}
.c-contact__section .contact__headline {
  margin-bottom: 15%;
}
.c-contact__section .contact__headline .contact__text {
  font-family: var(--font-noto-sans);
  text-align: center;
}
.c-contact__section .contact__contact-list {
  background: var(--color-white);
  padding: 10% 6%;
  justify-content: center;
  border-radius: 7vw;
}

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

/*==========================================
  共通ブロック・要素
  ===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
}

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

/*
# .com-button
------------------------*/
.com-button {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  border-radius: 7vw;
  width: 36vw;
  height: 11vw;
  font-size: var(--font-size-15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
}
.com-button:hover {
  opacity: 1;
  background: var(--primary-color);
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  font-weight: var(--font-weight-bold);
  margin-bottom: 10%;
  text-align: center;
}
.section-title span {
  display: block;
  letter-spacing: 0.1em;
}
.section-title span.title-ja {
  font-size: var(--font-size-26);
}
.section-title span.title-en {
  color: var(--primary-color);
  font-size: var(--font-size-17);
  text-transform: capitalize;
}

.headline-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  padding-left: 4vw;
  position: relative;
  margin-bottom: 4vw;
  line-height: 1.5;
}
.headline-title::before {
  position: absolute;
  content: "";
  width: 1.5vw;
  height: 100%;
  background: var(--primary-color-extralight);
  inset: 0 auto 0 0;
  border-radius: 1vw;
}

/*==========================================
header
===========================================*/
#header {
  padding: 4% 4% 0;
}
#header .header__logo {
  width: 40%;
  line-height: 1;
}
#header .header__nav {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 75vw;
  background: url(../../img/top/mv/mv_deco.png) right 6.09375% top/57.65625% no-repeat, var(--color-gray-light);
  position: relative;
}
#top-mv::before {
  position: absolute;
  content: "";
  inset: auto auto 14.4329% 0;
  width: 50%;
  height: 68%;
  background: url(../../img/top/mv/mv-left_img.jpg) center bottom/100% no-repeat;
  border-radius: 0 3vw 3vw 0;
}
#top-mv .mv__inner {
  width: 70%;
  height: 77%;
  position: absolute;
  inset: auto 6% 14.4329% auto;
}
#top-mv .mv__catch {
  width: 92%;
  margin: 0 0 22% auto;
  background: rgba(var(--color-white-rgb), 0.7);
  padding: 5%;
}
#top-mv .mv__img-list {
  gap: 4.7171%;
  display: flex;
}
#top-mv .mv__img-list .mv__img-item {
  width: 30.1886%;
}
#top-mv .mv__contact-list {
  display: none;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 15% 0 18%;
}
#footer .footer__headline {
  padding-bottom: 12%;
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 10%;
}
#footer .footer__headline .inbox {
  padding: 0;
}
#footer .footer__headline .footer__logo {
  display: block;
  width: 55%;
  margin: 0 auto 15%;
}
#footer .footer__headline .footer__right .footer__nav-list {
  -moz-column-count: 2;
       column-count: 2;
}
#footer .footer__headline .footer__right .footer__nav-item {
  margin-bottom: 10%;
  display: inline-block;
  width: 100%;
}
#footer .footer__headline .footer__right .footer__nav-link {
  font-size: var(--font-size-15);
  display: block;
}
#footer .footer__headline .footer__right .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__endline.inbox {
  padding: 0;
}
#footer .footer__endline .footer__aside {
  margin-bottom: 13%;
}
#footer .footer__endline .footer__aside-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw 6vw;
}
#footer .footer__endline .footer__aside-button {
  font-size: var(--font-size-14);
  font-family: var(--font-noto-sans);
  padding: 2px 20px 2px 0;
  border-bottom: 1px solid;
  display: inline-block;
}
#footer .footer__endline .footer__aside-button::before {
  inset: 0 0 0 auto;
}
#footer .footer__endline .footer__aside-button:hover {
  transform: translateY(-5px);
}

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

/*==========================================
下層共通スタイル
===========================================*/
/*==========================================
sv
===========================================*/
.lower-sv {
  height: 50vw;
  position: relative;
  background: url(../../img/sv/sv_deco.png) left 12.2395% top no-repeat, var(--color-gray-light);
  border-radius: 0 0 8vw 8vw;
  padding: 0 8%;
}
.lower-sv .sv__title {
  width: 43%;
  font-size: var(--font-size-23);
  position: absolute;
  inset: 0 auto 0 8%;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  margin: auto 0;
  height: -moz-fit-content;
  height: fit-content;
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 2px;
  inset: 5vw auto auto -5vw;
  margin: auto 0;
  background: var(--color-gray);
}
.lower-sv .sv__img {
  position: absolute;
  width: 88%;
  margin: 0 auto;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
.lower-sv .sv__img img {
  width: 43%;
}

/*==========================================
top
===========================================*/
/*
# top-banner
------------------------*/
#top-banner {
  position: relative;
  z-index: 1;
}
#top-banner::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 15vw;
  background: var(--color-gray-light);
  border-radius: 0 0 5vw 5vw;
  inset: 0 0 auto;
}
#top-banner .banner__content {
  padding: 13% 6%;
  position: relative;
  margin-bottom: 20%;
}
#top-banner .banner__content::before, #top-banner .banner__content::after {
  position: absolute;
  content: "";
}
#top-banner .banner__content::before {
  inset: 0 0 auto;
  margin: 0 auto;
  background: var(--primary-color-extralight);
  width: 93.75%;
  height: 1.5vw;
  border-radius: 1vw;
}
#top-banner .banner__content:after {
  inset: 21vw 6% auto auto;
  width: 14%;
  height: 16vw;
  background: url(../../img/top/banner_ill.png) center/100% no-repeat;
}
#top-banner .banner__title {
  width: 85%;
  text-align: center;
  font-size: var(--font-size-24);
  margin: 0 auto 10%;
}
#top-banner .banner__title span {
  position: relative;
}
#top-banner .banner__title span::before {
  position: absolute;
  content: "";
  width: 1vw;
  height: 1vw;
  inset: -1vw 0 auto;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary-color);
}
#top-banner .banner__text {
  margin-bottom: 12%;
}
#top-banner .banner-bplus {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/*
# top-about
------------------------*/
#top-about {
  background: url(../../img/top/about_deco.png) left top no-repeat;
}
#top-about .about__inbox {
  padding: 22% 8%;
  position: relative;
}
#top-about .about__inbox::before, #top-about .about__inbox::after {
  content: "";
  border-radius: 20px;
}
#top-about .about__inbox::before {
  width: 580px;
  height: 410px;
  background: url(../../img/top/about-large_img.jpg) center/100% no-repeat;
  inset: 90px -100px auto auto;
}
#top-about .about__inbox::after {
  width: 450px;
  height: 320px;
  background: url(../../img/top/about-small_img.jpg) center/100% no-repeat;
  inset: 425px auto auto -100px;
}
#top-about .about__content .about__content-list {
  margin-bottom: 8%;
}
#top-about .about__content .about__content-list .about__content-item {
  padding-left: 7%;
  margin-bottom: 2%;
  background: url(../../img/top/about-check_ic.png) left top 2.5vw/4% no-repeat;
}
#top-about .about__content .about__content-list .about__content-item:last-child {
  margin-bottom: 0;
}
#top-about .about__content .about__button {
  margin: 40px 0 0 auto;
}

/*
# top-service
------------------------*/
#top-service {
  padding: 22% 0;
}
#top-service .service__headline {
  position: relative;
  margin-bottom: 15%;
}
#top-service .service__headline::before {
  position: absolute;
  content: "";
  width: 79px;
  height: 79px;
  inset: auto auto 55px -130px;
  background: url(../../img/top/service-orange_circle.svg) center/100% no-repeat;
}
#top-service .service__headline-img {
  width: 75%;
  margin: 0 auto 10%;
  position: relative;
  z-index: 1;
}
#top-service .service__headline-img::before, #top-service .service__headline-img::after {
  position: absolute;
  content: "";
}
#top-service .service__headline-img::before {
  width: 15vw;
  height: 15vw;
  background: url(../../img/top/service-yellow_circle.svg) center/100% no-repeat;
  inset: auto -7vw -7vw auto;
}
#top-service .service__headline-img::after {
  width: 10vw;
  height: 10vw;
  background: url(../../img/top/service-dark-orange_circle.svg) center/100% no-repeat;
  inset: -5vw auto auto -5vw;
  z-index: -1;
}
#top-service .service__title {
  padding-bottom: 5%;
  border-bottom: 1px dotted var(--color-gray);
}
#top-service .service__sub-title {
  text-align: center;
  font-size: var(--font-size-19);
  margin-bottom: 8%;
}
#top-service .service__content-wrap {
  position: relative;
  z-index: 1;
  padding: 0 6% 10%;
}
#top-service .service__content-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-gray-extralight);
  border-radius: 4vw;
  z-index: -1;
  inset: 7vw 0 auto;
}
#top-service .service__content-wrap .service__content {
  margin-bottom: 12%;
  padding: 12% 6%;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-direction: row-reverse;
}
#top-service .service__content-wrap .service__content-img {
  width: 35%;
}
#top-service .service__content-wrap .service__content-inner {
  width: 60%;
}
#top-service .service__content-wrap .service__content-inner .service__content-title {
  font-size: var(--font-size-20);
}
#top-service .service__content-wrap .service__content-inner .service__content-text {
  font-size: var(--font-size-14);
}
#top-service .service__content-wrap .service__button {
  margin: 0 auto;
}

/*
# top-links
------------------------*/
#top-links {
  padding: 20% 0;
}
#top-links .links__list {
  gap: 3.125%;
}
#top-links .links__list .links__item {
  width: 100%;
  margin-bottom: 12%;
}
#top-links .links__list .links__item:last-child {
  margin-bottom: 0;
}
#top-links .links__list .links__item-link {
  height: 39vw;
  display: flex;
  align-items: center;
  padding: 0 16.129%;
  position: relative;
  z-index: 1;
}
#top-links .links__list .links__item-link::before {
  width: 8vw;
  height: 8vw;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--primary-color);
  inset: auto 6% 5vw auto;
}
#top-links .links__list .links__item-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-color-rgb), 0.75);
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
}
#top-links .links__list .links__item-link:hover {
  opacity: 1;
  transform: translateY(-15px);
}
#top-links .links__list .links__item-link:hover::after {
  opacity: 1;
}
#top-links .links__list .links__item-staff .links__item-link {
  background: url(../../img/top/link-item_deco.svg) left top/15% no-repeat, url(../../img/top/links-staff_bg.jpg) center/cover no-repeat;
}
#top-links .links__list .links__item-voice .links__item-link {
  background: url(../../img/top/link-item_deco.svg) left top/15% no-repeat, url(../../img/top/links-voice_bg.jpg) center/cover no-repeat;
}
#top-links .links__list .links__item-title {
  margin-bottom: 0;
  text-align: left;
}
#top-links .links__list .links__item-title .title-ja {
  font-size: var(--font-size-25);
}
#top-links .links__list .links__item-title .title-en {
  color: var(--color-white);
}

/*
# top-news
------------------------*/
#top-news {
  padding-bottom: 20%;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__post-list {
  gap: 2vw 6vw;
  display: flex;
  overflow-x: scroll;
  padding-bottom: 8vw;
}
#top-news .news__post {
  width: 63%;
}
#top-news .news__post-link {
  display: block;
}
#top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-thumb {
  width: 100%;
  height: 50vw;
  margin-bottom: 3%;
}
#top-news .news__post-meta {
  padding-left: 6%;
  border-left: 2px dotted var(--color-gray);
}
#top-news .news__post-date {
  font-size: var(--font-size-14);
}
#top-news .news__post-title {
  font-size: var(--font-size-17);
  font-family: var(--font-noto-sans);
}
#top-news .news__post-tags {
  gap: 1.5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#top-news .news__post-tags .news__post-tag {
  font-size: var(--font-size-14);
  border-bottom: 1px solid;
  font-family: var(--font-noto-sans);
}
#top-news .news__button {
  margin: 15% 0 0 auto;
}

/*==========================================
beginner
===========================================*/
/*
# beginner-thoughts
------------------------*/
#beginner-thoughts .thoughts__text {
  margin-bottom: 12%;
}
#beginner-thoughts .thoughts__list {
  padding: 12% 6%;
}
#beginner-thoughts .thoughts__list-item {
  margin-bottom: 15%;
  padding: 12% 5%;
}
#beginner-thoughts .thoughts__list-item:last-child {
  margin-bottom: 0;
}
#beginner-thoughts .thoughts__list-item .thoughts__item-title {
  width: 36vw;
  height: 36vw;
  margin: 0 auto 10%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-20);
}
#beginner-thoughts .thoughts__list-item .thoughts__content-title {
  font-size: var(--font-size-20);
  text-align: center;
  margin-bottom: 5%;
}

/*
# beginner-feature
------------------------*/
#beginner-feature .feature__card {
  position: relative;
  padding: 12% 6%;
  margin-bottom: 15%;
}
#beginner-feature .feature__card::before {
  position: absolute;
  inset: -7vw auto auto 6%;
  font-size: var(--font-size-45);
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.1em;
}
#beginner-feature .feature__card:last-child {
  margin-bottom: 0;
}
#beginner-feature .feature__card-title {
  text-align: center;
  margin-bottom: 7%;
}
#beginner-feature .feature__card-title small {
  font-size: var(--font-size-15);
  position: relative;
  display: inline-block;
}
#beginner-feature .feature__card-title small::before, #beginner-feature .feature__card-title small::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 4vw;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#beginner-feature .feature__card-title small::before {
  left: -3vw;
  transform: rotate(-35deg);
}
#beginner-feature .feature__card-title small::after {
  right: -3vw;
  transform: rotate(35deg);
}
#beginner-feature .feature__card-title span {
  margin-top: 3%;
  display: block;
  line-height: 1.5;
  font-size: var(--font-size-25);
}
#beginner-feature .feature__card-img {
  margin-bottom: 8%;
}

/*
# beginner-area
------------------------*/
#beginner-area .area__content {
  padding: 12% 6%;
  background-image: url(../../img/beginner/area_map.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 80%;
}
#beginner-area .area__text {
  font-size: var(--font-size-18);
  line-height: 1.6;
}
#beginner-area .area__text span {
  color: var(--primary-color);
  font-size: var(--font-size-28);
}

/*
# beginner-flow
------------------------*/
#beginner-flow .flow__text {
  margin-bottom: 10%;
}
#beginner-flow .flow__inner-wrap {
  padding: 12% 6%;
}
#beginner-flow .flow__list {
  margin-bottom: 15%;
}
#beginner-flow .flow__list .flow__item {
  width: 90%;
  margin: 0 auto 12%;
  padding: 7% 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
#beginner-flow .flow__list .flow__item::after {
  position: absolute;
  content: "";
  width: 3vw;
  height: 5vw;
  margin: 0 auto;
  background: url(../../img/beginner/flow-item_arr.svg) center/100% no-repeat;
  inset: auto 0 -7vw;
  transform: rotate(90deg);
}
#beginner-flow .flow__list .flow__item:last-child {
  margin-bottom: 0;
}
#beginner-flow .flow__list .flow__item:last-child::after {
  background: none;
}
#beginner-flow .flow__list .flow__item-num {
  font-size: var(--font-size-18);
  padding-bottom: 3%;
  margin-bottom: 5%;
  position: relative;
}
#beginner-flow .flow__list .flow__item-num::after {
  position: absolute;
  content: "";
  width: 10%;
  height: 2px;
  inset: auto 0 0;
  margin: 0 auto;
  background: var(--primary-color);
}
#beginner-flow .flow__list .flow__item-text {
  font-size: var(--font-size-22);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
#beginner-flow .flow__service .flow__service-title {
  border-radius: 4vw 4vw 0 0;
  font-size: var(--font-size-18);
  text-align: center;
  padding: 3%;
}
#beginner-flow .flow__service .flow__service-text {
  padding: 8% 6%;
  text-align: left;
}

/*
# beginner-info
------------------------*/
#beginner-info .info__wrap {
  padding: 12% 6%;
}
#beginner-info .info__table {
  margin-bottom: 12%;
}
#beginner-info #g-map iframe {
  border-radius: 4vw;
}

/*==========================================
service
===========================================*/
/*
# service-works
------------------------*/
#service-works .works__text {
  text-align: left;
  margin-bottom: 12%;
}
#service-works .works__item {
  margin-bottom: 15%;
  padding: 12% 6%;
  position: relative;
}
#service-works .works__item::before {
  position: absolute;
  content: "";
  width: 32%;
  height: 23vw;
  background: url(../../img/service/works-content_deco.png) center/100% no-repeat;
  inset: -5vw -5vw auto auto;
}
#service-works .works__item:last-child {
  margin-bottom: 0;
}
#service-works .works__item-headline {
  margin-bottom: 12%;
}
#service-works .works__item .works__item-movie-wrap {
  margin-bottom: 12%;
}
#service-works .works__item .works__item-movie-wrap .works__item-movie {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10%;
}
#service-works .works__item .works__item-movie-wrap .works__item-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#service-works .works__item .works__item-movie-wrap .works__item-list .works__list-item {
  margin-bottom: 6%;
}
#service-works .works__item .works__item-movie-wrap .works__item-list .works__list-item:last-child {
  margin-bottom: 0;
}
#service-works .works__item .works__item-movie-wrap .works__item-list .works__list-item .works__list-title {
  margin-bottom: 2%;
}
#service-works .works__item .works__item-movie-wrap .works__item-list .works__list-item .works__list-title::before {
  content: "■";
}
#service-works .works__item .movie__card-wrap {
  margin-bottom: 12%;
}
#service-works .works__item .movie__card-wrap .movie__card {
  margin-bottom: 12%;
}
#service-works .works__item .movie__card-wrap .movie__card:last-child {
  margin-bottom: 0;
}
#service-works .works__item .movie__card-wrap .movie__card-title {
  text-align: center;
  font-size: var(--font-size-20);
  margin-bottom: 5%;
}
#service-works .works__item .movie__card-wrap .movie__card-movie {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 5%;
}
#service-works .works__item .movie__card-wrap .movie__card-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#service-works .works__item-content {
  padding: 10% 6%;
}
#service-works .works__item-content .works__content-title {
  text-align: center;
  font-size: var(--font-size-18);
  border-bottom: 2px dotted var(--color-gray);
  padding-bottom: 3%;
  margin-bottom: 5%;
}

/*
# service-schedule
------------------------*/
#service-schedule .schedule__text {
  margin-bottom: 10%;
}
#service-schedule .schedule__inner-wrap {
  padding: 12% 6%;
}
#service-schedule .schedule__list {
  margin-bottom: 15%;
}
#service-schedule .schedule__list-item {
  display: flex;
  border-bottom: 1px solid var(--color-gray-light);
}
#service-schedule .schedule__list-item:first-child .schedule__item-title {
  border-radius: 3vw 0 0 0;
}
#service-schedule .schedule__list-item:first-child .schedule__item-content {
  border-radius: 0 3vw 0 0;
}
#service-schedule .schedule__list-item:last-child {
  border-bottom: none;
}
#service-schedule .schedule__list-item:last-child .schedule__item-title {
  border-radius: 0 0 0 3vw;
}
#service-schedule .schedule__list-item:last-child .schedule__item-content {
  border-radius: 0 0 3vw 0;
}
#service-schedule .schedule__list .schedule__item-title {
  width: 35%;
  text-align: center;
}
#service-schedule .schedule__list .schedule__item-content {
  width: 65%;
}
#service-schedule .schedule__list .schedule__item-title,
#service-schedule .schedule__list .schedule__item-content {
  padding: 3%;
  text-align: center;
}
#service-schedule .schedule__content-title {
  border-radius: 3vw 3vw 0 0;
  font-size: var(--font-size-20);
  text-align: center;
  padding: 3%;
}
#service-schedule .schedule__content-text {
  padding: 6%;
}

/*
# service-feel
------------------------*/
#service-feel .feel__list-wrap {
  padding: 12% 6%;
}
#service-feel .feel__list-wrap .feel__list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 3vw 4%;
}
#service-feel .feel__list-wrap .feel__list .feel__item {
  width: 48%;
  height: 32vw;
}

/*==========================================
staff
===========================================*/
#staff-archive:has(.staff__list) .staff__title {
  margin-bottom: 57%;
}
#staff-archive .staff__list .staff__card {
  padding: 15% 6% 10%;
  position: relative;
  margin-bottom: 58%;
}
#staff-archive .staff__list .staff__card:last-child {
  margin-bottom: 0;
}
#staff-archive .staff__list .staff__card-img {
  width: 47vw;
  height: 47vw;
  border-radius: 50%;
  position: absolute;
  inset: -37vw 0 auto;
  margin: 0 auto;
}
#staff-archive .staff__list .staff__card-title {
  font-size: var(--font-size-22);
  border-bottom: 2px dotted var(--color-gray);
  margin-bottom: 6%;
  padding-bottom: 3%;
  text-align: center;
}
#staff-archive .staff__list .staff__card-profile .staff__profile {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: flex-start;
}
#staff-archive .staff__list .staff__card-profile .staff__profile-title {
  width: 32%;
}
#staff-archive .staff__list .staff__card-profile .staff__profile-content {
  width: 66%;
}

/*==========================================
voice
===========================================*/
/*
# voice-article
------------------------*/
#voice-archive .voice__list .voice__card {
  margin-bottom: 15%;
}
#voice-archive .voice__list .voice__card-link {
  display: block;
  padding: 10% 6% 12%;
}
#voice-archive .voice__list .voice__card-link::before {
  width: 6vw;
  height: 6vw;
  inset: auto 4% 4vw auto;
  background: var(--accent-color);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--font-size-12);
}
#voice-archive .voice__list .voice__card-link:hover {
  opacity: 1;
  transform: translateY(-10px);
  background: var(--color-gray-extralight);
}
#voice-archive .voice__list .voice__card-headline {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 7%;
}
#voice-archive .voice__list .voice__card-meta {
  width: 70%;
}
#voice-archive .voice__list .voice__card-icon {
  width: 25%;
}
#voice-archive .voice__list .voice__card-gender {
  margin-bottom: 3%;
}
#voice-archive .voice__list .voice__card-title {
  font-size: var(--font-size-17);
}

/*
# voice-single
------------------------*/
#voice-single .voice__post {
  padding: 12% 6%;
}
#voice-single .voice__post-headline {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 7%;
}
#voice-single .voice__post-icon {
  width: 25%;
}
#voice-single .voice__post-meta {
  width: 70%;
}
#voice-single .voice__post-title {
  font-size: var(--font-size-18);
}
#voice-single .voice__post-body {
  padding: 10% 6%;
  font-size: var(--font-size-15);
}

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