/* ----- common ----- */
/* title */
.sub_title {
  width: 100%;
  max-width: 1280px;
  height: 240px;
  margin: 20px auto 40px;
  display: flex;
  align-items: center;
  background: #ffffff url(../images/common/sub_title_bg.png) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  text-shadow:
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 12px #fff,
    0 0 12px #fff;
}
.sub_title::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/lower/insurance.png) no-repeat center center;
  background-size: cover;
  mix-blend-mode: overlay;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.sub_title h2 {
  margin: 0 auto 0 auto;
  font-size: 42px;
  font-family: "Yusei Magic", sans-serif;
  text-align: center;
  line-height: 1.4;
  color: #493821;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .sub_title h2 {
    font-size: calc(100vw / 24);
  }
  .sub_title {
    height: 24vw;
    width: 90%;
  }
}
/* スマホ用のスタイル */
@media screen and (max-width: 768px) {
  .sub_title {
    height: 32vw;
    display: flex;
    align-items: center;
    position: relative;
  }
  .sub_title h2 {
    padding: 2vw 3vw;
    font-size: calc(100vw / 18);
  }
}

/*  introduction   */
.introduction {
  padding: 60px 0 80px;
  margin: 0 auto;
  position: relative;
  background: #ffffff url(../images/lower/sub_bg.png) no-repeat top center;
  background-size: contain;
}
.introduction .intro_txt {
  text-align: center;
}
@media (max-width: 1081px) {
  .introduction {
    padding: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .introduction {
    padding: 6vw 0 8vw;
    margin: 0 auto 6vw;
  }
  .introduction .intro_txt {
    padding: 10px 0 0 0;
  }
}

/* ----- staff.php #staff ----- */
#staff .sub_title {
  background: #ffffff url(../images/lower/staff_ttl.jpg) no-repeat center center;
  background-size: cover;
}

/* staff */
#staff .staff {
  margin: 20px auto 60px;
}
#staff .staff_box {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto 120px;
  gap: 80px 40px;
}
#staff .staff_items {
  width: 270px;
  display: flex;
  flex-direction: column;
}
#staff .staff_items:last-child {
  border: none;
  display: flex;
  background: none;
}

#staff .staff_items h4 {
  background: #ff8800;
  padding: 5px 10px;
  text-align: center;
  color: #ffffff;
}
#staff .staff_items .staff_img {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
#staff .staff_items .staff_item {
  display: flex;
  flex-wrap: wrap;
  font-size: 90%;
}
#staff .staff_items .staff_item:last-child {
  height: 100%;
}
#staff .staff_items .staff_item dt {
  width: 100%;
  padding: 5px 10px;
  background-image: linear-gradient(-90deg, #ffdc00 15%, #ff8800 15%);
  color: #fffcff;
}
#staff .staff_items .staff_item dd {
  width: 100%;
  padding: 5px 10px;
  background: #fffbe6;
}

@media screen and (max-width: 1081px) {
  #staff .staff_box {
    margin: 60px auto 120px;
    gap: 8vw 4vw;
  }
  #staff .staff_items {
    width: calc((100% / 3) - 4vw);
  }
}
@media screen and (max-width: 768px) {
  #staff .staff_items h4 {
    padding: 2vw 0;
  }
  #staff .staff_items .staff_item dt {
    padding: 2%;
  }
  #staff .staff_items .staff_item dd {
    padding: 2%;
    background: #ffffff;
  }
  #staff .staff_box {
    gap: 3vw;
  }
  #staff .staff_items {
    width: calc((100% / 2) - 3vw);
  }
}
@media screen and (max-width: 391px) {
}

/* ----- insurance.php #insurance ----- */
#insurance .sub_title {
  background: #ffffff url(../images/lower/insurance_ttl.jpg) no-repeat center center;
  background-size: cover;
}
/* insurance_cate */
.insurance_cate {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
  gap: 70px;
}

