@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/*--------------------
/ common              
/--------------------*/
html,
body {
  overflow-x: hidden;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #0b0f1f;
  font-feature-settings: "palt";
  animation: fadein 1.5s forwards;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

main {
  padding-top: 4.25rem;
}

strong {
  font-weight: normal;
}

small {
  font-size: 1rem;
}

img {
  width: 100%;
  height: auto;
}

hr {
  color: #cecece;
}

.header {
  padding: 1rem 0.5rem;
  height: 4.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .header {
    padding: 1rem 1.5rem;
  }
}

.header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.header__logo span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: gray;
}

.header__nav--pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__nav--pc {
    display: block;
  }
}
.header__nav--pc ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav--pc ul li {
  text-align: center;
}
.header__nav--pc ul li a {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  transition: 0.3s ease-out;
  font-size: 0.6875rem;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .header__nav--pc ul li a {
    padding: 1rem 1rem;
    font-size: 0.875rem;
  }
}
.header__nav--pc ul li a:hover {
  opacity: 0.7;
  transform: 0.3s ease-out;
}
.header__nav--pc ul li.entry {
  color: #fff !important;
  font-weight: 700;
  margin-left: 1rem;
  background-color: rgb(8, 96, 127);
  transition: 0.3s ease-out;
}
.header__nav--pc ul li.entry :hover {
  opacity: 1;
  background-color: #ff9d00;
}
.header__nav--sp {
  display: block;
  position: relative;
}
@media screen and (min-width: 992px) {
  .header__nav--sp {
    display: none;
  }
}

/* sp menu */
.spmenu {
  position: absolute;
  top: -40px;
  right: -15px;
  z-index: 999;
}
.spmenu nav {
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgba(5, 49, 75, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(250px);
  transition: all 0.5s;
}
.spmenu nav.open {
  transform: translateZ(0);
}
.spmenu nav li {
  text-align: center;
  padding: 10px 0;
}
.spmenu nav li span {
  color: #fff !important;
}

.spmenu nav ul li a {
  font-size: 1.125rem;
  font-weight: 600;
}

.sp-button-wrap {
  margin-top: 16px;
  margin-right: 16px;
  z-index: 10;
}

.js-sp-button {
  position: relative;
  background: rgb(8, 96, 127);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-left: auto;
  z-index: 100 !important;
}

/*ボタン内側*/
.js-sp-button span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.js-sp-button span:nth-of-type(1) {
  top: 15px;
}

.js-sp-button span:nth-of-type(2) {
  top: 23px;
}

.js-sp-button span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.js-sp-button.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.js-sp-button.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.js-sp-button.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  padding: 2rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__wrap a {
  font-size: 0.875rem;
}

.footer-logo {
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    padding-bottom: 0;
  }
}

.footer__link p::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='white' stroke-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M21 3h-6m6 0l-9 9m9-9v6'/%3E%3Cpath d='M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/*backfround-color*/
.bg-indigo {
  background-color: rgb(8, 96, 127);
  color: #fff;
}

.bg-black {
  background-color: #0b0f1f;
  color: #fff;
}

.bg-blue {
  background-color: rgb(0, 64, 151);
  color: #fff;
}

.bg-darkWhite {
  background-color: #f0f0f0;
}

