
/*==========================================================================*/
/*==main visual==*/
/*==========================================================================*/

.mainvisual {
  position: relative;
    overflow: hidden;
}

.mainvisual__image {
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.mainvisual__image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.mainvisual__text {
  position: absolute;
  bottom: 0;
  left: 00%;
  width: 100%;
  /* transform: translate(-50%,0); */
  /* transform: translate(-140%,150px); */
  font-size: 60px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 5;
  /* text-shadow: 0 0 5px rgba(0,0,0,0.8) */
  color: #483519;
  padding-top: 1em;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 80%, transparent);
}
.mainvisual__text .year,
.mainvisual__text .month,
.mainvisual__text .day {
  font-size: 60%;
}
.mainvisual__text .item {
  font-size: 40%;
  text-align: center;
  color: #000;
  background: #fff79a;
  display: block;
  padding: 5px 80px;
  border-radius: 30px;
  margin: 20px auto 0;
    text-shadow: 0 0 0 BLACK;
    max-width: fit-content;
}
.mainvisual__text p {
  margin-bottom: 0.1em;
}
.mainvisual__text > p:last-child {
  margin-bottom: 0.5em;
}
@media (max-width: 1400px) {
  .mainvisual__text {
    font-size: 6vw;
    /* top: 50%;
    left: 0%;
    transform: translate(50%,-50%); */
  }
}
/* 
@media (max-width: 559px) {
  .mainvisual__text {
    font-size: 7vw;
    margin-left: -1em;
  }
} */


#petals-overlay {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
/* 花びらの基本スタイル */
.petal {
    position: absolute;
    /* 花びらの初期サイズをランダムに設定するため、ここで固定値は設定しない */
    /* border-radius: 50%; 円形の花びら */
    opacity: 0; /* 最初は透明にして、フェードインさせる */
    pointer-events: none; /* 花びらをクリックできないようにする */
    animation: fall linear forwards; /* 落下アニメーション */
    animation-play-state: running; /* アニメーションの再生状態を明示的に設定 */
    z-index: 30;
}
/* 落下アニメーションのキーフレーム */
@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg); /* 画面上部外から開始 */
        opacity: 0; /* 最初は透明 */
    }
    10% {
        opacity: 0.8; /* 少し落ちてから完全に表示 */
    }
    100% {
        transform: translateY(110vh) rotate(720deg); /* 画面下部外まで落下し、回転 */
        opacity: 0; /* 最後に透明になる */
    }
}
/*==========================================================================*/
/*==top logo==*/
/*==========================================================================*/
.top__logo {
  text-align: center;
  padding: 50px 0;
  max-width: 300px;
  margin: auto;
}

/*==========================================================================*/
/*==top content==*/
/*==========================================================================*/

.top__content__wrap {
  padding-bottom: 100px;
}

.top__content__inner {
  max-width: 1520px;
  margin: auto;
  display: grid;
  grid-template-columns: 41% auto;
  grid-gap: 0 40px;
  width: 90%;
}

.top__content__title {
  font-family: a-otf-gothic-mb101-pr6n, sans-serif;
  font-size: 26px;
  line-height: 1.5;
  position: relative;
  margin-bottom: 15px;
}

.top__content .top__content__btn {
  margin-top: 30px;
}

.top__content .top__content__btn a {
  background: #EA7BAF;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 30px;
  padding: 5px 40px 5px 20px;
  text-decoration: none;
  max-width: fit-content;
  margin-left: auto;
  position: relative;
}