.insurance_cate .cate_box {
  width: calc(50% - 40px);
  max-width: 860px;
  margin-bottom: 40px;
}
.ribbon,
.heading_songai,
.heading_seimei {
  display: inline-block;
  background: #ff8800;
  /* color: #fff; */
  font-size: 24px;
  line-height: 64px;
  height: 60px;
  text-align: center;
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 7px;
  position: relative;
}
.ribbon .ribbon_box {
  display: block;
  margin: 0;
  padding: 0 30px;
  border-top: dashed 2px rgba(255, 255, 255, 0.5);
  border-bottom: dashed 2px rgba(255, 255, 255, 0.5);
  line-height: 42px;
}
.ribbon:before,
.ribbon:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon:before {
  /*左の山形*/
  top: 0;
  left: 0;
  border-width: 30px 0px 30px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.ribbon:after {
  /*右の山形*/
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.heading_seimei {
  background: #ffdc00;
  color: #493821;
}

.insurance_cate ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  gap: 20px;
}

.insurance_cate ul li {
  width: calc((100% / 4) - 20px);
  max-width: 160px;
  text-align: center;
}
.insurance_cate ul li a {
  display: block;
}

.insurance_cate ul li .poyoyon2:hover {
  animation: poyoyon2 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes poyoyon2 {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1081px) {
  .insurance_cate ul li {
    width: calc((100% / 2) - 30px);
    max-width: 120px;
    text-align: center;
    font-size: 1.2em;
  }
  .insurance_cate ul {
    gap: 40px;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .insurance_cate .cate_box {
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 430px) {
}

/* insurance_conts */
#insurance .insurance_conts {
  padding: 60px 0 80px;
  background: #fff7e9;
}

#insurance .insurance_conts .insurance_conts_box {
  width: 90%;
  margin: 10px 0 240px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#insurance .insurance_conts .insurance_conts_box:nth-of-type(even) {
  margin: 10px 5% 120px auto;
}

#insurance .insurance_conts .insurance_conts_box::after {
  content: "";
  display: block;
  width: 0;
  height: 320px;
  background: #ff880055;
  mix-blend-mode: multiply;
  position: absolute;
  top: -40px;
  left: -25vw;
  z-index: -1;
  transition: all 0.8s ease;
}
#insurance .insurance_conts .insurance_conts_box:nth-of-type(even)::after {
  right: -25vw;
  left: auto;
}
#insurance .insurance_conts .insurance_conts_box.is-active::before,
#insurance .insurance_conts .insurance_conts_box.is-active::after {
  width: 90vw;
  transition: all 0.8s ease;
}
#insurance .insurance_conts .insurance_conts_box .insurance_conts_txt {
  width: calc(50% - 20px);
  order: 2;
}
#insurance .insurance_conts .insurance_conts_box h5 {
  font-size: 160%;
  font-weight: bold;
  text-align: center;
  padding: 15px 0 15px 0;
  margin: 0 auto 20px;
  background: #ffffff;
  /* border-top: 8px double #493821;
  border-bottom: 8px double #493821; */
  position: relative;
}
#insurance .insurance_conts .insurance_conts_box h5 em {
  background: #ff8800;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 70%;
  display: block;
}
#insurance .insurance_conts .insurance_conts_box .insurance_conts_txt .insurance_conts_copy {
  line-height: 1.6;
  padding: 20px;
  margin-bottom: 30px;
  background: #ffffff99;
  position: relative;
}
#insurance .insurance_conts .insurance_conts_box .insurance_conts_img {
  width: calc(50% - 20px);
  order: 1;
  border-radius: 20px;
  overflow: hidden;
}
#insurance .insurance_conts .insurance_conts_box .insurance_conts_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 色 */
.heading_songai {
  background: #ff8800;
}
.heading_seimei {
  background: #ffdc00;
  color: #493821;
}

#insurance #songai.insurance_conts .insurance_conts_box::after {
  background: #ff880033;
}
#insurance #seimei.insurance_conts .insurance_conts_box::after {
  background: #ffdc0033;
}

/* #insurance #songai.insurance_conts .insurance_conts_box h5 {
  border-top: 8px double #ff6600;
  border-bottom: 8px double #ff6600;
} */
#insurance #songai.insurance_conts .insurance_conts_box h5 em {
  background: #ff6600;
}

/* #insurance #seimei.insurance_conts .insurance_conts_box h5 {
  border-top: 8px double #ffdc00;
  border-bottom: 8px double #ffdc00;
} */
#insurance #seimei.insurance_conts .insurance_conts_box h5 em {
  background: #ffdc00;
  color: #493821;
}
#seimei .main_btn a:hover {
  color: #493821;
}
#seimei .main_btn a:after {
  background: #ffdc00;
}
#songai .cntns_hl2 span::after {
  background: url(../images/common/top-h2_sun.png) no-repeat center;
  background-size: 100%;
  right: -1em;
}
#seimei .cntns_hl2 span::before {
  background: url(../images/common/top-h2_kira.png) no-repeat center;
  background-size: 100%;
  right: -1em;
}

