@charset "UTF-8";
/* -------------------------------------------------------------------------*/
/* MIXIN / ARGUMENT / COMMON CLASS
/* -------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
.default_ftz {
  font-size: 18px;
  font-size: 1.125rem;
}

@media only screen and (max-width: 640px) {
  .default_ftz {
    font-size: 16px;
    font-size: 1rem;
  }
}

.text_out {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.fixed_area {
  max-width: 1200px;
  margin: 0 auto;
}

.tbl_scroll {
  overflow-x: auto;
}

.tbl_scroll table {
  min-width: 600px;
}

:root {
  --color_1: #d8ebf5;
  --color_2: #004ea2;
  --color_text: #333;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FONT
/* -------------------------------------------------------------------------*/
.font_1, html:lang(ja) {
  font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
  line-height: 1.5;
  font-size-adjust: none;
}

strong, .strong, .btn_1, #HD #NV > ul > li > a, #HD #NV > ul > li > span, #HD_2 #NV > ul > li > a, #HD_2 #NV > ul > li > span, .category_title, .tp_loading p, .tp_kv__text, .hashTag a, .tbf__title, .tbf__link p a, #TP_senpai .swiper-slide a p, .htg__title, .htg a .a__inner .text .title, .pg_title, .pg_title_2, .about_message h4, .trainee_block__env h4, .trainee_block__interview .cell_text .year, .num_common, .data_box_6 .data_box_6_dv .num, .data_box_7 .data_box_7_cell .num, .data_box_8 .data_box_8_cell_inner .num, .data_box_9 .data_box_9_cell .num, .data_box_10 .num, .data_box_11 .num, .data_block h4, .data_block h5, .data_box_1 p.showa, .data_box_2_cell_1 .number, .data_box_3 .data_box_3_cell p, .data_box_4 .data_box_4_cell p, .data_box_8 .data_box_8_cell_inner .text, .data_box_11 .info, #INTERVIEW_KV .loading p, .interview_kv__text .catch, .interview_kv__text .name, .interview_block_stepup__box .title, .interview_block_schedule table th, .interview_block_schedule table h5, .prD_kv_caption .episode, .prD_kv_s_caption .episode, .prD_kv_caption .title .title_1, .prD_kv_s_caption .title .title_1, .prD_kv_caption .title .title_2, .prD_kv_s_caption .title .title_2, .prD_people__block .prD_people__text .charge, .prD_people__block .prD_people__text .name, .prD_people__block .prD_people__text .subTitle, .prD_nv, .did_linkBtn {
  font-weight: 700;
}

.font_dot, .num_common span, .data_box_6 .data_box_6_dv .num span, .data_box_7 .data_box_7_cell .num span, .data_box_8 .data_box_8_cell_inner .num span, .data_box_9 .data_box_9_cell .num span, .data_box_10 .num span, .data_box_11 .num span, .data_box_1 p span, .data_box_2_cell_1 .number span, .data_box_3 .data_box_3_cell p i, .data_box_4 .data_box_4_cell p i, .interview_block_stepup__box .title, .interview_block_schedule table th {
  font-family: 'Press Start 2P', cursive;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* COMMON / BASE
/* -------------------------------------------------------------------------*/
html {
  font-size: 100%;
  line-height: 1.5em;
}

@media only screen and (max-width: 980px) {
  html {
    font-size: 90%;
  }
}

@media only screen and (max-width: 640px) {
  html {
    font-size: 90%;
  }
}

@media print {
  html {
    width: 1000px !important;
  }
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color_text);
  background-color: #fff;
  overflow-x: hidden;
}

.body__inner {
  background-color: var(--color_1);
}

/* MARKER */
.marker_1, .marker_2 {
  position: relative;
  display: inline-block;
}

.marker_1 > *, .marker_2 > * {
  position: relative;
  z-index: 1;
}

.marker_1 .marker, .marker_2 .marker {
  display: block;
  position: absolute;
  z-index: 0;
  left: -1%;
  bottom: -5px;
  width: 102%;
  height: 16px;
}

.marker_1 .marker::after, .marker_2 .marker::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  display: block;
  width: 10px;
  height: 15px;
}

.marker_1 .marker, .marker_1 .marker::after {
  background-color: rgba(255, 0, 168, 0.1);
}

.marker_2 .marker, .marker_2 .marker::after {
  background-color: rgba(0, 135, 222, 0.1);
}

/* BTN */
.btn_1 {
  font-size: 30px;
  font-size: 1.875rem;
  text-align: center;
  margin: 2rem 0;
  font-style: italic;
}

.btn_1 a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 50px 12px;
  border-radius: 5rem;
  color: #fff;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  transition: opacity 0.2s ease;
}

.btn_1 a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 980px) {
  .btn_1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

@media only screen and (max-width: 640px) {
  .btn_1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* HD
/* -------------------------------------------------------------------------*/
body::before {
  content: '';
  display: block;
  width: 557px;
  height: 428px;
  background: url(../img/d_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  z-index: 0;
  top: 30px;
  left: 5px;
}

@media only screen and (max-width: 1200px) {
  body::before {
    width: 446px;
    height: 342px;
    left: -20px;
  }
}

@media only screen and (max-width: 980px) {
  body::before {
    width: 330px;
    height: 253px;
    left: -15px;
  }
}

@media only screen and (max-width: 640px) {
  body::before {
    width: 264px;
    height: 203px;
    left: -15px;
    top: 10px;
  }
}

body.ctg_home {
  background-color: var(--color_1);
}

body.ctg_home::before {
  opacity: 0;
}

#HD {
  position: relative;
  z-index: 2;
  height: 133px;
}

@media only screen and (max-width: 1200px) {
  #HD {
    height: 107px;
  }
}

@media only screen and (max-width: 980px) {
  #HD {
    height: 86px;
  }
}

@media only screen and (max-width: 800px) {
  #HD {
    height: 70px;
  }
}

@media only screen and (max-width: 640px) {
  #HD {
    height: 55px;
  }
}

#HD #HD_logo {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 35px;
  left: 60px;
}

@media only screen and (max-width: 1200px) {
  #HD #HD_logo {
    top: 30px;
    left: 30px;
  }
}

@media only screen and (max-width: 980px) {
  #HD #HD_logo {
    top: 24px;
    left: 20px;
  }
}

@media only screen and (max-width: 800px) {
  #HD #HD_logo {
    top: 10px;
    left: 10px;
  }
}

#HD #HD_logo a {
  display: block;
  font-size: 0;
}

#HD #HD_logo a span {
  display: inline-block;
  vertical-align: middle;
}

#HD #HD_logo a .img_1 {
  margin-right: 60px;
}

@media only screen and (max-width: 1200px) {
  #HD #HD_logo a .img_1 {
    margin-right: 45px;
  }
  #HD #HD_logo a .img_1 img {
    width: 100px;
    height: auto;
  }
}

@media only screen and (max-width: 980px) {
  #HD #HD_logo a .img_1 {
    margin-right: 30px;
  }
  #HD #HD_logo a .img_1 img {
    width: 80px;
  }
}

@media only screen and (max-width: 640px) {
  #HD #HD_logo a .img_1 {
    margin-right: 24px;
  }
  #HD #HD_logo a .img_1 img {
    width: 64px;
  }
}

#HD #HD_logo a .img_2 img {
  height: auto;
}

@media only screen and (max-width: 1200px) {
  #HD #HD_logo a .img_2 img {
    width: 150px;
  }
}

@media only screen and (max-width: 980px) {
  #HD #HD_logo a .img_2 img {
    width: 120px;
  }
}

@media only screen and (max-width: 640px) {
  #HD #HD_logo a .img_2 img {
    width: 120px;
  }
}

#HD #NV {
  position: absolute;
  left: 510px;
  top: 45px;
}

@media only screen and (max-width: 1300px) {
  #HD #NV {
    left: 450px;
  }
}

@media only screen and (max-width: 1200px) {
  #HD #NV {
    top: 30px;
    left: 370px;
  }
}

@media only screen and (max-width: 980px) {
  #HD #NV {
    top: 20px;
    left: 280px;
  }
}

#HD #NV > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#HD #NV > ul > li {
  position: relative;
  margin: 0 20px;
  padding: 0 0 8px;
}

#HD #NV > ul > li.nv_home {
  display: none;
}

@media only screen and (max-width: 1300px) {
  #HD #NV > ul > li {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 980px) {
  #HD #NV > ul > li {
    margin: 0 5px;
  }
}

@media only screen and (max-width: 800px) {
  #HD #NV > ul > li {
    display: none;
  }
}

#HD #NV > ul > li::before {
  content: '';
  display: none;
  background: url(../img/nv_line.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 144px;
  height: 11px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media only screen and (max-width: 1200px) {
  #HD #NV > ul > li::before {
    width: 116px;
    height: 9px;
  }
}

#HD #NV > ul > li > a, #HD #NV > ul > li > span {
  font-size: 17px;
  font-size: 1.0625rem;
  display: block;
  padding: 10px;
  color: var(--color_text);
  text-decoration: none;
  transition: color 0.2s ease;
}

#HD #NV > ul > li > a:hover, #HD #NV > ul > li > span:hover {
  color: var(--color_2);
}

@media only screen and (max-width: 1200px) {
  #HD #NV > ul > li > a, #HD #NV > ul > li > span {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

#HD #NV > ul > li > span {
  opacity: 0.5;
}

#HD #NV > ul > li > span:hover {
  color: inherit;
  user-select: none;
}

#HD #NV > ul ul {
  display: none;
}

#HD .entryBtn {
  position: absolute;
  z-index: 1;
  right: 50px;
  top: 20px;
}

@media only screen and (max-width: 1200px) {
  #HD .entryBtn {
    right: 10px;
  }
}

@media only screen and (max-width: 980px) {
  #HD .entryBtn {
    top: 10px;
  }
}

@media only screen and (max-width: 800px) {
  #HD .entryBtn {
    top: 15px;
    right: 60px;
  }
}

@media only screen and (max-width: 640px) {
  #HD .entryBtn {
    display: none;
  }
}

#HD .entryBtn ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 800px) {
  #HD .entryBtn ul {
    display: flex;
  }
}

#HD .entryBtn li {
  margin: 0;
  padding: 0;
}

#HD .entryBtn li + li {
  margin-top: 5px;
}

@media only screen and (max-width: 980px) {
  #HD .entryBtn li + li {
    margin-top: 3px;
  }
}

#HD .entryBtn a {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

#HD .entryBtn a:hover {
  opacity: 0.7;
}

#HD .entryBtn img {
  width: 160px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  #HD .entryBtn img {
    width: 128px;
  }
}

@media only screen and (max-width: 980px) {
  #HD .entryBtn img {
    width: 110px;
  }
}

body.ctg_about #HD #NV > ul > li.nv_about::before {
  display: block;
}

body.ctg_interview #HD #NV > ul > li.nv_interview::before {
  display: block;
}

body.ctg_project #HD #NV > ul > li.nv_project::before {
  display: block;
}

#HD_2 {
  position: fixed;
  z-index: 10000;
  top: -70px;
  left: 0;
  right: 0;
  background-color: var(--color_1);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  transition: top 0.3s ease, opacity 0.1s ease;
}

body.scrolled.megaDrop_on #HD_2 {
  opacity: 1;
  box-shadow: none;
}

#HD_2:hover {
  opacity: 1;
}

#HD_2.in {
  top: 0;
}

#HD_2 .hd__inner {
  display: flex;
  align-items: center;
  padding: 10px;
}

@media only screen and (max-width: 640px) {
  #HD_2 .hd__inner {
    padding: 10px 5px 10px 10px;
  }
}

#HD_2 #HD_logo {
  margin: 0 0 0 10px;
  padding: 0;
}

@media only screen and (max-width: 1200px) {
  #HD_2 #HD_logo {
    margin: 0;
  }
}

#HD_2 #HD_logo a {
  display: block;
  font-size: 0;
}

#HD_2 #HD_logo a span {
  display: inline-block;
  vertical-align: middle;
}

#HD_2 #HD_logo a .img_1 {
  margin-right: 10px;
}

#HD_2 #HD_logo a .img_1 img {
  width: 60px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  #HD_2 #HD_logo a .img_1 img {
    width: 50px;
  }
}

@media only screen and (max-width: 640px) {
  #HD_2 #HD_logo a .img_1 img {
    width: 40px;
  }
}

#HD_2 #HD_logo a .img_2 img {
  width: 110px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  #HD_2 #HD_logo a .img_2 img {
    width: 90px;
  }
}

@media only screen and (max-width: 640px) {
  #HD_2 #HD_logo a .img_2 img {
    width: 70px;
    margin-top: 3px;
  }
}

#HD_2 #NV {
  margin-left: 40px;
}

@media only screen and (max-width: 1200px) {
  #HD_2 #NV {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 980px) {
  #HD_2 #NV {
    margin-left: 20px;
  }
}

#HD_2 #NV > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#HD_2 #NV > ul > li {
  position: relative;
  margin: 0 20px;
}

#HD_2 #NV > ul > li.nv_home {
  display: none;
}

@media only screen and (max-width: 1300px) {
  #HD_2 #NV > ul > li {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 980px) {
  #HD_2 #NV > ul > li {
    margin: 0 5px;
  }
}

