/* -------------------------------------------------------------------
*
*
*  共通のCSS
*
*
* ---------------------------------------------------------------- */
html {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  color: var(--textcolor);
  counter-reset: number 0;
  scroll-behavior: smooth;

}

a,
a:active,
a:focus,
a:visited {
  color: inherit;
  text-decoration: none;
  outline: none;
}
/* color_CSS */
:root {
  --maincolor: rgb(255, 125, 163);

  --pink_01: rgb(255, 110, 136);
  --pink_02: rgb(239, 24, 104);

  --blue_01: rgb(13, 76, 129);
  --blue_02: rgb(63, 159, 235);

  --green_01: rgb(54, 202, 199);

  --textcolor: rgb(38, 39, 39);
  --linkcolor: rgb(123, 194, 230);
  --bordercolor: rgb(220, 213, 213);
}
/* text_marker */
.y_line {
  background-image: linear-gradient(to right, #ffeeae 50%, transparent 50%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: 0 11px;
  font-weight: bold;
}

/*
    ローディング画面の背景
--------------------------------------------------------------------------*/
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #ffd3d3;
  z-index: 9999;
}
#loading.loaded {
  visibility: hidden;
  transition: all 1.5s;
  animation: fadeOut 1s 0.5s forwards;
}
#loading .loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 6px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

/*
    リンクボタン（SP）
--------------------------------------------------------------------------*/

.link_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fff;
  color: #007782;
  border: solid 4px #007782;
  line-height: 4;
  text-indent: 0.25rem;
  letter-spacing: 0.25rem;
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

.link_button:hover {
  background: #007782;
  color: #fff !important;
  transition: 0.3s;
}
.link_button:visited {
  color: #007782;
}
.link_button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-left: 8px solid #007782;
  border-bottom: 8px solid transparent;
}
.link_button:hover::after {
  border-left: 8px solid #fff;
}
@media screen and (min-width: 375px) {
  .link_button {
    font-size: 1.5rem;
  }
}

/*
    スライダー（SP）
--------------------------------------------------------------------------*/
.slider {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.slider_item {
  width: 100%;
  margin: 2rem 1rem;
  padding: 3rem 2rem;
  box-sizing: border-box;
  border-radius: 2rem;
  filter: drop-shadow(0 0 8px #dddddd);
  display: block;
  background: #fff;
}
.slider .slick-dots li {
  margin: 0 2px;
}
.slider .slick-dots li button:before {
  font-size: 4rem;
  opacity: 1;
}
.slider .slick-dots li button:before {
  color: white;
}
.slider .slick-dots li.slick-active button:before {
  color: #29c0cf;
}

/* 成功事例 */
.voice_card .user {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: space-around;
}
.voice_card .user .icon {
  width: 5rem;
  border-radius: 50%;
}
.voice_card .user .icon img {
  width: 100%;
}
.voice_card .user .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.voice_card .user .text .name {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #29c0cf;
}
.voice_card .user .text .workplace {
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
}
.voice_card .title {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  font-weight: 900;
}
.voice_card .comment {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.voice_card .info {
  border-top: solid 1px var(--bordercolor);
  padding-top: 1rem;
}
.voice_card .info dl {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.voice_card .info dl dt {
  width: 7rem;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  margin-right: 1rem;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
}
.voice_card .info dl dd {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.voice_card .info dl dt.red {
  background: #d81159;
  color: #fff;
}
.voice_card .info dl dd.red {
  color: #ff6a6a;
}
@media screen and (min-width: 375px) {
  .voice_card .user .icon {
    width: 7rem;
  }
  .voice_card .user .text .name {
    font-size: 1.4rem;
  }
  .voice_card .user .text .workplace {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 414px) {
  .voice_card .user .text .name {
    font-size: 1.6rem;
  }
  .voice_card .user .text .workplace {
    font-size: 1.2rem;
  }
  .voice_card .title {
    font-size: 1.8rem;
  }
  .voice_card .comment {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .voice_card .info {
    margin-bottom: 2rem;
  }
  .voice_card .info dl dt,
  .voice_card .info dl dd {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------------------------------
*
*
*  479px以下用（スマートフォン用）の記述
*
*
* ---------------------------------------------------------------- */

/*————————————————————————————————————————————————————————————————————————


    main_visual

——————————————————————————————————————————————————————————————————————————*/
#main-visual {
  width: 100%;
}
#main-visual .inner {
  width: 100%;
}
#main-visual .inner .mv_area {
  margin-bottom: 2rem;
  height: 400px;
  background: url(../img/mv_bg02.svg) no-repeat center 500px,
    url(../img/mv_bg_sp.png) no-repeat center;
  background-size: 600px, cover;
  background-position: bottom -50px center, center;
  position: relative;
}
#main-visual .inner .mv_area .mv_title {
  position: relative;
  top: 7%;
  z-index: 10;
}
#main-visual .inner .mv_area .mv_title img {
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#main-visual .inner .mv_area .mv_title_bg {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}
#main-visual .inner .mv_area .mv_img {
  position: relative;
  top: 230px;
  z-index: 10;
}
#main-visual .inner .mv_area .mv_img img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 375px) {
  #main-visual .inner .mv_area {
    height: 520px;
    background-position: bottom -20px center, center;
  }
  #main-visual .inner .mv_area .mv_img {
    top: 300px;
  }
}

/*————————————————————————————————————————————————————————————————————————

    global_nav

——————————————————————————————————————————————————————————————————————————*/
#global_nav {
  position: relative;
  z-index: 20;
}
#global_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1rem 0;
}
#global_nav ul li {
  width: 48%;
  border: solid 0.2rem #007782;
  border-radius: 0.8rem;
  box-shadow: 0px 4px 0px rgba(172, 220, 225, 0.6);
  overflow: hidden;
}
#global_nav ul li a {
  height: 4.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  color: #007782;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1.5rem;
  position: relative;
  background: #fff;
}
#global_nav ul li a::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid;
  border-color: transparent transparent #007782 #007782;
  position: absolute;
  right: 1rem;
  top: 45%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 375px) {
  #global_nav ul li a {
    font-size: 1.4rem;
  }
}