.top__content .top__content__btn a::after {
  content: "≫";
  position: absolute;
  right: 10px;
  width: 20px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width : 960px) {
  .top__content__image {
    grid-row: 1 / 4;
    padding-top: 20px;
  }

  .top__content01 .top__content__title {
    position: relative;
  }

  .top__content01 .top__content__title::after {
    content: "";
    position: absolute;
    bottom: 0.5em;
    left: 11.5em;
    right: 0;
    border-bottom: 2px solid #D76199;
  }

  .top__content01 .top__content__text {
    padding-left: 20px;
    max-width: 530px;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .top__content02 {
    margin-left: -220px;
  }

  .top__content02 .top__content__inner {
    direction: rtl;
  }

  .top__content02 .top__content__inner>* {
    direction: ltr;
  }

  .top__content02 .top__content__title {
    width: 530px;
    margin-left: auto;
    margin-bottom: 15px;
  }

  .top__content02 .top__content__text {
    max-width: 525px;
    line-height: 1.8;
    font-size: 18px;
    margin-left: auto;
    padding-right: 20px;
  }
}

@media (min-width: 960px) and (max-width: 1639px) {
  .top__content__inner {
    grid-template-columns: 1fr 1fr;
  }

  .top__content02 {
    margin: unset;
  }

  .top__content02 .top__content__title {
    margin: 0 0 15px;
    text-emphasis: left;
  }
}

@media (max-width: 959px) {
  .top__content__inner {
    padding: 0 5%;
    display: block;
  }

  .top__content__title {
    font-size: 20px;
  }

  .top__content__text {
    margin-top: 20px;
  }
}

.box__border {
  border-left: 10px dotted #EA7BAF;
  max-width: fit-content;
  margin: 40px auto 60px;
  padding-left: 10px;
  height: 40px;
}

/*==========================================================================*/
/*==top DHビジョン==*/
/*==========================================================================*/

.top__vision {
  background: #FFDBEC;
  text-align: center;
  padding: 40px 0 100px;
}

.top__vision__title {
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}

.top__vision__title__sub {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #EA7BAF;
  max-width: fit-content;
  margin: -0.8em auto 10px;
}

.top__vision__contents {
  padding: 60px 330px 350px 350px;
  position: relative;
  max-width: fit-content;
  margin: auto;
}

.top__vision__contents__image {
  max-width: 280px;
  margin: auto;
}

div[class*="top__vision__contents__item"] {
  position: absolute;
  width: 230px;
  height: 230px;
  background: #fff;
  border: 2px solid #EA7BAF;
  border-radius: 50%;
  padding: 30px;
  line-height: 1.6;
}

div[class*="top__vision__contents__item"] svg {
  display: block;
  margin: 0 auto 15px;
}

.top__vision__contents__item01 {
  left: 0;
  top: 0;
}

.top__vision__contents__item02 {
  right: 0;
  top: 0;
}

.top__vision__contents__item03 {
  left: 30px;
  top: 360px;
}

.top__vision__contents__item04 {
  right: 30px;
  top: 360px;
}

.top__vision__contents__item05 {
  left: calc(50% - 115px);
  bottom: 0;
}

.top__vision__contents__arrow01 {
  position: absolute;
  rotate: 30deg;
  top: 0;
  top: 155px;
  left: 235px;
  width: 110px;
  text-align: left;
  display: block;
}

.top__vision__contents__arrow01::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 0;
  border-bottom: 5px dotted #EA7BAF;
  top: 10px;
}

.top__vision__contents__arrow02 {
  position: absolute;
  rotate: -30deg;
  top: 0;
  top: 155px;
  right: 235px;
  width: 110px;
  text-align: right;
  display: block;
}

.top__vision__contents__arrow02::after {
  content: "";
  position: absolute;
  right: 15px;
  left: 0;
  border-bottom: 5px dotted #EA7BAF;
  top: 10px;
}

.top__vision__contents__arrow03 {
  position: absolute;
  rotate: -30deg;
  top: 0;
  top: 405px;
  left: 265px;
  width: 110px;
  text-align: left;
  display: block;
}

.top__vision__contents__arrow03::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 0;
  border-bottom: 5px dotted #EA7BAF;
  top: 10px;
}

.top__vision__contents__arrow04 {
  position: absolute;
  rotate: 30deg;
  top: 0;
  top: 405px;
  right: 265px;
  width: 110px;
  text-align: right;
  display: block;

}

