/* base */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  font-size: 1.6em;
  /* line-height: 1; */
  letter-spacing: 0.02em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
h1,
h2,
h3,
h4,
main p {
  line-height: 1;
}
.pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* -----------------------------
    nav sub menu
--------------------------------*/
.nav_sub.hide {
  transform: translateY(0px);
}

.nav_sub.hide2 {
  transform: translateY(0px);
  transition: all 0.3s ease-in-out 0s;
}

.nav_sub {
  display: none;
}

@media screen and (min-width: 769px) {
  .nav_sub {
    width: 100%;
    padding: 10px 0;
    position: relative;
    z-index: 999;
    background: #0e4b78;
    position: fixed;
    left: 0;
    top: 70px;
    display: block;
  }
}

@media screen and (min-width: 1120px) {
  .nav_sub {
    top: 100px;
  }
  .nav_sub.hide {
    transform: translateY(-30px);
  }
  .nav_sub.hide2 {
    transform: translateY(0px);
  }
}

/* sp */
.subnav_sp {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .subnav_sp {
    display: none;
  }
}

/* -------------------------------gnav */
ul.gnav {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  ul.gnav {
    justify-content: flex-end;
    flex-wrap: initial;
    text-align: center;
  }
}

ul.gnav li {
  width: 50%;
  text-align: center;
}

@media screen and (min-width: 769px) {
  ul.gnav li {
    width: initial;
    text-align: initial;
    border-right: 1px solid #fff;
  }
}

ul.gnav li:first-child {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 769px) {
  ul.gnav li:first-child {
    border-bottom: none;
  }
}

ul.gnav li:nth-child(2) {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 769px) {
  ul.gnav li:nth-child(2) {
    border-bottom: none;
  }
}

ul.gnav li:nth-child(3) {
  border-right: 1px solid #fff;
}

ul.gnav li:last-child {
  border-right: none;
}

ul.gnav li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  display: block;
  padding: 10px 0;
  background: #0e4b78;
}

@media screen and (min-width: 769px) {
  ul.gnav li a {
    display: initial;
    padding: 12px 1vw;
    font-size: 1.6rem;
  }
}

ul.gnav li a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  ul.gnav li a:hover {
    opacity: initial;
  }
}

/* hover underline */
@media screen and (min-width: 769px) {
  ul.gnav li a::after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    position: absolute;
    background: #ffffff;
    bottom: 13px;
    transition: all 0.3s ease-in-out 0s;
  }

  ul.gnav li a:hover::after {
    width: 88%;
    left: 6%;
    height: 1px;
  }

  /* nessesary to prevent overlap */
  .min .wrap_menu_all {
    height: 70px;
  }
  .min .wrap_menu {
    height: 70px;
  }
  .min .btn_contact {
    top: 0;
  }
}