/*————————————————————————————————————————————————————————————————————————

    index.html

——————————————————————————————————————————————————————————————————————————*/

/*
    ページ全体のCSS（SP）
--------------------------------------------------------------------------*/

#wraper {
  width: 100%;
}

section > .inner {
  width: 100%;
  padding: 0 2rem;
}

/*
    各セクションの見出しの装飾（SP）
--------------------------------------------------------------------------*/
section > .inner h2.heading {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}
section > .inner h2.heading.style02 {
  margin-bottom: 4rem;
  font-size: 2.4rem;
  line-height: 1.5;
  position: relative;
}
section > .inner h2.heading.style02::before,
section > .inner h2.heading.style02::after {
  position: absolute;
  bottom: 0.5rem;
  transform: translateY(-50%);
  content: "";
  width: 3px;
  height: 50px;
  background: var(--textcolor);
  border-radius: 2px;
}
section > .inner h2.heading.style02::before {
  left: 0.5rem;
  transform: rotate(-25deg);
}
section > .inner h2.heading.style02::after {
  right: 0.5rem;
  transform: rotate(25deg);
}
section > .inner h2.heading.style02 span {
  margin: 0 0.5rem;
  color: #fff;
  font-size: 2.2rem;
  padding: 0.1rem 1rem 0.4rem;
  border-radius: 0.8rem;
  text-align: center;
  text-indent: 0.1rem;
  letter-spacing: 0.1rem;
}
section > .inner h2.heading.style02 .regular {
  background: #6bc377;
}
section > .inner h2.heading.style02 .parttime {
  background: #68b9f4;
}
section > .inner h2.heading br {
  display: block;
}
section > .inner h2.heading b {
  color: #29c0cf;
}
section > .inner h2.heading span.sub_text {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #eaeaea;
  line-height: 1;
  margin-top: 0.8rem;
}
section > .inner h2.heading span.small {
  font-size: 1.6rem;
}
@media screen and (min-width: 375px) {
  section > .inner h2.heading {
    font-size: 2.8rem;
  }
  section > .inner h2.heading.style02 {
    font-size: 2.8rem;
  }
  section > .inner h2.heading.style02::before {
    left: 1rem;
  }
  section > .inner h2.heading.style02::after {
    right: 1rem;
  }
  section > .inner h2.heading span.small {
    font-size: 2rem;
  }
}

/*
    美容皮膚科/美容外科の違い（SP）
--------------------------------------------------------------------------*/
#difference {
  padding: 6rem 0 6rem;
}
#difference .table {
  background: #fff;
  border: 0.4rem solid #007782;
  box-shadow: 6px 6px 0px rgb(172 220 225 / 60%);
  border-radius: 2rem;
  overflow: hidden;
}
#difference table {
  border-collapse: collapse;
}
#difference table td {
  position: relative;
}
#difference table th {
  padding: 3rem 0 2rem;
}
#difference table td:nth-child(2) #difference table td:nth-child(3) {
  padding: 0 2rem;
}
#difference table th,
#difference table td:nth-child(2),
#difference table td:nth-child(3) {
  width: 25%;
  box-sizing: border-box;
}

#difference table td:nth-child(2),
#difference table td:nth-child(3) {
  padding: 4rem 2rem 5rem;
  vertical-align: top;
  position: relative;
}
#difference table td:nth-child(2)::after,
#difference table td:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50%;
  border-bottom: dotted 4px #92c1c5;
}
#difference table tr:last-child td:nth-child(2)::after,
#difference table tr:last-child td:nth-child(3)::after {
  border-bottom: none;
}

#difference table td:first-child {
  width: 10%;
  padding: 0 1rem;
}
#difference table tr:nth-child(3) td .heading,
#difference table tr:nth-child(5) td .heading {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#difference table tr:nth-child(even) td {
  position: relative;
}
#difference table tr:nth-child(even) td .heading {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #f3f9f9;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: solid 1rem #fff;
  border-bottom: solid 1rem #fff;
  box-sizing: border-box;
}
#difference table th:nth-child(3),
#difference table td:nth-child(3) {
  background: #f3f9f9;
}

#difference table ul li {
  margin-bottom: 2rem;
}
#difference table ul li p {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #007782;
}

#difference table .evaluation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#difference table .evaluation .icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#difference table .evaluation .icon img {
  width: 100%;
}
#difference table .evaluation p {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
  color: #007782;
}
#difference table p.comment {
  width: 100vw;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
  bottom: 1.5rem;
  left: -35%;
  text-align: center;
}

@media screen and (min-width: 375px) {
  #difference table tr:nth-child(even) td .heading {
    width: 5rem;
  }
  #difference table tr:nth-child(3) td .heading,
  #difference table tr:nth-child(5) td .heading {
    width: 5rem;
  }
}