/* 反転 */
#insurance .insurance_conts .insurance_conts_box:nth-of-type(even) .insurance_conts_txt {
  order: 1;
}
#insurance .insurance_conts .insurance_conts_box:nth-of-type(even) .insurance_conts_img {
  order: 2;
}

@media (max-width: 1081px) {
  #insurance .insurance_conts {
    padding: 8vw 0 6vw;
  }
  #insurance .insurance_conts .insurance_conts_box {
    width: 100%;
    margin: 10px 0 120px 0;
  }
  #insurance .insurance_conts .insurance_conts_box .insurance_conts_txt .insurance_conts_copy {
    margin-bottom: 40px;
    padding: 15px;
  }
  #insurance .insurance_conts .insurance_conts_box .insurance_conts_img {
    height: auto;
  }
}

@media (max-width: 768px) {
  #insurance .insurance_conts {
    padding: 12vw 0 6vw;
  }
  #insurance .insurance_conts .insurance_conts_box .insurance_conts_txt {
    width: 100%;
    order: 2 !important;
  }

  #insurance .insurance_conts .insurance_conts_box .insurance_conts_img {
    width: 100%;
    order: 1 !important;
  }
}

/* ----- recruit.php #recruit ----- */
#recruit .sub_title {
  background: #ffffff url(../images/lower/recruit_ttl.jpg) no-repeat center center;
  background-size: cover;
}

#recruit .sub_title::after {
  z-index: 5;
}

/* wanted */
#recruit .wanted {
  padding: 120px 0 60px;
}

#recruit .wanted .cntns_hl2 span::after {
  background: url(../images/common/top-h2_sun.png) no-repeat center;
  background-size: 100%;
}
#recruit .wanted .job_info .job_info_list {
  width: 80%;
  max-width: 780px;
  margin: 0 auto;
}
#recruit .wanted .job_info .job_info_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid #ffffff;
  background: #ff8800;
}
#recruit .wanted .job_info .job_info_item dt {
  padding: 10px;
  font-weight: bold;
  font-size: 110%;
  width: 20%;
  color: #ffffff;
}
#recruit .wanted .job_info .job_info_item dd {
  padding: 10px;
  width: 80%;
  background: #fff8ed;
  line-height: 1.4;
}
#recruit .wanted .job_info .job_info_item:last-child {
  border-bottom-width: 2px;
}
#recruit .wanted .job_info small {
  display: block;
}
#recruit .wanted .job_info em {
  font-weight: bold;
}
#recruit .wanted .main_btn {
  margin: 30px auto;
}

@media (max-width: 1081px) {
  #recruit .wanted {
    padding: 8vw 0 6vw;
  }
  #recruit .wanted .job_info .job_info_item dt {
    padding: 1vw 2vw 1vw;
  }
  #recruit .wanted .job_info .job_info_item dd {
    padding: 1vw 2vw 1vw;
  }
}

@media (max-width: 768px) {
  #recruit .wanted {
    padding: 12vw 0 14vw;
  }
  #recruit .wanted .introduction {
    margin-bottom: 8vw;
  }
  #recruit .wanted .introduction .intro_txt {
    text-align: left;
  }
  #recruit .wanted .job_info .job_info_list {
    width: 100%;
  }
  #recruit .wanted .job_info .job_info_item dt {
    width: 100%;
    font-size: 100%;
    text-align: center;
  }
  #recruit .wanted .job_info .job_info_item dd {
    width: 100%;
  }
}

/* ----- about.php #about ----- */
#about .sub_title {
  background: #ffffff url(../images/lower/about_ttl.jpg) no-repeat center center;
  background-size: cover;
}
/* greeting */
#about .greeting {
  margin: 60px 0;
  position: relative;
}
#about .greeting_box {
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  border-bottom: #ff8800 solid 6px;
}
#about .greeting_box .greeting_cotns {
  width: 70%;
  background: url(../images/lower/content_r_bg.png) no-repeat bottom right;
  background-size: 20%;
  order: 2;
}
#about .greeting_box .greeting_cotns .greeting_cotns_txt {
  line-height: 2;
  position: relative;
}
#about .greeting_box .greeting_cotns .greeting_cotns_txt em {
  font-size: 1.2em;
}
#about .greeting_box .greeting_cotns_img {
  width: calc(30% - 50px);
  line-height: 0;
  order: 1;
}
#about .greeting_box .greeting_cotns_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
@media (max-width: 1081px) {
  #about .greeting {
    margin: 3vw 0;
  }
  #about .greeting_box {
    padding-bottom: 6vw;
    margin-bottom: 6vw;
    gap: 5vw;
  }
}

