/* ============================================
// common
// ==========================================*/
/* ============================================
// breadcrumb
// ==========================================*/
.breadcrumb {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 90px;
  padding-left: 2em;
}

@media screen and (max-width: 834px) {
  .breadcrumb {
    font-size: 10px;
    font-size: 1rem;
    margin: 0;
  }
}

.breadcrumb__inner {
  padding: 8px 0;
}

.breadcrumb ol {
  display: inline-block;
  margin-bottom: 0;
}

@media screen and (max-width: 544px) {
  .breadcrumb ol {
    display: block;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.breadcrumb ol li {
  display: inline;
}

.breadcrumb__list__item:not(:last-child):after {
  display: inline-block;
  margin-right: 7px;
  margin-left: 7px;
  font-size: 1.2rem;
  content: '＞';
}

@media screen and (max-width: 544px) {
  .breadcrumb__list__item:not(:last-child):after {
    margin-right: 5px;
    margin-left: 5px;
  }
}

/* ============================================
// HEADER
// ==========================================*/

/* ============================================
// RECRUIT LINK
// ==========================================*/

/* ============================================
// FOOTER
// ==========================================*/
.footer-deco {
  padding-top: 80px;
}

@media all and (max-width: 544px) {
  .footer-deco {
    padding-top: 30px;
  }
}

.footer-deco img{
  width: 100%;
}

.footer {
  position: relative;
  background: #fff4eb;
  background-size: 100%;
  z-index: 3;
}

.footer__contents {
  padding-top: 6px;
}

.bus_item {
  width: 111px;
  height: 60px;
  background-image: url(../img/ico_bus.png);
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

@media screen and (max-width: 834px) {
  .bus_item {
    width: 50px;
    height: 28.125px;
  }
}

.bus_item.anime {
  animation-name: upDown;
  animation-iteration-count: infinite;
  animation-duration: 0.1s;
  animation-direction: alternate;
  animation-timing-function: steps(2);
  transition-duration: .3s;
  transition-property: transform;
}

.bus_stage {
  position: relative;
  width: calc(90% - 90px);
  height: min(2.50871vw, 36px);
  display: block;
  margin: 0 auto;
  top: min(1.81185vw, 26px);
}

@media all and (max-width: 834px) {
  .bus_stage {
    width: 100%;
    height: 26px;
  }
}

.bus_wrap {
  display: block;
  position: absolute;
  bottom: 0;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-iteration-count: 1;
  margin-left: min(1.74216vw, 25px);
}

.bus_wrap[data-order="left"] {
  animation-name: GoLeft;
}

.bus_wrap[data-order="right"] {
  animation-name: GoRight;
}

[data-order="right"]>.bus_item {
  transform: rotateY(180deg);
}

@keyframes GoLeft {
  0% {
    right: 0;
  }

  100% {
    right: 100%;
  }
}

@keyframes GoRight {
  0% {
    right: 100%;
  }

  100% {
    right: 0;
  }
}

@keyframes upDown {
  0% {
    top: 0;
  }

  100% {
    top: 3px;
  }
}

.footer__main {
  flex: 1 1 auto;
}

.footer__main__inner {
  padding: 96px 40px 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

/* @media all and (max-width: 1300px) {
  .footer__main__inner {
    display: block;
  }
} */

@media all and (max-width: 834px) {
  .footer__main__inner {
    padding: 8px 20px 0;
    display: flex;
    flex-direction: column-reverse;
  }
}

.footer__main__column01 {
  margin-top: 40px;
}

@media all and (max-width: 1300px) {
  .footer__main__column01 {
    margin-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media all and (max-width: 834px) {
  .footer__main__column01 {
    margin-top: 14px;
    justify-content: center;
    align-items: center;
  }

  .footer__main__column01 .illustArea{
    width: 200px;
    margin: 0 auto;
  }

  .footer__main__column01 .illustArea img{
    width: 100%;
  }
}

.header__commonLogo01 .txtArea {
  display: flex;
}

.header__commonLogo01 .txtArea .sub {
  font-size: 1.2rem;
  color: #320000;
  border: 1px solid #320000;
  display: inline-block;
  line-height: 1;
  padding: 8px 12px;
  margin: 10px auto 0;
  background-color: #fff;
}

.footer__media__column {
  margin-top: 20px;
}

.media__list {
  display: flex;
  justify-content: space-evenly;
}

.footer__main__column02 {
  display: flex;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
}

@media all and (max-width: 834px) {
  .footer-list {
    gap: 20px 0;
    justify-content: space-between;
  }
}

@media all and (max-width: 834px) {
    .footer-list {
      gap: 20px 1%;
    }
}

@media all and (max-width: 544px) {
  .footer-list {
    gap: 20px 0;
  }
}

.footer-item {
  width: 25%;
}

@media all and (max-width: 834px) {
  .footer-item {
    width: 23%;
  }
}

@media all and (max-width: 544px) {
.footer-item:nth-child(odd) {
  width: 55%;
}

.footer-item:nth-child(even) {
  width: 39%;
}
}

.footer-item dl dt {
  font-size: 1.8rem;
  font-weight: bold;
}

.footer-item a {
  color: #320000;

}

@media screen and (max-width:834px) {
  .footer-item a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.footer-item a:hover {
  text-decoration: underline;
}

.footer-box-item {
  margin-top: 4px;
}

.footer-box-item a {
  position: relative;
  padding-left: 18px;
  font-size: 17px;
}

@media all and (max-width: 834px) {
  .footer-box-item a {
    padding-left: 14px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.footer-box-item a::before {
  position: absolute;
  left: 5px;
  content: "-";
  top: 50%;
  transform: translateY(-50%);
}

.outer-link {
  display: flex;
  justify-content: space-between;
}

.sns-list {
  display: flex;
  column-gap: 15px;
}

.footer .copyright {
  text-align: center;
}

.footer .copyright span {
  display: inline-block;
  font-weight: 400;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  .footer .copyright span {
    font-size: 1.0rem;
  }
}

.footer__ga {
  background: #320000;
  text-align: center;
}

@media screen and (max-width:544px) {
  .footer__ga {
    padding-bottom: 60px;
  }
}

.footer__ga .ga_pdf {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
}

@media screen and (max-width:544px) {
  .footer__ga .ga_pdf {
    font-size: 1rem;
  }
}

footer .pagetop{
  display: none;
}

@media screen and (max-width:834px) {
footer .pagetop{
  display: block;
  position: fixed;
  left: 20px;
  bottom: 75px;
}
}

@media screen and (max-width:544px) {
  footer .pagetop{
    position: fixed;
    left: 17px;
  }
  }

/* ============================================
// recruitBanner
// ==========================================*/
.recruitBanner {
  position: fixed;
  bottom: 28px;
  Right: 30px;
  z-index: 10001;
  transform: translateY(40px);
  transition: opacity 0.5s, transform 0.5s;
}

@media all and (max-width: 834px) {
  .recruitBanner {
    bottom: 8px;
    right: 8px;
  }
}

@media all and (max-width: 544px) {
  .recruitBanner {
    bottom: 8px;
    right: 8px;
  }
}

.recruitBanner a {
  display: inline-block;
  transition: transform 0.3s;
}

@media (hover: hover) {
  .recruitBanner a:hover {
    transform: scale(1.1);
  }
}

@media all and (max-width: 834px) {
  .recruitBanner a {
    transform: scale(1.0);
    transform-origin: bottom right;
  }
}

.recruitBanner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recruitBanner .content img {
  width: 161px;
  height: 161px;
}

@media all and (max-width: 544px) {
  .recruitBanner .content img {
    width: 110px;
    height: 110px;
  }
}

.recruitBanner .circleText {
  animation: rotate infinite 12s linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.recruitBanner .circleText img {
  width: 191px;
  height: 191px;
}

@media all and (max-width: 544px) {
  .recruitBanner .circleText img {
    width: 130px;
    height: 130px;
  }
}

.js-loaded .recruitBanner {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
// common__parts
// ==========================================*/
@media all and (max-width: 544px) {
  .main__container {
    margin-top: 52px;
  }
}

.sub__container {
  position: relative;
  padding-top: 80px;
}

@media all and (max-width: 544px) {
  .sub__container {
    padding-top: 40px;
  }
}

.bg-gradient{
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 244, 235, 1) 18%);
}

/*--------------------
	commonEng01
--------------------*/
.commonEng01 {
  font-size: 3.6rem;
  font-style: italic;
  line-height: 1;
  writing-mode: vertical-rl;
  border-left: 1px solid #ed8e2f;
  color: #8e8e8e;
}

@media all and (max-width: 834px) {
  .commonEng01 {
    font-size: 2.0rem;
    writing-mode:inherit;
  }
}

@media all and (max-width: 544px) {
  .commonEng01 {
    font-size: 1.2rem;
    writing-mode:inherit;
  }
}

.sub__commonEng01 {
  position: absolute;
  top: 34px;
  right: -3.6rem;
  z-index: 3;
  border-left: 1px solid #ed8e2f;
  height: max-content;
}

@media all and (max-width: 834px) {
  .sub__commonEng01 {
    position: static;
    border: none;
    /* right: -1.8rem;
    border-left: none;
    top: -20px; */
  }
}

/*--------------------
	commonHead01
--------------------*/
.commonHead01 .ttl {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 400;
}

@media all and (max-width: 544px) {
  .commonHead01 .ttl {
    font-size: 2.0rem;
  }
}

.ttl02 {
  font-size: 2.6rem;
  position: relative;
  padding: 0 0 10px;
  margin: 0 0 38px 1em;
  width: 50%;
  border-bottom: 1px solid #ed8e2f;
}

@media all and (max-width: 834px) {
  .ttl02 {
    width: 98%;
  }
}

@media all and (max-width: 544px) {
  .ttl02 {
    width: fit-content;
    font-size: 1.8rem;
    padding: 0 0 5px;
    margin: 0 auto 12px;
    border-bottom: 1px solid #ed8e2f;
  }
}

.commonHead01 .ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ed8e2f;
  transition: .3s;
  content: '';
}

@media all and (max-width: 834px) {
  .commonHead01 .ttl::after {
    border: none;
  }
}

.commonHead__cont {
  position: relative;
  margin-bottom: 48px;
}

@media all and (max-width: 834px) {
  .commonHead__cont {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    width: 106%;
    margin-bottom: 24px;
    border-bottom: 1px solid #ed8e2f;
    gap: 0 10px;
  }
}

.commonHead01 {
  width: 100%;
}

@media screen and (max-width: 843px) {
  .commonHead01 {
    width: auto;
    max-width: 95%;
  }
  
}

.common__inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 834px) {
  .common__inner {
    width: 90%;
  }
}

@media screen and (max-width: 544px) {
  .common__inner {
    /* width: calc(83% - 2.0rem); */
    margin: 0 0 0 5%;
  }
}

@media screen and (max-width: 544px) {
.sub__commonEng01__wrap{
  position: relative;
}
}


/*pagenation*/
.searchResult-bottom {
  margin: min(6.75676vw, 100px) 0;
}

.pager {
  text-align: center;
}

.pager .inner {
  display: inline-block;
}

.btn_more--next {
  display: none;
}

.page {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 2px 10px;
  border: 1px solid #1d4483;
  border-radius: 6px;
  vertical-align: middle;
  color: #1d4483;
  font-size: 20px;
  font-size: 2.0rem;
}

.page:hover,
.page.current {
  background: #1d4483;
  color: #FFF;
}

.prev {
  margin-right: 15px;
}

.next {
  margin-left: 15px;
}

/* ============================================
// SUB COMMON
// ==========================================*/
/*--------------------
	pageHeader
--------------------*/
.pageHeader {
  position: relative;
}

@media all and (max-width: 834px) {
  .pageHeader {
    padding-top: 79px;
  }
}

@media all and (max-width: 834px) {
.pageHeader__imgArea img{
  width: 100%;
}
}

.pageHeader__txtArea {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 62%;
  height: 88%;
  padding: 24px 130px 16px 0;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  text-align: right;
  border-bottom: 1px solid #ed8e2f;
}

@media all and (max-width: 834px) {
  .pageHeader__txtArea {
    width: auto;
    padding: 24px 8% 16px 0;
  }
}

@media all and (max-width: 544px) {
  .pageHeader__txtArea {
    width: 100%;
    height: 120%;
    padding: 0 8% 4px 0;
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
}

/* .pageHeader__txtArea::after {
  position: absolute;
  top: 0;
  width: 1px;
  height: 114%;
  background-color: #ed8e2f;
  content: '';
  right: 80px;
} */

.pageHeader__txtArea .eng {
  font-size: 2.0rem;
  font-style: italic;
  color: #8e8e8e;
  line-height: 1;
  text-shadow:
    3px 3px 3px #fff, -3px -3px 3px #fff,
    -3px 3px 3px #fff, 3px -3px 3px #fff,
    3px 0px 3px #fff, -3px -0px 3px #fff,
    0px 3px 3px #fff, 0px -3px 3px #fff;
}

@media all and (max-width: 544px) {
  .pageHeader__txtArea .eng {
    font-size: 1.6rem;
    text-shadow: none;
  }
}

.pageHeader__txtArea .ja {
  color: #3f3f3f;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1.3;
  text-shadow:
    3px 3px 3px #fff, -3px -3px 3px #fff,
    -3px 3px 3px #fff, 3px -3px 3px #fff,
    3px 0px 3px #fff, -3px -0px 3px #fff,
    0px 3px 3px #fff, 0px -3px 3px #fff;
}

@media all and (max-width: 544px) {
  .pageHeader__txtArea .ja {
    font-size: 2.8rem;
  }
}

/* ============================================
// KYUJIN L
// ==========================================*/
.searchResult {
  margin-top: 62px;
}

@media screen and (max-width: 834px) {
  .searchResult {
    width: 95%;
  }
}

@media screen and (max-width: 544px) {
  .searchResult {
    margin-top: 72px;
  }
}

.count {
  padding-bottom: 56px;
  border-bottom: 1px solid #8e8e8e;
}

@media screen and (max-width: 834px) {
  .count {
    padding-bottom: 16px;
    border-bottom: 1px solid #8e8e8e;
  }
}

.count span {
  font-size: 2.6rem;
  font-weight: bold;
  color: #ed8e2f;
}

@media screen and (max-width: 834px) {
  .count {
    font-size: 10px;
    font-size: 1.0rem;
  }
}

.jobList {
  position: relative;
  width: 100%;
  margin-top: 26px;
  border-bottom: 1px solid #8e8e8e;
}

@media screen and (max-width: 834px) {
  .jobList {
    width: 95%;
  }
}

.jobList__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

@media screen and (max-width: 544px) {
  .jobList__head {
    flex-direction: column;
    gap: 8px 0;
    margin-bottom: 20px;
  }
}


.jobList__head__icon {
  display: flex;
  align-items: flex-end;
  gap: 0 12px;
}

@media screen and (max-width: 544px) {
  .jobList__head__icon {
    justify-content: space-between;
  }
  
}


.date {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
}

.jobList-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(2.16216vw, 32px);
}

@media screen and (max-width: 834px) {
  .jobList-inner {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: min(2.16216vw, 32px);
  }
}

.jobList__headline {
  width: min(62.03704%, 670px);
}

@media screen and (max-width: 834px) {
  .jobList__headline {
    width: 100%;
  }
}

.jobList__iconList {
  display: flex;
  justify-content: space-between;
}

.jobList-icon {
  color: #fff;
  padding: min(0.27027vw, 4px) min(0.67568vw, 10px);
  font-size: 20px;
  font-size: 2.0rem;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .jobList-icon {
    font-size: 14px;
    font-size: 1.4rem;
    padding: min(1.6vw, 6px) min(4.53333vw, 17px);
  }
}

.job_employmenttype_list {
  display: flex;
  justify-content: space-between;
}

.job_employmenttype_list_item {
  padding: 6px;
  color: #ed8e2f;
  border: 1px solid #ed8e2f;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .job_employmenttype_list_item {
    padding: 6px;
    border: 1px solid #ffd6a2;
  }
}

.jobList-title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 16px;
}

@media screen and (max-width: 834px) {
  .jobList-title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 544px) {
  .jobList-title h2{
    font-weight: bold;
  }
}

.jobList-inner .txtArea h3 {
  position: relative;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1;
  padding: 1px 0 1px 8px;
}

@media screen and (max-width: 544px) {
  .jobList-inner .txtArea h3 {
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 18px;
  }
}


.jobList-inner .txtArea h3::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background: #ed8e2f;
  position: absolute;
  top: 0;
  left: 0;
}

.jobList-detail-List {
  margin-bottom: min(1.35135vw, 20px);
}

.jobList-detail dl {
  display: flex;
  font-size: 18px;
  font-size: 1.8rem;
  gap: 0 2em;
}
@media screen and (max-width: 544px) {
  .jobList-detail dl {
    flex-direction: column;
    font-size: 1.4rem;
    margin-bottom: .5em;
  }
}

.jobList-detail dl dt {
  width: 3em;
  font-weight: bold;
}

.jobList-image {
  width: 320px;
  margin-bottom: min(0.27027vw, 4px);
  text-align: center;
}

@media screen and (max-width: 834px) {
  .jobList-image {
    width: 100%;
  }
}

@media screen and (max-width: 544px) {
  .jobList-image {
    margin: 18px auto 0;
  }
}

.jobList-image img {
  width: 100%;
}

.jobList-button .btnArea {
  width: 700px;
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}

@media screen and (max-width: 843px) {
  .jobList-button .btnArea {
    margin: 20px auto;
    width: 72%;
  }
}

@media screen and (max-width: 544px) {
  .jobList-button .btnArea {
    width: 100%;
    gap: 10px;
  }
}

.jobList-button .btnArea .commonBtn01.btnDetail a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffbb54;
  border-radius: 300px;
  position: relative;
  background: #ffbb54;
  color: #fff;
}

@media screen and (max-width: 544px) {
  .jobList-button .btnArea .commonBtn01.btnDetail a {
    height: auto;
    padding: 10px 0;
  }
}

.jobList-button .btnArea .commonBtn01.btnDetail a:hover {
  background: #fff;
  color: #ffbb54;
}

.jobList-button .btnArea .commonBtn01.btnDetail a:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(-45deg) translateY(-50%);
}

@media all and (max-width: 834px) {
  .jobList-button .btnArea .commonBtn01.btnDetail a:after {
    width: 6px;
    height: 6px;
    right: 24px;
  }
}

.jobList-button .btnArea .commonBtn01.btnDetail a:hover:after {
  border-right: 1px solid #ed8e2f;
  border-bottom: 1px solid #ed8e2f;
}

.jobList-button .btnArea .commonBtn01.btnEntry a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #ed8e2f;
  border-radius: 300px;
  position: relative;
  background: #ed8e2f;
  color: #fff;
}

@media screen and (max-width: 544px) {
  .jobList-button .btnArea .commonBtn01.btnEntry a {
    height: auto;
    padding: 10px 0;
  }
}

.jobList-button .btnArea .commonBtn01.btnEntry a:hover {
  background: #fff;
  color: #ed8e2f;
}

.jobList-button .btnArea .commonBtn01.btnEntry a:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(-45deg) translateY(-50%);
}