/* section */
.section__wrapper, .section__wrapper--message {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section__wrapper, .section__wrapper--message {
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .section__wrapper, .section__wrapper--message {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.section__wrapper--message {
  padding-bottom: 12rem;
}
.section__wrapper.page, .page.section__wrapper--message {
  padding: 2rem 0;
}

.contents__bg--white {
  padding: 1.5rem 1rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .contents__bg--white {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }
}

/*
.contents__bg--noColor {
  @extend %contents__bg;
}
*/
.contents__bg--white {
  background-color: #fff;
  color: #0b0f1f;
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contents__bg--white {
    width: 100%;
  }
}

.hedding__h2, .hedding__h2--reason {
  text-align: center;
  padding-bottom: 2rem;
  font-feature-settings: initial;
  letter-spacing: 0;
}
@media screen and (min-width: 576px) {
  .hedding__h2, .hedding__h2--reason {
    letter-spacing: 0.3em;
  }
}
@media screen and (min-width: 768px) {
  .hedding__h2, .hedding__h2--reason {
    padding-bottom: 4rem;
  }
}
.hedding__h2 strong, .hedding__h2--reason strong {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 576px) {
  .hedding__h2 strong, .hedding__h2--reason strong {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .hedding__h2 strong, .hedding__h2--reason strong {
    font-size: 1.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .hedding__h2 strong, .hedding__h2--reason strong {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
.hedding__h2 small, .hedding__h2--reason small {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgb(8, 96, 127);
}
.hedding__h2--reason {
  line-height: 1.7;
}
.hedding__h2--reason strong span {
  color: rgb(8, 96, 127);
  font-size: 1.9375rem;
  padding: 0 0.25rem;
}
@media screen and (min-width: 768px) {
  .hedding__h2--reason strong span {
    line-height: 1;
    font-size: 3.3125rem;
  }
}
@media screen and (min-width: 1200px) {
  .hedding__h2--reason strong span {
    line-height: inherit;
  }
}

.hedding__underline {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(8, 96, 127);
  border-bottom: 4px solid rgb(8, 96, 127);
  line-height: 0.9;
  padding-bottom: 6px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .hedding__underline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 12px;
    padding-bottom: 10px;
  }
}
.hedding__underline small {
  padding-left: 0.5rem;
}
.hedding__underline.job-01::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url("/kousen/assets/img/job_icon_01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-left: 12px;
  margin-top: -0.6875rem;
  margin-bottom: -3px;
}
.hedding__underline.job-02::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-image: url("/kousen/assets/img/job_icon_02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-left: 12px;
  margin-top: -0.6875rem;
  margin-bottom: -3px;
}
.hedding__underline.job-03::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  background-image: url("/kousen/assets/img/job_icon_03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-left: 12px;
  margin-top: -1.6875rem;
  margin-bottom: -3px;
}
.hedding__underline.job-04::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url("/kousen/assets/img/job_icon_04.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 12px;
  margin-top: -0.6875rem;
}

/* button */
.button--arrow {
  font-feature-settings: "palt";
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}
.button--arrow a {
  display: inline-block;
  background: rgb(8, 96, 127);
  color: #fff;
  padding: 1em 3em;
  padding-left: 2rem;
  transition: all 0.2s ease-in;
  position: relative;
  border-radius: 10px;
}
.button--arrow a::after {
  content: "";
  position: absolute;
  transition: all 0.2s ease-in;
}
.button--arrow a::before {
  content: "";
  position: absolute;
  transition: all 0.2s ease-in;
}
.button--arrow a::before {
  width: 10px;
  height: 10px;
  right: 20px;
  top: 50%;
  transform: translateY(-40%) rotate(45deg);
  border-top: 1px solid #fff;
}
.button--arrow a::after {
  width: 24px;
  height: 1px;
  right: 18px;
  top: 53%;
  transform: translateY(-40%);
  background: #fff;
}
.button--arrow a:hover {
  background: rgb(0, 64, 151);
}
.button--arrow a:hover::before {
  right: 12px;
}
.button--arrow a:hover::after {
  right: 10px;
  width: 32px;
}

.button--entry {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}
.button--entry a {
  display: inline-block;
  background: rgb(8, 96, 127);
  color: #fff;
  padding: 1em 2em;
  padding-right: 5rem;
  transition: all 0.2s ease-in;
  position: relative;
  border-radius: 10px;
}
.button--entry a::after {
  content: "";
  position: absolute;
  bottom: 31px;
  right: 50px;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='white' stroke-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M21 3h-6m6 0l-9 9m9-9v6'/%3E%3Cpath d='M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.button--entry a:hover {
  background: rgb(0, 64, 151);
}

/* hero */
.slide {
  position: relative;
  width: 100%;
  height: 450px;
  min-height: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .slide {
    height: 90vh;
    min-height: 400px;
  }
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 40s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(../img/hero/hero_img01.webp?20241101);
  animation-delay: -3s;
}

.slide-image:nth-child(2) {
  background-image: url(../img/hero/hero_img02.webp?20241101);
  animation-delay: 5s;
}

.slide-image:nth-child(3) {
  background-image: url(../img/hero/hero_img03.webp?20241101);
  animation-delay: 13s;
}

.slide-image:nth-child(4) {
  background-image: url(../img/hero/hero_img04.webp?20241101);
  animation-delay: 21s;
}

.slide-image:nth-child(5) {
  background-image: url(../img/hero/hero_img05.webp?20241101);
  animation-delay: 29s;
}

/*
.slide-image:nth-child(6) {
	background-image: url(../img/hero/hero_img02.webp);
	animation-delay: 37s;
}
	*/
@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25.5% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.top_text.pc img {
  min-width: 720px;
  max-width: 900px;
}

/* オープニングロゴ */
.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 40%;
}

/* hero */
.top__hero {
  position: relative;
  height: 450px;
}
@media screen and (min-width: 768px) {
  .top__hero {
    height: 90vh;
  }
}
.top__hero .hero--text {
  position: absolute;
  bottom: 60px;
  left: 5px;
  width: 98%;
  padding-right: 5px;
  max-width: 23.75rem;
  transition: 0.3s ease-out;
  filter: drop-shadow(0 1px 0.1875rem #7f7f7f);
}
@media screen and (min-width: 768px) {
  .top__hero .hero--text {
    bottom: 90px;
    left: 20px;
    padding-right: 0;
    width: 43.75rem;
    max-width: 43.75rem;
    transition: 0.3s ease-out;
  }
}
@media screen and (min-width: 1200px) {
  .top__hero .hero--text {
    bottom: 160px;
    left: 120px;
    width: 63.75rem;
    max-width: 63.75rem;
    transition: 0.3s ease-out;
  }
}
.top__hero .hero--text .text-first {
  width: 75%;
  padding-bottom: 1.5rem;
}

/* message */
#message {
  background-image: url("../img/img_bg_2.webp");
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  background-position-x: right;
}

.top__message__text {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.9;
}
@media screen and (min-width: 768px) {
  .top__message__text {
    font-size: 1.25rem;
  }
}
.top__message__text strong {
  font-family: HGS明朝E, "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.9375rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 576px) {
  .top__message__text strong {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .top__message__text strong {
    font-size: 3.3125rem;
    letter-spacing: 0.1em;
  }
}

/* reason */
.top__reason__list--2col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3rem;
}
.top__reason__item, .top__reason__item--1col, .top__reason__item--2col {
  padding: 3rem 0 0 0;
}
.top__reason__item h3, .top__reason__item--1col h3, .top__reason__item--2col h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  color: rgb(8, 96, 127);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__reason__item h3, .top__reason__item--1col h3, .top__reason__item--2col h3 {
    font-size: 1.9375rem;
  }
}
.top__reason__item--2col {
  width: 50%;
}
.list__number__circle--03::before, .list__number__circle--02::before, .list__number__circle--01::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .list__number__circle--03::before, .list__number__circle--02::before, .list__number__circle--01::before {
    width: 80px;
    height: 80px;
  }
}

.list__number__circle {
  position: relative;
}
.list__number__circle--01::before {
  background-image: url("../img/reason_01.svg");
}
.list__number__circle--02::before {
  background-image: url("../img/reason_02.svg");
}
.list__number__circle--03::before {
  background-image: url("../img/reason_03.svg");
}

.top__reason__text {
  display: block;
  padding: 1.5rem 0.5rem;
}
.top__reason__text .txt {
  padding-bottom: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .top__reason__text .txt {
    text-align: center;
  }
}
.top__reason__text .flex-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (min-width: 576px) {
  .top__reason__text .flex-item {
    gap: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .top__reason__text .flex-item {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
  }
}
.top__reason__text .flex-item .reason--01 {
  width: 30%;
  padding: 0.5rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--01 {
    width: 45%;
    padding: 1rem 0;
  }
}
@media screen and (min-width: 992px) {
  .top__reason__text .flex-item .reason--01 {
    width: 19%;
  }
}
.top__reason__text .flex-item .reason--01 span {
  display: block;
  color: #fff;
  background-color: rgb(8, 96, 127);
  border-radius: 6px;
  padding: 1px 4px;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.625rem;
}
@media screen and (min-width: 576px) {
  .top__reason__text .flex-item .reason--01 span {
    font-size: initial;
    padding: 2px 8px;
  }
}
.top__reason__text .flex-item .reason--01 img {
  display: inline-block;
  height: 3.875rem;
  width: auto;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--01 img {
    height: 5.625rem;
  }
}
.top__reason__text .flex-item .reason--01 ul {
  text-align: left;
  list-style: disc;
  list-style-position: inside;
  margin-left: 8px;
  font-size: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--01 ul {
    font-size: 0.8125rem;
  }
}
.top__reason__text .flex-item.center {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .top__reason__text .flex-item.center {
    width: 70%;
  }
}
.top__reason__text .flex-item.nowrap {
  flex-wrap: nowrap;
}
.top__reason__text .flex-item .reason--02 {
  width: 48%;
  padding: 1rem 0.25rem;
}
.top__reason__text .flex-item .reason--02 figure {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--02 figure {
    padding-bottom: 1rem;
  }
}
.top__reason__text .flex-item .reason--02 figure figcaption {
  font-size: 0.6875rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--02 figure figcaption {
    font-size: 1.125rem;
  }
}
.top__reason__text .flex-item .reason--02 figure img {
  width: 28px;
  height: auto;
  padding: 0.25rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--02 figure img {
    width: 40px;
  }
}
.top__reason__text .flex-item .reason--02.map {
  position: relative;
}
.top__reason__text .flex-item .reason--02.map img {
  height: 11.25rem;
  width: auto;
}
@media screen and (min-width: 576px) {
  .top__reason__text .flex-item .reason--02.map img {
    height: 15rem;
  }
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--02.map img {
    height: 22.5rem;
  }
}
.top__reason__text .flex-item .reason--02.map .map--text {
  position: absolute;
  bottom: -30px;
  right: 0;
}
@media screen and (min-width: 576px) {
  .top__reason__text .flex-item .reason--02.map .map--text {
    bottom: 0;
  }
}
.top__reason__text .flex-item .reason--02.map .map--text ul {
  list-style: disc;
}
.top__reason__text .flex-item .reason--02.map .map--text ul li {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--02.map .map--text ul li {
    font-size: 1rem;
  }
}
.top__reason__text .flex-item .reason--02.job {
  width: auto;
}
@media screen and (min-width: 576px) {
  .top__reason__text .flex-item .reason--02.job {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--02.job {
    width: auto;
  }
}
.top__reason__text .flex-item.col4 {
  justify-content: space-between;
  text-align: center;
  flex-wrap: nowrap;
  gap: 8px;
}
@media screen and (min-width: 576px) {
  .top__reason__text .flex-item.col4 {
    justify-content: center;
    gap: 80px;
  }
}
.top__reason__text .flex-item .reason--03 p {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--03 p {
    font-size: 0.875rem;
  }
}
.top__reason__text .flex-item .reason--03 img {
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .top__reason__text .flex-item .reason--03 img {
    width: 120px;
  }
}

.reason03.details {
  width: 90%;
  margin: 0 auto;
  margin-top: 1rem;
}
.reason03.details .details__summary {
  font-size: 1.5rem;
  background-color: rgb(8, 96, 127);
  text-align: center;
  padding: 4px 0;
  margin-bottom: 1rem;
  color: #fff;
  transition: 0.3s ease-out;
  border-radius: 10px;
}
.reason03.details .details__summary:hover {
  background-color: rgb(0, 64, 151);
  transition: 0.3s ease-out;
  cursor: pointer;
}
.reason03 .details__content {
  background-color: #ddf5ff;
  padding: 0 16px;
  padding-bottom: 32px;
}
.reason03 .details__content p {
  font-size: 1.125rem;
  padding: 8px 2px;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgb(8, 96, 127);
  text-align: left;
}
.reason03 .details__content ul {
  list-style-position: inside;
  list-style-type: disc;
  padding: 24px 0;
}
.reason03 .details__content ul strong {
  display: inline-block;
  font-weight: 600;
}

.reason--03 p {
  line-height: 1.2;
}

/* data */
.top__data__list {
  display: block;
}
@media screen and (min-width: 768px) {
  .top__data__list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }
}
.top__data__list .item {
  width: 95%;
  margin: 0 auto;
  background-color: #f0f0f0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .top__data__list .item {
    width: 48%;
    margin-bottom: 0;
  }
}
.top__data__list .item h3 {
  height: auto;
  line-height: 1.4;
  position: relative;
  text-align: center;
  margin-bottom: 0.25rem;
  color: rgb(8, 96, 127);
}
@media screen and (min-width: 768px) {
  .top__data__list .item h3 {
    height: 6.5rem;
    margin-bottom: 2em;
  }
}
.top__data__list .item h3 strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .top__data__list .item h3 strong {
    font-size: 1.9375rem;
  }
}
.top__data__list .item h3 small {
  display: block;
  font-weight: 700;
}
.top__data__list .item h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px; /*線の上下位置*/
  display: inline-block;
  width: 80px; /*線の長さ*/
  height: 5px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: rgb(8, 96, 127); /*線の色*/
  border-radius: 2px; /*線の丸み*/
}
.top__data__list .item .data-contents {
  flex-grow: 1;
  text-align: center;
}
.top__data__list .item .data-contents.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 2.5rem;
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .top__data__list .item .data-contents.flex {
    padding-top: 0;
  }
}
.top__data__list .item .data-contents p {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .top__data__list .item .data-contents p {
    font-size: 1.9375rem;
  }
}
.top__data__list .item .data-contents p span.big {
  font-weight: 900;
  font-size: 3.875rem;
  padding-right: 4px;
  color: #ff9d00;
}
@media screen and (min-width: 992px) {
  .top__data__list .item .data-contents p span.big {
    font-size: 5rem;
  }
}
.top__data__list .item .data-contents .charts-css {
  padding-top: 2.5rem;
}
.top__data__list .item img {
  margin: 1.5rem 0;
  width: 100%;
}
.top__data__list .item img.circle {
  height: 80px;
  width: auto;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .top__data__list .item img.circle {
    height: 160px;
  }
}
.top__data__list.col-1 {
  padding-top: 1.5rem;
}
.top__data__list.col-1 .item {
  margin: 0 auto;
  width: 100%;
}
.top__data__list.col-1 .item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  height: auto;
  margin-bottom: 3rem;
}
.top__data__list.col-1 .item .data-contents {
  text-align: left;
}