@media (max-width: 768px) {
  #about .greeting_box .greeting_cotns {
    width: 100%;
    margin: 20px auto 10px auto;
    position: relative;
    order: unset;
  }
  #about .greeting_box .greeting_cotns .greeting_cotns_txt {
    width: 92%;
    margin: auto;
    line-height: 2;
  }
  #about .greeting_box .greeting_cotns_img {
    width: 90%;
    margin: 20px auto 10px auto;
    height: 40vh;
    top: 0;
    overflow: hidden;
    order: unset;
  }
}

#about .looking {
  width: 100%;
  margin: 80px auto 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  position: relative;
  gap: 40px;
}
#about .looking .looking_box {
  width: 60%;
  /* order: 2; */
}
#about .looking .looking_box .looking_txt dt {
  font-size: 160%;
  font-weight: bold;
  padding: 0 0 10px 0;
  margin-bottom: 20px;
  border-bottom: 4px dotted #ff8800;
  position: relative;
}
#about .looking .looking_box .looking_txt dd {
  line-height: 1.6;
}
#about .looking .looking_box .looking_txt dd em {
  font-size: 1.2em;
  line-height: 1.6;
  display: block;
  width: fit-content;
}
#about .looking .looking_box .looking_txt dd span {
  line-height: 1.6;
  display: block;
  width: fit-content;
  padding-left: 1em;
  text-indent: -1em;
}
#about .looking .looking_img {
  width: calc(40% - 40px);
  margin-top: 40px;
  line-height: 0;
  /*  order: 1; */
}

@media (max-width: 1081px) {
  #about .looking {
    margin: 4vw auto 5vw auto;
    padding: 0 0 6vw;
  }
}

@media (max-width: 768px) {
  #about .looking .looking_box {
    width: 100%;
    margin: 0 auto 6vw auto;
  }
  #about .looking .looking_box .looking_txt,
  #about .looking .looking_img {
    width: 92%;
    margin: auto;
    order: 2;
  }
  #about .looking .looking_box .looking_txt dd span {
    letter-spacing: -0.03em;
  }
  #about .looking .looking_img {
    margin-bottom: 20px;
  }
  #about .looking .looking_box .looking_txt dt {
    font-size: 140%;
  }
}

/* info */
#about .info {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: #ff880011;
}
#about .info .conditions_copy {
  margin: 60px auto;
  background: url(../images/index/top_strength_bg.png) no-repeat;
  background-size: 100%;
}
#about .info .conditions_copy h4 {
  text-align: center;
  color: #ff8800;
  font-size: 1.4em;
  margin-bottom: 20px;
}
#about .info .conditions_copy p {
  text-align: center;
}
#about .info .conditions_list {
  width: 80%;
  margin: auto;
  /* max-width: 860px; */
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 60px;
  border-radius: 20px;
  background: #ffffff99;
}
#about .info .conditions_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#about .info .conditions_item dt {
  width: 22%;
  max-width: 160px;
  padding: 15px 10px;
  line-height: 1.6;
  position: relative;
  border-bottom: 4px solid #ff8800;
}
#about .info .conditions_item .list-beasic {
  padding-left: 10px;
}
#about .info .conditions_item .list-beasic::before {
  content: "▼";
  display: inline-block;
  margin-right: 5px;
  font-size: 60%;
  transform: rotate(-90deg);
}
#about .info .conditions_item dd {
  padding: 15px 10px;
  width: calc(100% - 160px);
  line-height: 1.6;
  border-bottom: 4px solid #ffdc00;
}

.conditions_map {
  width: 60%;
  max-width: 800px;
  height: 30vw;
  max-height: 400px;
  margin: 60px auto 0;
}
.conditions_map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1081px) {
  .conditions_map {
    height: 40vw;
  }
  #about .info .conditions_list {
    width: 100%;
  }
  #about .info .conditions_item {
    font-size: 100%;
  }
  #about .info .conditions_item dt {
    width: 20%;
    padding: 2vw 1vw 2vw 4vw;
  }
  #about .info .conditions_item dd {
    width: 80%;
    padding: 2vw 1vw;
  }
}
@media screen and (max-width: 768px) {
  #about .info {
    padding: 8vw 0;
  }
  #about .info .conditions_list {
    width: 100%;
    margin: 4vw auto;
    padding: 4vw;
  }
  #about .info .conditions_item .list-beasic {
    padding-left: 4vw;
  }
  #about .info .conditions_item .list-beasic::before {
    width: 2vw;
    height: 2vw;
    margin-left: -3vw;
  }
  #about .info .conditions_item dt {
    width: 30%;
    padding: 2vw 0vw 2vw 3vw;
  }
  #about .info .conditions_item dd {
    width: 70%;
    padding: 2vw 1vw;
  }
  #about .info .conditions_item dd a {
    pointer-events: none;
    display: inline-block;
  }
  .conditions_map {
    width: 100%;
    height: 50vw;
    margin: 5vw auto 6vw;
  }
}