@media all and (max-width: 834px) {
  .jobList-button .btnArea .commonBtn01.btnEntry a:after {
    width: 6px;
    height: 6px;
    right: 24px;
  }
}

.jobList-button .btnArea .commonBtn01.btnEntry a:hover:after {
  border-right: 1px solid #ed8e2f;
  border-bottom: 1px solid #ed8e2f;
}

#flow {
  margin-top: 100px;
}

@media screen and (max-width: 544px) {
  #flow {
    width: 95%;
    margin-top: 40px;
  }
}

.flow__hd {
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
  background: #ed8e2f;
  padding: 8px;
  margin-bottom: 40px;
}

@media screen and (max-width: 544px) {
  .flow__hd {
    font-size: 2.0rem;
    padding: 8px;
    margin:20px 0;
  }
}

.flow__inner {
  display: flex;
  gap: 0 74px;
  padding: 0 20px;
}

@media screen and (max-width: 544px) {
  .flow__inner {
    flex-direction: column;
    padding: 0;
  }
}

.flow__column {
  width: 50%;
}

@media screen and (max-width: 544px) {
  .flow__column {
    width: 100%;
  }
}

.flow__list__hd {
  font-size: 2.0rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}

@media screen and (max-width: 544px) {
  .flow__list__hd {
    font-size: 1.6rem;    
    margin-bottom: 18px;
  }
}

.flow__list__hd span {
  position: relative;
}

.flow__list__hd span::before {
  position: absolute;
  content: "●";
  top: 50%;
  left: -24px;
  transform: translateY(-42%);
}

.flow__list__hd span::after {
  position: absolute;
  content: "●";
  top: 50%;
  right: -24px;
  transform: translateY(-42%);
}

.flow__column .imgArea {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 544px) {
  .flow__column .imgArea {
    text-align: center;
    margin-bottom: 20px;
  }
}

.flow__list__item{
  position: relative;
  border-radius: 10px;
  padding: 9px;
  margin-bottom: 48px;
}

@media screen and (max-width: 544px) {
  .flow__list__item{
    margin-bottom: 38px;
  }
}

.flow__column01 .flow__list__item{
border:2px solid #f15a24;
}

.flow__column01 .flow__list__item:not(:last-child):after{
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 30px solid #f8ac91;
  border-bottom: 0;
}

@media screen and (max-width: 544px) {
  .flow__column01 .flow__list__item:not(:last-child):after{
    bottom: -30px;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid #f8ac91;
  }
}

.flow__column02 .flow__list__item{
  border:2px solid #f7931e;
  }

.flow__column02 .flow__list__item:not(:last-child)::after{
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 30px solid #fbc98e;
  border-bottom: 0;
}

@media screen and (max-width: 544px) {
  .flow__column02 .flow__list__item:not(:last-child):after{
    bottom: -30px;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid #fbc98e;
  }
}