/* job */
.top-job__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.top-job__item {
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (min-width: 992px) {
  .top-job__item {
    width: 47%;
  }
}
.top-job__item:last-child {
  padding-bottom: 0;
}
.top-job__item--image {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-job__item--image {
    width: 15%;
    display: flex;
    justify-content: center;
  }
  .top-job__item--image img {
    width: 5rem;
    color: rgb(8, 96, 127);
  }
}
.top-job__item--text {
  width: 100%;
  /*
  @include g.screen(md) {
  	width: 85%;
  }
  	*/
}
.top-job__item--text p {
  padding-bottom: 2rem;
}
.top-job__item--text p span {
  font-size: 0.6875rem;
  display: block;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-job__item--text p span {
    font-size: 0.875rem;
  }
}
.top-job__item .button--arrow.list03 {
  position: relative;
}
@media screen and (min-width: 992px) {
  .top-job__item .button--arrow.list03 {
    position: absolute;
    bottom: -66px;
    right: 0;
  }
}

/* Interview */
.top-interview__list--col2 {
  display: block;
}
@media screen and (min-width: 992px) {
  .top-interview__list--col2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.interview__item__card {
  max-width: 35rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 8px;
  background-color: #f0f0f0;
  border-radius: 10px;
  transition: 0.3s ease-out;
  width: 95%;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 576px) {
  .interview__item__card {
    padding: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .interview__item__card {
    width: calc(50% - 16px);
    max-width: 100%;
    margin-bottom: 0;
  }
}
.interview__item__card:hover {
  background-color: rgb(0, 64, 151);
  color: #fff;
  transition: 0.3s ease-out;
}
.interview__item__card:hover .card--button {
  background-color: #fff !important;
  color: rgb(0, 64, 151) !important;
  transition: 0.3s ease-out;
}
.interview__item__card:hover figure img {
  transform: scale(1.2, 1.2);
  transition: 0.3s ease-out;
}
.interview__item__card .card--img {
  display: flex;
}
.interview__item__card .card--img figure {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  width: 160px;
}
@media screen and (min-width: 576px) {
  .interview__item__card .card--img figure {
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .interview__item__card .card--img figure {
    max-width: 260px;
    width: 200px;
  }
}
.interview__item__card .card--img figure img {
  transition: 0.3s ease-out;
}
.interview__item__card .card--text {
  text-align: right;
}
.interview__item__card .card--text p {
  font-weight: 700;
}
.interview__item__card .card--text p.jobName {
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 576px) {
  .interview__item__card .card--text p.jobName {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .interview__item__card .card--text p.jobName {
    font-size: 1.5rem;
  }
}
.interview__item__card .card--text p small {
  font-size: 0.875rem;
}
.interview__item__card .card--text p.career {
  font-size: 0.875rem;
}
.interview__item__card .card--button {
  display: inline-block;
  background-color: rgb(8, 96, 127);
  font-weight: 700;
  color: #fff;
  padding: 0.25rem 1rem;
  margin-top: 1.5rem;
  border-radius: 5px;
}

/* event */
.top-event__lead {
  text-align: center;
  padding-bottom: 4rem;
}
.top-event__lead p {
  font-size: 0.875rem;
  line-height: 2;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-event__lead p {
    font-size: 1.125rem;
  }
}
.top-event__lead small {
  display: block;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .top-event__lead small {
    font-size: 0.875rem;
  }
}

.contents__bg--white.event {
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .contents__bg--white.event {
    display: flex;
  }
}
.contents__bg--white.event .left {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .contents__bg--white.event .left {
    width: 70%;
  }
}
.contents__bg--white.event .left h3 {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 2px #0b0f1f solid;
  color: #ff9d00;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contents__bg--white.event .left h3 {
    font-size: 1.5rem;
  }
}
.contents__bg--white.event .left strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .contents__bg--white.event .left strong {
    font-size: 1.25rem;
  }
}
.contents__bg--white.event .right {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
}
@media screen and (min-width: 992px) {
  .contents__bg--white.event .right {
    width: 22%;
    padding-top: 0;
  }
}

/* entry */
.entry__button {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .entry__button {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
}
.entry__button .button--entry {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .entry__button .button--entry {
    margin-bottom: 0;
  }
}

/* contact */
.top-contact {
  display: block;
  border: none;
  padding: 1.5rem;
}
@media screen and (min-width: 992px) {
  .top-contact {
    display: flex;
    justify-content: center;
    border: 5px solid;
  }
}
.top-contact .item {
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  width: 100%;
  margin: 0 auto;
  border: 3px solid;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .top-contact .item {
    width: 33.33%;
    padding-top: 0;
    margin-bottom: 0;
    border: none;
  }
}
.top-contact .item .title {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.5rem 0;
}
@media screen and (min-width: 992px) {
  .top-contact .item .title {
    font-size: 1.5rem;
    padding: 1rem 0;
  }
}
.top-contact .item .text {
  font-size: 1.125rem;
}
@media screen and (min-width: 992px) {
  .top-contact .item .text {
    font-size: 1.25rem;
  }
}
.top-contact .item .phone {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .top-contact .item .phone {
    font-size: 1.9375rem;
  }
}
.top-contact .item .mail {
  font-size: 1.5rem;
  font-weight: 700;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .top-contact .item .mail {
    font-size: 1.9375rem;
  }
}
.top-contact .item .mail :hover {
  color: #ffda00 !important;
  transition: 0.3s ease-out;
}
.top-contact .item small {
  display: block;
  font-size: 0.875rem;
}
.top-contact .item:not(:first-child)::before {
  display: none;
}
@media screen and (min-width: 992px) {
  .top-contact .item:not(:first-child)::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/*requirement*/
@media screen and (min-width: 768px) {
  .top-requirement {
    max-width: 992px;
    margin: 0 auto;
  }
}
.top-requirement table tr:first-child th {
  border-top: 1px solid #001f4a;
}
.top-requirement table tr:first-child td {
  border-top: 1px solid #8a8fab;
}
.top-requirement table tr th {
  width: 20%;
  text-align: center;
  vertical-align: middle;
  padding: 20px 0;
  width: 11em;
  color: rgb(8, 96, 127);
  font-weight: 700;
  border-bottom: 1px solid #001f4a;
}
.top-requirement table tr td {
  width: 80%;
  padding: 20px 0 20px 30px;
  border-bottom: 1px solid #8a8fab;
}
.top-requirement table tr td ul {
  list-style: inside;
}
.top-requirement table tr td strong {
  display: block;
  font-weight: 700;
  color: rgb(8, 96, 127);
}
.top-requirement table tr td small {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .top-requirement table tr td small {
    font-size: 0.875rem;
  }
}

.page__header {
  background-image: url(https://totec-recruit.com/material/img/recruit/entry_visual.jpg);
  background-color: rgba(59, 59, 59, 0.9);
  background-blend-mode: darken;
  background-size: cover;
  padding: 2rem;
}
.page__header div {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page__header div {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.page__header div h1 {
  text-align: center;
  z-index: 100;
  color: #fff;
}
.page__header div h1 small {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.page__header div h1 strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
}

.interview__header {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .interview__header {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.interview__header__flex {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .interview__header__flex {
    flex-direction: row;
  }
}
.interview__header__flex .left {
  width: 95%;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .left {
    width: 50%;
  }
}
.interview__header__flex .left .icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .left .icon {
    justify-content: flex-start;
  }
}
.interview__header__flex .left .icon svg {
  margin-top: 1px;
  margin-right: 4px;
}
.interview__header__flex .left .icon span {
  color: rgb(8, 96, 127);
  padding-left: 0.5rem;
  font-weight: 900;
}
.interview__header__flex .left .lead {
  position: relative;
  font-feature-settings: "palt";
  padding-top: 1rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .left .lead {
    text-align: left;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .interview__header__flex .left .lead {
    font-size: 1.9375rem;
  }
}
.interview__header__flex .left .lead::before {
  content: "“";
  color: #b62b00;
  padding-right: 0.25rem;
}
.interview__header__flex .left .lead::after {
  content: "”";
  color: #b62b00;
  padding-left: 0.25rem;
}
.interview__header__flex .left .jobName {
  font-size: 1.25rem;
  color: rgb(8, 96, 127);
  padding-bottom: 1rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .left .jobName {
    text-align: left;
  }
}
.interview__header__flex .left .jobName .icon-01 {
  position: relative;
}
.interview__header__flex .left .jobName .icon-01::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../../assets/img/job_icon_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.interview__header__flex .left .jobName .icon-02 {
  position: relative;
}
.interview__header__flex .left .jobName .icon-02::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../../assets/img/job_icon_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.interview__header__flex .left .jobName .icon-03 {
  position: relative;
}
.interview__header__flex .left .jobName .icon-03::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../../assets/img/job_icon_03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.interview__header__flex .left .jobName .icon-04 {
  position: relative;
}
.interview__header__flex .left .jobName .icon-04::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../../assets/img/job_icon_04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.interview__header__flex .left .name {
  text-align: right;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .left .name {
    text-align: left;
  }
}
.interview__header__flex .left .name span {
  padding-left: 4px;
  font-size: 1rem;
}
.interview__header__flex .left .career {
  text-align: right;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .left .career {
    text-align: left;
  }
}
.interview__header__flex .left .career span {
  padding-left: 4px;
  font-size: 1rem;
}
.interview__header__flex .right {
  width: 100%;
  height: 18.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .right {
    width: 50%;
    height: auto;
  }
}
.interview__header__flex .right img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 768px) {
  .interview__header__flex .right img {
    border-radius: 20px;
  }
}

.interview__content {
  margin: 6rem auto;
  position: relative;
  z-index: 100;
  border-radius: 0;
  padding: 3rem 1rem;
}
@media screen and (min-width: 768px) {
  .interview__content {
    padding: 4rem;
  }
}
.interview__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  border-top: 4px solid rgb(8, 96, 127);
  border-left: 4px solid rgb(8, 96, 127);
  margin: 0;
}
.interview__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  border-bottom: 4px solid rgb(0, 64, 151);
  border-right: 4px solid rgb(0, 64, 151);
  margin: 0;
}
.interview__content h3 {
  position: relative;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #001f4a;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .interview__content h3 {
    font-size: 1.25rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .interview__content h3 {
    font-size: 1.5rem;
  }
}
.interview__content h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px; /*線の上下位置*/
  display: inline-block;
  width: 90px; /*線の長さ*/
  height: 3px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #b62b00; /*線の色*/
  border-radius: 2px; /*線の丸み*/
}
.interview__content p.text {
  line-height: 2;
  padding: 0.5rem 0.5rem;
}

.interview__img {
  margin: -7.5rem auto;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .interview__img {
    width: 1300px;
  }
}
.interview__img picture {
  height: 100%;
  width: auto;
}
.interview__img.end {
  margin-bottom: 8rem;
}

.entry__child {
  background-color: rgb(8, 96, 127);
  color: #fff;
}
.entry__child .button--entry a {
  background: #fff;
  color: rgb(8, 96, 127);
}
.entry__child .button--entry a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%2308607f' stroke-linecap='round' stroke-width='1.5'%3E%3Cpath stroke-linejoin='round' d='M21 3h-6m6 0l-9 9m9-9v6'/%3E%3Cpath d='M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6'/%3E%3C/g%3E%3C/svg%3E");
}
.entry__child .button--entry a:hover {
  background: #ffda00;
  color: #0b0f1f;
}

.interview_button {
  padding-bottom: 8rem;
}

.top__data__list .item.graph {
  transition: 0.3s ease-out;
}
.top__data__list .item.graph:hover {
  background-color: rgb(0, 64, 151);
}
.top__data__list .item.graph:hover h3 {
  color: #fff;
}
.top__data__list .item.graph:hover h3::before {
  background-color: #fff;
}
.top__data__list .item.graph:hover #graph_01 {
  color: #fff !important;
}
.top__data__list .item.graph:hover .charts-css.legend {
  border: 0 !important;
}
.top__data__list .item.graph:hover .charts-css.legend li {
  color: #fff;
}
.top__data__list .item .data-contents .relative {
  position: relative;
}

#graph_01 {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 70px 1fr;
  grid-template-rows: 100%;
  grid-template-areas: "data-axis-1 chart";
  align-items: start;
  transition: 0.3s ease-out;
}
#graph_01 caption {
  margin-left: 10px;
  font-weight: 600;
}
#graph_01 caption .orange {
  color: #ff9d00;
}
#graph_01 tbody {
  height: 25rem;
}
#graph_01 tbody th small {
  font-size: 0.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #graph_01 tbody th small {
    font-size: 0.6875rem;
  }
}
#graph_01 tbody td {
  background: rgb(7, 174, 216);
}
#graph_01 tbody td:last-child {
  background: #ff9d00;
}
#graph_01 .data-axis-1 {
  grid-area: data-axis-1;
  font-size: 0.6875rem;
  padding-top: 30px;
}
#graph_01 .data-axis-1 span {
  display: block;
}
#graph_01 .data-axis-1 span.number-01 {
  font-size: 0.875rem;
  padding-top: 5px;
}
#graph_01 .data-axis-1 span.number-02 {
  font-size: 0.875rem;
  padding-top: 52.5px;
}