/*
    コンテンツCV（SP）
--------------------------------------------------------------------------*/
#content_cv {
  padding: 0 2rem;
}
#content_cv > .inner {
  height: 600px;
  padding: 4rem 2rem;
  border-radius: 20px;
  background: #f3f9f9;
  border: 4px solid #007782;
  box-shadow: 6px 6px 0px rgb(172 220 225 / 60%);
}
#content_cv > .inner h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #007782;
  white-space: nowrap;
}
#content_cv > .inner h2 span {
  font-size: 3rem;
}
#content_cv > .inner p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.5;
  text-align: left;
  color: #007782;
}
#content_cv > .inner img {
  display: block;
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 260px;
}
#content_cv > .inner .cv_button {
  background: #ff6181;
  filter: drop-shadow(0 6px 0 #c42650);
}
#content_cv > .inner .cv_button:hover {
  filter: none;
}
@media screen and (min-width: 375px) {
  #content_cv > .inner {
    height: 650px;
  }
  #content_cv > .inner h2 {
    font-size: 1.8rem;
  }
  #content_cv > .inner h2 span {
    font-size: 4rem;
  }
  #content_cv > .inner p {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 414px) {
  #content_cv > .inner h2 {
    font-size: 2rem;
  }
}


  /*————————————————————————————————————————————————————————————————————————

        index.html（PC）

    ——————————————————————————————————————————————————————————————————————————*/

  /*
        ページ全体のCSS（PC）
    --------------------------------------------------------------------------*/

  section > .inner {
    width: 100%;
    max-width: 1080px;
    min-width: 960px;
    margin: 0 auto;
  }
  #global_nav ul {
    justify-content: flex-start;
    gap: 1rem 1rem;
  }
  #global_nav ul li {
    width: calc((100% - 3rem) / 4);
    border-radius: 5rem;
    position: relative;
  }
  #global_nav ul li:hover {
    box-shadow: none;
    top: 4px;
  }

  /*
        各セクションの見出しの装飾（PC）
    --------------------------------------------------------------------------*/
  section > .inner h2.heading {
    width: 100%;
    margin-bottom: 4rem;
    font-size: 4rem;
  }
  section > .inner h2.heading br {
    display: none;
  }
  section > .inner h2.heading.style02 {
    width: fit-content;
    margin: 0 auto 6rem;
    font-size: 4rem;
  }
  section > .inner h2.heading.style02::before {
    left: -5rem;
  }
  section > .inner h2.heading.style02::after {
    right: -5rem;
  }
  section > .inner h2.heading.style02 span {
    font-size: 3.2rem;
  }

  /*
        美容皮膚科/美容外科の違い（PC）
    --------------------------------------------------------------------------*/
  #difference {
    padding: 8rem 0 8rem;
  }
  #difference table tr:nth-child(even) td .heading,
  #difference table tr:nth-child(3) td .heading,
  #difference table tr:nth-child(5) td .heading {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
  #difference table tr:nth-child(even) td .heading img,
  #difference table tr:nth-child(3) td .heading img,
  #difference table tr:nth-child(5) td .heading img {
    width: 60%;
  }
  #difference table td:nth-child(2)::after,
  #difference table td:nth-child(3)::after {
    width: 90%;
  }
  #difference table th {
    padding: 3rem 0 0rem;
  }
  #difference table th img {
    height: 60px;
  }
  #difference table td:nth-child(2),
  #difference table td:nth-child(3) {
    padding: 4rem 6rem 5rem;
  }
  #difference table ul li p {
    font-size: 1.4rem;
  }
  #difference table .evaluation p {
    font-size: 1.4rem;
  }
  #difference table p.comment {
    width: 1080px;
    left: -25%;
    font-size: 1.3rem;
  }
  #difference table p.comment br {
    display: none;
  }

  /*
        コンテンツCV（PC）
    --------------------------------------------------------------------------*/
  #content_cv {
    margin: 4rem 0;
  }
  #content_cv > .inner {
    height: auto;
    position: relative;
    padding: 8rem 8rem 5rem;
    box-sizing: border-box;
  }
  #content_cv > .inner h2,
  #content_cv > .inner p {
    width: 520px;
  }
  #content_cv > .inner h2 {
    font-size: 3.2rem;
  }
  #content_cv > .inner h2 span {
    font-size: 6.4rem;
  }
  #content_cv > .inner p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #content_cv > .inner img {
    position: absolute;
    top: 50%;
    right: 8rem;
    transform: translateY(-50%);
  }
  #content_cv > .inner .cv_button {
    width: 480px;
    margin: 0;
  }

  /*
        新着求人の紹介（SP）
    --------------------------------------------------------------------------*/
  .job_offer_container {
    width: 920px;
  }
  .job_offer_container > .chara {
    width: 260px;
    right: -14rem;
    bottom: -3rem;
  }
  .job_offer_container > .comment {
    right: -16.5rem;
    left: auto;
    bottom: 33rem;
    width: 240px;
  }

  #regular_job_offer,
  #parttime_job_offer {
    background: url(../img/job_offer_bg01.svg) no-repeat;
    background-size: 4000px;
    background-position: bottom -1400px center;
  }

  /*
        CVエリア（PC）
    --------------------------------------------------------------------------*/
  #cv_area > .inner {
    height: 40rem;
  }
  #cv_area > .inner > h2 {
    font-size: 4rem;
  }
  #cv_area > .inner > p {
    font-size: 1.6rem;
  }

  /*
        転職成功事例（PC）
    --------------------------------------------------------------------------*/
  #success_case {
    background-color: #f9f9f9;
  }
  #success_case .slider.sp {
    display: none !important;
  }
  #success_case .card_container {
    display: flex;
  }

  /*
        マイナビDOCTORが選ばれる3つの理由（PC）
    --------------------------------------------------------------------------*/
  #reason > .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #reason > .inner .card {
    width: 32%;
  }
  #reason > .inner h2.heading br:first-of-type {
    display: block;
  }

  /*
        ご利用の流れ（PC）
    --------------------------------------------------------------------------*/
  #service_flow .flow_container.pc {
    display: block;
  }

  #service_flow .flow_container.sp {
    display: none;
  }

  /*
        ご利用の流れ（PC）
    --------------------------------------------------------------------------*/
  #service_flow > .inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  #service_flow .flow_container {
    display: none;
  }
  #service_flow .flow_container_pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 4rem;
  }
  #service_flow .flow_container_pc .flow_container_item {
    width: 30%;
    margin-bottom: 12rem;
    background: #fff;
    position: relative;
    padding: 0;
    border-radius: 2rem;
    border: solid 0.1rem var(--bordercolor);
  }
  #service_flow .flow_container_pc .flow_container_item::after {
    content: url(../img/arrow.svg);
    position: absolute;
    top: 50%;
    right: -3rem;
    transform: translateY(-50%) rotate(-90deg);
    width: 4rem;
  }
  #service_flow .flow_container_pc .flow_container_item:nth-child(3)::after {
    content: url(../img/arrow02.svg);
    position: absolute;
    top: auto;
    bottom: -10rem;
    left: -70%;
    transform: translateX(-50%) rotate(0deg);
    width: 680px;
  }
  #service_flow .flow_container_pc .flow_container_item:last-child::after {
    content: "";
  }
  #service_flow .flow_container_pc .flow_container_item .step {
    position: absolute;
    top: -3rem;
    left: -3rem;
  }
  #service_flow .flow_container_pc .flow_container_item .text {
    width: 100%;
    padding: 3rem 2rem 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #service_flow .flow_container_pc .flow_container_item .text h3 {
    font-size: 2.6rem;
    line-height: 1.25;
    color: var(--blue_01);
    margin: 0 0 2rem;
  }
  #service_flow .flow_container_pc .flow_container_item .text p {
    font-size: 1.2rem;
    padding: 0;
  }
  #service_flow .flow_container_pc .flow_container_item .img {
    width: 100%;
    height: 160px;
    border-radius: 2rem 2rem 0 0;
    overflow: hidden;
  }

  /*
        その他の美容系コンテンツ（PC）
    --------------------------------------------------------------------------*/
  #other_beauty_contents > .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  #other_beauty_contents .article_card {
    padding: 3rem 2rem;
  }
  #other_beauty_contents .article_card .img img {
    width: 108px;
    height: 103px;
  }
  #other_beauty_contents .article_card .txt {
    margin-left: 1.5rem;
  }

  #other_beauty_contents > .inner .article_card {
    width: 480px;
    height: 200px;
  }

  #other_beauty_contents .article_card .txt h3 {
    font-size: 1.8rem;
  }
  #other_beauty_contents .article_card .txt p {
    font-size: 1.3rem;
  }
}