/* -----------------------------
    FV
--------------------------------*/
.content_fv {
  width: 100%;
  background: url(https://tp-img.imgix.net/s/cm_gallery/sp/background/bg_fv@2x.png?auto=format);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 50px;
  position: relative;
  z-index: 0;
  margin-top: -20px;
}

@media screen and (min-width: 480px) {
  .content_fv {
    padding-top: 70px;
  }
}

@media screen and (min-width: 769px) {
  .content_fv {
    background: url(https://tp-img.imgix.net/s/2024/pc/background/bg_fv.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 150px;
    margin-top: initial;
  }
}

ul.list_fv {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  ul.list_fv {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 40% 58%;
    column-gap: 2%;
  }
}

ul.list_fv > li:first-child {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  ul.list_fv > li:first-child {
    padding-top: 70px;
  }
}

.fv_caption {
  color: #111144;
  font-weight: 800;
  font-size: 2rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 5px;
  padding-left: 17px;
}

@media screen and (min-width: 480px) {
  .fv_caption {
    font-size: 4.8vw;
  }
}

@media screen and (min-width: 769px) {
  .fv_caption {
    font-size: 2rem;
    padding-left: 25px;
  }
}

@media screen and (min-width: 1070px) {
  .fv_caption {
    font-size: 2.3rem;
  }
}

.fv_tp {
  color: #111144;
  font-weight: 900;
  font-size: 3.4rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 480px) {
  .fv_tp {
    font-size: 8.4vw;
  }
}

@media screen and (min-width: 769px) {
  .fv_tp {
    font-size: 3.4rem;
  }
}

@media screen and (min-width: 1070px) {
  .fv_tp {
    font-size: 3.8rem;
  }
}

/* -----------------------------
    STORY & CHARACTER
--------------------------------*/
.content_story {
  width: 100%;
  background: url(https://tp-img.imgix.net/s/cm_gallery/pc/background/bg_story@2x.png?auto=format);
  background-size: 28%;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
  padding: 40px 0;
}

@media screen and (min-width: 769px) {
  .content_story {
    background: url(https://tp-img.imgix.net/s/cm_gallery/pc/background/bg_story@2x.png?auto=format);
    background-size: 17%;
    background-repeat: no-repeat;
    background-position: top left;
    position: relative;
    padding: 80px 0;
  }
}

.content_story h2 {
  font-size: 3.2rem;
  color: #111144;
  text-align: center;
  margin-bottom: 5px;
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
}

@media screen and (min-width: 769px) {
  .content_story h2 {
    font-size: 6.4rem;
    margin-bottom: 10px;
  }
}

.content_story h2 span {
  font-family: "Noto Sans Japanese", sans-serif;
  color: #111144;
  font-weight: normal;
}

.p_caption {
  font-size: 1.6rem;
  color: #d4215f;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .p_caption {
    font-size: 3.2rem;
  }
}

.mb_60 {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .mb_60 {
    margin-bottom: 60px;
  }
}

.wrap_story {
  position: relative;
  margin-bottom: 50px;
}

.bg_gradi_pnk {
  width: 100%;
  height: 160px;
  position: absolute;
  top: 76%;
  transform: translateY(-76%);
  background: linear-gradient(
    90deg,
    rgba(212, 33, 95, 0) 0%,
    rgba(212, 33, 95, 1) 100%
  );
  z-index: 1;
}

@media screen and (min-width: 390px) {
  .bg_gradi_pnk {
    top: 74%;
    transform: translateY(-74%);
  }
}

@media screen and (min-width: 414px) {
  .bg_gradi_pnk {
    top: 73%;
    transform: translateY(-73%);
  }
}

@media screen and (min-width: 480px) {
  .bg_gradi_pnk {
    top: 71%;
    transform: translateY(-71%);
  }
}

@media screen and (min-width: 620px) {
  .bg_gradi_pnk {
    height: 200px;
    top: 66%;
    transform: translateY(-66%);
  }
}

@media screen and (min-width: 769px) {
  .bg_gradi_pnk {
    width: 100%;
    position: absolute;
    top: 35%;
    transform: translateY(-35%);
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 50%,
      rgba(212, 33, 95, 1) 100%
    );
    z-index: 1;
  }
}

ul.list_story {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  ul.list_story {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 49% 49%;
    column-gap: 2%;
  }
}

@media screen and (min-width: 769px) {
  ul.list_story li:first-child {
    padding-top: 30px;
  }
}

ul.list_story h3 {
  font-size: 2.4rem;
  color: #111144;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  ul.list_story h3 {
    font-size: 3.6rem;
    margin-bottom: 30px;
    text-align: initial;
  }
}

@media screen and (min-width: 1030px) {
  ul.list_story h3 {
    font-size: 4rem;
  }
}

.story_caption {
  color: #111144;
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .story_caption {
    font-size: 1.4rem;
    margin-bottom: initial;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1050px) {
  .story_caption {
    font-size: 1.6rem;
  }
}

.story_caption span {
  color: #111144;
  font-weight: bold;
  text-decoration-color: rgb(212, 33, 95, 0.2);
  text-decoration-line: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: -2px;
}

ul.list_story img {
  margin-bottom: 15px;
}

.wrap_descriprion {
  text-align: center;
  position: relative;
}

@media screen and (min-width: 769px) {
  .wrap_descriprion {
    width: fit-content;
    left: 70%;
    transform: translateX(-70%);
  }
}

.p_position {
  color: #111144;
  font-weight: normal;
  margin-bottom: 8px;
}

@media screen and (min-width: 769px) {
  .p_position {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.wrap_descriprion h4 {
  font-size: 2.4rem;
  color: #111144;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .wrap_descriprion h4 {
    font-size: 3.2rem;
  }
}

.p_name {
  font-size: 1.4rem;
  color: #d4215f;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .p_name {
    font-size: 1.6rem;
  }
}

/* 悩める社長たち */
.wrap_president {
  position: relative;
}

.wrap_president h3 {
  width: 90%;
  margin: 0 auto 30px;
  font-size: 2.4rem;
  color: #0e4b78;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .wrap_president h3 {
    max-width: 1040px;
    margin: 0 auto 50px;
    font-size: 3rem;
  }
}

@media screen and (min-width: 1000px) {
  .wrap_president h3 {
    font-size: 3.2rem;
  }
}

.wrap_president h3::before,
.wrap_president h3::after {
  content: "";
  width: 20%;
  height: 1px;
  background-color: #0e4b78;
}

@media screen and (min-width: 769px) {
  .wrap_president h3::before,
  .wrap_president h3::after {
    width: 35%;
  }
}

.wrap_president h3::before {
  margin-right: 2%;
}

@media screen and (min-width: 769px) {
  .wrap_president h3::before {
    margin-right: 20px;
  }
}

.wrap_president h3::after {
  margin-left: 2%;
}

@media screen and (min-width: 769px) {
  .wrap_president h3::after {
    margin-left: 20px;
  }
}

ul.list_president {
  width: 90%;
  margin: 0 auto;
  display: flex;
  /* column-gap: 6%;
  row-gap: 20px; */
  justify-content: center;
  /* flex-wrap: wrap; */
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  ul.list_president {
    max-width: 1040px;
    /* display: grid;
    grid-template-columns: 30% 30% 30%;
    column-gap: initial;
    row-gap: initial;
    justify-content: space-between; */
  }
}

ul.list_president li {
  max-width: 312px;
}

/* ul.list_president li {
  width: 47%;
}

@media screen and (min-width: 769px) {
  ul.list_president li {
    width: initial;
  }
} */

ul.list_president img {
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  ul.list_president img {
    margin-bottom: 15px;
  }
}

.wrap_descriprion_p {
  width: fit-content;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.wrap_descriprion_p h4 {
  font-size: 2.4rem;
  color: #111144;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .wrap_descriprion_p h4 {
    font-size: 3.2rem;
  }
}

.p_name_blu {
  font-size: 1.4rem;
  color: #0e4b78;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .p_name_blu {
    font-size: 1.6rem;
  }
}