#graph_01 .column tbody {
  overflow-y: hidden; /* remove this to see how it works */
}

#graph_01 .column tbody th {
  z-index: 1;
}

#graph_01 .column tbody td {
  /*
  animation: moving-bars 2s linear;
  animation-iteration-count: 1;
     */
}

@keyframes moving-bars {
  0% {
    transform: translateY(100%);
  }
  30% {
    transform: translateY(0);
  }
}
#graph_02 {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
#graph_02 table {
  height: 25rem;
  width: auto;
}
#graph_02 table tr td {
  position: relative;
}
#graph_02.charts-css.pie tbody tr td .data {
  -webkit-transform: none;
  transform: none;
}
#graph_02.charts-css.pie tbody tr td .data-01 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  top: 55px;
  left: 55px;
}
#graph_02.charts-css.pie tbody tr td .data-02 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  top: 162px;
  left: 90px;
}
#graph_02.charts-css.pie tbody tr td .data-03 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  top: 219px;
  left: -2px;
}
#graph_02.charts-css.pie tbody tr td .data-04 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  top: 135px;
  left: -84px;
}
#graph_02.charts-css.pie tbody tr td .data-05 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  top: 55px;
  left: -32px;
}

.charts-css.legend {
  border: 0 !important;
}
.charts-css.legend li {
  font-size: 0.6875rem;
}