.top__vision__contents__arrow04::after {
  content: "";
  position: absolute;
  right: 15px;
  left: 0;
  border-bottom: 5px dotted #EA7BAF;
  top: 10px;
}

.top__vision__contents__arrow05 {
  position: absolute;
  bottom: 235px;
  left: 50%;
  transform: translateX(-50%);
  height: 110px;
}

.top__vision__contents__arrow05 svg {
  vertical-align: bottom;
  margin-top: 95px;
  display: block;
}

.top__vision__contents__arrow05::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 15px;
  border-left: 5px dotted #EA7BAF;
  /* padding-left: 5px; */
  margin-left: -2px;
}

@media (max-width : 1139px) {
  .top__vision__contents {
    padding: 360px 5% 330px;
    max-width: 100%;
  }

  .top__vision__contents__image {
    /* translate: 100px 10px; */
  }

  .top__vision__contents__image__text {
    display: block;
    margin: 10px 0 0 20px;
    font-size: 120%;
  }

  div[class*="top__vision__contents__item"] {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .top__vision__contents__item01 {
    left: 50%;
    translate: -50% 0;
    top: 20px;
  }

  .top__vision__contents__arrow01 {
    rotate: 90deg;
    left: 50%;
    translate: -50% 0;
    top: 280px
  }

  .top__vision__contents__item02 {
    left: 50%;
    translate: 80% 0;
    top: 114px;
    right: unset;
  }

  .top__vision__contents__arrow02 {
    rotate: -45deg;
    left: 50%;
    top: 330px;
    margin-left: 80px;
  }

  .top__vision__contents__item03 {
    left: 50%;
    translate: -180% 0;
    top: 114px;
    right: unset;
  }

  .top__vision__contents__arrow03 {
    rotate: 45deg;
    left: 50%;
    top: 330px;
    margin-left: -160px;
  }

  .top__vision__contents__item04 {
    left: 50%;
    translate: -100% 0;
    top: unset;
    bottom: 0;
    right: unset;
    margin-left: -50px;
  }

  .top__vision__contents__arrow04 {
    rotate: 105deg;
    left: 50%;
    bottom: 235px;
    margin-left: 0;
    right: unset;
    top: unset;
    translate: -152px -9px;
  }

  .top__vision__contents__item05 {
    left: 50%;
    translate: 50% 0;
    top: unset;
    bottom: 0;
    right: unset;
    margin-left: -30px;
  }

  .top__vision__contents__arrow05 {
    rotate: -15deg;
    left: 50%;
    bottom: 200px;
    margin-left: 0;
    top: unset;
    translate: 90px 0;
    transform: unset;
  }
}

@media (max-width : 767px) {
  .top__vision {
    padding-bottom: 0;
  }
  .top__vision__contents {
    padding: 90vw 5% 0;
    margin-top: 20px;
  }
  .top__vision__contents__image img {
    display: block;
  }

  div[class*="top__vision__contents__item"] {
    width: 30vw;
    height: 30vw;
    padding: 4vw;
    font-size: 2.2vw;
    top: 0;
    left: 50%;
    margin: 0;
  }

  .top__vision__contents__arrow {
    display: none;
  }

  .top__vision__contents__item01 {
    transform: unset;
    translate: -50% 0;
  }

  .top__vision__contents__item02 {
    transform: unset;
    translate: -130% 60%;
  }

  .top__vision__contents__item03 {
    transform: unset;
    translate: 30% 60%;
  }

  .top__vision__contents__item04 {
    transform: unset;
    translate: -100% 155%;
  }

  .top__vision__contents__item05 {
    transform: unset;
    translate: 0% 155%;
  }

  div[class*="top__vision__contents__item"] svg {
    max-width: 35%;
    max-height: 35%;
    margin-bottom: 2vw;
  }

  .top__vision__contents__image {
    translate: unset;
  }
  .top__vision__contents .top__vision__contents__item05 {
    line-height:1.3;
  }
}

@media (max-width : 559px) {
  div[class*="top__vision__contents__item"] {
    width: 35vw;
    height: 35vw;
    font-size: 2.7vw;
    letter-spacing: 0;
  }
  .top__vision__title,
  .top__vision__inner__text {
    padding: 0 5%;
  }
}

/*==========================================================================*/
/*==top 職場環境 福利厚生==*/
/*==========================================================================*/
.top__circumstance {
  text-align: center;
  padding: 100px 0 0;
}

.top__circumstance__title {
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}

.top__circumstance__title__sub {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #EA7BAF;
  max-width: fit-content;
  margin: -0.8em auto 10px;
}

.top__circumstance__box__wrap {
  max-width: max(70%,920px);
  display: grid;
  margin: 40px auto -40px;
  align-items: end;
}

.top__circumstance__box {
  border: 10px solid #FF8E8E;
  background: #fff;
  padding: 40px 40px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  position: relative;
}


.top__circumstance__box>.column__double {
  grid-column: 3 / 5;
}

.top__circumstance__box dt {
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.font_b {
  font-size: 300%;
  line-height: 1.2;
}

.font_b02 {
  font-size: 250%;
  line-height: 1.2;
}

.ver_text01 {
  width: calc(1em + 6px);
  display: inline-block;
  line-height: 1.3;
  margin-right: 5px;
  margin-left: 5px;
  background: #FF8E8E;
  color: #fff;
  padding: 3px;
}

.ver_text02 {
  width: calc(1em + 6px);
  display: inline-block;
  line-height: 1.3;
  margin-right: 5px;
  margin-left: 5px;
  background: #FF8E8E;
  color: #fff;
  padding: 3px;
  font-size: 90%;
}

.top__circumstance__box__list {
  text-align: left;
  display: grid;
  list-style: disc;
  padding-left: 1em;
  grid-auto-flow: column dense;
  grid-template-rows: repeat(6, auto);
  grid-gap: 0 15px;
}

.top__circumstance__box__list>li {
  list-style: inherit;
}

.top__circumstance__box__link {
  position: absolute;
  right: 50px;
  bottom: 20px;
}

.top__circumstance__box__link a {
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #181818;
  position: relative;
  padding-right: 20px;
}

.top__circumstance__box__link a::after {
  content: "≫";
  position: absolute;
  right: 0;
}

.top__circumstance__box__img {
  margin: 0 0 0 -60px;
  z-index: 1;
}

@media (min-width: 1240px) and (max-width: 1639px) {
  .top__circumstance__box {
    grid-template-columns: repeat(3, 1fr);
  }

  .top__circumstance__box>.column__double {
    grid-column: 1 / 4;
  }
}

@media (min-width: 560px) and (max-width: 1239px) {
  .top__circumstance__box__wrap {
    max-width: 90%;
    display: block;
  }

  .top__circumstance__box {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 20px 80px;
    margin-bottom: 20px;
  }

  .top__circumstance__box__img {
    max-width: 620px;
    width: 90%;
    margin: auto;
  }

  .top__circumstance__box>.column__double {
    grid-column: 1 / 3;
  }
}

@media (min-width: 560px) and (max-width: 959px) {
  .top__circumstance__box__list {
    display: block;
  }
}

@media (max-width: 559px) {
  .top__circumstance__box__wrap {
    max-width: 90%;
    display: block;
  }

  .top__circumstance__box {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 20px 80px;
    margin-bottom: 20px;
  }

  .top__circumstance__box__img {
    max-width: 620px;
    width: 90%;
    margin: auto;
  }

  .top__circumstance__box>.column__double {
    grid-column: unset;
  }

  .top__circumstance__box__list {
    display: block;
  }
}
@media (max-width: 559px) {
  .top__circumstance__title,
  .top__circumstance__inner__text {
    padding: 0 5%;
  }
}

/*==========================================================================*/
/*==top 診療の流れ==*/
/*==========================================================================*/

.top__flow {
  text-align: center;
  padding: 100px 0;
  background: #FFD9C0;
}

.top__flow__title {
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}

.top__flow__title__sub {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #EA7BAF;
  max-width: fit-content;
  margin: -0.8em auto 10px;
}

.schedule_flow {
  max-width: 732px;
  margin: 40px auto 0;
  width: 100%;
  text-align: left;
}

.schedule_flow dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

.schedule_flow dt {
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  color: #222;
  width: 170px;
  flex-basis: 176px;
}

.schedule_flow_time {
  font-size: 24px;
  line-height: 20px;
  font-weight: bold;
}

.schedule_flow .schedule_flow_content {
  width: 100%;
  flex-basis: 380px;
  padding-bottom: 50px;
}
.schedule_flow .schedule_flow_sat {
  font-size: 16px;
  padding-left: 0;
  padding-right: 28px;
  position: relative;
  color: #222;
  width: 170px;
  flex-basis: 176px;
    text-align: right;
  /* margin-left: auto; */
}

.schedule_flow dl:last-child dd {
  padding-bottom: 0;
}

.schedule_flow dt::before {
  content: "";
  display: block;
  background-color: #c9c9c9;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 7px;
  left: 1px;
  border-radius: 50px;
  z-index: 5;
}

.schedule_flow dt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 10px;
  left: 7px;
  background-color: #c9c9c9;
}
.schedule_flow .schedule_flow_sat::before {
  content: "";
  display: block;
  background-color: #6e90f2;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 7px;
  border-radius: 50px;
  z-index: 5;
  right: 0;
}

.schedule_flow .schedule_flow_sat::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 10px;
  background-color: #6e90f2;
  left: unset;
  right: 6px;
}