@media only screen and (max-width: 800px) {
  #HD_2 #NV > ul > li {
    display: none;
  }
}

#HD_2 #NV > ul > li > a, #HD_2 #NV > ul > li > span {
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  padding: 10px;
  color: var(--color_text);
  text-decoration: none;
  transition: color 0.2s ease;
}

#HD_2 #NV > ul > li > a:hover, #HD_2 #NV > ul > li > span:hover {
  color: var(--color_2);
}

@media only screen and (max-width: 980px) {
  #HD_2 #NV > ul > li > a, #HD_2 #NV > ul > li > span {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 5px;
  }
}

#HD_2 #NV > ul > li > span {
  opacity: 0.5;
}

#HD_2 #NV > ul > li > span:hover {
  color: inherit;
  user-select: none;
}

#HD_2 #NV > ul ul {
  display: none;
}

#HD_2 .entryBtn {
  flex: 1;
}

#HD_2 .entryBtn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

#HD_2 .entryBtn li {
  margin: 0;
  padding: 0;
}

#HD_2 .entryBtn li + li {
  margin-left: 5px;
}

#HD_2 .entryBtn a {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

#HD_2 .entryBtn a:hover {
  opacity: 0.7;
}

#HD_2 .entryBtn img {
  width: 140px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  #HD_2 .entryBtn img {
    width: 120px;
  }
}

@media only screen and (max-width: 640px) {
  #HD_2 .entryBtn img {
    width: 90px;
  }
}

@media only screen and (max-width: 800px) {
  #HD_2 .entryBtn {
    padding-right: 40px;
  }
}

.megaDrop_bg {
  display: none;
  background-color: #fff;
  opacity: 0.85;
  position: fixed;
  z-index: 0;
  top: 103px;
  right: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
}

body.megaDrop_on .megaDrop_bg {
  display: block;
}

@media only screen and (max-width: 800px) {
  .megaDrop_bg {
    display: none !important;
  }
}

.megaDrop {
  display: none;
  position: absolute;
  top: 103px;
  left: 0;
  right: 0;
  padding-bottom: 70px;
  overflow: hidden;
  background: linear-gradient(to right, #59aee2 0%, #dbabcd 100%);
  border-top: 10px solid var(--color_1);
}

.megaDrop a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 14px;
  margin-left: 10px;
  background: url(../img/nv_blank.png);
  background-size: 100% auto;
}

@media only screen and (max-width: 1200px) {
  .megaDrop {
    top: 85px;
  }
}

@media only screen and (max-width: 980px) {
  .megaDrop {
    top: 66px;
  }
}

@media only screen and (max-width: 800px) {
  .megaDrop {
    display: none !important;
  }
}

body.scrolled .megaDrop {
  position: fixed;
  z-index: 1000;
  top: 62px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 980px) {
  body.scrolled .megaDrop {
    top: 40px;
  }
}

.megaDrop .mD_close {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 0;
}

.megaDrop .mD_close p {
  display: inline-block;
  margin: 0;
  color: #fff;
  cursor: pointer;
}

.megaDrop .mD_close p::before {
  content: '×';
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 20px;
}

.mD_block {
  display: none;
  position: relative;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.mD_block .md_title {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  margin: 8px 30px 15px 0;
  text-align: center;
}

.mD_block .md_title p {
  margin: 0;
  padding-bottom: 5px;
}

.mD_block .md_title p::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 35px;
  margin-right: 20px;
  margin-top: -5px;
  background: url(../img/mega_logo.png) 0 0 no-repeat;
  background-size: 100% auto;
}

.mD_block .mD_menu {
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 30px;
}

.mD_block .mD_menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mD_block .mD_menu li {
  margin: 10px 5px;
  padding: 0;
}

.mD_block .mD_menu li a {
  display: block;
  padding: 12px 40px 15px;
  text-decoration: none;
  border-radius: 5rem;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.05);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  background-color: rgba(0, 78, 162, 0.2);
}

.mD_block .mD_menu li a:hover {
  opacity: 0.9;
  box-shadow: none;
}

body.nv_about .mD_block#MD_1,
body.nv_interview .mD_block#MD_3 {
  display: block;
}

/*
#MD_1{ background-image: url(../img/dm_pic_1.png);}
#MD_3{ background-image: url(../img/dm_pic_3.png);}
*/
/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FT
/* -------------------------------------------------------------------------*/
#FT {
  background-color: #fff;
}

.ft {
  padding: 50px 0 10px;
}

@media only screen and (max-width: 980px) {
  .ft {
    padding-top: 30px;
  }
}

.ft__inner {
  display: flex;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

@media only screen and (max-width: 980px) {
  .ft__inner {
    display: block;
  }
}

.ft__logo a {
  text-decoration: none;
}

@media only screen and (max-width: 980px) {
  .ft__logo {
    text-align: center;
  }
}

.ft__siteName {
  margin: 0;
  padding: 0;
}

.ft__siteName a {
  display: block;
}

.ft__siteName a span {
  display: inline-block;
  vertical-align: middle;
}

.ft__siteName .img_1 img {
  width: 80px;
  height: auto;
}

.ft__siteName .img_2 {
  margin-left: 15px;
}

.ft__siteName .img_2 img {
  width: 130px;
  height: auto;
}

.ft__link {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 15px 0 0;
  padding: 0;
  line-height: 1;
}

.ft__link a {
  display: inline-block;
  padding: 5px 10px 7px;
  color: var(--color_2);
  border: 1px solid #ccdcec;
  transition: background 0.2s ease;
}

.ft__link a:hover {
  background-color: #e4f1f8;
}

.ft__link a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-right: 5px;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent var(--color_2);
}

.ft__nv {
  margin: 10px 0 0 50px;
}

@media only screen and (max-width: 980px) {
  .ft__nv {
    margin: 20px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .ft__nv {
    display: none;
  }
}

.ft__nv ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 980px) {
  .ft__nv ul {
    justify-content: center;
  }
}

.ft__nv li {
  margin: 0 15px;
  padding: 0;
}

@media only screen and (max-width: 980px) {
  .ft__nv li {
    margin: 0 10px;
    white-space: nowrap;
  }
}

.ft__nv li a {
  display: block;
  color: #6a6a6a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft__nv li a:hover {
  color: var(--color_2);
}

.ft .copyright {
  text-align: right;
  margin: 0;
  padding: 0 20px;
  color: #afafaf;
}

@media only screen and (max-width: 980px) {
  .ft .copyright {
    margin-top: 10px;
  }
}

.ft .copyright small {
  font-size: 12px;
  font-size: 0.75rem;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* PAGE
/* -------------------------------------------------------------------------*/
#CNT {
  position: relative;
  padding: 0 55px 90px;
}

#CNT .cnt {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 51px 45px;
}

#CNT .cnt__inner {
  padding-bottom: 90px;
  background: url(../img/hogan.png);
}

@media only screen and (max-width: 1200px) {
  #CNT {
    padding: 0 35px;
  }
  #CNT .cnt {
    padding: 10px 30px 40px;
  }
}

@media only screen and (max-width: 980px) {
  #CNT {
    padding: 0 20px;
  }
  #CNT .cnt {
    padding: 10px 25px;
  }
  #CNT .cnt__inner {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 640px) {
  #CNT {
    padding: 0 15px;
    overflow-x: hidden;
  }
  #CNT .cnt {
    padding: 10px 15px 35px;
  }
  #CNT .cnt__inner {
    padding-bottom: 50px;
  }
}

/* pankuzu */
.pankuzu {
  color: #839eac;
  margin-bottom: 10px;
}

.pankuzu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.pankuzu li {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  margin: 5px;
}

.pankuzu li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  margin-right: 10px;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #839eac;
  transform: translateY(-1px);
}

.pankuzu li:first-child::before {
  display: none;
}

.pankuzu a {
  color: #839eac;
  text-decoration: none;
}

.pankuzu a:hover {
  text-decoration: underline;
}

.category_title {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color_2);
  padding-top: 5px;
}

.category_title p {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: center;
}

.category_title p img {
  display: block;
  width: 74px;
  height: auto;
  margin: 0 auto 5px;
}

@media only screen and (max-width: 980px) {
  .category_title {
    font-size: 16px;
    font-size: 1rem;
  }
  .category_title p img {
    width: 60px;
  }
}

@media only screen and (max-width: 640px) {
  .category_title {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .category_title p img {
    width: 50px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* TOP
/* -------------------------------------------------------------------------*/
.tp_loading {
  color: #fff;
  text-align: center;
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.tp_loading > * {
  opacity: 1 !important;
}

.tp_loading p {
  margin: 10px 0 0;
  animation: loading_flash 2s linear infinite;
}

@keyframes loading_flash {
  0% {
    opacity: 0;
    text-shadow: none;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 5px #3bbedf;
  }
  100% {
    opacity: 0;
    text-shadow: none;
  }
}

.top_intro {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color_1);
  opacity: 0;
}

.top_intro__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95vw;
  max-width: 900px;
  transform: translate(-50%, -50%);
}

.top_intro__inner .img_1, .top_intro__inner .img_2, .top_intro__inner .img_3, .top_intro__inner .img_4 {
  width: 100%;
  height: auto;
}

.top_intro__inner .img_2, .top_intro__inner .img_3, .top_intro__inner .img_4 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.top_intro__inner .img_2, .top_intro__inner .img_3 {
  transform: translateX(-10%);
}

.top_intro__inner .img_4 {
  transform: translateY(10%);
}

.top_intro__inner .img_i {
  width: 21.11111%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-540deg);
  transition: transform 0.7s ease;
}

body.intro .top_intro {
  opacity: 1;
}

body.intro .top_intro__inner .img_i {
  transition-delay: 0.5s;
  transform: translateX(-50%) rotate(0);
}

body.intro .top_intro__inner .img_2 {
  transition-delay: 1.0s;
  transform: translateX(0);
  opacity: 1;
}

body.intro .top_intro__inner .img_3 {
  transition-delay: 1.4s;
  transform: translateX(0);
  opacity: 1;
}

body.intro .top_intro__inner .img_4 {
  transition-delay: 1.7s;
  transform: translateY(0);
  opacity: 1;
}

.ctg_home #HD .entryBtn {
  display: none;
}

.ctg_home.intro_end .body__inner {
  opacity: 1 !important;
}

.tp_kv {
  position: relative;
  margin-top: -30px;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  .tp_kv {
    margin-top: -20px;
  }
}

@media only screen and (max-width: 980px) {
  .tp_kv {
    margin-top: -10px;
  }
}

.tp_kv__inner {
  position: relative;
  z-index: 0;
}