.flow__list__item dl dt{
  font-size: 2.0rem;
  font-weight: bold;
}

@media screen and (max-width: 544px) {
  .flow__list__item dl dt{
    font-size: 1.6rem;
  }
}

.flow__column01 .flow__list__item dl dt{
  display: flex;
  align-items: center;
  color: #f15a24;
  gap: 0 10px;
}

.flow__column02 .flow__list__item dl dt{
  display: flex;
  color: #f7931e;
  gap: 0 10px;
}

.flow__column01 .flow__list__item dl dt .flow__list__item_num,
.flow__column02 .flow__list__item dl dt .flow__list__item_num{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50%;
}

.flow__column01 .flow__list__item dl dt .flow__list__item_num{
  background: #f15a24;
}

.flow__column02 .flow__list__item dl dt .flow__list__item_num{
  background: #f7931e;
}

.flow__column01 .flow__list__item dl dt .flow__list__item_name,
.flow__column02 .flow__list__item dl dt .flow__list__item_name{
  width: calc(100% - 40px);
}

.flow__list__item dl dd{
  color: #3f3f3f;
  margin-top: 14px;
  padding: 20px 24px 14px;
}

.flow__column01 .flow__list__item dl dd{
  border-top: 1px dotted #f15a24;

}

@media screen and (max-width: 544px) {
  .flow__column01 .flow__list__item dl dd{
    margin-top: 10px;
    padding: 6px;
  }
}

.flow__column02 .flow__list__item dl dd{
  border-top: 1px dotted #f7931e;
}

@media screen and (max-width: 544px) {
  .flow__column02 .flow__list__item dl dd{
    margin-top: 10px;
    padding: 6px;
  }
}

/* ============================================
// KYUJIN D
// ==========================================*/
.kyujin_d__container {
  background: url(../img/bg_wave_kyujin.png) no-repeat center top 3%, linear-gradient(180deg, rgba(255, 244, 235, 1) 0%, rgba(255, 244, 235, 1) 16%, rgba(255, 255, 255, 1) 16%);
  background-size: 100%;
  padding: 20px 50px;
}

@media all and (max-width: 544px) {
  .kyujin_d__container {
    background: url(../img/bg_wave_kyujin.png) no-repeat center top 3%, linear-gradient(180deg, rgba(255, 244, 235, 1) 0%, rgba(255, 244, 235, 1) 10%, rgba(255, 255, 255, 1) 10%);

    padding: 0;
  }
}

.kyujin_d__header {
  margin-bottom: 130px;
}

@media all and (max-width: 834px) {
  .kyujin_d__header {
    margin-bottom: 58px;
  }
}

@media all and (max-width: 544px) {
  .kyujin_d__header {
    display: none;
  }
}

.kyujin_d__header .commonLogo01.header__commonLogo01 {
  display: flex;
  gap: 0 20px;
}

.kyujin_d__header .commonLogo01.header__commonLogo01 .txtArea {
  display: flex;
}

.kyujin_d__header .commonLogo01.header__commonLogo01 .txtArea .sub {
  font-size: 1.2rem;
  color: #320000;
  border: 1px solid #320000;
  display: inline-block;
  line-height: 1;
  padding: 8px 12px;
  margin: 0 auto;
  background-color: #fff;
}

.jobDetail__headline {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #8e8e8e;
  margin-bottom: 26px;
}

@media all and (max-width: 544px) {
  .jobDetail__headline {
    width: 95%;
    margin-bottom:14px;
    padding-top: 90px;
  }
}

.jobDetail__headline .date {
  text-align: left;
}

.jobDetail__inner {
  background: #fff;
}

@media all and (max-width: 544px) {
  .jobDetail__inner {
    width: 95%;
  }  
}

.copySpace {
  display: flex;
  justify-content: space-between;
  gap: 0 70px;
  padding: 55px;
}

@media all and (max-width: 544px) {
  .copySpace {
    flex-direction: column;
    gap: 0 70px;
    padding: 1em;
  }
}

.jobImage {
  width: 500px;
  display: block;
}

@media screen and (max-width: 834px) {
  .jobImage {
    width: 100%;
  }
}

.jobImage img {
  width: 100%;
}

.job_occupations {
  position: relative;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1;
  padding: 1px 0 1px 8px;
}

@media all and (max-width: 544px) {
  .job_occupations {
    font-size: 1.6rem;
    margin: 14px 0;
    padding: 1px 0 1px 8px;
  }
}

.job_occupations::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background: #ed8e2f;
  position: absolute;
  top: 0;
  left: 0;
}

.jobDetail {
  position: relative;
  width: 100%;
  padding: min(1.89189vw, 28px);
  margin-bottom: min(3.37838vw, 50px);
}

.jobDetail__jobname {
  margin-bottom: 80px;
}

@media all and (max-width: 834px) {
  .jobDetail__jobname {
    margin-bottom: 40px;
  }
}

@media all and (max-width: 544px) {
  .jobDetail__jobname {
    width: 95%;
    margin-bottom: 20px;
  }
}

.jobDetail__jobname h1 {
  font-size: 3.6rem;
}

@media all and (max-width: 544px) {
  .jobDetail__jobname h1 {
    font-size: 1.8rem;
  }
}

.jobDetail__jobname p {
  text-indent: 1em;
}
@media all and (max-width: 544px) {
  .jobDetail__jobname p {
    margin-top: 6px;
    text-indent: 0;
  }
}

.outline_ttl {
  background: #fff4eb;
  border-bottom: 1px solid #ed8e2f;
  padding: 0.8em 1em;
  font-size: 2.2rem;
}

@media screen and (max-width: 544px) {
  .outline_ttl {
    font-size: 1.6rem;
    padding: 0.4em 0.8em;
  }
}

.job_outline_item {
  display: flex;
  border-bottom: 1px solid #8e8e8e;
  padding: min(1.35135vw, 20px) min(2.02703vw, 30px);
}

@media screen and (max-width: 544px) {
  .job_outline_item {
    flex-direction: column;
    padding: 10px 0;
  }
}

.job_outline_item_ttl {
  width: min(12.16216vw, 180px);
  font-weight: bold;
}
@media screen and (max-width: 544px) {
  .job_outline_item_ttl {
    width: 100%;
  }
}

.job_outline_item_txt {
  width: min(51.35135vw, 760px);
}

@media screen and (max-width: 544px) {
  .job_outline_item_txt {
    width: 100%;
  }
}

.job_body_block {
  margin: 50px 0;
}

@media screen and (max-width: 544px) {
  .job_body_block {
    margin: 20px 0;
    width: 95%;
  }
}

.page_back {
  padding: 0;
  margin: 0 auto;
  margin-top: 64px;
}

@media screen and (max-width: 544px) {
  .page_back {
    margin: 20px auto 30px;
  }
}