/*--------------------
/ hidden            
/--------------------*/
.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tablet {
  display: block;
}
@media screen and (min-width: 1200px) {
  .tablet {
    display: none;
  }
}

/*--------------------
/ text-align            
/--------------------*/
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-initial {
  text-align: initial;
}

@media screen and (max-width: 992px) {
  .lg-center {
    text-align: center !important;
  }
}

.text-white {
  color: #fff !important;
}

/*--------------------
/ spacing         
/--------------------*/
/* margin */
.m-1 {
  margin: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.m-5 {
  margin: 3rem;
}

/* margin-x(上下)*/
.mx-auto {
  margin: 0 auto;
}

.mx-1 {
  margin: 0.5rem 0;
}

.mx-2 {
  margin: 1rem 0;
}

.mx-3 {
  margin: 1.5rem 0;
}

.mx-4 {
  margin: 2rem 0;
}

.mx-5 {
  margin: 3rem 0;
}

/* margin-y(左右)*/
.my-1 {
  margin: 0 0.5rem;
}

.my-2 {
  margin: 0 1rem;
}

.my-3 {
  margin: 0 1.5rem;
}

.my-4 {
  margin: 0 2rem;
}

.my-5 {
  margin: 0 3rem;
}

/* margin-top */
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* margin-right */
.mr-1 {
  margin-right: 0.5rem;
}

.mr-2 {
  margin-right: 1rem;
}

.mr-3 {
  margin-right: 1.5rem;
}

.mr-4 {
  margin-right: 2rem;
}

.mr-5 {
  margin-right: 3rem;
}

/* margin-bottom */
.mb-1 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-top: 1rem;
}