.tp_kv__inner::after {
  content: '';
  display: block;
  background: url(../img/top/kv_mask.png);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.tp_kv__inner::after, .tp_kv__inner img {
  clip-path: polygon(100% 0, 100% 70%, 85% 95%, 4% 100%, 4% 5%);
}

@media only screen and (max-width: 800px) {
  .tp_kv__inner::after, .tp_kv__inner img {
    clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  }
}

.tp_kv__caption {
  position: absolute;
  width: 100%;
  max-width: 686px;
  top: 8%;
  right: 3%;
}

@media only screen and (max-width: 1400px) {
  .tp_kv__caption {
    width: 50%;
  }
}

.tp_kv__caption p {
  display: none;
}

.tp_kv__caption .img_1, .tp_kv__caption .img_2 {
  position: relative;
}

.tp_kv__caption .img_1 img, .tp_kv__caption .img_2 img {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  transition: all 0.2s ease;
}

.tp_kv__caption .img_1 .img_1_1, .tp_kv__caption .img_1 .img_2_1, .tp_kv__caption .img_2 .img_1_1, .tp_kv__caption .img_2 .img_2_1 {
  position: relative;
  left: auto;
  top: auto;
}

.tp_kv__caption .img_1 .img_1_1, .tp_kv__caption .img_2 .img_1_1 {
  transform: translate(-10%, 0);
}

.tp_kv__caption .img_1 .img_1_2, .tp_kv__caption .img_2 .img_1_2 {
  transform: translate(0, -10%);
}

.tp_kv__caption .img_1 .img_1_3, .tp_kv__caption .img_2 .img_1_3 {
  transform: translate(10%, 0);
}

.tp_kv__caption .img_1 .img_1_4, .tp_kv__caption .img_2 .img_1_4 {
  transform: translate(0, 10%);
}

.tp_kv__caption .img_1 .img_1_5, .tp_kv__caption .img_2 .img_1_5 {
  transform: translate(-10%, 0);
}

.tp_kv__caption .img_1 .img_1_6, .tp_kv__caption .img_2 .img_1_6 {
  transform: translate(0, -10%);
}

.tp_kv__caption .img_1 .img_2_1, .tp_kv__caption .img_2 .img_2_1 {
  transform: translate(-10%, 0);
}

.tp_kv__caption .img_1 .img_2_2, .tp_kv__caption .img_2 .img_2_2 {
  transform: translate(0, -10%);
}

.tp_kv__caption .img_1 .img_2_3, .tp_kv__caption .img_2 .img_2_3 {
  transform: translate(10%, 0);
}

.tp_kv__caption .img_1 .img_2_4, .tp_kv__caption .img_2 .img_2_4 {
  transform: translate(0, 10%);
}

.tp_kv__caption .img_1 .img_2_5, .tp_kv__caption .img_2 .img_2_5 {
  transform: translate(-10%, 0);
}

.tp_kv__caption .img_1 .img_2_6, .tp_kv__caption .img_2 .img_2_6 {
  transform: translate(0, -10%);
}

.tp_kv.anm_on .tp_kv__caption .img_1 img, .tp_kv.anm_on .tp_kv__caption .img_2 img {
  opacity: 1;
  transform: translate(0);
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_1_1, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_1_1 {
  transition-delay: 0.2s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_1_2, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_1_2 {
  transition-delay: 0.3s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_1_3, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_1_3 {
  transition-delay: 0.4s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_1_4, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_1_4 {
  transition-delay: 0.5s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_1_5, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_1_5 {
  transition-delay: 0.6s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_1_6, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_1_6 {
  transition-delay: 0.7s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_2_1, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_2_1 {
  transition-delay: 1.0s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_2_2, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_2_2 {
  transition-delay: 1.0s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_2_3, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_2_3 {
  transition-delay: 1.0s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_2_4, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_2_4 {
  transition-delay: 1.4s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_2_5, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_2_5 {
  transition-delay: 1.4s;
}

.tp_kv.anm_on .tp_kv__caption .img_1 img.img_2_6, .tp_kv.anm_on .tp_kv__caption .img_2 img.img_2_6 {
  transition-delay: 1.4s;
}

.tp_kv__entryBtn {
  position: absolute;
  right: 10px;
  bottom: 70px;
}

@media only screen and (max-width: 1200px) {
  .tp_kv__entryBtn {
    bottom: 8%;
  }
}

@media only screen and (max-width: 800px) {
  .tp_kv__entryBtn {
    display: none;
  }
}

.tp_kv__entryBtn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.tp_kv__entryBtn li {
  margin: 0;
  padding: 0;
}

.tp_kv__entryBtn li + li {
  margin-top: 10px;
  margin-right: 50px;
}

@media only screen and (max-width: 1200px) {
  .tp_kv__entryBtn li + li {
    margin-top: 5px;
    margin-right: 40px;
  }
}

.tp_kv__entryBtn a {
  display: block;
}

.tp_kv__entryBtn img {
  width: 204px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .tp_kv__entryBtn img {
    width: 180px;
  }
}

@media only screen and (max-width: 980px) {
  .tp_kv__entryBtn img {
    width: 150px;
  }
}

.tp_kv__i {
  width: 100%;
  position: absolute;
  top: 36%;
  text-align: center;
}

.tp_kv__i img {
  width: 71.42857%;
}

.tp_kv__text {
  font-size: 24px;
  font-size: 1.5rem;
  position: absolute;
  left: 8%;
  top: 82%;
  right: 22%;
  color: #fff;
  line-height: 1.8;
  font-style: italic;
  user-select: none;
}

@media only screen and (max-width: 1200px) {
  .tp_kv__text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media only screen and (max-width: 980px) {
  .tp_kv__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 800px) {
  .tp_kv__text {
    display: none;
  }
}

.tp_kv__text p {
  opacity: 0;
  display: block;
  margin: 0;
  padding: 0;
  transform: translateX(-10%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.tp_kv__text .swiper-slide-duplicate-active p,
.tp_kv__text .swiper-slide-active p {
  opacity: 1;
  transform: translateX(0);
}

.tpkv_sp {
  display: none;
  margin-top: 1rem;
  padding: 1px 20px;
}

@media only screen and (max-width: 800px) {
  .tpkv_sp {
    display: block;
  }
}

.tpkv_sp__text {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  color: var(--color_2);
  line-height: 1.6;
}

.tpkv_sp__text p {
  margin: 0.5rem 0;
}

@media only screen and (max-width: 640px) {
  .tpkv_sp__text {
    text-align: left;
  }
  .tpkv_sp__text br {
    display: none;
  }
}

.tpkv_sp ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.tpkv_sp ul li a {
  display: block;
}

.tpkv_sp ul li a img {
  width: 100%;
  height: auto;
  max-width: 150px;
}

#TP_newsArea {
  position: relative;
  padding: 10px 50px 0;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  #TP_newsArea {
    padding: 10px 30px;
  }
}

@media only screen and (max-width: 800px) {
  #TP_newsArea {
    padding: 10px 0;
  }
}

#TP_newsArea .tp_newsArea_inner {
  display: flex;
  justify-content: flex-start;
  padding: 17px 0 100px;
  background: url(../img/hogan_2.png);
}

@media only screen and (max-width: 1200px) {
  #TP_newsArea .tp_newsArea_inner {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 980px) {
  #TP_newsArea .tp_newsArea_inner {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 800px) {
  #TP_newsArea .tp_newsArea_inner {
    display: block;
    padding-bottom: 30px;
    background-size: 60px;
  }
}

#TP_newsArea .hashTag {
  padding: 1px 20px;
  width: 50%;
}

@media only screen and (max-width: 800px) {
  #TP_newsArea .hashTag {
    width: auto;
    padding: 0 10px;
  }
}

#TP_newsArea #TP_news {
  flex: 1;
  position: relative;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(30%);
  transition: all 0.8s ease;
}

#TP_newsArea #TP_news.anm_on {
  opacity: 1;
  transform: translateX(0);
}

@media only screen and (max-width: 800px) {
  #TP_newsArea #TP_news {
    margin-top: 20px;
  }
}

#TP_newsArea #TP_news .tp_news__inner {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  width: 50vw;
  min-height: 95px;
  padding: 8px 10px 2px 160px;
  color: #fff;
  background: url(../img/top/tp_news.png) 0 0 no-repeat;
  background-size: auto 100%;
}

@media only screen and (max-width: 800px) {
  #TP_newsArea #TP_news .tp_news__inner {
    display: block;
    position: relative;
    left: auto;
    width: 100%;
    background: none;
    padding: 10px 20px;
    color: var(--color_text);
  }
  #TP_newsArea #TP_news .tp_news__inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 39px;
    margin-bottom: 10px;
    background: url(../img/top/tp_news_sp.png) 0 0 no-repeat;
    background-size: auto 100%;
  }
}

#TP_newsArea #TP_news a {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}

@media only screen and (max-width: 800px) {
  #TP_newsArea #TP_news a {
    color: var(--color_2);
  }
}

#TP_newsArea #TP_news a:hover {
  opacity: 0.7;
}

#TP_newsArea #TP_news .date {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
}

#TP_newsArea #TP_news .text {
  font-size: 18px;
  font-size: 1.325rem;
  margin: 0;
}

.hashTag ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.hashTag li {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  margin: 5px;
}

.hashTag a {
  display: block;
  padding: 8px 25px 10px;
  background-color: #fff;
  color: #2873c6;
  text-decoration: none;
  border-radius: 5rem;
  box-shadow: -4px 4px 0 rgba(103, 155, 183, 0.17);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.hashTag a:hover {
  opacity: 0.8;
  box-shadow: none;
}

.hashTag a::before {
  content: '# ';
}

#TP_bigBtn ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

#TP_bigBtn li {
  width: 50%;
  margin: 0;
  padding: 0;
  background-color: #000;
}

#TP_bigBtn a, #TP_bigBtn span {
  position: relative;
  display: block;
  overflow: hidden;
}

#TP_bigBtn a::after, #TP_bigBtn span::after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: url(../img/top/tp_btn_bc.png);
}

#TP_bigBtn a:hover figure img {
  transform: scale(1.1);
}

#TP_bigBtn span {
  opacity: 0.5;
}

#TP_bigBtn p {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 20px;
  text-align: center;
}

#TP_bigBtn p img {
  width: 100%;
  height: auto;
  max-width: 642px;
}

#TP_bigBtn figure {
  margin: 0;
  padding: 0;
}

#TP_bigBtn figure img {
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: all 0.4s ease;
}

#TP_bizField {
  padding: 50px 30px;
  background: url(../img/top/map_sea.gif);
  overflow: hidden;
}

@media only screen and (max-width: 980px) {
  #TP_bizField {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 640px) {
  #TP_bizField {
    padding: 30px 10px 100px;
  }
}

.tp_bizField {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.tp_bizField__map {
  position: relative;
}

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

.tp_bizField__map .map_icon {
  position: absolute;
  top: 0;
  left: 0;
}

.tp_bizField__list {
  width: 100%;
  max-width: 750px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.tp_bizField__list ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: center;
}

.tp_bizField__list li {
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  width: 33.33333%;
  margin: 0;
  padding: 2% 5%;
  transform: scale(0);
  transition: all 0.5s ease;
}

.tp_bizField__list li:nth-child(2) {
  transition-delay: 0.1s;
}

.tp_bizField__list li:nth-child(3) {
  transition-delay: 0.2s;
}

.tp_bizField__list li:nth-child(4) {
  transition-delay: 0.3s;
}

.tp_bizField__list li:nth-child(5) {
  transition-delay: 0.4s;
}

@media only screen and (max-width: 640px) {
  .tp_bizField__list li {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 2% 2%;
  }
}

@media only screen and (max-width: 400px) {
  .tp_bizField__list li {
    font-size: 16px;
    font-size: 1rem;
  }
}

.tp_bizField__list a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  text-decoration: none;
  width: 100%;
  padding-top: 100%;
  background: #5baee2;
  background: linear-gradient(to right, #5baee2 0%, #d9abcd 100%);
  box-shadow: -7px 7px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease, transform 0.3s ease;
}

.tp_bizField__list a span {
  white-space: nowrap;
}

.tp_bizField__list a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tp_bizField__list a:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: none;
}

.tp_bizField__list a:hover::before {
  opacity: 1;
}

.tp_bizField__list a p {
  margin: 0;
  padding: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.tp_bizField.anm_on .tp_bizField__list li {
  transform: scale(1);
}

.tbf {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #fff;
}

@media only screen and (max-width: 980px) {
  .tbf {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 980px) {
  .tbf {
    padding: 40px 10px;
  }
}

.tbf__title {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  margin: 0 0 1rem;
  padding: 10px;
  color: #fff;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  border-radius: 5rem;
}

.tbf__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px;
  line-height: 1.8;
}

.tbf__link {
  margin: 2rem 0 0;
  text-align: center;
}

.tbf__link p {
  margin: 0;
}

.tbf__link p a {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  padding: 15px 60px 18px;
  text-decoration: none;
  border: 4px solid;
  border-image: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  border-image-slice: 1;
  line-height: 1;
  color: #024d9f;
  background-color: #fff;
}

.tbf__link p a:hover {
  color: #fff;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
}

.tbf figure {
  margin: 3rem 0 0;
  padding: 0;
  text-align: center;
}

.tbf figure img {
  width: 100%;
  height: auto;
  max-width: 600px;
}

#TP_senpai {
  position: relative;
  padding: 100px 0 50px;
}

@media only screen and (max-width: 980px) {
  #TP_senpai {
    padding: 80px 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  #TP_senpai {
    padding: 60px 0 40px;
  }
}

#TP_senpai .swiper {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 640px) {
  #TP_senpai .swiper {
    max-width: 300px;
  }
}

#TP_senpai .swiper::after {
  content: '';
  display: block;
  width: 27%;
  padding-top: 27%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: url(../img/top/slider_did.png) 0 0 no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  line-height: 0;
}

@media only screen and (max-width: 640px) {
  #TP_senpai .swiper::after {
    width: 100%;
    padding-top: 100%;
  }
}

#TP_senpai .swiper-slide {
  padding: 0 3%;
}

@media only screen and (max-width: 640px) {
  #TP_senpai .swiper-slide {
    padding: 0;
  }
}

#TP_senpai .swiper-slide a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #587abd;
}

#TP_senpai .swiper-slide a figure {
  position: relative;
  margin: 0;
  padding: 0;
  filter: grayscale(1);
  transition: all 0.5s ease;
}

#TP_senpai .swiper-slide a figure::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-image: url(../img/top/slider_mask.png);
}

#TP_senpai .swiper-slide a figure img {
  width: 100%;
  height: auto;
}

#TP_senpai .swiper-slide a p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 10px 0 0;
}

#TP_senpai .swiper-slide-active a figure {
  filter: grayscale(0);
}

#TP_senpai .swiper-pagination {
  z-index: 0;
}

#TP_entryBtn {
  padding: 50px 20px;
  background-color: #e4f1f8;
}

#TP_entryBtn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 3%;
  justify-content: center;
}

#TP_entryBtn li {
  margin: 0;
  padding: 0;
}

#TP_entryBtn a {
  display: block;
  transition: opacity 0.2s ease;
}

#TP_entryBtn a:hover {
  opacity: 0.7;
}

#TP_entryBtn a img {
  width: 100%;
  height: auto;
  max-width: 355px;
}

/* HASH TAG */
.htg {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #fff;
}