.page_back a:before {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  transform: rotate(135deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  margin-right: 5px;
}

.commonBtn01.page_back a:after {
  display: none;
}

.lower-kyujin_d .footer {
  padding-bottom: 94px;
}

/* convertion set */
.fixed_convertion {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  background: rgba(255, 240, 217, 0.8);
  padding: 15px;
  box-sizing: border-box;
}

.fixed_convertion_inner {
  display: flex;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.fixed_convertion .phone {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
}

.fixed_convertion .phone .btn_phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #320000;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s;
}

.fixed_convertion .phone .phone_num {
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.fixed_convertion .phone .phone_num:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0.05em;
  margin-right: 0.3em;
  width: 0.82em;
  height: 0.82em;
  background: url("../img/ico_tel.png") no-repeat center center/contain;
}

.fixed_convertion .phone .phone_notes {
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  margin-top: 5px;
  opacity: 0.8;
}

.fixed_convertion .convertion {
  flex: 1 0 auto;
}

.fixed_convertion .convertion .btn_convertion {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 300px;
  background: #ed8e2f;
  color: #fff;
  padding: 15px 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.fixed_convertion .convertion .btn_convertion:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(-45deg) translateY(-50%);
}

.fixed_convertion .convertion .btn_convertion span {
  font-size: 16px;
  font-weight: bold;
}

@media (hover: hover) {
  .fixed_convertion .convertion .btn_convertion:hover {
    opacity: 0.7;
  }
}

@media (max-width: 834px) {
  .fixed_convertion {
    padding: 10px;
  }

  .fixed_convertion .phone {
    flex-basis: 200px;
    margin-right: 10px;
  }

  .fixed_convertion .phone .btn_phone {
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
  }

  /* .fixed_convertion .phone .phone_num,
  .fixed_convertion .phone .phone_notes {
    color: #7a9b31;
  } */

  .fixed_convertion .phone .phone_num {
    font-size: 1.4rem;
  }

  /* .fixed_convertion .phone .phone_num:before {
    background-image: url("../img/kyujin/ico_custom_tel_color.png");
  } */

  .fixed_convertion .phone .phone_notes {
    font-size: 10px;
  }

  .fixed_convertion .convertion .btn_convertion {
    padding: 10px 0;
  }

  .fixed_convertion .convertion .btn_convertion span {
    font-size: 14px;
  }
}

/* ============================================
// ABOUT US
// ==========================================*/
.office__container{
  position: relative;
}

.officeMap {
  width: 1000px;
  background: #fff;
  border: 1px solid #ed8e2f;
  box-shadow: 3px 3px 5px -3px #777777;
  margin: 0 auto 126px;
}

@media all and (max-width: 834px) {
  .officeMap {
    width: 95%;
    margin: 0 auto 80px 0;
  }

  .officeMap img{
    width: 100%;
  }
}

@media all and (max-width: 544px) {
  .officeMap {
    width: 94%;
    margin: 0 auto 20px 0;
  }
}

.officeMap .desc{
  font-size: 2.6rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 18px;
}

@media all and (max-width: 544px) {
  .officeMap .desc{
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}

.office {
  width: 1048px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 80px;
}

/* @media all and (max-width: 834px) {
  .office {
    width: 95%;
    margin: 0 0 40px 0;
  }
} */

@media all and (max-width: 834px) {
  .office {
    width: 95%;
    margin: 0 auto 20px 0;
    flex-direction: column-reverse;
  }
}

.office .txtArea {
  width: 50%;
}

@media all and (max-width: 843px) {
  .office .txtArea {
    width: 100%;
  }
}

.hd_officeList {
  font-size: 3.6rem;
  border-bottom: 1px solid #8e8e8e;
  margin-bottom: 28px;
}

@media all and (max-width: 544px) {
  .hd_officeList {
    width: fit-content;
    font-size: 2.0rem;
    margin:0 auto 18px;
    text-align: center;
  }
}

.office__info dl {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 18px;
}

@media all and (max-width: 834px) {
  .office__info dl {
    gap: 0 15px;
  }
}

@media all and (max-width: 544px) {
  .office__info dl {
    gap: 0 10px;
    margin-bottom: 10px;
  }
}

.office__info dl dt {
  background: #ed8e2f;
  text-align: center;
  padding: 6px 0;
  width: 130px;
  color: #fff;
}

@media all and (max-width: 544px) {
  .office__info dl dt {
    padding: 6px 0;
    width: 100px;
  }
}

@media all and (max-width: 834px) {
  .office__info dl dd {
    width: calc(100% - 130px);
  }
}

@media all and (max-width: 544px) {
  .office__info dl dd {
    width: calc(100% - 110px);
  }
}


.office__slider {
  margin-bottom: 20px;
}

.officeImage {
  width: 46.875%;
}

@media only screen and (max-width: 834px) {
  .officeImage {
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 544px) {
  .officeImage {
    width: 80%;
    margin: 0 auto;
  }
}

.officeImage img {
  width: 100%;
}

.thumbnail .slick-track {
  transform: unset !important;
}

.thumbnail-image {
  margin-right: 10px;
}

/* graph */
.career_number_content {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}

@media all and (max-width: 544px) {
  .career_number_content {
    width: 94%;
    margin: 0 auto 0 0;
  }
}

.career_number_item {
  margin: 0 1.5rem 3rem;
  width: calc(50% - 3rem);
}

@media all and (max-width: 544px) {
  .career_number_item {
    margin: 0 auto 3rem;
    width: 100%;
  }
}

.career_number_item_title {
  margin: 0 0 1.5em;
  text-align: center;
  font-size: 1.25em;
  font-weight: bold;
}

@media all and (max-width: 544px) {
  .career_number_item_title {
    font-size: 1.1em;
  }
}

.career_number_item_title span {
  background-image: linear-gradient(0deg, rgba(255, 236, 222, 0.5) 50%, transparent 50%);
}

.career_number_item_title i {
  font-size: 0.8em;
  font-style: normal;
  line-height: 1;
}

.career_number_item .txt_box {
  position: relative;
  background: #fff;
  padding: 2rem;
  margin: 2rem 0 0;
  border-top: 1px dotted #b1b1b1;
  box-shadow: 3px 3px 5px -3px #777777;
}

.career_number_item .txt_box p {
  position: relative;
  z-index: 4;
  display: inline;
  line-height: 2.8;
  padding-bottom: .6em;
  font-size: 17px;
  border-bottom: 1px dotted #b1b1b1;
  position: static;
  font-size: 0.9em;
}

@media only screen and (max-width: 480px) {
  .career_number_item .txt_box p {
    font-size: 0.85em;
  }
}

.career_number .white_box {
  padding: 3rem 3.5rem;
  background: #fff;
  background-image: url(../img/bg_grid.png);
  background-repeat: repeat;
  box-shadow: 3px 3px 5px -3px #777777;
}

.career_number .mini_item_wrap {
  display: flex;
  margin: 0 -1.5rem -3rem;
}

.career_number .mini_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 1.5rem 3rem;
  width: calc(50% - 3rem);
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.career_number .mini_item .career_number_item_title {
  margin: 0 0 0.5em;
}

.career_number .mini_item1 {
  background: url(../img/ico_people.png) no-repeat center / auto 65%, url(../img/bg_grid.png);
}

@media screen and (max-width: 544px) {
  .career_number .mini_item1 {
    background: url(../img/ico_people.png) no-repeat center / auto 50%, url(../img/bg_grid.png);
  }
}

.career_number .mini_item2 {
  background: url(../img/ico_watch.png) no-repeat center / auto 40%, url(../img/bg_grid.png);
}
@media screen and (max-width: 544px) {
  .career_number .mini_item2 {
    background: url(../img/ico_watch.png) no-repeat center / auto 50%, url(../img/bg_grid.png);
  }
}

.career_number .mini_item3 {
  background: url(../img/ico_callender.png) no-repeat center / auto 70%, url(../img/bg_grid.png);
}

@media screen and (max-width: 544px) {
  .career_number .mini_item3 {
    background: url(../img/ico_callender.png) no-repeat center / auto 55%, url(../img/bg_grid.png);
  }
}

.career_number .num {
  text-align: center;
  color: inherit;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.1;
}

.career_number .num_large {
  display: inline-block;
  min-width: 1.5em;
  font-size: 4em;
  font-weight: bold;
}

.career_number .num_note {
  text-align: center;
  color: #e37157;
  font-weight: bold;
}

.career_number .data_txt {
  flex: 1 1 auto;
}

.career_number .data_txt dl {
  display: flex;
  margin: 0 0 0.7rem;
}

.career_number .data_txt dl dt {
  flex: 0 0 auto;
  font-size: 0.9em;
  font-weight: bold;
}

.career_number .data_txt dl dd {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  font-size: 0.75em;
  line-height: 1;
}

.career_number .data_txt dl dd .value {
  margin-right: 0.1em;
  min-width: 1.5em;
  text-align: right;
  font-size: 1.5em;
}

.career_number .data_txt dl dd:before {
  content: '';
  flex: 1 1 auto;
  align-self: center;
  margin: 0 0.7rem;
  width: 2em;
  height: 2px;
}

.career_number .data_txt dl:nth-child(6n+1) dd:before {
  background: #fdcf21;
}

.career_number .data_txt dl:nth-child(6n+2) dd:before {
  background: #c1db76;
}

.career_number .data_txt dl:nth-child(6n+3) dd:before {
  background: #fbb03b;
}

.career_number .data_txt dl:nth-child(6n+4) dd:before {
  background: #4583f2;
}

.career_number .data_txt dl:nth-child(6n+5) dd:before {
  background: #8d67a8;
}

.career_number .doughnut_data02 .data_txt dl:nth-child(6n+1) dd:before {
  background: #fbb03b;
}

.career_number .doughnut_data02 .data_txt dl:nth-child(6n+2) dd:before {
  background: #7cc4da;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(1) dd:before {
  background: #c1db76;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(2) dd:before {
  background: #fdcf21;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(3) dd:before {
  background: #7cc4da;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(4) dd:before {
  background: #ffb340;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(5) dd:before {
  background: #c3a4e0;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(6) dd:before {
  background: #05a8aa;
}

.career_number .doughnut_data03 .data_txt dl:nth-child(7) dd:before {
  background: #ff8470;
}

.career_number .data_txt_row {
  display: flex;
  margin: 0 -2rem;
}

.career_number .data_txt_row .data_txt {
  width: 50%;
  padding: 0 2rem;
}

.career_number .bar_wrap {
  max-width: 100%;
  height: 200px;
}

.career_number .doughnut_area,
.career_number .doughnut_area02,
.career_number .doughnut_area03 {
  display: flex;
  align-items: center;
  margin: 0 -2rem;
}

.career_number .doughnut_area>*,
.career_number .doughnut_area02>*,
.career_number .doughnut_area03>* {
  margin: 0 2rem 3rem;
}

.career_number #doughnut,
.career_number #doughnut02,
.career_number #doughnut03 {
  width: 180px;
  min-height: 180px;
}

.career_number .doughnut_data,
.career_number .doughnut_data02,
.career_number .doughnut_data03 {
  flex: 1 1 auto;
}

.career_number .doughnut_data dl:before,
.career_number .doughnut_data02 dl:before,
.career_number .doughnut_data03 dl:before {
  content: '';
  align-self: center;
  margin-right: 0.5rem;
  width: 7px;
  height: 7px;
}

.career_number .doughnut_data dl:nth-child(6n+1):before {
  background: #fdcf21;
}

.career_number .doughnut_data dl:nth-child(6n+2):before {
  background: #c1db76;
}

.career_number .doughnut_data dl:nth-child(6n+3):before {
  background: #fbb03b;
}

.career_number .doughnut_data dl:nth-child(6n+4):before {
  background: #4583f2;
}

.career_number .doughnut_data dl:nth-child(6n+5):before {
  background: #8d67a8;
}

.career_number .doughnut_data dl:nth-child(6n+6):before {
  background: #8d67a8;
}

.career_number .doughnut_data02 dl:nth-child(6n+1):before {
  background: #fbb03b;
}

.career_number .doughnut_data02 dl:nth-child(6n+2):before {
  background: #7cc4da;
}

.career_number .doughnut_data03 dl:nth-child(1):before {
  background: #c1db76;
}

.career_number .doughnut_data03 dl:nth-child(2):before {
  background: #fdcf21;
}

.career_number .doughnut_data03 dl:nth-child(3):before {
  background: #7cc4da;
}

.career_number .doughnut_data03 dl:nth-child(4):before {
  background: #ffb340;
}

.career_number .doughnut_data03 dl:nth-child(5):before {
  background: #c3a4e0;
}

.career_number .doughnut_data03 dl:nth-child(6):before {
  background: #05a8aa;
}

.career_number .doughnut_data03 dl:nth-child(7):before {
  background: #ff8470;
}

.career_number .male {
  text-align: center;
  font-size: 0.8em;
  color: inherit;
}

.career_number .male .num_large {
  font-size: 1.2em;
  color: inherit;
}

.career_number .male .mono {
  color: #444;
}

.career_number .memo {
  position: absolute;
  bottom: 15px;
  align-self: center;
  margin-top: 0.5em;
  padding: 0 0.5em;
  font-size: 0.7em;
}

@media all and (max-width: 544px) {
  .career_number .memo {
    position: absolute;
    bottom: 2px;
    font-size: 0.6em;
  }
}

@media (max-width: 834px) {
  /* .career_number_content {
    flex-direction: column;
  } */

  /* .career_number_item {
    width: calc(100% - 3rem);
  } */

  .career_number .white_box {
    padding: 2rem 2.5rem;
  }

  .career_number .data_txt_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .career_number .data_txt_wrap>* {
    min-width: 60%;
  }

  .career_number .data_txt_row {
    flex-direction: column;
  }

  .career_number .data_txt_row .data_txt {
    width: auto;
  }

  .career_number .doughnut_area,
  .career_number .doughnut_area02,
  .career_number .doughnut_area03 {
    flex-direction: column;
    align-items: stretch;
  }

  .career_number .mini_item_wrap {
    /* margin: 0 -1rem -2rem; */
    margin: 0;
  }

  .career_number .mini_item {
    margin: 0 auto 2rem;
    width: 32%;
    font-size: 0.75em;
  }

  .career_number .num_large {
    font-size: 2em;
  }
}

.career_number_item.-small {
  width: 75%;
}

@media all and (max-width: 544px) {
  .career_number_item.-small {
    width: 100%;
    margin: 0 auto 0 0;
  }
}

/* ============================================
// CHARMPOINT
// ==========================================*/
.point__container {
  padding-top: 80px;
}

.charmpoint{
  position: relative;
  margin-bottom: 80px;
}

@media all and (max-width: 544px) {
  .charmpoint{
    margin-bottom: 40px;
  }
}

.point__cont {
  width: calc(100% - 1.5em);
  margin-bottom: 50px;
}

@media all and (max-width: 544px) {
  .point__cont {
    width: 94%;
    margin-bottom: 20px;
  }
}

.education .txtArea,
.point__cont .txtArea {
  margin-bottom: 50px;
}

@media all and (max-width: 544px) {
  .education .txtArea,
  .point__cont .txtArea {
    margin-bottom: 20px;
  }
}

.point__cont .txtArea .desc {
  margin-left: 2em;
}
@media all and (max-width: 544px) {
  .point__cont .txtArea .desc {
    margin-left: 1em;
  }
}

.point__cont .imgArea {
  display: flex;
  gap: 25px 50px;
  justify-content: center;
  flex-wrap: wrap;
}

@media all and (max-width: 544px) {
  .point__cont .imgArea {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }

  .point__cont .imgArea img{
    width: 100%;
  }
}

@media all and (max-width: 834px) {
.point__img{
  width: 42%;
}

.point__img img{
  width: 100%;
}
}

@media all and (max-width: 544px) {
  .point__img{
    width: 100%;
  }
  }

.point__cont .commonBtn01 {
  margin: 50px auto 0;
}

@media all and (max-width: 544px) {
  .point__cont .commonBtn01 {
    margin: 20px auto 0;
  }
}

.accordion__list__body {
  margin-top: 40px;
}

@media screen and (max-width: 640px) {
  .accordion__list__body {
    margin-top: 20px;
  }
}

.accordion__list__item {
  margin-bottom: 18px;

}

.accordion__list__item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1201px) {
  .accordion__list__item:hover {
    transform: translate(0, -4px);
  }
}

.accordion__list__item.-js-open .q::after {
  transform: rotate(0deg);
}

.accordion__list__item .q {
  position: relative;
  padding: 16px 80px 17px 30px;
  cursor: pointer;
  border: 1px solid #320000;
  border-radius: 10px;
  background: #fff;
}

@media screen and (max-width: 640px) {
  .accordion__list__item .q {
    padding: 18px 40px 18px 16px;
  }
}

.accordion__list__item .q::before,
.accordion__list__item .q::after {
  content: "";
  position: absolute;
  right: 30px;
  top: calc(50% - 1px);
  width: 20px;
  height: 2px;
  background: #320000;
  transition: transform 0.24s, background 0.4s;
}

@media screen and (max-width: 640px) {

  .accordion__list__item .q::before,
  .accordion__list__item .q::after {
    right: 16px;
    width: 14px;
  }
}

.accordion__list__item .q::after {
  transform: rotate(90deg);
}

.accordion__list__item .q .txt {
  display: flex;
  align-items: flex-start;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  color: #320000;
}

@media screen and (max-width: 640px) {
  .accordion__list__item .q .txt {
    font-size: 1.4rem;
    line-height: 1.1;
  }
}

.accordion__list__item .a {
  display: none;
  padding: 0 30px;
}

@media screen and (max-width: 640px) {
  .accordion__list__item .a {
    padding: 0 16px 16px;
  }
}

.accordion__list__item .a__inner {
  align-items: flex-start;
  padding: 30px;
  border-radius: 10px;
}

.accordion__list__item .a__inner .commonBtn01 {
  margin: 50px auto 0;
}

@media screen and (max-width: 544px) {
  .accordion__list__item .a__inner {
    display: block;
    padding: 20px 0;
  }
}

.accordion__list__item .a__inner+.a__inner {
  margin-top: 10px;
}

.accordion__list__item .a .txt {
  flex: 1 1 100%;
  line-height: 1.8;
}

.accordion__list__item .a .link_set {
  display: block;
  margin-top: 1.5em;
}

.accordion__list__item .a .link_set .link {
  display: block;
  margin-top: 0.3em;
}

.accordion__list__item .a .link_set .link a {
  display: inline-flex;
  justify-content: flex-start;
  color: #ff819c;
  text-decoration: underline;
}

@media screen and (min-width: 1201px) {
  .accordion__list__item .a .link_set .link a:hover {
    opacity: 0.7;
  }
}

.accordion__list__item .a .link_set .link a::before {
  content: "";
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 6px;
  margin-right: 5px;
  background: url(../img/common/arrow01.png) center center/contain no-repeat;
}

@media screen and (max-width: 640px) {
  .accordion__list__item .a .link_set .link a::before {
    flex: 0 0 13px;
    width: 13px;
    margin-top: 5px;
  }
}

.accordion__list__item .a .link_set .link a[target=_blank]::before {
  flex: 0 0 16px;
  width: 16px;
  height: 13px;
  background-image: url(../img/common/ico_external.png);
}

@media screen and (max-width: 640px) {
  .accordion__list__item .a .link_set .link a[target=_blank]::before {
    flex: 0 0 13px;
    width: 13px;
  }
}

.accordion__list__item .a .img {
  flex: 0 0 270px;
  max-width: 270px;
  margin-left: 56px;
}

@media screen and (max-width: 640px) {
  .accordion__list__item .a .img {
    margin: 20px auto 0;
  }
}

.accordion__list__item .a .img img {
  max-width: 100%;
  height: auto;
}

.accordion__list__item .a .img_l {
  text-align: center;
}

.-long {
  width: 452px !important;
}

@media all and (max-width: 544px) {
  .-long {
    width: auto !important;
    font-size: .9rem;
  }
}

.slogan__deco {
  text-align: center;
  margin: 0 auto 50px;
  font-size: 3.6rem;
  font-weight: bold;
}

@media all and (max-width: 544px) {
  .slogan__deco {
    margin: 0 auto 10px;
    font-size: 2.0rem;
  }
}

.slogan {
  font-size: 5.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

@media all and (max-width: 544px) {
  .slogan {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}

.slogan_desc {
  text-align: center;
  color: #3f3f3f;
}

@media all and (max-width: 834px) {
  .slogan_desc {
    text-align: left;
  }
}

.point__img .desc {
  text-align: center;
}

@media all and (max-width: 544px) {
.usersVoice__cont{
  width: 95%;
}
}

.usersVoice__list__item {
  display: flex;
  align-items: center;
  gap: 0 50px;
  margin-bottom: 48px;
}

@media all and (max-width: 544px) {
  .usersVoice__list__item {
    flex-direction: column;
    gap: 25px 0;
    margin-bottom: 48px;
  }
}

.usersVoice__list__item:last-child {
  margin-bottom: 0;
}

.user__icon {
  display: inline-block;
  border: 1px solid #320000;
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 16px;
}

.users__txt .desc {
  color: #3f3f3f;
  padding-left: 1rem;
}

/* ============================================
// WORK
// ==========================================*/
/* .work__container {
  padding-top: 80px;
} */

@media all and (max-width: 834px) {
.work__cont{
  width: 95%;
}
}

.cont__hd {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  margin-bottom: 50px;
}

@media all and (max-width: 544px) {
  .cont__hd {
    margin-bottom: 25px;
  }
}

.work__anchor__inner {
  width: 720px;
  margin: 0 auto;
}

@media all and (max-width: 834px) {
  .work__anchor__inner {
    width: 86%;
  }
}

@media all and (max-width: 544px) {
  .work__anchor__inner {
    width: 100%;
    margin: 82px auto 0;
  }
}

.work__anchor__list {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

@media all and (max-width: 544px) {
  .work__anchor__list {
    width: calc(83% - 2.0rem);
    align-items: center;
    margin: 25px 0 0 10%;
    padding-top: 10px;
    gap: 0 10px ;
  }
}

.work__anchor__list__item {
  width: 320px;
  height: 70px;
}

@media all and (max-width: 544px) {
  .work__anchor__list__item {
    width: 50%;
    height: auto;
  }
}

.work__anchor__list__item a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 5px -3px #777777;
  border-radius: 300px;
  position: relative;
  background: #fff;
  color: #320000;
}

@media all and (max-width: 544px) {
  .work__anchor__list__item a {
    padding: 10px 0;
  }
}

.work__anchor__list__item a:hover{
  background: #320000;
  color: #fff;
}

.work__anchor__list__item a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #320000;
  border-bottom: 1px solid #320000;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(45deg) translateY(-50%);
}

@media all and (max-width: 544px) {
  .work__anchor__list__item a::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: rotate(45deg) translateY(-50%);
  }
}

.work__anchor__list__item a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.work__cont .txtArea .slogan_desc {
  margin-bottom: 80px;
}

.work__description__inner {
  margin: 0 auto;
  width: 95%;
}

@media all and (max-width: 544px) {
  .work__description__inner {
    width: 90%;
  }
}

.work__description__inner .desc {
  margin-bottom: 80px;
}

@media all and (max-width: 834px) {
  .work__description__inner .desc {
    margin:8px 0 40px;
  }
}

.shift__image {
  margin-bottom: 80px;
}

@media all and (max-width: 544px) {
  .shift__image {
    margin-bottom: 40px;
  }
}

.shift__image__hd {
  border: 1px solid #000;
  background: #fff;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 18px;
  border-radius: 8px;
}

.shift__image__cont {
  display: flex;
  justify-content: space-evenly;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

@media all and (max-width: 544px) {
  .shift__image__cont {
    flex-direction: column;
    border: none;
  }
}

.time__schedule {
  width: 33%;
  padding: 0 24px;
}

@media all and (max-width: 834px) {
  .time__schedule {
    padding: 0 8px;
  }
}

@media all and (max-width: 544px) {
  .time__schedule {
    width: 100%;
    padding: 0 24px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin-bottom: 20px;
  }
}

.time__schedule.-middle {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.-early {
  color: #b47328;
}

.-middle {
  color: #53917e;
}

.-late {
  color: #006992;
}

.schedule__flow__title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 40px;
}

@media all and (max-width: 834px) {
  .schedule__flow__title {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 544px) {
  .schedule__flow__title {
    font-size: 2.0rem;
  }
}

.schedule__flow__title span {
  position: relative;
  z-index: 1;
}

.schedule__flow__title .outer {
  position: relative;

}

.schedule__flow__title .outer::after {
  content: "";
  position: absolute;
  left: -50px;
  right: 0;
  margin: auto;
  bottom: -2px;
  width: calc(100% + 100px);
  height: 10px;
  border-radius: 5px;
  background: #000;
}

.-early .schedule__flow__title .outer::after {
  background: #efd9c1;
}

.-middle .schedule__flow__title .outer::after {
  background: #c7ded6;
}

.-late .schedule__flow__title .outer::after {
  background: #b5d2d8;
}

.schedule__flow__title span .inner::before {
  position: absolute;
  content: "";
  background: url(../img/ico_watch_brown.png) no-repeat;
  width: 30px;
  height: 30px;
  top: 50%;
  left: -42px;
  transform: translateY(-50%);
}

.-early .schedule__flow__title span .inner::before {
  background: url(../img/ico_watch_brown.png) no-repeat;
}

.-middle .schedule__flow__title span .inner::before {
  background: url(../img/ico_watch_green.png) no-repeat;
}

.-late .schedule__flow__title span .inner::before {
  background: url(../img/ico_watch_blue.png) no-repeat;
}

.schedule__flow__title span .inner::after {
  position: absolute;
  content: "";
  background: url(../img/ico_watch_brown.png) no-repeat;
  width: 30px;
  height: 30px;
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
}

.-early .schedule__flow__title span .inner::after {
  background: url(../img/ico_watch_brown.png) no-repeat;
}

.-middle .schedule__flow__title span .inner::after {
  background: url(../img/ico_watch_green.png) no-repeat;
}

.-late .schedule__flow__title span .inner::after {
  background: url(../img/ico_watch_blue.png) no-repeat;
}

.schedule__flow__item {
  position: relative;
  display: flex;
  margin-bottom: 30px;
}

@media all and (max-width: 544px) {
  .schedule__flow__item:last-child {
    margin-bottom: 10px;
  }
}

.schedule__flow__item:not(:last-of-type):before {
  position: absolute;
  content: "";
  background-image: repeating-linear-gradient(0deg, #b47328, #b47328 2px, transparent 2px, transparent 4px);
  z-index: 0;
  width: 1px;
  height: calc(100% + 16px);
  top: 24px;
  left: 13.5px;
}

.-early .schedule__flow__item:not(:last-of-type):before {
  background-image: repeating-linear-gradient(0deg, #b47328, #b47328 2px, transparent 2px, transparent 4px);
}

.-middle .schedule__flow__item:not(:last-of-type):before {
  background-image: repeating-linear-gradient(0deg, #53917e, #53917e 2px, transparent 2px, transparent 4px);
}

.-late .schedule__flow__item:not(:last-of-type):before {
  background-image: repeating-linear-gradient(0deg, #006992, #006992 2px, transparent 2px, transparent 4px);
}

.flow__time {
  padding: 4px 0 0 8px;
  font-size: 1.2rem;
}

.flow__txt {
  padding-left: 24px;
}

@media all and (max-width: 834px) {
  .flow__txt {
    padding-left: 12px;
  }
}

.flow__txt h4 {
  font-weight: bold;
}

.flow__txt p {
  font-size: 1.2rem;
}

.work__list {
  margin-bottom: 150px;
}

@media all and (max-width: 834px) {
  .work__list {
    margin-bottom: 0;
  }
}

.work__list__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 78px;
  position: relative;
}

@media all and (max-width: 834px) {
  .work__list__item {
    flex-direction: column;
  }

  .work__list__item:last-child {
    margin-bottom: 0;
  }
}

.work__list__item:not(:last-of-type)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  margin: auto;
  content: "";
  background: url(../img/ico_triangle_triple.png) no-repeat;
  background-size: 33px;
  width: 33px;
  height: 70px;
}

@media all and (max-width: 834px) {
  .work__list__item:not(:last-of-type)::after {
    background-size: 28px;
  }
}

.work__image {
  z-index: 1;
}

@media all and (max-width: 834px) {
  .work__image {
    width: 100%;
  }

  .work__image img{
    width: 100%;
  }
}

.work__txt {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff4eb;
  width: 780px;
  height: 264px;
  padding-left: 294px;
}

@media all and (max-width: 834px) {
  .work__txt {
    position: static;
    width: 100%;
    height: auto;
    padding-left: 0;
  }
}

.work__hd {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
  border-bottom: 1px dashed #ed8e2f;
  padding-top: 16px;
}

@media all and (max-width: 834px) {
  .work__hd {
    padding: 0 8px 8px;
    margin-bottom: 10px;
    gap: 8px;
  }
}

.work__hd .num {
  font-family: "Cormorant Garamond", sans-serif;
  color: #ed8e2f;
  font-size: 6rem;
  font-style: italic;
  line-height: 1;
}
@media all and (max-width: 834px) {
  .work__hd .num {
    font-size: 4rem;
  }
}

.work__hd h4 {
  font-size: 2.6rem;
}
@media all and (max-width: 544px) {
  .work__hd h4 {
    font-size: 2.0rem;
  }
}

.work__txt p {
  padding-right: 54px;
}

@media all and (max-width: 834px) {
  .work__txt p {
    padding: 0 10px 10px;
  }
}

.coming_soon {
  text-align: center;
  color: #8e8e8e;
  font-size: 2rem;
  margin: 100px 0;
}

@media all and (max-width: 544px) {
  .coming_soon {
    margin: 50px 0;
  }
}

/* ============================================
// EDUCATION
// ==========================================*/
.education__container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 244, 235, 1) 18%);
  margin-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 834px) {
  .education__container {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 544px) {
  .education__container {
    margin-top: 74px;
  }

  /* .education{
    width: 95%;
  } */
}

  .education__cont {
    width: calc(100% - 1.5em);
    margin-bottom: 50px;
  }
  
  /* @media all and (max-width: 544px) {
    .point__cont {
      width: 90%;
      margin-bottom: 20px;
    }
  } */

@media screen and (max-width: 834px) {
    .education__cont{
      width: 95%;
      }
    }

@media screen and (max-width: 544px) {
  .education__cont{
  width: 95%;
  margin: 0 0 20px;
  }
}

.education__cont_inner{
  margin-bottom: 40px;
}

@media all and (max-width: 544px) {
  .education__cont_inner{
    margin-bottom: 20px;
  }
}

.education__cont .imgArea {
  display: flex;
  gap: 25px 50px;
  justify-content: center;
  flex-wrap: wrap;
}

@media all and (max-width: 544px) {
  .education__cont .imgArea {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }
}

@media (max-width: 544px) {
  .education__cont .imgArea img {
      width: 100%;
  }
}

.education__description__inner {
  position: relative;
  padding: 0 0 12rem;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .education__description__inner {
    padding: 4rem;
  }
}

@media screen and (max-width: 544px) {
  .education__description__inner {
    padding: 0;
  }
}

.education__description__inner::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  top: auto;
  left: -100%;
  right: -100%;
  margin: 150px auto 0;
  transform: rotate(-7deg);
  transform-origin: center top;
  background: linear-gradient(180deg, rgba(244, 232, 125, 1) 0%, rgba(255, 255, 255, 1) 70%);
}

@media screen and (max-width: 544px) {
  .education__description__inner::before {
    margin: 106px auto 0;
  }
  
}

@media screen and (max-width: 834px) {
  .careerpath__content {
    overflow-x: auto;
  }
}

.careerpath__content .scroll{
  display: none;
}

@media (max-width: 834px) {
  .careerpath__content .scroll{
      position: relative;
      display: block;
      margin: 0.5em;
      font-size: 0.75em;
      font-weight: bold;
  }

  .careerpath__content .scroll:after {
    content: '';
    display: inline-block;
    margin-left: 0.5em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent #320000;
}
}

.careerpath__list {
  position: relative;
  display: flex;
  margin: 0 -1rem 1rem;
  min-width: 895px;
}

.careerpath__item {
  padding: 0 1rem;
  width: 20%;
}

.careerpath__item .year {
  position: relative;
  padding: 0.1em 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #96bcb1;
}

.careerpath__item .year::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  border-style: solid;
  border-color: transparent transparent transparent #96bcb1;
  border-width: 0.9em 0 0.9em 2rem;
  transform: translate(0, -50%);
}

.careerpath__item__body {
  position: relative;
  margin-top: 40px;
}

.careerpath__item:not(:last-of-type) .careerpath__item__body:before {
  content: '';
  position: absolute;
  width: 83px;
  height: 20px;
  right: 0;
  bottom: 100%;
  margin-bottom: 4px;
  margin-left: -53px;
  background: url(../img/ico_arrow_step.png) no-repeat left bottom / contain;
}

.careerpath__item .job_box {
  padding: 1.5rem 0.1rem;
  border-radius: 6px;
  color: #fff;
}

.careerpath__item:nth-child(odd) .job_box {
  background: #6a4b2e;
}

.careerpath__item:nth-child(even) .job_box {
  background: #320001;
}

.careerpath__item .job_box:not(:first-child) {
  margin-top: 1rem;
}

.careerpath__item .job_box dl {
  text-align: center;
}

.careerpath__item .job_box dl:not(:last-child) {
  margin: 0 0 0.5em;
}

.careerpath__item .job_box .title {
  font-size: 1.1em;
  color: #e58639;
  font-weight: bold;
}

.careerpath__item:last-child .year:after {
  content: none;
}

.careerpath__item:last-child .year_content_item_body:before {
  content: none;
}

@media (min-width: 769px) {
  .careerpath__item:last-child {
    margin-bottom: 245px;
  }
}

.careerpath__item:nth-child(1) .careerpath__item__body {
  margin-top: 165px;
}

.careerpath__item:nth-child(2) .careerpath__item__body {
  margin-top: 140px;
}

.careerpath__item:nth-child(3) .careerpath__item__body {
  margin-top: 115px;
}

.careerpath__item:nth-child(4) .careerpath__item__body {
  margin-top: 90px;
}

.careerpath__item:nth-child(5) .careerpath__item__body {
  margin-top: 64px;
}

@media (max-width: 834px) {
  .year_content {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .careerpath__item .year {
    margin-bottom: -1.5rem;
  }

  .careerpath__item .txt_box {
    padding: 1rem 0.05em;
  }

  .careerpath__item .txt_box .title {
    font-size: 1.05em;
  }

  .careerpath__item .comment {
    font-size: 0.85em;
  }
}

.bus_content {
  position: relative;
}

.bus_content_wrap {
  display: flex;
  align-items: center;
}

.bus_content_wrap>* {
  margin: 0 2rem 2rem;
}

@media screen and (max-width: 544px) {
  .bus_content_wrap>* {
    margin: 3rem 2rem 2rem;
  }
}

.bus_content_box {
  background: #fff;
  padding: 0 18px 18px 0;
  box-shadow: 3px 3px 5px -3px #777777;
}

.bus_content_title {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4em;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #ed8e2f;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 5px -3px #777777;
}

.bus_content_title br {
  display: none;
}

.bus_content_body {
  display: flex;
  align-items: center;
  padding: 2.2rem 1.25rem 0;
}

.bus_content_item_wrap {
  display: flex;
  padding: 0 1rem;
  margin: 0 -0.5rem;
}

@media screen and (max-width: 544px) {
  .bus_content_item_wrap {
    padding: 0;
  }
}

.bus_content_item {
  margin: 0 0.5rem;
  width: 120px;
  font-size: 0.8em;
  line-height: 2;
  text-align: center;
}

.bus_content_item .img_wrap {
  padding-top: 66.66666667%;
  background-size: cover;
  background-position: center;
}

.bus_content_arrow {
  width: 0;
  height: 0;
  border-width: 26px 0 26px 18px;
  border-style: solid;
  border-color: transparent transparent transparent#fbc98e;
  transform: translate(0, -0.8em);
}

.bus_content .photo_content_img img {
  width: 336px;
}

.bus_content_box .desc {
  text-align: right;
  font-size: 1.2rem;
}

@media (min-width: 769px) {
  .bus_content {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 1280px) {
  .bus_content {
    right: 20px;
  }

  .bus_content_body {
    padding: 2.2rem 0 1.3rem;
  }
}

@media screen and (max-width: 834px) {
  .bus_content {
    right: 0;
  }
}

@media (max-width: 834px) {
  /* .bus_content {
    position: static;
    margin-top: 3rem;
  } */

  .bus_content_wrap {
    margin-top: 40px;
    flex-direction: column;
    /* align-items: stretch; */
  }

  .bus_content_title {
    justify-content: space-between;
  }

  .bus_content_title br {
    display: inline;
  }

  .bus_content_body {
    flex-direction: column;
    align-items: stretch;
  }

  .bus_content_item_wrap {
    justify-content: center;
  }

  .bus_content_item {
    width: 33.33333333%;
  }

  .bus_content_arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .bus_content .photo_content_img {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .section_wrap {
    position: relative;
  }
}

@media screen and (max-width: 544px) {
  .faq__anchor__list {
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 25px;
  }
}

#education02 {
  margin-top: 90px;
}

@media screen and (max-width: 834px) {
  #education02 {
    margin-top: 40px;
  }
}

/* ============================================
// FAQ
// ==========================================*/
.faq__anchor__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
}

@media screen and (max-width: 834px) {
  .faq__anchor__list {
    width: 95%;
    flex-wrap: wrap;
    gap: 10px;
    margin: 82px 0 25px;
  }
}

.faq__anchor__list__item {
  width: 320px;
  height: 70px;
}

@media screen and (max-width: 834px) {
  .faq__anchor__list__item {
    width: calc(50% - 6px);
  }
}

@media screen and (max-width: 544px) {
  .faq__anchor__list__item {
    height: auto;
  }
}

.faq__anchor__list__item a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 5px -3px #777777;
  border-radius: 300px;
  position: relative;
  background: #fff;
  border: 1px solid #ffb340;
  color: #320000;
  font-size: 1.4rem;
}