.bg_gradi_blu {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* top: 20%;
  transform: translateY(-20%); */
  background: linear-gradient(
    90deg,
    rgba(14, 75, 120, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media screen and (min-width: 620px) {
  .bg_gradi_blu {
    height: 110px;
  }
}

@media screen and (min-width: 769px) {
  .bg_gradi_blu {
    height: 200px;
    /* top: 50%;
    transform: translateY(-50%); */
  }
}

/* -----------------------------
    GALLERY
--------------------------------*/
.content_gallery {
  width: 100%;
  position: relative;
  background: #111144;
  padding: 25px 0 35px;
}

.content_gallery h2 {
  font-size: 3.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
}

@media screen and (min-width: 769px) {
  .content_gallery h2 {
    font-size: 6.4rem;
    margin-bottom: 10px;
  }
}

.p_caption_wht {
  color: #ffffff;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .p_caption_wht {
    font-size: 3.2rem;
  }
}

/* -----------------------------
    Character
--------------------------------*/
.content_nmg {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 769px) {
  .content_nmg {
    background: url(https://tp-img.imgix.net/s/cm_gallery/pc/background/bg_nomaguchi-san@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 150px;
  }
}

ul.list_gallery_L {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_L {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 55% 45%;
    justify-content: space-between;
  }
}

.container_90 {
  width: 90%;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .container_90 {
    width: initial;
    margin: initial;
  }
}

@media screen and (min-width: 769px) {
  .mb_50 {
    margin-bottom: 50px;
  }
}

ul.list_gallery_L h3 {
  width: fit-content;
  color: #111144;
  font-weight: bold;
  padding: 3px 5px 4px;
  background: #ffffff;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_L h3 {
    padding: 3px 8px 4px;
    margin-bottom: 25px;
  }
}

.h3_font_24 {
  font-size: 2.4rem;
}

@media screen and (min-width: 769px) {
  .h3_font_24 {
    font-size: 4rem;
  }
}

ul.list_gallery_L p,
ul.list_gallery_R p {
  color: #111144;
  font-weight: normal;
  line-height: 1.4;
}

ul.list_gallery_L img {
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_L img {
    width: 80%;
  }
}

ul.list_gallery_L li:first-child {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 20px;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_L li:first-child {
    padding-top: initial;
  }
}

.bg_nmg {
  background: url(https://tp-img.imgix.net/s/cm_gallery/sp/background/bg_nomaguchi-san@2x.png?auto=format);
}

@media screen and (min-width: 769px) {
  .bg_nmg {
    background: none;
  }
}

ul.list_gallery_L li:last-child {
  height: 67vw;
  display: grid;
  grid-template-columns: 50% 1fr;
  justify-content: center;
  padding: 25px 5% 0;
  background: #dbe4ef;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_L li:last-child {
    height: initial;
    display: initial;
    background: initial;
    padding: initial;
  }
}

.-btm_95 {
  bottom: -20px;
}

@media screen and (min-width: 480px) {
  .-btm_95 {
    bottom: -55px;
  }
}

@media screen and (min-width: 769px) {
  .-btm_95 {
    bottom: -95px;
  }
}

.content_den {
  width: 100%;
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 769px) {
  .content_den {
    background: url(https://tp-img.imgix.net/s/cm_gallery/pc/background/bg_denden-san@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 150px;
  }
}

ul.list_gallery_R {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_R {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 45% 55%;
    justify-content: space-between;
  }
}

.box_sinise {
  display: none;
}

@media screen and (min-width: 769px) {
  .box_sinise {
    width: fit-content;
    margin-left: auto;
    display: block;
  }
}

ul.list_gallery_R h3 {
  width: fit-content;
  color: #111144;
  font-weight: bold;
  padding: 3px 5px 4px;
  background: #ffffff;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_R h3 {
    padding: 3px 8px 4px;
    background: #ffffff;
    margin: 0 0 25px auto;
  }
}

.h3_font_18 {
  font-size: 1.8rem;
}

@media screen and (min-width: 769px) {
  .h3_font_18 {
    font-size: 4rem;
  }
}

ul.list_gallery_R img {
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_R img {
    width: 90%;
    bottom: -60px;
  }
}

ul.list_gallery_R li:last-child {
  background: url(https://tp-img.imgix.net/s/cm_gallery/sp/background/bg_denden-san@2x.png?auto=format);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 20px;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_R li:last-child {
    background: none;
    padding-top: initial;
  }
}

ul.list_gallery_R li:first-child {
  height: 60vw;
  display: grid;
  grid-template-columns: 49% 1fr;
  column-gap: 2%;
  justify-content: center;
  padding: 25px 5% 0;
  background: #dbe4ef;
}

@media screen and (min-width: 769px) {
  ul.list_gallery_R li:first-child {
    height: initial;
    display: initial;
    background: initial;
    padding: initial;
  }
}

@media screen and (min-width: 480px) {
  .-btm_20 {
    bottom: -10px;
  }
}

@media screen and (min-width: 700px) {
  .-btm_20 {
    bottom: -20px;
  }
}

@media screen and (min-width: 769px) {
  .-btm_20 {
    bottom: 0;
  }
}

.content_micha {
  width: 100%;
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 769px) {
  .content_micha {
    background: url(https://tp-img.imgix.net/s/cm_gallery/pc/background/bg_michal-san@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 150px;
  }
}

.bg_micha {
  background: url(https://tp-img.imgix.net/s/cm_gallery/sp/background/bg_michal-san@2x.png?auto=format);
}

@media screen and (min-width: 769px) {
  .bg_micha {
    background: none;
  }
}

.-btm_115 {
  bottom: -18px;
}

@media screen and (min-width: 480px) {
  .-btm_115 {
    bottom: -45px;
  }
}

@media screen and (min-width: 769px) {
  .-btm_115 {
    bottom: -125px;
  }
}

/* -----------------------------
    MAKING & COMMENT
--------------------------------*/
.content_making {
  width: 100%;
  position: relative;
  background: url(https://tp-img.imgix.net/s/cm_gallery/sp/background/bg_making@2x.png?auto=format);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
  z-index: 100;
}

@media screen and (min-width: 769px) {
  .content_making {
    background: url(https://tp-img.imgix.net/s/cm_gallery/pc/background/bg_making_a@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 90px 0 100px;
  }
}

.content_making h2 {
  font-size: 3.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
  line-height: normal;
}

@media screen and (min-width: 769px) {
  .content_making h2 {
    font-size: 6.4rem;
    margin-bottom: 10px;
    line-height: 1;
  }
}

.content_making h2 span {
  font-family: "Noto Sans Japanese", sans-serif;
  color: #ffffff;
  font-weight: normal;
}

ul.list_making {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  row-gap: 50px;
}

@media screen and (min-width: 769px) {
  ul.list_making {
    max-width: 1040px;
    grid-template-columns: 48% 48%;
    row-gap: initial;
    justify-content: space-between;
  }
}

ul.list_making h3 {
  font-size: 2.6rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
  ul.list_making h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

.mb_20 {
  margin-bottom: 15px;
}

@media screen and (min-width: 769px) {
  .mb_20 {
    margin-bottom: 20px;
  }
}

ul.list_making p {
  color: #ffffff;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
}

/* -----------------------------
    ABOUT
--------------------------------*/
.content_about {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 100;
  background: #ffffff;
}

@media screen and (min-width: 769px) {
  .content_about {
    max-width: 1040px;
    padding: 90px 0;
  }
}

.content_about h2 {
  font-size: 3.2rem;
  color: #111144;
  text-align: center;
  margin-bottom: 5px;
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
}

@media screen and (min-width: 769px) {
  .content_about h2 {
    font-size: 6.4rem;
    margin-bottom: 10px;
  }
}

.content_about h3 {
  font-size: 2.3rem;
  color: #ffffff;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  margin: auto;
  background: #111144;
  padding: 3px 0 4px;
  margin-bottom: 20px;
}

@media screen and (min-width: 414px) {
  .content_about h3 {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 480px) {
  .content_about h3 {
    font-size: 6vw;
  }
}

@media screen and (min-width: 769px) {
  .content_about h3 {
    width: fit-content;
    font-size: 5.8rem;
    padding: 3px 0 4px 8px;
    margin-bottom: 50px;
  }
}

.logo_tp {
  width: 70%;
  margin: 0 auto 10px;
}

@media screen and (min-width: 769px) {
  .logo_tp {
    width: 460px;
    margin: 0 auto 50px;
  }
}

.img_tp {
  width: 100%;
  margin: 0 auto 30px;
}

@media screen and (min-width: 769px) {
  .img_tp {
    width: 80%;
    margin: 0 auto 70px;
  }
}

.content_about h4 {
  font-size: 2rem;
  color: #454545;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.08em;
}

@media screen and (min-width: 600px) {
  .content_about h4 {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 769px) {
  .content_about h4 {
    font-size: 3.2rem;
    line-height: initial;
  }
}

.content_about h4 span {
  font-size: 2rem;
  color: #ffffff;
  font-weight: bold;
  background: #0e4b78;
  display: inline-block;
  line-height: 1.2;
  margin: 0 3px 0 10px;
  padding: 0 6px 2px 6px;
}

@media screen and (min-width: 600px) {
  .content_about h4 span {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 769px) {
  .content_about h4 span {
    font-size: 3.2rem;
  }
}

.p_allinone {
  font-size: 1.6rem;
  color: #454545;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 600px) {
  .p_allinone {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 769px) {
  .p_allinone {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

.p_allinone::before,
.p_allinone::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #454545;
}

.p_allinone::before {
  margin-right: 0.6rem;
}

@media screen and (min-width: 769px) {
  .p_allinone::before {
    margin-right: 1rem;
  }
}

.p_allinone::after {
  margin-left: 0.6rem;
}

@media screen and (min-width: 769px) {
  .p_allinone::after {
    margin-left: 1rem;
  }
}

ul.list_about {
  width: 100%;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 49.3% 49.3%;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 0.625%;
  row-gap: 6px;
}

@media screen and (min-width: 769px) {
  ul.list_about {
    max-width: 1180px;
    grid-template-columns: 19.5% 19.5% 19.5% 19.5% 19.5%;
    margin: 0 auto 50px;
  }
}

ul.list_about li {
  color: #454545;
  background: #e7eff4;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 0 10px 35px;
  font-size: 1.2rem;
  font-family: "Noto Sans Japanese", sans-serif;
}

@media screen and (min-width: 1120px) {
  ul.list_about li {
    font-size: 1.4rem;
    padding: 12px 0 12px 47px;
  }
}

ul.list_about li::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 2px;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

@media screen and (min-width: 1120px) {
  ul.list_about li::before {
    left: 8px;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

ul.list_about li:first-child::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_capital.svg);
  top: 3px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:first-child::before {
    top: 9px;
  }
}

ul.list_about li:nth-child(2)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_successplan.svg);
  top: 8px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(2)::before {
    top: 12px;
  }
}

ul.list_about li:nth-child(3)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_deployment.svg);
  top: 5px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(3)::before {
    top: 10px;
  }
}

ul.list_about li:nth-child(4)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_reskill.svg);
  top: 8px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(4)::before {
    top: 13px;
  }
}

ul.list_about li:nth-child(5)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_analyz.svg);
  top: 5px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(5)::before {
    top: 10px;
  }
}

ul.list_about li:nth-child(6)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_reassess.svg);
  top: 1px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(6)::before {
    top: 6px;
  }
}

ul.list_about li:nth-child(7)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_jobtraining.svg);
  top: 7px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(7)::before {
    top: 12px;
  }
}