@media only screen and (max-width: 980px) {
  .htg {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 980px) {
  .htg {
    padding: 40px 10px;
  }
}

.htg__title {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  margin: 0 0 1rem;
  padding: 10px;
  color: #fff;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  border-radius: 5rem;
}

.htg a {
  display: block;
  position: relative;
  padding: 15px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.htg a + a {
  border-top: 1px dotted #a27aff;
}

.htg a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.htg a:hover::before {
  opacity: 0.2;
}

.htg a .a__inner {
  position: relative;
  display: flex;
}

.htg a .a__inner figure {
  margin: 0 15px 0 0;
  padding: 0;
}

.htg a .a__inner figure img {
  width: 150px;
  height: auto;
  border: 1px solid #e0e0e0;
  padding: 2px;
}

@media only screen and (max-width: 640px) {
  .htg a .a__inner figure img {
    width: 100px;
  }
}

.htg a .a__inner .text .title {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  color: #004bad;
}

.htg a .a__inner .text p {
  color: var(--color_text);
}

.mfp-bg {
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  z-index: 10001;
}

.mfp-wrap {
  z-index: 10002;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* ABOUT
/* -------------------------------------------------------------------------*/
.h3_common img, .about_message h3 img {
  width: 100%;
  height: auto;
  max-width: 288px;
}

@media only screen and (max-width: 980px) {
  .h3_common img, .about_message h3 img {
    width: 260px;
  }
}

@media only screen and (max-width: 640px) {
  .h3_common img, .about_message h3 img {
    width: 200px;
  }
}

.pg_title {
  font-size: 45px;
  font-size: 2.8125rem;
  text-align: center;
  margin: 3rem 0;
  color: var(--color_2);
}

@media only screen and (max-width: 980px) {
  .pg_title {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 640px) {
  .pg_title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.pg_title_2 {
  font-size: 45px;
  font-size: 2.8125rem;
  text-align: center;
  margin: 2rem 0;
  font-style: italic;
}

.pg_title_2 h3 {
  position: relative;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 1;
}

.pg_title_2 .marker {
  display: block;
  position: absolute;
  z-index: 0;
  left: -1%;
  bottom: -5px;
  width: 102%;
  height: 16px;
  background-color: rgba(255, 0, 168, 0.1);
}

.pg_title_2 .marker::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 10px;
  height: 15px;
  background-color: rgba(255, 0, 168, 0.1);
}

@media only screen and (max-width: 980px) {
  .pg_title_2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 640px) {
  .pg_title_2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.ctg_about {
  overflow-x: hidden;
}

.about_tpTitle h2 {
  margin: 3px;
  text-align: center;
}

.about_tpTitle h2 img {
  width: 100%;
  height: auto;
  max-width: 920px;
}

.about_message {
  position: relative;
  max-width: 1100px;
  margin: 50px auto 0;
}

.about_message::before {
  content: '';
  display: block;
  width: 110vw;
  height: 200px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  z-index: 0;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
}

.about_message > * {
  position: relative;
}

.about_message h3 {
  margin: 0;
}

.about_message h4 {
  font-size: 45px;
  font-size: 2.8125rem;
  text-align: center;
  margin: 3rem 0;
}

.about_message h4 i {
  white-space: nowrap;
}

.about_message_text_1 {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
}

.about_message_text_1__inner {
  display: inline-block;
  text-align: left;
}

.about_message_text_1 p span {
  display: inline-block;
}

.about_message_text_1 p .img {
  margin: 10px 0;
}

.about_message_text_1 p .img img {
  width: 100%;
  height: auto;
  max-width: 280px;
}

.about_message_pic {
  padding: 1px 0;
}

.about_message_pic figure {
  margin: 3rem 0;
  text-align: center;
}

.about_message_pic figure img {
  width: 100%;
  height: auto;
  max-width: 900px;
}

.about_message_text_2 {
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

.about_message_text_2 p span {
  display: inline-block;
}

.about_message_text_2 p.name {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 2rem;
  text-align: right;
}

@media only screen and (max-width: 980px) {
  .about_message::before {
    height: 150px;
  }
  .about_message h4 {
    font-size: 40px;
    font-size: 2.5rem;
    margin: 2.5rem 0;
  }
  .about_message_text_1 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media only screen and (max-width: 640px) {
  .about_message::before {
    height: 120px;
  }
  .about_message h4 {
    font-size: 35px;
    font-size: 2.1875rem;
    margin: 2rem 0;
  }
}

.about_trainee {
  border: 1px solid #000;
}

.pg_common .cnt__inner {
  position: relative;
}

.pg_common .cnt__inner::before {
  content: '';
  display: block;
  width: 110vw;
  height: 150px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
}

.pg_common .cnt__inner > * {
  position: relative;
}

.pg_common .cnt__inner.noBar::before {
  display: none;
}

.pg_common .pg_cntArea {
  max-width: 1100px;
  margin: 0 auto;
}

.pg_common .pg_cntArea_s {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 980px) {
  .pg_common .cnt__inner::before {
    height: 130px;
    top: 85px;
  }
}

@media only screen and (max-width: 640px) {
  .pg_common .cnt__inner::before {
    height: 100px;
    top: 75px;
  }
}

.pg_trainee {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 40px;
}

.pg_fusenTitle, .trainee_block h3, .wlf__block h3, .pg_fusenTitle_2, .wlf__block h3.wlf__longTitle {
  position: relative;
  text-align: center;
  margin: 0 0 3rem;
}

.pg_fusenTitle img, .trainee_block h3 img, .wlf__block h3 img, .pg_fusenTitle_2 img, .wlf__block h3.wlf__longTitle img {
  position: relative;
  height: auto;
}

.pg_fusenTitle::before, .trainee_block h3::before, .wlf__block h3::before, .pg_fusenTitle_2::before, .wlf__block h3.wlf__longTitle::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 980px) {
  .pg_fusenTitle::before, .trainee_block h3::before, .wlf__block h3::before, .pg_fusenTitle_2::before, .wlf__block h3.wlf__longTitle::before {
    height: 3px;
  }
}

@media only screen and (max-width: 640px) {
  .pg_fusenTitle::before, .trainee_block h3::before, .wlf__block h3::before, .pg_fusenTitle_2::before, .wlf__block h3.wlf__longTitle::before {
    height: 2px;
  }
}

.pg_fusenTitle img, .trainee_block h3 img, .wlf__block h3 img {
  width: 288px;
}

@media only screen and (max-width: 980px) {
  .pg_fusenTitle img, .trainee_block h3 img, .wlf__block h3 img {
    width: 260px;
  }
}

@media only screen and (max-width: 640px) {
  .pg_fusenTitle img, .trainee_block h3 img, .wlf__block h3 img {
    width: 250px;
  }
}

.pg_fusenTitle_2 img, .wlf__block h3.wlf__longTitle img {
  width: 425px;
}

@media only screen and (max-width: 980px) {
  .pg_fusenTitle_2 img, .wlf__block h3.wlf__longTitle img {
    width: 380px;
  }
}

@media only screen and (max-width: 640px) {
  .pg_fusenTitle_2 img, .wlf__block h3.wlf__longTitle img {
    width: 100%;
    max-width: 340px;
  }
}

.trainee_block {
  margin-top: 90px;
  line-height: 1.8;
}

.trainee_block__message {
  font-size: 17px;
  font-size: 1.0625rem;
  color: var(--color_2);
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}

.trainee_block__message::before {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  opacity: 0.1;
}

.trainee_block__message p {
  margin: 0;
}

.trainee_block__message p + p {
  margin-top: 1rem;
}

.trainee_block__schedule {
  max-width: 1000px;
  margin: 0 auto;
}

.trainee_block__schedule .cell {
  position: relative;
  display: flex;
  padding: 15px;
  margin: 10px 0;
}

.trainee_block__schedule .cell::before {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  opacity: 0.1;
}

.trainee_block__schedule .date {
  font-size: 22px;
  font-size: 1.375rem;
  width: 150px;
  position: relative;
  font-weight: bold;
  color: var(--color_2);
  margin: 0;
}

.trainee_block__schedule .date img {
  width: 30px;
  height: auto;
  margin-right: 20px;
}

.trainee_block__schedule .text .title {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 5px 0 0;
  color: var(--color_2);
}

.trainee_block__schedule .text .title + P {
  margin: 0;
}

.trainee_block__kenshu {
  max-width: 1000px;
  margin: 0 auto;
}

.trainee_block__kenshu_box {
  display: flex;
  margin: 30px 0;
  padding: 25px;
  border: 4px solid #a1cdeb;
  background: rgba(255, 255, 255, 0.5);
}

.trainee_block__kenshu_box .text {
  flex: 1;
}

.trainee_block__kenshu_box .text h4 {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  margin: 0;
  padding: 1px 30px 3px;
  background: var(--color_2);
  color: #fff;
  border-radius: 4px;
}

.trainee_block__kenshu_box .fig {
  margin: 0 0 0 10px;
  padding: 0;
}

.trainee_block__env {
  max-width: 1000px;
  margin: 0 auto;
}

.trainee_block__env h4 {
  font-size: 22px;
  font-size: 1.375rem;
  position: relative;
  margin: 0;
  padding: 0 0 10px;
  color: var(--color_2);
}

.trainee_block__env h4::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.4;
}

.trainee_block__env figure {
  display: flex;
  margin: 20px 0 0;
}

.trainee_block__env figure img {
  margin: 0 1px;
  width: 100%;
  height: auto;
}

.trainee_block__env + .trainee_block__env {
  margin-top: 70px;
}

.trainee_block__interview {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

.trainee_block__interview .cell_text {
  flex: 1;
}

.trainee_block__interview .cell_text .year {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 5px;
}

.trainee_block__interview .cell_text h4 {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
}

.trainee_block__interview .cell_text h4::before {
  content: '';
  display: block;
  width: 110%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -5%;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  transform: skew(-15deg);
}

.trainee_block__interview .cell_text h4 span {
  position: relative;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.trainee_block__interview .cell_fig {
  width: 35%;
  margin: 30px 0 0 30px;
}

.trainee_block__interview .cell_fig figure {
  margin: 0;
  padding: 0;
}

.trainee_block__interview .cell_fig img {
  width: 100%;
  height: auto;
}

.trainee_block__interview .cell_fig img + img {
  margin-top: 15px;
}

.trainee_block__interview + .trainee_block__interview {
  margin-top: 80px;
}

@media only screen and (max-width: 980px) {
  .trainee_block__kenshu_box {
    padding: 20px;
  }
  .trainee_block__kenshu_box .fig img {
    width: 250px;
    height: auto;
  }
  .trainee_block__interview {
    display: block;
  }
  .trainee_block__interview .cell_fig {
    width: 100%;
    margin: 20px 0 0;
  }
  .trainee_block__interview .cell_fig figure {
    display: flex;
  }
  .trainee_block__interview .cell_fig figure img {
    margin: 0;
  }
}

@media only screen and (max-width: 640px) {
  .trainee_block__schedule .cell {
    display: block;
  }
  .trainee_block__schedule .date {
    width: auto;
  }
  .trainee_block__kenshu_box {
    display: block;
    padding: 10px;
  }
  .trainee_block__kenshu .fig {
    text-align: center;
    margin: 25px 0 0;
  }
  .trainee_block__kenshu .fig img {
    width: 100%;
    max-width: 350px;
  }
  .trainee_block__env figure {
    display: block;
    margin: 20px 0 0;
    text-align: center;
  }
  .trainee_block__env figure img {
    margin: 5px 0;
    max-width: 350px;
  }
  .trainee_block__interview .cell_fig figure {
    display: block;
    text-align: center;
  }
  .trainee_block__interview .cell_fig figure img {
    max-width: 350px;
    margin: 5px 0;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* DATA
/* -------------------------------------------------------------------------*/
.num_common, .data_box_6 .data_box_6_dv .num, .data_box_7 .data_box_7_cell .num, .data_box_8 .data_box_8_cell_inner .num, .data_box_9 .data_box_9_cell .num, .data_box_10 .num, .data_box_11 .num {
  font-size: 40px;
  font-size: 2.5rem;
  margin: 0;
  line-height: 1;
}

.num_common span, .data_box_6 .data_box_6_dv .num span, .data_box_7 .data_box_7_cell .num span, .data_box_8 .data_box_8_cell_inner .num span, .data_box_9 .data_box_9_cell .num span, .data_box_10 .num span, .data_box_11 .num span {
  font-size: 50px;
  font-size: 3.125rem;
  margin-right: 5px;
  vertical-align: bottom;
}

@media only screen and (max-width: 980px) {
  .num_common, .data_box_6 .data_box_6_dv .num, .data_box_7 .data_box_7_cell .num, .data_box_8 .data_box_8_cell_inner .num, .data_box_9 .data_box_9_cell .num, .data_box_10 .num, .data_box_11 .num {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  .num_common span, .data_box_6 .data_box_6_dv .num span, .data_box_7 .data_box_7_cell .num span, .data_box_8 .data_box_8_cell_inner .num span, .data_box_9 .data_box_9_cell .num span, .data_box_10 .num span, .data_box_11 .num span {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media only screen and (max-width: 640px) {
  .num_common, .data_box_6 .data_box_6_dv .num, .data_box_7 .data_box_7_cell .num, .data_box_8 .data_box_8_cell_inner .num, .data_box_9 .data_box_9_cell .num, .data_box_10 .num, .data_box_11 .num {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .num_common span, .data_box_6 .data_box_6_dv .num span, .data_box_7 .data_box_7_cell .num span, .data_box_8 .data_box_8_cell_inner .num span, .data_box_9 .data_box_9_cell .num span, .data_box_10 .num span, .data_box_11 .num span {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.pg_data {
  max-width: 1100px;
  margin: 0 auto;
}

.data_tpTitle {
  text-align: center;
}

.data_tpTitle h2 {
  margin: 0;
  padding: 0;
}

.data_tpTitle h2 img {
  width: 100%;
  height: auto;
  max-width: 607px;
}

@media only screen and (max-width: 980px) {
  .data_tpTitle h2 img {
    max-width: 450px;
  }
}

@media only screen and (max-width: 640px) {
  .data_tpTitle {
    margin-top: 15px;
  }
  .data_tpTitle h2 img {
    max-width: 350px;
  }
}

.data_block {
  margin-top: 90px;
  color: var(--color_2);
}

.data_block h3 {
  position: relative;
  text-align: center;
  margin: 0 0 3rem;
}

.data_block h3 img {
  position: relative;
  width: 288px;
  height: auto;
}

.data_block h3::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.data_block h4 {
  font-size: 28px;
  font-size: 1.75rem;
  display: inline-block;
  margin: 4rem 0;
  padding: 6px 25px 8px;
  background-color: #ecf7ff;
  color: var(--color_2);
  line-height: 1.3;
  border: 2px solid var(--color_2);
}

.data_block h5 {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  margin: 0;
}

@media only screen and (max-width: 980px) {
  .data_block h3 img {
    width: 260px;
  }
  .data_block h3::before {
    height: 3px;
  }
  .data_block h4 {
    font-size: 25px;
    font-size: 1.5625rem;
    margin: 4rem 0 3rem;
  }
  .data_block h5 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media only screen and (max-width: 640px) {
  .data_block {
    text-align: center;
  }
  .data_block h3 img {
    width: 250px;
  }
  .data_block h3::before {
    height: 2px;
  }
  .data_block h4 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 4rem 0 2rem;
    padding: 4px 15px 6px;
    border-width: 1px;
    min-width: 230px;
  }
  .data_block h5 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.data_box_1 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.data_box_1 h5 {
  margin: 0 20px 0 0;
}

.data_box_1 p {
  margin: 0;
  padding: 0;
}

.data_box_1 p.showa {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
}

.data_box_1 p.showa span {
  font-size: 60px;
  font-size: 3.75rem;
  vertical-align: bottom;
  line-height: 1;
}

.data_box_1 p.year {
  font-weight: bold;
  font-size: 26px;
  font-size: 1.625rem;
}

@media only screen and (max-width: 980px) {
  .data_box_1 p.showa {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  .data_box_1 p.showa span {
    font-size: 55px;
    font-size: 3.4375rem;
  }
  .data_box_1 p.year {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media only screen and (max-width: 640px) {
  .data_box_1 {
    display: block;
    text-align: center;
  }
  .data_box_1 p {
    margin: 10px 0;
  }
  .data_box_1 p.showa {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .data_box_1 p.showa span {
    font-size: 45px;
    font-size: 2.8125rem;
  }
  .data_box_1 p.year {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.data_box_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.data_box_2_cell_1 .number {
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1;
  margin: 10px 0;
  white-space: nowrap;
}

.data_box_2_cell_1 .number span {
  font-size: 50px;
  font-size: 3.125rem;
  vertical-align: text-bottom;
}

.data_box_2_cell_1 .date {
  text-align: center;
  margin: 0;
}

.data_box_2_cell_2 {
  display: flex;
  align-items: flex-end;
  margin-top: 50px;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 2px solid var(--color_2);
}

.data_box_2_cell_2 > figure {
  margin: 0;
  padding: 0;
}

.data_box_2_cell_2 > figure img {
  width: 100%;
  height: auto;
  max-width: 320px;
}

.data_box_2_cell_2 .icons {
  width: 223px;
  margin-left: 30px;
}

.data_box_2_cell_2 .icons > img {
  width: 100%;
  height: auto;
}

.data_box_2_cell_2 .icons figure {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.data_box_2_cell_2 .icons figure img {
  width: 20%;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .data_box_2_cell_1 .number {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .data_box_2_cell_1 .number span {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .data_box_2_cell_2 {
    margin-top: 30px;
    padding-left: 20px;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 640px) {
  .data_box_2 {
    display: block;
    margin-top: 30px;
  }
  .data_box_2_cell_1 {
    text-align: center;
  }
  .data_box_2_cell_2 {
    margin-top: 30px;
    padding-left: 0;
    margin-left: 0;
    border: none;
  }
}

.data_box_3 {
  display: flex;
}

.data_box_3 .data_box_3_cell {
  flex: 1;
  margin-right: 5%;
}

.data_box_3 .data_box_3_cell p {
  white-space: nowrap;
}

.data_box_3 .data_box_3_cell p i {
  font-style: normal;
  line-height: 1;
  vertical-align: bottom;
}

.data_box_3 .data_box_3_cell p.text_1 {
  font-size: 34px;
  font-size: 2.125rem;
  margin: 2rem 0 0;
}

.data_box_3 .data_box_3_cell p.text_1 i {
  font-size: 50px;
  font-size: 3.125rem;
}

.data_box_3 .data_box_3_cell p.text_2 {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 2rem 0 0;
  text-align: right;
}

.data_box_3 .data_box_3_cell p.text_2 i {
  font-size: 40px;
  font-size: 2.5rem;
}

.data_box_3 .data_box_3_map {
  width: 60%;
}

.data_box_3 .data_box_3_map .map_world {
  position: relative;
}

.data_box_3 .data_box_3_map .map_world > img {
  width: 100%;
  height: auto;
  max-width: 660px;
}

.data_box_3 .data_box_3_map ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.data_box_3 .data_box_3_map ul li {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 4.85%;
}

.data_box_3 .data_box_3_map ul li img {
  width: 100%;
  height: auto;
}

.data_box_3 .data_box_3_map ul li:nth-child(1) {
  top: 30.3%;
  right: 12.5%;
}

.data_box_3 .data_box_3_map ul li:nth-child(2) {
  top: 56.5%;
  right: 6%;
}

.data_box_3 .data_box_3_map ul li:nth-child(3) {
  top: 37%;
  left: 37.5%;
}

.data_box_3 .data_box_3_map ul li:nth-child(4) {
  top: 41%;
  left: 35%;
}

.data_box_3 .data_box_3_map ul li:nth-child(5) {
  top: 47%;
  left: 40%;
}

.data_box_3 .data_box_3_map ul li:nth-child(6) {
  top: 47%;
  left: 32%;
}

.data_box_3 .data_box_3_map ul li:nth-child(7) {
  top: 54%;
  left: 32.5%;
}

.data_box_3 .data_box_3_map ul li:nth-child(8) {
  top: 59%;
  left: 38%;
}

.data_box_3 .data_box_3_map ul li:nth-child(9) {
  top: 40%;
  left: 26%;
}

.data_box_3 .data_box_3_map ul li:nth-child(10) {
  top: 35%;
  left: 22.5%;
}

.data_box_3 .data_box_3_map ul li:nth-child(11) {
  top: 27%;
  left: 9%;
}

@media only screen and (max-width: 980px) {
  .data_box_3 .data_box_3_cell p.text_1 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 2rem 0 0;
  }
  .data_box_3 .data_box_3_cell p.text_1 i {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .data_box_3 .data_box_3_cell p.text_2 {
    font-size: 26px;
    font-size: 1.625rem;
    margin: 1rem 0 0;
  }
  .data_box_3 .data_box_3_cell p.text_2 i {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media only screen and (max-width: 640px) {
  .data_box_3 {
    display: block;
  }
  .data_box_3 .data_box_3_cell p {
    text-align: center !important;
  }
  .data_box_3 .data_box_3_map {
    margin-top: 30px;
    width: 100%;
  }
}

@keyframes star_anm {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pin_anm {
  0% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}

.data_box_4 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.data_box_4 .map_japan {
  position: relative;
  max-width: 690px;
  margin: 0 auto;
}

.data_box_4 .map_japan > img {
  width: 100%;
  height: auto;
}

.data_box_4 .map_japan .pin {
  width: 6.5%;
  position: absolute;
  top: 42%;
  left: 43%;
}

.data_box_4 .map_japan .pin img {
  width: 100%;
  height: auto;
  animation: pin_anm 2s linear infinite;
}

.data_box_4 .map_japan ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.data_box_4 .map_japan li {
  margin: 0;
  padding: 0;
  position: absolute;
  width: 4.928%;
}

.data_box_4 .map_japan li img {
  width: 100%;
  height: auto;
  animation: star_anm 5s linear infinite;
}

.data_box_4 .map_japan li:nth-child(1) {
  top: 14%;
  left: 65%;
}

.data_box_4 .map_japan li:nth-child(2) {
  top: 50%;
  left: 60.2%;
}

.data_box_4 .map_japan li:nth-child(3) {
  top: 59%;
  left: 59%;
}

.data_box_4 .map_japan li:nth-child(4) {
  top: 63%;
  left: 48%;
}

.data_box_4 .map_japan li:nth-child(5) {
  top: 60%;
  left: 44%;
}

.data_box_4 .map_japan li:nth-child(6) {
  top: 63%;
  left: 39%;
}

.data_box_4 .map_japan li:nth-child(7) {
  top: 66.5%;
  left: 18%;
}

.data_box_4 .map_japan li:nth-child(8) {
  top: 60%;
  left: 16.6%;
}

.data_box_4 .data_box_4_cell {
  margin-top: 12%;
  margin-left: -8%;
}

.data_box_4 .data_box_4_cell p {
  font-size: 34px;
  font-size: 2.125rem;
  white-space: nowrap;
}

.data_box_4 .data_box_4_cell p i {
  font-size: 50px;
  font-size: 3.125rem;
  font-style: normal;
  line-height: 1;
  vertical-align: bottom;
}

.data_box_4 .data_box_4_cell p.text_1 {
  margin: 2rem 0 0;
}

.data_box_4 .data_box_4_cell p.text_2 {
  margin: 2rem 0 0 2rem;
}

@media only screen and (max-width: 640px) {
  .data_box_4 {
    display: block;
  }
  .data_box_4 .data_box_4_cell {
    margin-top: 0;
  }
  .data_box_4 .data_box_4_cell P {
    font-size: 30px;
    font-size: 1.875rem;
    text-align: center !important;
    margin: 2rem 0 !important;
  }
  .data_box_4 .data_box_4_cell P i {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.data_box_5 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
}

.data_box_5 .data_box_5_cell {
  width: 47.5%;
}

.data_box_5 .data_box_5_cell figure {
  margin: 10px 0;
  padding: 0;
  text-align: center;
}

.data_box_5 .data_box_5_cell figure img {
  width: 100%;
  height: auto;
  max-width: 410px;
}

@media only screen and (max-width: 640px) {
  .data_box_5 {
    display: block;
  }
  .data_box_5 .data_box_5_cell {
    width: auto;
  }
}

.data_box_6 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
}

.data_box_6 .data_box_6_cell {
  flex: 1;
}

.data_box_6 .data_box_6_inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.data_box_6 .data_box_6_inner figure {
  margin: 0 20px 0 0;
  padding: 0;
}

.data_box_6 .data_box_6_inner figure img {
  width: 100%;
  height: auto;
  max-width: 150px;
}

.data_box_6 .data_box_6_dv .year {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0.5rem 0 0;
  text-align: center;
}

.data_box_6 .graph {
  margin: 0;
  padding: 0;
  text-align: center;
}

.data_box_6 .graph img {
  width: 100%;
  height: auto;
  max-width: 315px;
}

.data_box_6 .graph figcaption {
  margin-top: 0.5rem;
  font-size: 18px;
  font-size: 1.125rem;
}

@media only screen and (max-width: 640px) {
  .data_box_6 {
    display: block;
  }
  .data_box_6 .data_box_6_cell h4 {
    margin-top: 0;
  }
  .data_box_6 .data_box_6_cell + .data_box_6_cell {
    margin-top: 60px;
  }
  .data_box_6 .data_box_6_inner {
    display: block;
    text-align: center;
  }
  .data_box_6 .data_box_6_inner figure {
    margin: 10px 0 0;
  }
}

.data_box_7 {
  text-align: center;
}

.data_box_7 .data_box_7_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.data_box_7 .data_box_7_inner figure {
  margin: 0 0 0 30px;
  padding: 0;
}

.data_box_7 .data_box_7_inner figure img {
  width: 100%;
  height: auto;
  max-width: 210px;
}

.data_box_7 .data_box_7_cell .year {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0.5rem 0 0;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  .data_box_7 h4 {
    margin-top: 0;
  }
  .data_box_7 .data_box_7_inner {
    display: block;
  }
  .data_box_7 .data_box_7_inner figure {
    margin: 0 0 20px;
  }
  .data_box_7 .data_box_7_cell .year {
    text-align: center;
  }
}

.data_box_8 {
  display: flex;
}

.data_box_8 .data_box_8_cell {
  flex: 1;
}

.data_box_8 .fig_1, .data_box_8 .fig_2 {
  margin: 0 30px;
  padding: 0;
}

.data_box_8 .fig_1 img, .data_box_8 .fig_2 img {
  width: 100%;
  height: auto;
}

.data_box_8 .data_box_8_cell_inner {
  display: flex;
}

.data_box_8 .data_box_8_cell_inner .year {
  font-size: 18px;
  font-size: 1.125rem;
}

.data_box_8 .data_box_8_cell_inner .text {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0.5rem 0;
}

.data_box_8 .data_box_8_cell_inner .info {
  margin: 0;
}

.data_box_8 .fig_1 img {
  max-width: 73px;
}

.data_box_8 .fig_2 img {
  max-width: 140px;
}

@media only screen and (max-width: 640px) {
  .data_box_8 {
    display: block;
  }
  .data_box_8 .data_box_8_cell_inner {
    display: block;
  }
  .data_box_8 .fig_1, .data_box_8 .fig_2 {
    margin: 0 0 20px;
  }
}

.data_box_9 {
  text-align: center;
}

.data_box_9 .data_box_9_cell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.data_box_9 .data_box_9_cell figure {
  margin: 0 20px;
  padding: 0;
}

.data_box_9 .data_box_9_cell figure img {
  width: 100%;
  height: auto;
  max-width: 230px;
}

.data_box_9 .data_box_9_cell .num i {
  display: inline-block;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .data_box_9 .data_box_9_cell {
    display: block;
  }
  .data_box_9 .data_box_9_cell .num {
    margin: 30px 0;
  }
  .data_box_9 .data_box_9_cell figure img {
    max-width: 170px;
  }
}

.data_box_10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.data_box_10 .data_box_10_cell_1, .data_box_10 .data_box_10_cell_2 {
  display: flex;
}

.data_box_10 .data_box_10_cell_1 figure, .data_box_10 .data_box_10_cell_2 figure {
  margin: 0 30px;
  padding: 0;
}

.data_box_10 .data_box_10_cell_1 figure img, .data_box_10 .data_box_10_cell_2 figure img {
  width: 100%;
  height: auto;
  max-width: 111px;
}

.data_box_10 .data_box_10_cell_1 {
  flex-direction: row-reverse;
}

.data_box_10 .num {
  white-space: nowrap;
}

.data_box_10 h4 {
  margin: 10px 0 20px;
  white-space: nowrap;
}

.data_box_10 .data_box_10_plus {
  font-size: 100px;
  font-size: 6.25rem;
  margin: 0 30px;
}

.data_box_10 .data_box_10_plus p {
  margin: 0;
}

@media only screen and (max-width: 980px) {
  .data_box_10 .data_box_10_cell_1 figure, .data_box_10 .data_box_10_cell_2 figure {
    margin: 0 10px;
  }
  .data_box_10 .data_box_10_cell_1 figure img, .data_box_10 .data_box_10_cell_2 figure img {
    max-width: 80px;
  }
  .data_box_10 .data_box_10_plus {
    font-size: 60px;
    font-size: 3.75rem;
    margin: 0 20px;
  }
}

@media only screen and (max-width: 640px) {
  .data_box_10 {
    display: block;
  }
  .data_box_10 .data_box_10_cell_1, .data_box_10 .data_box_10_cell_2 {
    display: block;
  }
  .data_box_10 .data_box_10_cell_1 figure, .data_box_10 .data_box_10_cell_2 figure {
    margin: 20px 0 0;
  }
  .data_box_10 .data_box_10_plus {
    font-size: 90px;
    font-size: 5.625rem;
    margin: 0;
    line-height: 1;
  }
}

.data_box_11 {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.data_box_11 .data_box_11_cell {
  flex: 1;
}

.data_box_11 .data_box_11_dv {
  display: flex;
  align-items: center;
}

.data_box_11 .data_box_11_dv figure {
  margin: 0 0 0 30px;
  padding: 0;
}

.data_box_11 .data_box_11_dv figure img {
  width: 100%;
  height: auto;
  max-width: 224px;
}

.data_box_11 .info {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 10px;
}

.data_box_11 h4 {
  margin: 10px 0 20px;
}

@media only screen and (max-width: 640px) {
  .data_box_11 {
    display: block;
  }
  .data_box_11 .data_box_11_dv {
    display: block;
    margin-top: 10px;
  }
  .data_box_11 .data_box_11_dv figure {
    margin: 20px 0 0;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* SP MENU
/* -------------------------------------------------------------------------*/
#SPMN_btn {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 4px;
  right: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease;
}

#SPMN_btn span {
  display: block;
  height: 2px;
  background-color: var(--color_2);
  transition: background 0.2s ease;
}

#SPMN_btn span:nth-child(1) {
  margin-top: 2px;
}

#SPMN_btn span:nth-child(2) {
  margin-top: 5px;
}

#SPMN_btn span:nth-child(3) {
  margin-top: 5px;
}

body.spmn_on #SPMN_btn {
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
}

body.spmn_on #SPMN_btn span {
  background-color: #fff;
}

body.intro #SPMN_btn {
  display: none;
}

@media only screen and (max-width: 800px) {
  body.intro_end #SPMN_btn,
  body.ctg_pg #SPMN_btn {
    display: block !important;
  }
}

@media only screen and (max-width: 800px) {
  body.spmn_on {
    overflow: hidden !important;
  }
}

#SPMN_area {
  display: none;
  position: fixed;
  z-index: 1;
  top: 1px;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding: 60px 10px 0;
  background-color: var(--color_1);
  /* -- BTN UNABLED -- */
}

@media only screen and (max-width: 980px) {
  #SPMN_area {
    padding-top: 50px;
  }
}

#SPMN_area > .wrp {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding-bottom: 80px;
}

#SPMN_area .nv {
  padding: 20px 5px;
}

#SPMN_area .nv > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#SPMN_area .nv > ul > li {
  margin: 0;
  padding: 0;
  border: 1px solid #aed0ec;
  border-radius: 3px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
}

#SPMN_area .nv > ul > li + li {
  margin-top: 5px;
}

#SPMN_area .nv > ul > li > a, #SPMN_area .nv > ul > li > span {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  text-decoration: none;
  padding: 10px;
  color: var(--color_2);
}

#SPMN_area .nv > ul > li > span {
  opacity: 0.3;
  user-select: none;
}

#SPMN_area .nv > ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#SPMN_area .nv > ul ul li {
  margin: 0;
  padding: 0;
  border-top: 1px dotted var(--color_2);
}

#SPMN_area .nv > ul ul li a {
  display: block;
  position: relative;
  padding: 10px 10px 10px 30px;
  text-decoration: none;
  color: var(--color_2);
  background-color: #fff;
}

#SPMN_area .nv > ul ul li a::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

#SPMN_area .entryBtn {
  margin-top: 30px;
}

#SPMN_area .entryBtn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#SPMN_area .entryBtn li {
  margin: 0;
  padding: 0;
}

#SPMN_area .entryBtn li a {
  display: block;
}

#SPMN_area .entryBtn li img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

@media only screen and (max-width: 640px) {
  #SPMN_area .entryBtn li img {
    width: 150px;
  }
}

#SPMN_area a[target="_blank"]::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 14px;
  margin-left: 10px;
  background: url(../img/nv_blank_sp.png);
  background-size: 100% auto;
}

@media only screen and (min-width: 801px) {
  #SPMN_area {
    display: none !important;
  }
}

#SPMN_area li.nv_about > a,
#SPMN_area li.nv_interview > a {
  pointer-events: none;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* INTERVIEW
/* -------------------------------------------------------------------------*/
.interview_bar::before {
  content: '';
  display: block;
  width: 110vw;
  height: 290px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  z-index: 0;
  top: 150px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
}

#INTERVIEW_KV {
  position: relative;
  padding: 0 55px;
}

#INTERVIEW_KV h2 {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 54px;
  width: 406px;
}

#INTERVIEW_KV h2 img {
  width: 100%;
  height: auto;
}

#INTERVIEW_KV .loading {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color_2);
}

#INTERVIEW_KV .loading p {
  margin: 0;
  animation: loading_flash 2s linear infinite;
}

body.loaded #INTERVIEW_KV .loading {
  display: none;
}

@media only screen and (max-width: 1200px) {
  #INTERVIEW_KV {
    padding: 0 20px;
  }
  #INTERVIEW_KV h2 {
    left: 20px;
    width: 350px;
  }
}