@media all and (max-width: 544px) {
  .faq__anchor__list__item a {
    padding: 6px 12px 12px;
    font-size: 1.2rem;
  }
}

.faq__anchor__list__item a:hover {
  background: #ffb340;
  color: #fff;
}

.faq__anchor__list__item a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #320000;
  border-bottom: 1px solid #320000;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width: 544px) {
  .faq__anchor__list__item a::after {
    top: auto;
    right: 0;
    bottom: 4px;
    left: 0;
    margin: 0 auto;
  }
}

.faq__anchor__list__item a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.faq__block {
  margin-top: 50px;
}

.faq__block__title h2 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 544px) {
  .faq__block__title h2 {
    width: fit-content;
    font-size: 2.0rem;
    border-bottom: 1px solid #ed8e2f;
    margin:0 auto 25px;
  }
}

.faq__block__title h2::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #ed8e2f;
}

@media screen and (max-width: 544px) {
  .faq__block__title h2::after {
    content: none;
  }
}

.faq__block__title h2:after {
  margin-left: 1rem;
}

@media screen and (max-width: 834px) {
.faq__cont{
width: 95%;
}
}

/* ============================================
// INTERVIEW_L
// ==========================================*/
@media all and (max-width: 834px) {
.interview__list__body{
width: 95%;
}
}