.schedule_flow dl:last-child dt::after,
.schedule_flow dl:last-child .schedule_flow_sat::after {
  content: none;
}

/* .schedule_flow dl:last-child dt::after {
  content: none;
} */
.schedule_flow_img img {
  border-radius: 10px;
}
.schedule_flow_time_weekday {
    display: inline-block;
    padding: 0px 10px;
    margin-top: -5px;
    background: #ff8e8e;
    margin-bottom: 5px;
    line-height: 1.5;
    border-radius: 10px;
    color: #fff;
}
.schedule_flow_time_saturday {
    display: inline-block;
    padding: 0px 10px;
    margin-top: -5px;
    background: #6e90f2;
    margin-bottom: 5px;
    line-height: 1.5;
    border-radius: 10px;
    color: #fff;
}
@media (max-width: 960px) and (min-width: 681px) {
  .schedule_flow dt {
    margin-left: 26px;
  }
   .schedule_flow .schedule_flow_sat {
    margin-right: 26px;
  }

}

@media (max-width: 680px) {
  .schedule_flow {
    width: 90%;
  }

  .schedule_flow dl {
    display: block;
    position: relative;
  }

  .schedule_flow dt {
    position: static;
    margin-bottom: 10px;
    width: auto;
  }

  .schedule_flow dt::before {
    top: 5px
  }

  .schedule_flow dt::after {
    height: auto;
    bottom: -15px;
  }
  .schedule_flow_content {
    padding-left: 28px;
    padding-right: 28px;
  }
  .schedule_flow .schedule_flow_sat {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }

}