/* ----- fdsengen.php #fdsengen ----- */
#fdsengen .sub_title {
  background: #ffffff url(../images/lower/fd_ttl.jpg) no-repeat center center;
  background-size: cover;
}
/* fdsengen */
/* -----------------------
  タブリスト
----------------------- */
.tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #ccc;
}

.tabs li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #ff880088;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.tabs li a:hover {
  color: #ff6600;
  border-bottom-color: #ff880088;
}

.tabs li a.is-active {
  color: #ffffff;
  font-weight: 700;
  background: #ff6600;
}

/* -----------------------
  コンテンツ
----------------------- */
/* タブボックス専用クラス */
.tab-box {
  display: none; /* hidden でも可 */
  padding: 1rem;
  background-color: #fafafa;
  transition: all 0.5s;
}

.tab-box.active {
  display: block;
  transition: all 0.5s;
}

/* コンテンツボックス内専用クラス */
.tab_conts {
  margin: 0 auto 120px;
  padding: 60px;
  position: relative;
  width: 100%;
  height: 60vh;
  overflow-y: scroll;
  border: 1px solid #ccc;
  border-top: none;
  background-color: #fafafa;
}
.tab_conts .cntns_hl3 {
  min-width: 8em;
  line-height: 1;
}
.tab_conts .cntns_hl3 small {
  font-size: 50%;
  color: #777777;
}

.company_inner {
  margin: 40px auto;
}
.fd_list01 {
  font-weight: bold;
  margin-top: 20px;
}

.fd_table01 {
  width: 90%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
}

.fd_table01 th:first-child {
  border-radius: 5px 0 0 0;
}

.fd_table01 th:last-child {
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

.fd_table01 th {
  text-align: center;
  color: white;
  background: #ef8022;
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
  /*        width: 25%;*/
  padding: 10px 0;
}

.fd_table01 td {
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top: none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  /*        width: 25%;*/
  padding: 10px 0;
}

.fd_table01 td:last-child {
  border-right: 1px solid #a8b7c5;
}

.fd_table01 tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.fd_table01 tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.texlef01 {
  text-align: left !important;
  width: 30% !important;
}

.texttable02 {
  width: 20% !important;
}

.days_im01 {
  text-align: right;
  font-weight: bold;
  margin-right: 60px;
  margin-top: 5px;
}

.width5 {
  width: 5% !important;
}

@media screen and (max-width: 768px) {
  .tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: none;
    gap: 10px;
    padding-bottom: 10px;
    position: relative;
  }
  .tabs li a:before {
    content: "▶";
    display: inline-block;
    font-size: 80%;
    margin-right: 5px;
  }
  .tabs li a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #ff880088;
    border-radius: 20px;
    transition:
      border-color 0.3s,
      color 0.3s;
  }
  /* コンテンツボックス内専用クラス */
  .tab_conts {
    margin: 0 auto 120px;
    padding: 6vw 4vw;
    border-top: 1px solid #ccc;
  }
  .fd_list01 {
    font-weight: bold;
    margin-top: 10px;
  }

  .fd_table01 {
    width: 98%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 auto;
  }

  .fd_table01 th:first-child {
    border-radius: 5px 0 0 0;
  }

  .fd_table01 th:last-child {
    border-radius: 0 5px 0 0;
    border-right: 1px solid #3c6690;
  }

  .fd_table01 th {
    text-align: center;
    color: white;
    background: #ef8022;
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
    /*        width: 25%;*/
    padding: 10px 0;
  }

  .fd_table01 td {
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top: none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    width: 15%;
    padding: 10px 0;
  }

  .fd_table01 td:last-child {
    border-right: 1px solid #a8b7c5;
  }

  .fd_table01 tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
  }

  .fd_table01 tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
  }

  .texlef01 {
    /*        text-align: left !important;*/
    width: 30% !important;
  }

  .texttable02 {
    width: 20% !important;
  }

  .days_im01 {
    text-align: right;
    font-weight: bold;
    margin-right: 10px;
    margin-top: 5px;
  }
}