.interview__list__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin-bottom: 80px;
}

@media all and (max-width: 834px) {
  .interview__list__item {
    flex-direction: column;
    margin-bottom: 80px;
  }
}

@media all and (max-width: 544px) {
  .interview__list__item {
    margin-bottom: 40px;
  }
}

.interview__list__item .imgArea {
  width: 650px;
}

@media all and (max-width: 544px) {
  .interview__list__item .imgArea {
    width: 100%;
  }

  .interview__list__item .imgArea img{
    width: 100%;
  }
}

.interview__list__item .txtArea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media all and (max-width: 544px) {
  .interview__list__item .txtArea {
    flex-direction: column-reverse;
  }
}

.interview__cont__hd {
  display: flex;
  align-items: center;
  padding-top: 25px;
}

@media all and (max-width: 544px) {
  .interview__cont__hd {
    padding: 18px 0 8px;
  }
}

.interview__hd {
  font-size: 3.6rem;
}

@media all and (max-width: 544px) {
  .interview__hd {
    font-size: 1.8rem;
  }
}

.interview__l__prof {
  display: flex;
  align-items: flex-end;
  gap: 0 20px;
  margin-bottom: 4px;
  padding-top: 30px;
  border-top: 1px solid #ed8e2f;
}

@media all and (max-width: 834px) {
  .interview__l__prof {
    width: fit-content;
    gap: 0 10px;
    margin: 0 auto;
    padding-top: 11px;
    border-top: none;
    border-bottom: 1px solid #ed8e2f;
    align-items: baseline;
  }
}