/*==========================================================================*/
/*==top 求人条件==*/
/*==========================================================================*/

.top__requirements {
  text-align: center;
  padding: 100px 0;
  max-width: 800px;
  margin: auto;
  width: 90%;
}

.top__requirements__title {
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}

.top__requirements__title__sub {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #EA7BAF;
  max-width: fit-content;
  margin: -0.8em auto 10px;
}

.top__requirements__table {
  text-align: left;
  width: 100%;
}

.top__requirements__table th,
.top__requirements__table td {
  padding: 10px 20px;
  border-bottom: 1px solid #000;
}

@media (max-width : 559px) {

  .top__requirements__table th,
  .top__requirements__table td {
    display: block;
    border-bottom: 0;
  }

  .top__requirements__table tr {
    border-bottom: 1px solid #000;
  }

  .top__requirements__table th {
    position: relative;
    text-align: center;
  }

  /* .top__requirements__table th::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    border-bottom: 1px solid #EA7BAF;
  } */
  .top__requirements__table td {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/*==========================================================================*/
/*==top タブの設定==*/
/*==========================================================================*/
.tab_wrap {
  margin: 0 auto;
}

.tab_list {
  display: flex;
  flex-wrap: wrap;
  top: 80px;
  z-index: 5;
  background: #f4f5f7;
  /*  padding-top: 20px;*/
  margin-bottom: 20px;
}

.tab_item {
  /*  border-radius: 5px 5px 0 0;*/
  background-color: #e5e5e5;
  border: solid 1px #f4f5f7;
  border-top: 0;
  padding: 1em 1.2em;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.tab_item {
  flex-grow: 1;
  font-size: 14px;
}

.tab_item:hover {
  opacity: 0.8;
}

.tab_item+.tab_item {
  border-left-color: transparent;
}

.tab_item>span {
  display: inline-block;
  padding: 2em 0 0 0;
  position: relative;
}

.tab_item>span::before,
.tab_item>span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  translate: -50% 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.tab_item>span::before {
  background: #fff;
}

.tab_item>span::after {
  background: #ea7baf;
  scale: 0.5;
  opacity: 0;
}

.tab_item.active>span::after {
  opacity: 1;
}

@media (min-width :960px) {
  .tab_item>span {
    padding: 0 0 0 2em;
  }

  .tab_item>span::before,
  .tab_item>span::after {
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}

.tab_contents {
  /*  background-color: #f5f5f5;*/
  background: #fff;
  /*  margin-top: -400px;*/
}

.tab_panel {
  display: none;
  /* background: #f2f2f2; */
  box-shadow: 0px 0px 5px #EA7BAF;
}

.tab_item.active {
  background-color: rgba(124, 172, 171, 0.61);
  background-color: rgba(42, 55, 55, 0.61);
  /* background: rgb(172,172,172); */
  background: #EA7BAF;
  color: #fff;
  border-color: transparent;
}

.tab_panel.active {
  display: block;
  padding: 5%;
}

@media (max-width: 559px) {
  .tab_list {
    flex-wrap: nowrap;
    overflow: scroll;
    max-width: 90vw;
  }

  .tab_list>li {
    flex-grow: 1;
    white-space: nowrap;
  }

  .tab_list>li:nth-child(n+4) {
    border-top: 1px solid #fff;
  }
}

/*==========================================================================*/
/*==top form==*/
/*==========================================================================*/

.top__form__wrap {
    background: #ea7baf;
    padding: 100px 20px;
}

.top__form {
  text-align: center;
    padding: 100px 60px 60px;
    max-width: 920px;
  margin: auto;
  width: 100%;
  background: #fff;
}

.top__form__title {
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}

.top__form__title__sub {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #EA7BAF;
  max-width: fit-content;
  margin: -0.8em auto 10px;
}

@media (max-width: 559px){
  .top__form {
    padding: 50px 0;
  }
}

.top__text {
  font-size: 40px;
  color: #000;
  font-weight: bold;
  padding: 100px 0;
  text-align: center;
}
.top__text01 {
  color: #EA7BAF;
}
.top__text .m {
  font-size: 60%;
}
.top__text .blue {
  color: #00f;
}
.top__text .red {
  color: #f00;
}
@media (max-width: 559px) {
  .top__text {
    font-size: 24px;
    padding: 50px 0;
  }
}
/*==========================================================================*/
/*==top タイトル設定==*/
/*==========================================================================*/
@media (max-width: 559px) {

  .top__vision__title,
  .top__circumstance__title,
  .top__flow__title,
  .top__requirements__title,
  .top__form__title {
    font-size: 28px;
  }

  .top__vision__title__sub,
  .top__circumstance__title__sub,
  .top__flow__title__sub,
  .top__requirements__title__sub,
  .top__form__title__sub {
    font-size: 18px;
  }
}