@media only screen and (max-width: 980px) {
  #INTERVIEW_KV h2 {
    left: 10px;
    width: 300px;
  }
}

@media only screen and (max-width: 800px) {
  #INTERVIEW_KV {
    padding: 0 15px;
  }
  #INTERVIEW_KV h2 {
    width: 250px;
  }
}

@media only screen and (max-width: 640px) {
  #INTERVIEW_KV {
    padding: 0 10px;
  }
  #INTERVIEW_KV h2 {
    left: 5px;
    width: 200px;
  }
}

.interview_kv {
  max-width: 1300px;
  position: relative;
  margin: 0 auto;
  padding: 40px 51px 45px;
  opacity: 0;
}

body.loaded .interview_kv {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.interview_kv__inner {
  padding-bottom: 70px;
  background: url(../img/hogan.png);
}

.interview_kv__inner figure {
  position: relative;
  margin: 50px auto 0;
  padding: 0;
  max-width: 1100px;
}

.interview_kv__inner figure::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 7%, 100% 1%, 100% 96%, 0% 100%);
}

.interview_kv__inner figure img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0% 100%);
}

.interview_kv__text {
  position: absolute;
  top: 50%;
  left: 0;
}

.interview_kv__text .catch {
  font-size: 35px;
  font-size: 2.1875rem;
  color: #fff;
}