.dept {
  position: relative;
  font-size: 2.0rem;
  padding-left: 32px;
}

@media all and (max-width: 544px) {
  .dept {
    font-size: 1.6rem;
    padding-left: 23px;
  }
}

.dept::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/ico_pin.png) no-repeat left bottom;
  background-size: 23px;
  width: 23px;
  height: 30px;
}

@media all and (max-width: 544px) {
  .dept::before {
    background-size: 16px;
    width: 16px;
    height: 23px;
  }
}

.join_year {
  color: #ed8e2f;
}

.interview__list__item .name {
  font-size: 3.0rem;
  font-weight: bold;
  padding-left: 32px;
}

@media all and (max-width: 544px) {
  .interview__list__item .name {
    font-size: 2.0rem;
    padding-left: 6px;
  }
}

.interview__list__item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.interview__list__item a:hover {
  background: rgba(255, 255, 255, .5);

}

/* ============================================
// INTERVIEW_D
// ==========================================*/
.interview_d__container {
  position: relative;
}

.interview_d__header__inner {
  display: flex;
}

@media all and (max-width: 834px) {
  .interview_d__header__inner {
    padding-top: 79px;
    flex-direction: column;
  }
}

.interview__mainVisual {
  width: 800px;
}

@media all and (max-width: 834px) {
  .interview__mainVisual {
    width: 100%;
  }
}

.interview__mainVisual img {
  width: 100%;
}

.interview_d_headerArea {
  position: relative;
  border-bottom: 1px solid #ed8e2f;
}

.interview_d_headerArea .eng{
  display: none;
}

@media all and (max-width: 544px) {
  .interview_d_headerArea .eng{
    display: block;
    text-align: right;
    margin-right: 33px;
    font-size: 1.6rem;
    font-style: italic;
    color: #8e8e8e;
    line-height: 1;
  }
}

.interview_d.txtArea {
  width: calc(100% - 800px);
  margin-left: auto;
}

@media all and (max-width: 834px) {
  .interview_d.txtArea {
    width: 100%;
  }
}

.interview_d.txtArea h1 {
  padding-top: 148px;
  margin-right: 60px;
  text-align: right;
  color: #3f3f3f;
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px -0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
}

@media all and (max-width: 834px) {
  .interview_d.txtArea h1 {
    padding-top: 10px;
  }
}

@media all and (max-width: 544px) {
  .interview_d.txtArea h1 {
    padding-top: 10px;
    margin-right: 33px;
    font-size: 2.6rem;
  }
}

.interview_d__commonEng01 {
  position: absolute;
  right: 0;
  bottom: -180px;
  border-left: 0;
}

@media all and (max-width: 834px) {
  .interview_d__commonEng01 {
    display: none;
    /* bottom: -100px; */
  }
}

.interview__d__prof__cont {
  display: flex;
  margin-right: 100px;
  margin-top: 80px;
}

@media all and (max-width: 834px) {
  .interview__d__prof__cont {
    display: block;
    margin-right: 0;
    margin-top: 20px;
  }
}

@media all and (max-width: 834px) {
  .interview__d__prof__cont {
    margin-top: 4px;
  }
}

.interview__d__prof__cont__inner {
  display: flex;
  flex-direction: column;
}

.interview__d__prof {
  display: flex;
  align-items: flex-end;
  gap: 0 22px;
  margin-bottom: 4px;
  border-bottom: 1px solid #3f3f3f;
  padding: 0 1.6rem 8px;
}

@media all and (min-width: 1590px) {
  .interview__d__prof {
    width: 636px;
  }
}

@media all and (max-width: 834px) {
  .interview__d__prof {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0 22px;
    margin: 0 auto;
    padding-top: 11px;
    border-bottom: none;
  }
}

.interview__d__prof .prof {
  display: flex;
  align-items: baseline;
  gap: 0 10px;
}

@media all and (max-width: 834px) {
  .interview__d__prof .prof {
    width: fit-content;
    margin: 0 auto;
    align-items: baseline;
  }
}

.interview__d__prof .dept {
  position: relative;
  font-size: 2.0rem;
  padding-left: 32px;
}

@media all and (max-width: 834px) {
  .interview__d__prof .dept {
    font-size: 1.6rem;
    padding-left: 23px;
  }
}

.interview__d__prof .dept::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/ico_pin_brown.png) no-repeat left bottom;
  background-size: 23px;
  width: 23px;
  height: 30px;
}

@media all and (max-width: 834px) {
  .interview__d__prof .dept::before {
    background-size: 16px;
    width: 16px;
    height: 23px;
  }
}

.interview__d__prof .join_year {
  font-size: 2.0rem;
  color: #ed8e2f;
}

@media all and (max-width: 834px) {
  .interview__d__prof .join_year {
    font-size: 1.6rem;
  }
}

.interview__d__prof__cont .name {
  font-size: 3.0rem;
  font-weight: bold;
}

@media all and (max-width: 834px) {
  .interview__d__prof__cont .name {
    font-size: 2.0rem;
    padding-left: 6px;
  }
}

.interview_d__hd {
  font-size: 3.6rem;
  margin: 30px 0 80px;
  color: #3f3f3f;
  font-weight: bold;
}

@media all and (max-width: 834px) {
  .interview_d__hd {
    margin: 10px 0 40px;
  }
}

@media all and (max-width: 544px) {
  .interview_d__hd {
    font-size: 2.2rem;
    margin: 10px 0 20px;
  }
}

.topics__list__item:not(:first-child) {
  margin-top: 138px;
}

@media all and (max-width: 834px) {
  .topics__list__item:not(:first-child) {
    margin-top: 40px;
  }  
}

.topics__list__item .interview__cont {
  display: flex;
  gap: 0 40px;
}

@media all and (max-width: 544px) {
  .topics__list__item .interview__wrap {
    width: 95%;
  }
}

@media all and (max-width: 834px) {
  .topics__list__item .interview__cont {
    flex-direction: column;
    gap: 0 40px;
  }
}

.topics__list__item:nth-child(even) .interview__cont {
  flex-direction: row-reverse;
}

@media all and (max-width: 834px) {
  .topics__list__item:nth-child(even) .interview__cont {
    flex-direction: column;
  }
}

@media all and (max-width: 544px) {
  .interview__cont .txtArea{
    margin-bottom: 20px;
}
}

.interview__cont .txtArea .question {
  font-size: 2.6rem;
  color: #ed8e2f;
  border-bottom: 1px solid #ed8e2f;
  margin-bottom: 18px;
}

@media all and (max-width: 544px) {
  .interview__cont .txtArea .question {
    width: fit-content;
    font-size: 2.0rem;
    margin:0 auto 6px;
  }
}

.interview__cont .txtArea h2 {
  font-size: 2.6rem;
  margin-bottom: 26px;
}

@media all and (max-width: 544px) {
  .interview__cont .txtArea h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 8px;
  }
}

.interview__cont .txtArea desc {
  color: #3f3f3f;
}

@media all and (max-width: 834px) {
  .interview__cont .imgArea{
    margin: 20px auto 0;
}
}