.mb-3 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-top: 2rem;
}

.mb-5 {
  margin-top: 3rem;
}

/* margin-left */
.ml-1 {
  margin-right: 0.5rem;
}

.ml-2 {
  margin-right: 1rem;
}

.ml-3 {
  margin-right: 1.5rem;
}

.ml-4 {
  margin-right: 2rem;
}

.ml-5 {
  margin-right: 3rem;
}

/* padding */
.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

/* padding-x(上下)*/
.py-1 {
  padding: 0.5rem 0;
}

.py-2 {
  padding: 1rem 0;
}

.py-3 {
  padding: 1.5rem 0;
}

.py-4 {
  padding: 2rem 0;
}

.py-5 {
  padding: 3rem 0;
}

/* padding-y(左右)*/
.px-1 {
  padding: 0 0.5rem;
}

.px-2 {
  padding: 0 1rem;
}

.px-3 {
  padding: 0 1.5rem;
}

.px-4 {
  padding: 0 2rem;
}

.px-5 {
  padding: 0 3rem;
}

/* padding-top */
.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pt-5 {
  padding-top: 3rem;
}

/* padding-right */
.pr-1 {
  padding-right: 0.5rem;
}

.pr-2 {
  padding-right: 1rem;
}

.pr-3 {
  padding-right: 1.5rem;
}

.pr-4 {
  padding-right: 2rem;
}

.pr-5 {
  padding-right: 3rem;
}

/* padding-bottom */
.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

/* padding-left */
.pl-1 {
  padding-left: 0.5rem;
}

.pl-2 {
  padding-left: 1rem;
}

.pl-3 {
  padding-left: 1.5rem;
}

.pl-4 {
  padding-left: 2rem;
}

.pl-5 {
  padding-left: 3rem;
}