/*————————————————————————————————————————————————————————————————————————

    footer

——————————————————————————————————————————————————————————————————————————*/
footer {
  background: #fff;
}
.c-btn,
.swiper-container,
.swiper-wrapper,
body {
  position: relative;
}
.c-headline--centered,
.p-appeal__list {
  text-align: center;
}

.bdrBox,
.p-mainvisual,
.swiper-container,
.vlist ul > li {
  overflow: hidden;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
.header__inner:after,
.header__inner:before,
.p-appeal__list__item:after,
.p-appeal__list__item:before,
.p-area-select__group:after,
.p-area-select__group:before,
.p-feature__list:after,
.p-feature__list:before,
.p-flow__body:after,
.p-flow__body:before,
.p-flow__list:after,
.p-flow__list:before,
.p-form-area__privacy__links:after,
.p-form-area__privacy__links:before,
.p-section:after,
.p-section:before {
  display: table;
  content: "";
}

.p-appeal__list__item:after,
.p-area-select__group:after,
.p-feature__list:after,
.p-flow__body:after,
.p-flow__list:after,
.p-form-area__privacy__links:after,
.p-section:after {
  clear: both;
}
.c-container {
  max-width: 1120px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.p-appeal__list__item {
  width: 33%;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 1199px) {
  .p-appeal__list__item {
    width: 50%;
    display: block;
    margin: 40px auto 0;
  }
  .p-appeal__list__item:first-child {
    margin-top: 0;
  }
}

.p-appeal__list__item--img--job,
.p-appeal__list__item--img--privacy {
  display: inline-block;
}

@media (max-width: 1199px) and (max-width: 767px) {
  .p-appeal__list__item {
    width: 100%;
  }
}

.p-appeal__list__item--img {
  float: left;
}

@media (max-width: 1199px) {
  .p-appeal__list__item--img {
    width: 30%;
  }
  .p-appeal__list__item--img img {
    display: inline-block;
  }
}

.p-appeal__list__item--img p {
  color: #1eb8b1;
  font-size: 25px;
  margin-top: -16px;
}

@media (max-width: 767px) {
  .p-appeal__list__item--img--privacy {
    width: 65px;
    height: auto;
  }
  .p-appeal__list__item--img--privacy img {
    width: 100%;
  }
  .p-appeal__list__item--img--job {
    width: 65px;
    height: auto;
  }
  .p-appeal__list__item--img--job img {
    width: 100%;
  }
  .p-appeal__list__item--img p {
    font-size: 30px;
  }
}

.p-appeal__list__item--img p span {
  font-weight: 700;
  font-size: 60px;
}

.p-appeal__list__item--description {
  width: 64%;
  float: left;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .p-appeal__list__item--img p span {
    font-size: 71px;
  }
  .p-appeal__list__item--description {
    width: 60%;
    margin-left: 2%;
  }
}

.p-appeal__list__item--description h3 {
  display: block;
  line-height: 1.8;
  font-size: 14px;
  text-align: left;
  font-weight: 700;
}

.p-appeal__list__item--description p {
  line-height: 1.8;
  text-align: left;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .p-appeal__list__item--description h3,
  .p-appeal__list__item--description p {
    font-size: 12px;
  }
}

.header__tell__btn::after,
.p-footer__contact__tell:before,
.p-mainvisual__bg:after,
.p-register__header::after {
  content: "";
}

.p-footer__copy {
  background-color: #1eb8b1;
  padding: 13px 0;
  position: relative;
}

.p-footer__copy__page-top {
  display: block;
  text-align: center;
  width: 50px;
  height: 35px;
  padding-top: 14px;
  border-radius: 7px 7px 0 0;
  background-color: #1eb8b1;
  position: absolute;
  bottom: 40px;
  right: 2.6666666667%;
}

.p-footer__copy__page-top img {
  width: 16px;
  height: 11px;
  vertical-align: top;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-footer__copy__text {
  line-height: 1;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.p-footer__appeal {
  padding: 60px 0 50px !important;
}

@media (max-width: 767px) {
  .p-footer__copy {
    font-size: 12px;
  }
  .p-footer__appeal {
    padding: 40px 0 !important;
  }
}

.p-footer__contact {
  padding: 48px 0 !important;
  text-align: center;
}

@media (max-width: 767px) {
  .p-footer__contact {
    padding: 40px 10px !important;
    background-color: #1eb8b1;
    font-size: 12px;
  }
  .p-footer__contact p {
    color: #fff;
  }
}

.p-footer__contact__tell {
  display: block;
  position: relative;
  text-align: center;
  line-height: 1;
  font-size: 60px;
  font-weight: 700;
  font-family: "Century Gothic", sans-serif;
  color: #1eb8b1;
  vertical-align: middle;
  margin-bottom: 16px;
}

.p-footer__contact__tell:before {
  display: inline-block;
  width: 74px;
  height: 46px;
  background: url(../img/footer_tellicon.png) no-repeat;
  background-size: cover;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .p-footer__contact__tell {
    vertical-align: middle;
    line-height: 1;
    font-family: Century Gothic, sans-serif;
    font-size: 30px;
    height: auto;
  }
  .p-footer__contact__tell::before {
    width: 45px;
    height: 30px;
    background: url(../img/sp_footer_tellicon.png) no-repeat;
    background-size: cover;
    vertical-align: top;
  }
}



@media (max-width: 1199px) {

}

.header__main {
  width: 682px;
  float: left;
  padding: 25px 0 27px;
}

@media (max-width: 1199px) {
  .header__main {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    margin: 0 auto;
    float: none;
  }
}

.header__main__logo {
  display: inline-block;
  vertical-align: text-bottom;
  width: 286px;
  margin-bottom: -1px;
}

@media (max-width: 1199px) {
  .header__main__logo {
    width: 100%;
    height: auto;
  }
  .header__main__logo img {
    width: 181px;
  }
}

.header__main__catch {
  display: inline-block;
  vertical-align: middle;
  width: 386px;
  margin-left: 4px;
}

@media (max-width: 1199px) {
  .header__main__catch {
    width: 100%;
    margin-top: 14px;
    margin-left: 0;
  }
}

@media (max-width: 979px) {
  .header__main__catch {
    margin-top: 8px;
  }
}

.header__main__catch p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .header__main__catch p {
    font-size: 10px;
  }
}

.header__tell {
  width: 436px;
  float: right;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .header__tell {
    width: 230px;
    margin-top: 27px;
    text-align: right;
    display: none;
  }
  .header__tell--sp {
    display: none;
  }
}

.header__tell--sp {
  margin-top: 10px;
}

.header__tell__btn,
.header__tell__number {
  display: inline-block;
  vertical-align: middle;
}

.header__tell__number a {
  padding-left: 38px;
  font-size: 24px;
  color: #00b2b3;
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  background: url(../img/header_tellicon.png) left center no-repeat;
}

.header__tell__btn {
  border: 1px solid #00b2b3;
  font-size: 12px;
  color: #00b2b3;
  margin-left: 5px;
  padding: 3px 12px 3px 3px;
  position: relative;
}

.header__tell__btn::after {
  display: block;
  width: 4px;
  height: 7px;
  background: url(../img/arrow_2.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -3px;
}

.p-mainvisual,
.p-mainvisual__content {
  position: relative;
}

@media (max-width: 1199px) {
  .header__tell__btn {
    display: none;
  }
}

.header__tell p {
  font-size: 12px;
}

.p-hidden-city-list {
  display: none;
}

@media (max-width: 767px) {
  .p-hope-item {
    width: 100%;
    display: block;
  }
}

.p-hope-item + .p-hope-item {
  margin-top: 10px;
  display: none;
}

.p-hope-item + .p-hope-item.is-active {
  display: block;
}

.p-hope-item__label {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .p-hope-item__label {
    width: 100%;
    display: block;
  }
  .p-hope-item__select {
    margin-left: 0;
    width: 87%;
  }
  .p-hope-item__select span {
    width: 100%;
    display: block;
  }
  .p-hope-item__select span select {
    width: 100%;
  }
}

.p-increase-form {
  display: none;
  padding: 16px 20px;
}

.p-increase-form.is-active {
  display: block;
}

.p-increase-form.is-valid {
  background: #b5f0ff;
  border-radius: 5px;
}

.p-increase-form + .p-increase-form {
  margin-top: 20px;
}

.p-increase-form__button {
  display: none;
  margin-left: 10px !important;
}

.p-increase-form__button.is-active,
.p-job-career__time {
  display: inline-block;
}

.p-increase-form__button .c-btn {
  width: 125px;
  height: 25px;
  background: #005ead;
  border-radius: 3px;
  color: #fff;
  border: 0;
}

@media (max-width: 767px) {
  .p-increase-form {
    padding: 8px 10px;
  }
  .p-increase-form__button {
    margin-left: 5px !important;
  }
  .p-increase-form__button .c-btn {
    width: 30px;
    height: 30px;
    box-sizing: border-box;
  }
}

.p-increase-form__button__icn {
  display: inline-block;
  vertical-align: baseline;
  padding-bottom: 1px;
}

.p-increase-form .c-input-item + .c-input-item {
  margin-left: 14px;
}

@media (max-width: 767px) {
  .p-increase-form__button__icn {
    vertical-align: text-top;
  }
  .p-increase-form__button__icn img {
    width: 14px;
    height: 14px;
  }
  .p-increase-form .c-input-item + .c-input-item {
    margin-left: 10px;
  }
}

.p-job-career__time {
  width: 278px;
}

@media (max-width: 767px) {
  .p-job-career__time {
    width: 100%;
  }
}

.p-job-career__time + .p-job-career__time {
  width: 245px;
}

.p-mainvisual--bg-primary {
  background: linear-gradient(
    to right,
    #6a78fd 0,
    #6a78fd 50%,
    #a1dce2 51%,
    #a1dce2 100%
  );
}

.p-mainvisual__brand {
  position: absolute;
  top: 64px;
  left: 0;
  z-index: 2;
}

@media (max-width: 979px) {
  .p-mainvisual__brand {
    width: 100%;
    top: 18px;
    left: 0;
    text-align: center;
  }
}

.p-mainvisual__brand__catch {
  line-height: 1;
  font-weight: 600;
  font-size: 26px;
  color: #fff;
}

@media (max-width: 767px) {
  .p-job-career__time + .p-job-career__time {
    width: 100%;
    margin-top: 10px;
  }
  .p-mainvisual__brand__catch {
    font-size: 14px;
  }
}

.p-mainvisual__brand__img {
  margin-top: 16px;
}

.p-mainvisual__appeal {
  position: absolute;
  top: 248px;
  left: 0;
  z-index: 2;
}

@media (max-width: 979px) {
  .p-mainvisual__appeal {
    top: 29%;
    left: 8.5333333333%;
  }
}

.p-mainvisual__appeal__list__item {
  position: relative;
  padding-left: 44px;
  line-height: 1;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

@media (max-width: 979px) {
  .p-mainvisual__appeal__list__item {
    padding-left: 36px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .p-mainvisual__brand__img {
    width: 68%;
    margin: 8px auto 0;
  }
  .p-mainvisual__brand__img img {
    width: 100%;
  }
  .p-mainvisual__appeal__list__item {
    padding-left: 21px;
    font-size: 12px;
  }
}

.p-mainvisual__appeal__list__item + .p-mainvisual__appeal__list__item {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .p-mainvisual__appeal__list__item + .p-mainvisual__appeal__list__item {
    margin-top: 10px;
  }
}

@media (max-width: 320px) {
  .p-mainvisual__appeal {
    left: 4%;
  }
  .p-mainvisual__appeal__list__item {
    line-height: 1.5;
    font-size: 11px;
  }
  .p-mainvisual__appeal__list__item + .p-mainvisual__appeal__list__item {
    margin-top: 7px;
  }
}

.p-mainvisual__appeal__list__item--check-y {
  position: relative;
}

.p-mainvisual__appeal__list__item--check-y:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: url(../img/icn-check.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 979px) {
  .p-mainvisual__appeal__list__item--check-y:before {
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  .p-mainvisual__appeal__list__item--check-y:before {
    margin-top: 4px;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 320px) {
  .p-mainvisual__appeal__list__item--check-y:before {
    margin-top: 2px;
  }
}

.p-mainvisual__appeal__list__item strong {
  color: #fffb86;
}

.p-mainvisual__bg {
  background: url(../img/bg-mainvisual.jpg) center center no-repeat;
  background-size: cover;
}

@media (max-width: 979px) {
  .p-mainvisual__bg {
    background: url(../img/sp_mainvisual.jpg) center center no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .p-mainvisual__bg {
    background: url(../img/sp_mainvisual.jpg) top center no-repeat;
    background-size: cover;
  }
}

.p-mainvisual__bg:after {
  display: block;
  padding-top: 47.3214285714%;
}

@media (max-width: 979px) {
  .p-mainvisual__bg:after {
    padding-top: 76.0563380282%;
  }
}

.strongborder {
  padding-bottom: 2px;
  color: #f86a6a;
  border-bottom: 2px solid #f86a6a;
}

.p-register__header {
  position: relative;
  background: #f86a6a;
  padding: 34px 0;
}

.p-register__header::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 45px 0;
  border-color: #f86a6a transparent transparent;
  position: absolute;
  left: 50%;
  margin-left: -45px;
  margin-top: 26px;
}

.p-slide__pager .is-current:after,
.p-slide__pager__step:after {
  content: "";
  height: 2px;
  left: 0;
  bottom: 0;
}

.p-register__header__headline {
  line-height: 1;
  font-weight: 700;
  font-size: 45px;
  color: #fff;
}

@media (max-width: 767px) {
  .p-register__header {
    padding: 25px 0;
  }
  .p-register__header::after {
    border-width: 14px 25px 0;
    margin-top: 25px;
    margin-left: -24px;
  }
  .p-register__header__headline {
    font-size: 30px;
  }
}

.p-section {
  padding: 94px 0;
}

.p-section--bg-grey {
  background-color: #f7f7f7;
}

.p-slide {
  width: 100%;
}

.p-slide__pager {
  width: 100%;
  line-height: 1;
  font-size: 0;
  margin: 90px 0 40px;
}

@media (max-width: 767px) {
  .p-section {
    padding: 40px 20px;
  }
  .p-slide__pager {
    padding: 0 10px;
    margin: 45px 0 20px;
    box-sizing: border-box;
  }
}

.p-slide__pager .is-current {
  color: #1eb8b1;
}

.p-slide__pager .is-current:after {
  display: block;
  width: 100%;
  background-color: #1eb8b1;
  position: absolute;
}

.p-slide__pager__step {
  width: 25%;
  display: inline-block;
  padding: 0 0 12px;
  margin: 0;
  border: 0;
  position: relative;
  box-sizing: border-box;
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #b4b4b4;
}

.p-slide__pager__step:after {
  display: block;
  width: 100%;
  background-color: #b4b4b4;
  position: absolute;
}

.p-slide__pager__step + .p-slide__pager__step {
  border-left: 20px solid transparent;
}

@media (max-width: 767px) {
  .p-slide__pager__step {
    padding-bottom: 8px;
    font-size: 14px;
  }
  .p-slide__pager__step + .p-slide__pager__step {
    border-left: 6px solid transparent;
  }
}

.p-slide__pager__step__number {
  margin-left: 6px;
  font-size: 30px;
}

@media (max-width: 767px) {
  .p-slide__pager__step__number {
    margin-left: 5px;
    font-size: 21px;
  }
  .u-device--pc {
    display: none !important;
  }
}

.u-device--tb {
  display: none;
}

@media (max-width: 979px) {
  .u-device--tb {
    display: block !important;
  }
}

.u-device--sp {
  display: none !important;
}

@media (max-width: 767px) {
  .u-device--sp {
    display: block !important;
  }
}

.u-device--sp--ib {
  display: none;
}

@media (max-width: 767px) {
  .u-device--sp--ib {
    display: inline-block !important;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

div.contents {
  position: relative;
  width: 1100px;
  padding: 20px 10px 50px;
  margin: -52px auto 0;
  background: #fff;
  border: 0;
  border-bottom-width: 0;
}

.bdrBox,
.first dl {
  border: 1px solid #cdcdcd;
}

div.contents > section {
  margin: 50px 0;
}

div.contents > section > h2 {
  display: block;
}

.bdrBox {
  border-top-width: 0;
  padding: 10px;
}

.vlist ul {
  float: left;
  padding-top: 10px;
}

.vlist ul.left {
  width: 510px;
  margin-right: 15px;
}

.vlist ul.right {
  width: 530px;
}

.vlist ul.left > li > div {
  width: 70px;
}

.vlist ul.right > li > div {
  width: 70px;
  margin-right: 8px;
}

.vlist ul.left > li > p {
  width: 440px;
}

.vlist ul.right > li > p {
  width: 444px;
}

.vlist ul > li > p span {
  background: #fffb95;
}

.attention {
  float: left;
  width: 100%;
  padding: 20px 0;
}

.attention p {
  color: #ff4f1c;
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.attention p br {
  display: none;
}

.attention p.bgRadius {
  color: #fff;
  font-weight: 400;
  line-height: 49px;
  width: 940px;
  height: 49px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1px;
}

.parttime > h2 {
  background: #68c137 !important;
  border-top: 3px solid #3f7322 !important;
}

.parttime .attention p.bgRadius {
  background: #96d872;
}

@media (max-width: 979px) {
  div.contents {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 50px;
    background: #fff;
    border-bottom-width: 0;
  }
}

div.contents > section {
  position: relative;
  margin-top: 50px;
}

div.contents > section > h2 {
  font-size: 20px;
  color: #fff;
  width: 100.5%;
  left: -0.5%;
  background: #06b3b4;
  border-top: 3px solid #046465;
  padding: 0.5em 10px 0.5em 25px;
  position: relative;
}

div.contents > section > h2:after,
div.contents > section > h2:before {
  content: " ";
  position: absolute;
  left: 0;
}

div.contents > section > h2:before {
  width: 22px;
  height: 22px;
  top: 0;
  background: url(../../025/images/title_tri.png) no-repeat;
}

div.contents > section > h2:after {
  bottom: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent #000 transparent transparent;
}

div.contents > section:first-child {
  margin-top: 0;
}

div.contents > section.first > div {
  background: #fff;
  margin-top: 20px;
}

div.contents > section.first > div > div > h2,
div.contents > section.first > div > h2 {
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 6px 0;
}

.clm_L > h2,
.clm_R > h2 {
  background: #6d6d6d;
}

.clm_C > h2 {
  background: #06b3b4;
}

.first dl {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-top-width: 0;
  padding: 15px 10px 15px 25%;
}

.first dd,
.first dt {
  display: table-cell;
  vertical-align: top;
}

.first dt {
  width: 64px;
  text-align: center;
}

.clm_C ul li,
.vlist ul > li {
  width: 100%;
  position: relative;
}

.first dd {
  padding-left: 20px;
}

.first dd h3 {
  color: #f86a6a;
  font-size: 16px;
  line-height: 1.5;
}

.first dd p {
  color: #333;
  font-size: 12px;
  line-height: 1.5;
  padding-top: 0.5em;
}

.clm_C ul {
  border: 1px solid #cdcdcd;
  border-top-width: 1px;
}

.fulltime .vlist ul > li,
.vlist ul > li {
  border-bottom: 2px dotted #68b2d9;
}

.clm_C ul li {
  text-align: center;
}

.clm_C ul li.step1 {
  background: #fbfbfb;
  padding: 15px 10px 20px;
}

.clm_C ul li.step2 {
  background: #efefef;
  padding: 15px 10px 20px;
}

.clm_C ul li.step3 {
  background: #dedede;
  padding: 15px 10px 20px;
}

.clm_C ul li h2 {
  color: #333;
  font-size: 16px;
  text-align: center;
}

.clm_C ul li h2 > span {
  background: #ffad08;
  color: #362000;
  padding: 0.25em 0.5em;
  margin-right: 0.5em;
}

.clm_C ul li h2 > span span {
  font-size: 10px;
  font-size: 1rem;
}

.clm_C ul li h2 > strong {
  display: block;
  margin-top: 0.75em;
}

.clm_C ul li p {
  display: inline-block;
  margin: auto;
  color: #f86a6a;
  font-size: 16px;
  line-height: 1.2;
  padding-top: 15px;
}

.btnBox {
  margin-top: 30px;
  text-align: center;
}

.btnBox a {
  display: inline-block;
  max-width: 360px;
  margin: auto;
}

.btnBox img {
  max-width: 100%;
  height: auto;
}

.vlist ul > li {
  display: table;
  table-layout: fixed;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.vlist ul > li > div,
.vlist ul > li > p {
  display: table-cell;
  vertical-align: top;
  float: left;
}

.vlist ul > li > div {
  width: 40px;
  font-size: 20px;
  text-align: center;
}

.vlist ul > li > p {
  font-size: 14px;
  line-height: 1.75;
  padding-top: 4px;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

@media (max-width: 979px) {
  .vlist ul.left > li > div,
  .vlist ul.right > li > div {
    width: 20px !important;
    margin-right: 8px;
  }
  .vlist ul.left {
    width: 100%;
    margin-right: 15px;
  }
  .vlist ul.right {
    width: 100%;
  }
  .vlist ul.left > li > p,
  .vlist ul.right > li > p {
    width: 90%;
  }
  .attention p.bgRadius {
    width: 95%;
    margin: 0 auto;
    display: block;
    background: #a3dd84;
    font-size: 20px;
    padding: 10px !important;
    line-height: inherit;
    height: auto;
  }
}

.fulltime > h2,
.parttime > h2 {
  font-size: 18px;
  padding: 0.5em 5px 0.5em 18px;
}

.fulltime > h2 {
  background: #1e8ac2;
  color: #fff;
  width: 100.5%;
  position: relative;
  left: -0.5%;
  border-top: 3px solid #046465;
}

.fulltime > h2:after,
.fulltime > h2:before {
  content: " ";
  position: absolute;
  left: 0;
}

.fulltime ul > li > div {
  color: #68b2d9;
}

.fulltime .attention p.bgRadius {
  background: #68b2d9;
}

.fulltime > h2:before,
.parttime > h2:before {
  background: url(../../025/images/title_tri.png) no-repeat;
  top: 0;
}

.fulltime > h2:before {
  width: 22px;
  height: 22px;
}

.fulltime > h2:after {
  bottom: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent #000 transparent transparent;
}

.parttime > h2 {
  color: #fff;
  width: 100.5%;
  position: relative;
  left: -0.5%;
}

.parttime > h2:after,
.parttime > h2:before {
  content: " ";
  position: absolute;
}

.p-feats__item,
.p-s-section__inner {
  padding-right: 20px;
  padding-left: 20px;
}

.parttime .vlist ul > li {
  border-bottom: 2px dotted #a3dd84;
}

.parttime ul > li > div {
  color: #a3dd84;
}

.parttime > h2:before {
  width: 22px;
  height: 22px;
  left: 0;
}

.parttime > h2:after {
  left: 0;
  bottom: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent #000 transparent transparent;
}

.p-s-section__inner h2 {
  width: 100%;
  text-align: center;
  display: block;
}

.p-s-section {
  padding-top: 90px;
}

.p-s-section__inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.p-s-section__inner h2 img {
  display: inline-block;
}

.p-feats__inner {
  margin-right: -20px;
  margin-left: -20px;
}

.p-feats__inner:before {
  display: table;
  content: "";
}

.p-feats__item {
  width: 25%;
  float: left;
  position: relative;
}

.p-feat__caption {
  margin-top: 4px;
}

.p-feat__h {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.p-feat__lead {
  margin-top: 15px;
  font-size: 14px;
}

.p-feats__item + .p-feats__item:before {
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #e5e5e5;
  content: "";
}

@media (max-width: 979px) {
  .p-s-section__inner {
    max-width: auto;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-s-section {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .p-s-section--hpcr .p-feats {
    display: block;
    margin-top: 20px;
  }
  .p-feats__item {
    width: 100%;
    float: none;
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  .p-feats__item + .p-feats__item:before {
    display: none;
  }
  .p-s-section--hpcr .p-feats {
    padding: 0 20px;
  }
}

.hpcr_link a,
.p-feat a {
  color: #07a7f7;
  border: 2px solid #07a7f7;
  vertical-align: middle;
  padding: 15px 0;
  margin-top: 15px;
  font-family: "UD Shin Go Medium";
  font-size: 14px;
  margin-bottom: 20px;
  border-radius: 100px;
  display: block;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.hpcr_link a:active,
.hpcr_link a:link,
.hpcr_link a:visited,
.p-feat a:active,
.p-feat a:link,
.p-feat a:visited {
  color: #07a7f7;
}

.hpcr_link a:hover,
.p-feat a:hover {
  color: #fff;
  border: 2px solid #07a7f7;
  background-color: #07a7f7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .p-feat a {
    padding: 10px 0;
    margin-top: 10px;
  }
}

.add__company__info {
  padding: 12px;
  margin: 12px;
  display: flex;
  justify-content: center;
}
.add__company__info dl {
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0.01rem;
  color: #089c95;
  width: 91%;
}
.add__company__info dl dt {
  font-weight: bold;
}
.add__company__link {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  text-align: center;
  border-top: solid 1px #1eb8b1;
  font-size: 12px;
}
add__company__link a:first-child {
  margin-left: 0;
}
.add__company__link a {
  margin-left: 30px;
  color: #1eb8b1;
}

.add__company__link a:hover {
  text-decoration: underline;
}

@media (min-width: 767px) {
  .add__company__info {
    margin: 12px 24px;
  }

  .add__company__info dl {
    width: 74%;
  }
}
@media (min-width: 1199px) {
  .add__company__info {
    margin: 12px auto;
    white-space: nowrap;
  }

  .add__company__info dl {
    width: 820px;
  }

  .add__company__info dl dt {
    float: left;
    clear: left;
  }
}

.logo_group {
  padding: 5rem 0rem 0rem 0rem;
}
.logo {
  text-align: center;
  margin: 20px;
  border: solid 0.2rem #007782;
  border-radius: 0.8rem;
  box-shadow: 0px 4px 0px rgb(172 220 225 / 60%);
  overflow: hidden;
  padding: 5px;
}
.img_logo_tcb img {
  width: 20%;
}
.img_logo_rize img {
  width: 39%;
}
.img_logo_rize_man img {
  width: 58%;
}
.img_logo_dio img {
  width: 31%;
}
.img_logo_gorilla img,
.img_logo_sbc img {
  width: 22%;
}
.img_logo_dio img,
.img_logo_gorilla img,
.img_logo_sbc img {
  padding: 0px 9px 7px;
}

@media (min-width: 767px) {
  .logo_group {
    padding-top: 8rem 0rem 0rem 0rem;
  }
  .logo {
    margin: 0.5vw 4.5vw 0vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .img_logo_tcb img {
    width: 9vw;
  }
  .img_logo_rize img {
    width: 14vw;
  }
  .img_logo_rize_man img {
    width: 22vw;
  }
  .img_logo_dio img {
    width: 14vw;
  }
  .img_logo_gorilla img,
  .img_logo_sbc img {
    width: 12vw;
  }
  .img_logo_dio img,
  .img_logo_gorilla img,
  .img_logo_sbc img {
    padding: 0px 20px;
  }
}

/* -------------------------------------------------------------------
*
*
*  PC・SP表示切替
*
*
* ---------------------------------------------------------------- */
.sp {
  display: block;
}
.pc {
  display: none;
}

@media screen and (min-width: 980px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