@media all and (max-width: 544px) {
  .interview__cont .imgArea{
    margin: 0 auto;
}
}

@media all and (max-width: 544px) {
  .interview__cont .imgArea img{
    width: 100%;
}
}

/* ============================================
// OLIENTATION
// ==========================================*/
.orientation__hd{
  padding-bottom: 80px;
  text-align: center;
}

@media all and (max-width: 834px) {
  .orientation__hd{
    width: 95%;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}

@media all and (max-width: 544px) {
  .orientation__hd{
    text-align: left;
    margin: 0;
    padding-bottom: 0;
    width: 95%;
  }
}

.orientation__desc{
  width: 100%;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 2;
}

@media all and (max-width: 544px) {
  .orientation__desc{
    margin: 0 auto 20px;
  }
}

.orientation__block{
margin: 100px 0;
}

@media all and (max-width: 834px) {
  .orientation__block{
    width: 95%;
    margin: 50px 0;
  }
}

.orientation__anchor__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 40px;
}

@media all and (max-width: 834px) {
  .orientation__anchor__list {
    gap: 0 16px;
    margin-top: 32px;
  }
}

.orientation__anchor__list__item {
  width: 165px;
  height: 165px;
  background-color: #fff;
  border: 1px solid #320000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

@media all and (max-width: 834px) {
  .orientation__anchor__list__item {
    width: 80px;
    height: 80px;
  }
}

.orientation__anchor__list__item a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #320000;
  font-weight: bold;
}

@media all and (max-width: 834px) {
  .orientation__anchor__list__item .illust{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .orientation__anchor__list__item .illust img{
    width: 100%;
    height: auto;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    object-position: top center;
  }
}

.orientation__anchor__list__item .txtArea {
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .orientation__anchor__list__item .txtArea {
    margin-top: 2px;
    font-size: 1.0rem;
  }
}

/* .orientation__anchor__list__item .txtArea .txt {
  font-size: 1.7rem;
  font-weight: bold;
  color: #320000;
}

@media all and (max-width: 834px) {
  .orientation__anchor__list__item .txtArea .txt {
    font-size: 1.4rem;
    line-height: 1.5;
    display: inline-block;
  }
} */

.orientation__anchor__list__item a:hover{
  color: #ccc;
  background: #320000; 
}

.orientation__anchor__list__item a:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7464%) hue-rotate(187deg) brightness(114%) contrast(94%);
}

.orientation__anchor__list__item .arrow {
  width: 96px;
  height: 22px;
  margin-top: 10px;
}

@media all and (max-width: 834px) {
  .orientation__anchor__list__item .arrow {
    position: absolute;
    bottom: -28px;
  }
}

.orientation__anchor__list__item .arrow img{
  width: 100%;
  height: 100%;
}

@media all and (max-width: 834px) {
  .orientation__anchor__list__item .arrow img{
    width: 50%;
    height: 50%;
    display: block;
    margin: 0 auto;
  }
}

@media all and (max-width: 834px) {
.orientation__block__title{
  display: flex;
  justify-content: center;
}
}

.orientation__block__title h2{
  width: 50%;
  font-size: 2.6rem;
  color: #3f3f3f;
  border-bottom: 1px solid #ed8e2f;
  margin-bottom: 48px;
  padding-bottom: 10px;
}

@media all and (max-width: 834px) {
  .orientation__block__title h2{
    text-align: center;
  }
}

@media all and (max-width: 544px) {
  .orientation__block__title h2{
    width: auto;
    font-size: 2.0rem;
    margin-bottom: 24px;
    padding-bottom: 6px;
  }
}

.schedule__list{
  border-top: 1px solid #8e8e8e;
}

.schedule__list__item{
  border-bottom: 1px solid #8e8e8e;
  padding: 12px;
}

.schedule__body{
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 544px) {
  .schedule__body{
    flex-direction: column;
  }
}

.schedule__body .txtArea{
  display: flex;
  align-items: center;
  width: calc(100% - 500px);
}

@media all and (max-width: 544px) {
  .schedule__body .txtArea{
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

@media all and (max-width: 544px) {
  .schedule__body .txtArea .day,
  .schedule__body .txtArea .location{
    margin-right: 1em;
  }
}

.time{
  margin-left: auto;
}

@media all and (max-width: 544px) {
  .time{
    margin-left: 0;
  }
}

.schedule__body .btnWrap{
  display: flex;
  gap: 0 10px;
}

.btnWrap .btnDetail,
.btnWrap .btnReserve{
width: 200px;
height: 48px;
}

.btnWrap .btnDetail a{
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffbb54;
  border-radius: 300px;
  position: relative;
  background: #ffbb54;
  color: #fff;
}

.btnWrap .btnReserve a{
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #ed8e2f;
  border-radius: 300px;
  position: relative;
  background: #ed8e2f;
  color: #fff;
}

/* ============================================
// OLIENTATION_D
// ==========================================*/
.orientation__title__cont{
  display: inline-block;
}

@media all and (max-width: 544px) {
  .orientation__title__cont{
    display: block;
    text-align: center;
  }
}

.ico__reserve {
  background: #ed8e2f;
  width: fit-content;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

@media all and (max-width: 544px) {
  .ico__reserve {
    font-size: 1.2rem;
  }
}

.orientation__title{
  font-size: 3.6rem;
  color: #3f3f3f;
  border-bottom: 1px solid #ed8e2f;
  margin-bottom: 48px;
  padding-bottom: 10px;
}

@media all and (max-width: 544px) {
  .orientation__title{
    display: block;
    width: fit-content;
    font-size: 2.0rem;
    margin:0 auto 20px;
    padding-bottom: 6px;
    text-align: center;
  }
}

@media all and (max-width: 544px) {
  .orientation-image img{
    width: 100%;
    height: auto;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    object-position: top center;
  }

  .orientation__img img{
    width: 100%;
  }
}

.orientation-image-body{
  position: relative;
}

.orientation__slider{
  margin: 0 auto;
}

.orientation__swiper-button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.orientation__swiper-button.swiper-button {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  pointer-events: none;
}

@media all and (max-width: 1300px) {
  .orientation__swiper-button.swiper-button {
    margin-left: 0;
  }
}

@media all and (max-width: 834px) {
  .orientation__swiper-button.swiper-button {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(85% + 30px + 30px);
    max-width: 410px;
    z-index: 2;
    justify-content: space-between;
  }
}

.orientation__swiper-button .swiper-button-prev,
.orientation__swiper-button .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  background-size: contain;
  width: 60px;
  height: 60px;
  transition: opacity 0.3s;
  pointer-events: auto;
}

@media (hover: hover) {
  .orientation__swiper-button .swiper-button-prev:hover,
  .orientation__swiper-button .swiper-button-next:hover {
    opacity: 0.7;
  }
}

@media all and (max-width: 834px) {
  .orientation__swiper-button  .swiper-button-prev,
  .orientation__swiper-button  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.orientation__swiper-button .swiper-button-prev::after,
.orientation__swiper-button .swiper-button-next::after {
  content: none;
}

.orientation__swiper-button .swiper-button-prev {
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(-135deg);
  margin-left: 20px;
}

@media all and (max-width: 834px) {
  .orientation__swiper-button .swiper-button-prev {
    margin-left: 20px;
  }
}

.orientation__swiper-button .swiper-button-next {
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(45deg);
  margin-right: 20px;
}

.swiper-button-disabled {
  opacity: 0.35 !important;
}

.tour__body {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 834px) {
  .tour__body {
    margin-top: 24px;
  }
}

.tour__body .desc {
  text-align: center;
}

@media all and (max-width: 544px) {
  .tour__body .desc {
    text-align: left;
  }
}

.tour__bgIllust {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@media all and (max-width: 834px) {
.tour__bgIllust {
    width: 80%;
    max-width: 540px;
    bottom: 160px;
  }
}

@media all and (max-width: 834px) {
.tour__bgIllust img {
    text-align: center;
  }
}

@media all and (max-width: 834px) {
.tour__bgIllust img {
    width: 100%;
  }
}

.tour__illustList {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 40px;
}

@media all and (max-width: 834px) {
.tour__illustList {
    gap: 0 16px;
    margin-top: 32px;
  }
}

.tour__illustList__item .illustArea {
  width: 165px;
  height: 165px;
  background-color: #fff;
  border: 1px solid #320000;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media all and (max-width: 834px) {
.tour__illustList__item .illustArea {
    width: 80px;
    height: 80px;
  }
}

@media all and (max-width: 834px) {
  .tour__illustList__item .illustArea .illust{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tour__illustList__item .illustArea .illust img{
    width: 100%;
    height: auto;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    object-position: top center;
  }
}

/* @media all and (max-width: 834px) {
.tour__illustList__item .illustArea .illust {
    transform: scale(0.6);
  }
} */

.tour__illustList__item .txtArea {
  margin-top: 10px;
  text-align: center;
}

@media all and (max-width: 544px) {
  .tour__illustList__item .txtArea {
    margin-top: 2px;
  }
}

.tour__illustList__item .txtArea .txt {
  font-size: 1.7rem;
  font-weight: bold;
  color: #320000;
}

@media all and (max-width: 834px) {
.tour__illustList__item .txtArea .txt {
    font-size: 1.4rem;
    line-height: 1.5;
    display: inline-block;
  }
}

@media screen and (max-width: 544px) {
  .tour__illustList__item .txtArea .txt {
    font-size: 1.2rem;
  }
}

.sec__overview{
  margin:0 0 100px 0;
}

@media all and (max-width: 544px) {
  .sec__overview{
    margin:20px 0 50px 0;
  }
}

.overview__list{
  display: flex;
  margin-bottom: 16px;
  gap: 0 16px;
}

@media all and (max-width: 544px) {
  .overview__list{
    width: 95%;
  }
}

.overview__list dt,
.overview__list dd{
  padding: 10px 1em;
}

.overview__list dt{
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ed8e2f;
  color: #fff;
}

.overview__list dd{
  width: 100%;
  border: 1px solid #3f3f3f;
  text-align: center;
}

.sec__overview .btnReserve{
  width: 600px;
  margin: 80px auto 0;
}

@media all and (max-width: 544px) {
  .sec__overview .btnReserve{
    width: 220px;
    height: 56px;
    margin: 40px auto 0;
  }
}

.sec__overview .btnReserve a{
  display: inline-flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #ed8e2f;
  border-radius: 300px;
  position: relative;
  background: #ed8e2f;
  color: #fff;
  font-size: 2.4rem;
  padding: 18px 0;
}

@media all and (max-width: 544px) {
  .sec__overview .btnReserve a{
    font-size: 1.4rem;
  }
}

/* ============================================
// アンカーリンク位置調整(SP）
// ==========================================*/
@media all and (max-width: 834px) {
  #office,
  #numazu,
  #atami,
  #shuzenji,
  #ito,
  #matsuzaki,
  #shimoda,
  #data,
  #support_system,
  #safety,
  #users_voice,
  #work01,
  #work02,
  #careerpass,
  #education2,
  #flow,
  #information,
  #office_tour,
  #online{
  padding-top: 79px;
  margin-top: -79px;
}
}