ul.list_about li:nth-child(8)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_recruit.svg);
  top: 5px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(8)::before {
    top: 11px;
  }
}

ul.list_about li:nth-child(9)::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_turnover_protect.svg);
  top: 4px;
  left: 4px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:nth-child(9)::before {
    top: 9px;
    left: 10px;
  }
}

ul.list_about li:last-child::before {
  content: url(https://tp-img.imgix.net/s/cm_gallery/pc/icon/icon_engagement.svg);
  top: 4px;
}

@media screen and (min-width: 1120px) {
  ul.list_about li:last-child::before {
    top: 9px;
  }
}

.btn_fv_cta {
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .btn_fv_cta {
    width: 380px;
  }
}

.btn_fv_cta img {
  box-shadow: 0 3px 0 0 #af0942;
  border-radius: 8px;
  transition: 0.1s;
}

.btn_fv_cta img:hover {
  box-shadow: none;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

/* -----------------------------
    ANIMATION
--------------------------------*/
.fadein {
  opacity: 0;
  animation: fadein 5s ease forwards;
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

.txt01 {
  animation-delay: 0.5s;
}

.txt02 {
  animation-delay: 1.5s;
}

.txt03 {
  animation-delay: 2s;
}

.txt04 {
  animation-delay: 2.5s;
}

.txt05 {
  animation-delay: 3s;
}

.txt06 {
  animation-delay: 3.5s;
}

.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.anim-slidein-tb {
  opacity: 0;
  animation: slideInTB 0.8s 0.2s both ease-out;
}

/* .anim-slidein-tb.is-show {
  animation: slideInTB 0.8s 0.2s both ease-out;
} */

@keyframes slideInTB {
  0% {
    transform: translate(0, 10vw);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