.interview_kv__text .catch p {
  margin: 0;
}

.interview_kv__text .catch p + p {
  margin-top: 1rem;
}

.interview_kv__text .catch span {
  position: relative;
  display: inline-block;
  padding: 7px 0 10px;
}

.interview_kv__text .catch span i {
  position: relative;
  font-style: normal;
}

.interview_kv__text .catch span::before {
  content: '';
  display: block;
  width: 110%;
  position: absolute;
  z-index: -0;
  top: 0;
  bottom: 0;
  left: -5%;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  transform: skew(-15deg);
}

.interview_kv__text .name {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #fff;
  margin-top: 2rem;
  font-style: italic;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.interview_kv__text .name p {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 8px 0 10px;
}

.interview_kv__text .name p::before {
  content: '';
  display: block;
  width: 110%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -5%;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  transform: skew(-15deg);
}

.interview_kv__text .name p i {
  position: relative;
}

.interview_kv__text .name p span {
  margin: 0 10px;
}

.interview_kv__btn {
  position: absolute;
  top: 100px;
  right: 0;
}

.interview_kv__btn ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.interview_kv__btn li {
  margin: 0;
  padding: 0;
}

.interview_kv__btn li a {
  display: block;
}

.interview_kv__btn li a img {
  width: 204px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .interview_kv {
    padding: 30px 20px 45px;
  }
  .interview_kv__text .catch {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .interview_kv__text .name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 980px) {
  .interview_kv {
    padding: 20px 10px 45px;
  }
  .interview_kv__inner figure {
    margin-top: 50px;
  }
  .interview_kv__text .catch {
    font-size: 25px;
    font-size: 1.5625rem;
  }
  .interview_kv__text .catch p + p {
    margin-top: 0.5rem;
  }
  .interview_kv__text .name {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

@media only screen and (max-width: 800px) {
  .interview_kv {
    padding: 10px 0 45px;
  }
  .interview_kv__inner figure {
    margin-top: 40px;
  }
  .interview_kv__text {
    top: auto;
    bottom: 0%;
  }
  .interview_kv__text .catch {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .interview_kv__text .name {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 1rem;
  }
  .interview_kv__btn {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .interview_kv {
    padding-bottom: 10px;
  }
  .interview_kv__inner {
    padding-bottom: 10px;
  }
  .interview_kv__text {
    position: relative;
    top: -40px;
    left: auto;
  }
  .interview_kv__text .catch {
    text-align: center;
  }
  .interview_kv__text .name {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
    padding: 0 20px;
  }
  .interview_kv__text .name p {
    display: block;
  }
  .interview_kv__text .name p span {
    display: block;
  }
  .interview_kv__text .name p::before {
    width: 106%;
    left: -3%;
  }
}

.pg_interview {
  max-width: 1100px;
  margin: 0 auto;
}

.pg_interview p {
  line-height: 1.8;
}

.interview_block_1 {
  position: relative;
  display: flex;
  padding: 2rem 0;
}

.interview_block_1__text {
  position: relative;
  flex: 1;
}

.interview_block_1__text h3 {
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0 0 2rem;
  font-style: italic;
}

.interview_block_1__fig {
  width: 45%;
  margin-left: 3%;
}

.interview_block_1__fig figure {
  margin: 0;
  padding: 0;
}

.interview_block_1__fig img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0% 100%);
}

@media only screen and (max-width: 800px) {
  .interview_block_1 {
    display: block;
  }
  .interview_block_1__text h3 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
  .interview_block_1__fig {
    width: auto;
    margin: 0;
  }
}

@media only screen and (max-width: 640px) {
  .interview_block_1__text h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 1rem;
  }
}

.interview_block_2 {
  display: flex;
  flex-direction: row-reverse;
  padding: 3rem 0;
}

.interview_block_2__text {
  flex: 1;
}

.interview_block_2__text h3 {
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0 0 2rem;
  font-style: italic;
}

.interview_block_2__fig {
  width: 45%;
  margin-right: 3%;
}

.interview_block_2__fig figure {
  margin: 0;
  padding: 0;
}

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

@media only screen and (max-width: 800px) {
  .interview_block_2 {
    display: block;
  }
  .interview_block_2__text h3 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
  .interview_block_2__fig {
    width: auto;
    margin: 0;
  }
}

@media only screen and (max-width: 640px) {
  .interview_block_2__text h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 1rem;
  }
}

.interview_block_stepup {
  display: flex;
  position: relative;
  padding: 3rem 0;
}

.interview_block_stepup__cell {
  position: relative;
  flex: 1;
  color: var(--color_2);
}

.interview_block_stepup__cell h3 {
  margin: 0 0 2rem;
}

.interview_block_stepup__cell h3 img {
  width: 211px;
  height: auto;
}

.interview_block_stepup__fig {
  position: relative;
  width: 19%;
  margin-top: 80px;
}

.interview_block_stepup__fig figure {
  position: absolute;
  margin: 0;
  padding: 0;
}

.interview_block_stepup__fig figure.fig_1 {
  top: 0;
  left: 0;
  transform: translateX(-10%);
}

.interview_block_stepup__fig figure.fig_2 {
  top: 0;
  right: 0;
  transform: translate(50%, 40%);
}

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

.interview_block_stepup__list {
  margin-left: 50px;
}

.interview_block_stepup__box {
  display: flex;
  margin-left: 50px;
  padding: 10px 15px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  margin: 3px 0;
}

.interview_block_stepup__box .title {
  font-size: 20px;
  font-size: 1.25rem;
  width: 120px;
  white-space: nowrap;
}

.interview_block_stepup__box .text {
  flex: 1;
}

.interview_block_stepup__box .text p {
  margin: 0;
}

@media only screen and (max-width: 1200px) {
  .interview_block_stepup__list {
    margin-left: 0;
  }
}

@media only screen and (max-width: 980px) {
  .interview_block_stepup__fig {
    position: relative;
    width: 20%;
  }
  .interview_block_stepup__fig figure {
    position: relative;
  }
  .interview_block_stepup__fig figure.fig_1 {
    top: auto;
    left: auto;
    transform: none;
  }
  .interview_block_stepup__fig figure.fig_2 {
    top: auto;
    right: auto;
    transform: none;
  }
}

@media only screen and (max-width: 800px) {
  .interview_block_stepup {
    display: block;
  }
  .interview_block_stepup__cell {
    position: relative;
  }
  .interview_block_stepup__cell h3 img {
    width: 180px;
  }
  .interview_block_stepup__box {
    position: relative;
    z-index: 1;
    display: block;
    margin-left: 0;
    padding-right: 90px;
  }
  .interview_block_stepup__box .title {
    font-size: 18px;
    font-size: 1.125rem;
    width: auto;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(5, 63, 255, 0.3);
  }
  .interview_block_stepup__fig {
    position: absolute;
    z-index: 0;
    top: 150px;
    right: -70px;
    width: 170px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 640px) {
  .interview_block_stepup__cell h3 img {
    width: 150px;
  }
  .interview_block_stepup__box {
    margin-left: -15px;
    padding-right: 80px;
  }
  .interview_block_stepup__fig figure.fig_1 {
    left: -20px;
  }
}

.interview_block_schedule {
  padding: 3rem 0;
}

.interview_block_schedule__title {
  margin-bottom: 2rem;
}

.interview_block_schedule__title h3, .interview_block_schedule__title p {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.interview_block_schedule__title h3 img {
  width: 211px;
  height: auto;
}

.interview_block_schedule__title p img {
  width: 230px;
  height: auto;
}

.interview_block_schedule table {
  border-collapse: separate;
  border-spacing: 0 20px;
}

.interview_block_schedule table th, .interview_block_schedule table td {
  padding: 5px 20px;
  vertical-align: top;
}

.interview_block_schedule table th {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color_2);
  border-right: 2px solid #7ba4cf;
}

.interview_block_schedule table h5 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color_2);
}

.interview_block_schedule table p {
  margin: 0;
}

.interview_block_schedule table p + p {
  margin-top: 1rem;
}

@media only screen and (max-width: 800px) {
  .interview_block_schedule__title h3 img {
    width: 180px;
  }
  .interview_block_schedule__title p img {
    width: 190px;
  }
  .interview_block_schedule table, .interview_block_schedule tbody, .interview_block_schedule tr, .interview_block_schedule th, .interview_block_schedule td {
    display: block;
    text-align: left;
  }
  .interview_block_schedule table {
    margin-left: 10px;
  }
  .interview_block_schedule table th {
    border: none;
  }
  .interview_block_schedule table th::before {
    content: '*';
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
  }
  .interview_block_schedule table td {
    border-top: 1px solid #7ba4cf;
  }
  .interview_block_schedule table th, .interview_block_schedule table td {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 640px) {
  .interview_block_schedule__title h3 img {
    width: 150px;
  }
  .interview_block_schedule__title p img {
    width: 160px;
  }
}

.interview_block_message {
  padding-top: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.interview_block_message h3 {
  margin: 0;
  padding: 0;
  text-align: center;
}

.interview_block_message h3 img {
  width: 100%;
  height: auto;
  max-width: 700px;
}

.interview_block_message__inner {
  display: flex;
  margin-top: 50px;
}

.interview_block_message .text {
  flex: 1;
}

.interview_block_message .did {
  width: 200px;
  margin-left: 40px;
}

.interview_block_message .did figure {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 100%;
  overflow: hidden;
  border: 5px solid #fff;
}

.interview_block_message .did figure::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../../interview/img/did_megane.png) 0 0 no-repeat;
  background-size: 100% auto;
}

.interview_block_message .did img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 640px) {
  .interview_block_message__inner {
    display: block;
  }
  .interview_block_message .did {
    margin: 0 auto;
  }
}

.interview_slider {
  position: relative;
  padding-top: 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 30px;
}

.interview_slider::before {
  content: '';
  display: block;
  width: 110vw;
  height: 290px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  z-index: 0;
  top: -80px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
}

.interview_slider p.title {
  font-size: 20px;
  font-size: 1.25rem;
  position: relative;
  margin: 0;
  color: #fff;
}

.interview_slider p.title img {
  width: 290px;
  height: auto;
  margin-right: 20px;
}

.interview_slider p.title span {
  display: inline-block;
}

.interview_slider #TP_senpai {
  padding-top: 50px;
}

@media only screen and (max-width: 980px) {
  .interview_slider p.title img {
    width: 200px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 640px) {
  .interview_slider p.title img {
    width: 160px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* BS EDIT
/* -------------------------------------------------------------------------*/
.bsed.body-tx {
  line-height: 1.8;
}

.bsed.body-tx .heading {
  font-size: 22px;
  font-size: 1.375rem;
  position: relative;
  margin: 3rem 0 1.5rem;
  padding: 0 0 1rem;
  font-weight: bold;
}

.bsed.body-tx .heading::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.bsed.body-tx .subhead {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  padding: 0 0 0 25px;
  margin: 2rem 0 1rem;
}

.bsed.body-tx .subhead::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 10px;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* PROJECT D
/* -------------------------------------------------------------------------*/
.prD_kv, .prD_kv_s {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 8px;
}

.prD_kv figure, .prD_kv_s figure {
  margin: 0;
  padding: 0;
}

.prD_kv figure img, .prD_kv_s figure img {
  width: 100%;
  height: auto;
}

.prD_kv_caption, .prD_kv_s_caption {
  position: absolute;
  left: 8%;
  bottom: 5%;
}

.prD_kv_caption .episode, .prD_kv_s_caption .episode {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #fff;
  margin-top: 2rem;
  font-style: italic;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.prD_kv_caption .episode p, .prD_kv_s_caption .episode p {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 8px 10px 10px;
}

.prD_kv_caption .episode p::before, .prD_kv_s_caption .episode p::before {
  content: '';
  display: block;
  width: 110%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -5%;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  transform: skew(-15deg);
}

.prD_kv_caption .episode p span, .prD_kv_s_caption .episode p span {
  position: relative;
}

.prD_kv_caption .title, .prD_kv_s_caption .title {
  margin-top: 1rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  line-height: 1;
}

.prD_kv_caption .title .title_1, .prD_kv_s_caption .title .title_1 {
  font-size: 60px;
  font-size: 3.75rem;
  margin: 0;
}

.prD_kv_caption .title .title_2, .prD_kv_s_caption .title .title_2 {
  font-size: 26px;
  font-size: 1.625rem;
}

@media only screen and (max-width: 1200px) {
  .prD_kv_caption .episode, .prD_kv_s_caption .episode {
    font-size: 23px;
    font-size: 1.4375rem;
  }
  .prD_kv_caption .title .title_1, .prD_kv_s_caption .title .title_1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
  .prD_kv_caption .title .title_2, .prD_kv_s_caption .title .title_2 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}

@media only screen and (max-width: 980px) {
  .prD_kv_caption .episode, .prD_kv_s_caption .episode {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .prD_kv_caption .title .title_1, .prD_kv_s_caption .title .title_1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .prD_kv_caption .title .title_2, .prD_kv_s_caption .title .title_2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 800px) {
  .prD_kv_caption, .prD_kv_s_caption {
    position: relative;
    left: auto;
    bottom: auto;
  }
  .prD_kv_caption .title, .prD_kv_s_caption .title {
    color: #333;
    text-shadow: none;
  }
}

@media only screen and (max-width: 640px) {
  .prD_kv_caption .episode, .prD_kv_s_caption .episode {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .prD_kv_caption .title .title_1, .prD_kv_s_caption .title .title_1 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
  .prD_kv_caption .title .title_2, .prD_kv_s_caption .title .title_2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.prD_kv_s_caption {
  left: 35px;
  bottom: 10px;
}

.prD_kv_s_caption .episode {
  font-size: 18px;
  font-size: 1.125rem;
}

.prD_kv_s_caption .title {
  margin-top: 10px;
}

.prD_kv_s_caption .title .title_1 {
  font-size: 40px;
  font-size: 2.5rem;
}

.prD_kv_s_caption .title .title_2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
}

@media only screen and (max-width: 980px) {
  .prD_kv_s_caption .episode {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .prD_kv_s_caption .title .title_1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .prD_kv_s_caption .title .title_2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 800px) {
  .prD_kv_s_caption {
    position: relative;
    left: auto;
    bottom: auto;
  }
  .prD_kv_s_caption .title {
    color: #333;
    text-shadow: none;
  }
}

@media only screen and (max-width: 640px) {
  .prD_kv_s_caption .episode {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .prD_kv_s_caption .title .title_1 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
  .prD_kv_s_caption .title .title_2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.prD_area {
  line-height: 1.8;
  max-width: 1100px;
  margin: 40px auto 0;
}

.prD_people {
  margin-top: 50px;
}

.prD_people__block {
  display: flex;
  padding: 10px 20px;
  margin: 10px 0;
  background-color: rgba(68, 103, 255, 0.07);
}

.prD_people__block figure {
  margin: 0;
  padding: 0;
}

.prD_people__block figure img {
  width: 212px;
  height: auto;
}

.prD_people__block .prD_people__text {
  flex: 1;
  margin-left: 30px;
  margin-top: 10px;
}

.prD_people__block .prD_people__text p {
  margin: 0;
}

.prD_people__block .prD_people__text .charge {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-style: italic;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  line-height: 1;
  display: inline-block;
  position: relative;
  margin: 0 0 5px -10px;
  padding: 6px 10px 8px;
}

.prD_people__block .prD_people__text .charge::before {
  content: '';
  display: block;
  width: 110%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -5%;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  transform: skew(-15deg);
}

.prD_people__block .prD_people__text .charge span {
  position: relative;
}

.prD_people__block .prD_people__text .name {
  font-size: 20px;
  font-size: 1.25rem;
}

.prD_people__block .prD_people__text .subTitle {
  margin-top: 5px;
  color: var(--color_2);
}

@media only screen and (max-width: 980px) {
  .prD_people__block figure img {
    width: 180px;
  }
}

@media only screen and (max-width: 800px) {
  .prD_people__block figure img {
    width: 140px;
  }
}

@media only screen and (max-width: 640px) {
  .prD_people__block {
    display: block;
  }
  .prD_people__block figure {
    text-align: center;
  }
  .prD_people__block figure img {
    width: 180px;
  }
  .prD_people__block .prD_people__text {
    text-align: center;
    margin-left: 0;
  }
  .prD_people__block .prD_people__text .charge {
    display: block;
    font-style: normal;
    background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
    margin-left: 0;
  }
  .prD_people__block .prD_people__text .charge::before {
    display: none;
  }
}

.prD_btn {
  font-size: 26px;
  font-size: 1.625rem;
  margin: 80px 0;
  text-align: center;
}

.prD_btn p {
  margin: 0;
  padding: 0;
}

.prD_btn a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 20px 50px 24px;
  color: var(--color_2);
  border: 2px solid var(--color_2);
  border-radius: 5rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  overflow: hidden;
}

.prD_btn a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.prD_btn a span {
  position: relative;
}

.prD_btn a:hover {
  box-shadow: none;
  color: #fff;
}

.prD_btn a:hover::before {
  opacity: 1;
}

@media only screen and (max-width: 980px) {
  .prD_btn {
    margin: 60px 0;
  }
}

@media only screen and (max-width: 640px) {
  .prD_btn {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 40px 0;
  }
}

.prD_nv {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 70px;
  text-align: center;
  line-height: 1.5;
  transform: skewX(-6deg);
}

.prD_nv ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}

.prD_nv li {
  flex: auto;
  margin: 0;
  padding: 0;
}

.prD_nv li a {
  display: block;
  position: relative;
  padding: 8px 10px 10px;
  color: #fff;
  background: linear-gradient(to right, #8280b6 0%, #024d9f 100%);
  text-decoration: none;
  opacity: 0.6;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease;
}

.prD_nv li a:hover {
  opacity: 1;
}

.prD_nv li a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.prD_nv li.in a {
  opacity: 1;
  box-shadow: none;
  transform: translateY(-15%);
}

.prD_nv li.in a::before {
  display: none;
}

@media only screen and (max-width: 980px) {
  .prD_nv {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 640px) {
  .prD_nv {
    margin-top: 50px;
    transform: skewX(0);
  }
  .prD_nv ul {
    display: block;
  }
  .prD_nv li {
    margin: 2px 0;
  }
  .prD_nv li.in a {
    transform: translateY(0);
  }
}

.prD_chapterTitle {
  display: flex;
  margin-top: 80px;
  padding: 30px;
  background-color: rgba(68, 103, 255, 0.07);
}

.prD_chapterTitle__cell {
  flex: 1;
}

.prD_chapterTitle__title {
  color: #024d9f;
}

.prD_chapterTitle__title p {
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 8px 10px 10px;
  line-height: 1;
}

.prD_chapterTitle__title p::before {
  content: '';
  display: block;
  width: 110%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -5%;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  transform: skew(-15deg);
  opacity: 0.8;
}

.prD_chapterTitle__title p span {
  position: relative;
}

.prD_chapterTitle__title h3 {
  font-size: 30px;
  font-size: 1.875rem;
  position: relative;
  margin: 5px 0 0;
  padding: 10px 0;
  line-height: 1.7;
}

.prD_chapterTitle__title h3 span {
  border-bottom: 2px dotted;
}

.prD_chapterTitle figure {
  margin: 0 0 0 20px;
  padding: 0;
  width: 330px;
}

.prD_chapterTitle figure img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .prD_chapterTitle figure {
    width: 250px;
  }
}

@media only screen and (max-width: 800px) {
  .prD_chapterTitle {
    display: block;
    padding: 20px;
  }
  .prD_chapterTitle figure {
    margin: 0 auto;
  }
  .prD_chapterTitle__title p {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .prD_chapterTitle__title h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.prD_chapter_cnt {
  margin-top: 50px;
  overflow: hidden;
}

.prD_chapter_cnt p {
  margin: 0;
}

.prD_chapter_cnt p + P {
  margin-top: 20px;
}

.prD_chapter_cnt hr {
  clear: both;
  height: 0;
  border: none;
  opacity: 0;
}

.prD_imgR, .prD_imgL {
  width: 400px;
  padding: 0;
}

.prD_imgR img, .prD_imgL img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .prD_imgR, .prD_imgL {
    width: 300px;
  }
}

@media only screen and (max-width: 800px) {
  .prD_imgR, .prD_imgL {
    float: none !important;
    width: 100%;
    text-align: center;
  }
  .prD_imgR img, .prD_imgL img {
    max-width: 350px;
  }
}

.prD_imgR {
  margin: 10px 0 20px 20px;
  float: right;
}

.prD_imgL {
  margin: 10px 20px 20px 0;
  float: left;
}

.prD_imgTOP {
  margin-top: 25px;
}

.prD_chapter_v {
  display: flex;
  margin: 25px 0;
}

.prD_chapter_v > figure {
  margin: 5px 0 0;
  padding: 0;
}

.prD_chapter_v > figure img {
  width: 60px;
  height: auto;
}

.prD_chapter_v > figure figcaption {
  font-weight: bold;
  text-align: center;
}

.prD_chapter_v > div {
  flex: 1;
  margin-left: 20px;
}

.prD_chapter_v > div p {
  margin: 0;
}

.prD_chapter_v > div p + p {
  margin-top: 1rem;
}

@media only screen and (max-width: 980px) {
  .prD_chapter_v > figure img {
    width: 50px;
  }
}

@media only screen and (max-width: 800px) {
  .prD_chapter_v > figure img {
    width: 40px;
  }
}

.prD_chapter_end {
  text-align: center;
  padding: 0;
  margin: 50px 0;
  text-align: center;
}

.prD_chapter_end img {
  width: 100%;
  height: auto;
  max-width: 1000px;
}

.prD_hr {
  display: block;
  margin-top: 100px;
  height: 1px;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* WELFARE
/* -------------------------------------------------------------------------*/
.wlf_bar {
  position: relative;
}

.wlf_bar > * {
  position: relative;
}

.wlf_bar::before {
  content: '';
  display: block;
  width: 110vw;
  height: 290px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  position: absolute;
  z-index: 0;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
}

.wlf__area {
  line-height: 1.8;
}

.wlf__tpCaption {
  font-size: 18px;
  font-size: 1.125rem;
}

.wlf__block {
  margin-top: 90px;
}

.wlf__block + .wlf__block {
  margin-top: 150px;
}

.wlf__figBlock {
  display: flex;
}

.wlf__figBlock .wlf__fb_text {
  flex: 1;
}

.wlf__figBlock .wlf__fb_text p {
  margin: 0;
}

.wlf__figBlock .wlf__fb_text p + P {
  margin-top: 1rem;
}

.wlf__figBlock .wlf__fb_fig {
  width: 350px;
  margin-left: 30px;
}

.wlf__figBlock .wlf__fb_fig figure {
  margin: 0;
  padding: 0;
}

.wlf__figBlock .wlf__fb_fig img {
  width: 100%;
  height: auto;
}

.wlf__psnBlock_1, .wlf__psnBlock_2 {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 50px auto 0;
}

.wlf__psnBlock_1 figure, .wlf__psnBlock_2 figure {
  width: 220px;
  margin: 0;
  padding: 0;
  border-radius: 100%;
  overflow: hidden;
  border: 8px solid #fff;
}

.wlf__psnBlock_1 figure img, .wlf__psnBlock_2 figure img {
  width: 100%;
  height: auto;
}

.wlf__psnBlock_1 .wlf__psnBlock_text, .wlf__psnBlock_2 .wlf__psnBlock_text {
  position: relative;
  flex: 1;
  padding: 30px;
  background: linear-gradient(to right, #c5e9ff 0%, #f6def0 100%);
  border-radius: 20px;
  border: 3px solid #fff;
}

.wlf__psnBlock_1 .wlf__psnBlock_text p, .wlf__psnBlock_2 .wlf__psnBlock_text p {
  margin: 0;
}

.wlf__psnBlock_1 .wlf__psnBlock_text p + p, .wlf__psnBlock_2 .wlf__psnBlock_text p + p {
  margin-top: 1rem;
}

.wlf__psnBlock_1 .wlf__psnBlock_text::after, .wlf__psnBlock_2 .wlf__psnBlock_text::after {
  content: '';
  width: 33px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
}

.wlf__psnBlock_1 {
  flex-direction: row-reverse;
}

.wlf__psnBlock_1 .wlf__psnBlock_text {
  margin-right: 40px;
}

.wlf__psnBlock_1 .wlf__psnBlock_text::after {
  background-image: url(../img/psn_fkds_1.png);
  right: 0;
  transform: translate(100%, -50%);
}

.wlf__psnBlock_2 .wlf__psnBlock_text {
  margin-left: 40px;
}

.wlf__psnBlock_2 .wlf__psnBlock_text::after {
  background-image: url(../img/psn_fkds_2.png);
  left: 0;
  transform: translate(-100%, -50%);
}

@media only screen and (max-width: 980px) {
  .wlf__figBlock .wlf__fb_fig {
    width: 280px;
    margin-left: 20px;
  }
  .wlf__psnBlock_1 figure, .wlf__psnBlock_2 figure {
    width: 180px;
    border: 6px solid #fff;
  }
  .wlf__psnBlock_1 .wlf__psnBlock_text, .wlf__psnBlock_2 .wlf__psnBlock_text {
    padding: 20px;
    border: 3px solid #fff;
  }
  .wlf__psnBlock_1 .wlf__psnBlock_text::after, .wlf__psnBlock_2 .wlf__psnBlock_text::after {
    width: 28px;
    height: 24px;
  }
  .wlf__psnBlock_1 .wlf__psnBlock_text {
    margin-right: 30px;
  }
  .wlf__psnBlock_2 .wlf__psnBlock_text {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 640px) {
  .wlf__block {
    margin-top: 60px;
  }
  .wlf__block + .wlf__block {
    margin-top: 80px;
  }
  .wlf__figBlock {
    display: block;
    border-bottom: 1px dotted var(--color_2);
    padding-bottom: 10px;
  }
  .wlf__figBlock .wlf__fb_fig {
    width: 300px;
    margin: 30px auto;
  }
  .wlf__psnBlock_1, .wlf__psnBlock_2 {
    display: block;
  }
  .wlf__psnBlock_1 figure, .wlf__psnBlock_2 figure {
    margin: 0 auto 10px;
  }
  .wlf__psnBlock_1 .wlf__psnBlock_text, .wlf__psnBlock_2 .wlf__psnBlock_text {
    margin: 0;
  }
  .wlf__psnBlock_1 .wlf__psnBlock_text::after, .wlf__psnBlock_2 .wlf__psnBlock_text::after {
    display: none;
  }
}

.did_linkBtn {
  font-size: 24px;
  font-size: 1.5rem;
  max-width: 980px;
  margin: 70px auto;
  font-style: italic;
  text-align: center;
}

.did_linkBtn ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.did_linkBtn li {
  margin: 0;
  padding: 0;
  width: 49%;
}

.did_linkBtn a {
  display: block;
  position: relative;
  padding: 20px 50px 20px 10px;
  text-decoration: none;
  color: var(--color_text);
  background-color: #fff;
  border: 3px solid #7accff;
  border-radius: 5px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease;
}

.did_linkBtn a:hover {
  background-color: #c7eaff;
  box-shadow: none;
}

.did_linkBtn a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  width: 40px;
  height: 32px;
  background: url(../img/btn_icon.png) 0 0 no-repeat;
  background-size: 100% auto;
}

.did_linkBtn a::after {
  content: '';
  display: block;
  width: 22px;
  height: 17px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/link_arw.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.did_linkBtn a[target="_blank"]::after {
  background-image: url(../img/link_blank.png);
}

@media only screen and (max-width: 980px) {
  .did_linkBtn {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .did_linkBtn a::before {
    margin-right: 10px;
    width: 30px;
    height: 24px;
  }
}

@media only screen and (max-width: 800px) {
  .did_linkBtn {
    margin: 50px auto;
  }
  .did_linkBtn ul {
    display: block;
  }
  .did_linkBtn li {
    width: 100%;
    margin: 15px 0;
  }
  .did_linkBtn a {
    padding: 15px 40px 15px 10px;
    border-width: 2px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* NEWS RELEASE
/* -------------------------------------------------------------------------*/
.news__area {
  margin-top: -130px;
  padding: 120px 35px 90px;
  background: linear-gradient(to right, #82c4ed 0%, #eac3de 100%);
  line-height: 1.8;
}

.news__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news__inner h4 {
  margin: 0 0 50px;
  text-align: center;
}

.news__inner h4 img {
  width: 100%;
  height: auto;
  max-width: 345px;
}

.news__box {
  display: flex;
  width: 100%;
  margin: 5px 0;
  border-radius: 3px;
  overflow: hidden;
}

.news__date {
  margin: 0;
  padding: 15px 10px 15px 30px;
  width: 150px;
  background-color: rgba(255, 255, 255, 0.75);
  font-weight: bold;
}

.news__text {
  flex: 1;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.6);
}

.news__text p {
  margin: 0;
}

.news__text p + p {
  margin-top: 1rem;
}

@media only screen and (max-width: 1200px) {
  .news__area {
    margin-top: -40px;
    padding-top: 100px;
  }
}

@media only screen and (max-width: 980px) {
  .news__area {
    padding: 90px 20px 60px;
  }
  .news__inner h4 {
    margin-bottom: 40px;
  }
  .news__inner h4 img {
    max-width: 250px;
  }
  .news__date {
    width: 130px;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 640px) {
  .news__area {
    padding: 90px 15px 40px;
  }
  .news__inner h4 {
    margin-bottom: 30px;
  }
  .news__inner h4 img {
    max-width: 200px;
  }
  .news__box {
    display: block;
  }
  .news__date {
    width: 100%;
    padding: 5px 20px;
  }
}

/* -------------------------------------------------------------------------*/
