@charset "utf-8";

:root{
  --white: #f5f5f5;
  --black: #222222;
  --darkblue: #002d74;
  --darkblue_border: #5b6d8c;
  --darkblue_hover-d: #4d6895;
  --darkblue_hover-l: #0082ca;
  --gray: #e0e0e0;
  --gray_border: #ccc;
  --white_hover: #aebcd4;
}

/* ------------------ メイン */
.main_content {
  padding-bottom: 100px;
}

/* ------------------ 記事一覧 */
.content_keyword {
  background: var(--gray);
}
.content_keyword_box {
  width: 1100px;
  margin: 80px auto 0px;
  padding: 20px 0px 25px;
}
.content_keyword h2 {
  margin-bottom: 15px;
}
.content_keyword h2 p {
  text-align: center;
  color: var(--darkblue);
  font-weight: bold;
  font-size: 120%;
}
.content_keyword .category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}
.content_keyword .category_list li a {
  text-decoration: none;
  padding: 2px 15px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  color: var(--darkblue);
  border-radius: 20px;
  transition: 0.3s;
}
.content_keyword .category_list li a:hover,
.content_keyword .category_list li a.current {
  background: var(--darkblue);
  color: var(--white);
  border: 1px solid var(--darkblue);
}
.content_keyword .tag_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  font-size: 80%;
}
.content_keyword .tag_list li a {
  text-decoration: none;
  padding: 2px 15px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  color: var(--darkblue);
  border-radius: 20px;
  transition: 0.3s;
}
.content_keyword .tag_list li a:hover,
.content_keyword .tag_list li a.current {
  background: var(--darkblue);
  color: var(--white);
  border: 1px solid var(--darkblue);
}

/* カテゴリーカラーはbase.css */

.current_tag {
  margin-top: 20px;
}

.content_list {
  margin-top: 40px;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.content_list h2 {
  min-height: 100px;
  position: relative;
  border-bottom: 2px solid var(--darkblue);
}
.content_list h2.h2_a {
  background: url(../img/h2_a_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2.h2_s {
  background: url(../img/h2_s_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2.h2_n {
  background: url(../img/h2_n_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2.h2_c {
  background: url(../img/h2_c_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2.h2_t {
  background: url(../img/h2_t_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2.h2_d {
  background: url(../img/h2_d_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2.h2_b {
  background: url(../img/h2_b_bg.svg) no-repeat left bottom;
  background-size: auto 100px;
}
.content_list h2 p {
  position: absolute;
  left: 130px;
  bottom: 10px;
  color: var(--darkblue);
  font-weight: bold;
  font-size: 150%;
}
.content_list h2 span {
  position: absolute;
  left: 160px;
  bottom: 0px;
  color: rgb(221, 221, 221);
  font-weight: bold;
  font-size: 350%;
}

.new_list {
  margin-top: 30px;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0% 2%;
  align-items: stretch;
}

.new_list .new_content {
  width: 32%;
  margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    xflex-wrap: wrap;
    gap: 15px;
}
/*画像とタイトルをflexで設定するため、クラス追加 (s)*/
.new_content_main{
    display: flex;
    flex-direction: column;
}

.new_content_main a {
  display: block;
  text-decoration: none;
}

/*paddingで調整していた画像サイズ？をaspect-ratioに置き換え（比率で指示） (s)*/
.new_list .new_content_main a .new_content_img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}
/*「NEW」表示 (s)*/
.new_active{
    position: relative;
    &:before{
        content: "";
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        background: url(/segaway/img/new.png);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        margin: auto;
        z-index: 999;
    }
}

.new_list .new_content_main a .new_content_img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}
.new_list .new_content_main a .new_content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}
.new_list .new_content_main a:hover .new_content_img img {
  transform: scale(1.05);
}
.new_imgT {
  z-index: 1;
}
.new_imgB {
  z-index: 2;
  opacity: 0;
}
/*.new_content_mainで追加したflex子要素に、flexgrow（可変）を追加 (s)*/
.new_list .new_content_main a .new_content_title {
  display: block;
  font-size: 110%;
  font-weight: bold;
  margin-top: 15px;
  color: transparent;
  background: linear-gradient(to right, var(--darkblue_hover-l) 50%, var(--darkblue) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
  flex-grow: 1;
}

.new_list .new_content_main a:hover .new_content_title {
  background-position: 0 100%;
}

.new_list .new_content .new_content_add {
  width: 100%;
  border-top: 1px solid var(--gray_border);
  padding-top: 5px;
    margin-top: auto; /* flexbox用 */
}
.new_list .new_content_add .new_content_date,
.new_list .new_content_add .new_content_category {
  font-size: 80%;
}
.new_list .new_content_add .new_content_category a {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 3px;
}
.new_list .new_content_add .new_content_date::before {
  content: '';
  background: url("../img/clock.svg") no-repeat left;
  display: inline-block;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right:3px;
  vertical-align: underline;
}
.new_list .new_content_add .new_content_category span.cate {
  display: inline-block;
  color: var(--white);
  padding: 1px 10px;
  transform: skewX(-15deg); /* 全体を斜めに傾ける */
}

/* カテゴリーカラーはbase.css */

.new_list .new_content_add .new_content_category span.tag {
  display: inline-block;
  color: var(--darkblue);
  padding: 0px 9px;
  border: 1px solid;
  transform: skewX(-15deg); /* 全体を斜めに傾ける */
}
.new_list .new_content_add .new_content_category span p {
  transform: skewX(15deg); /* 斜め戻す */
}

.pagination {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.pagination button {
  cursor: pointer;
  background: var(--darkblue);
  color: var(--white);
  border: none;
  margin: 0px 3px;
  padding: 7px 10px 5px;
  border-radius: 50%;
  transition: 0.2s;
}
.pagination button:hover {
  background: var(--darkblue_hover-d);
}
.pagination button.current {
  background: var(--darkblue_hover-l);
}

/* ------------------ 個別記事 */
.content_title {
  margin-top: 30px;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  overflow: hidden;
}
.content_title h2 {
  min-height: 100px;
  position: relative;
  border-bottom: 2px solid var(--darkblue);
  display: flex;
  align-items: flex-end;
  background: url(../img/h2_articles.svg) no-repeat left bottom;
  background-size: auto 80px;
}

.content_title h2 p {
  padding-left: 50px;
  padding-bottom: 10px;
  box-sizing: border-box;
  color: var(--darkblue);
  font-weight: bold;
  font-size: 180%;
  line-height: 1.4;
}
.content_title h2 span {
  position: absolute;
  right: 0px;
  bottom: 0px;
  color: rgb(221, 221, 221);
  font-weight: bold;
  font-size: 350%;
  z-index: -1;
}
.content_date {
  font-size: 80%;
  margin-top: 20px;
  xfloat: right;
  text-align: right;
}
.content_date::before {
  content: '';
  background: url("../img/clock.svg") no-repeat left;
  display: inline-block;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right:3px;
  vertical-align: underline;
}
.content_category {
  font-size: 80%;
  margin-top: 20px;
  margin-left: 4px;
  float: left;
}
.content_category a {
  display: inline-block;
  margin-bottom: 3px;
}
.content_category span.cate {
  display: inline-block;
  color: var(--white);
  padding: 1px 10px;
  transform: skewX(-15deg); /* 全体を斜めに傾ける */
}
.content_category span.tag {
  display: inline-block;
  color: var(--darkblue);
  padding: 0px 9px;
  border: 1px solid;
  transform: skewX(-15deg); /* 全体を斜めに傾ける */
}
.content_category span p {
  transform: skewX(15deg); /* 斜め戻す */
}

.kv_bg {
  Width: 100%;
  margin-top: 20px;
}
.kv_box {
  width: 1200px;
  height: 530px;
  margin: 0 auto 0px;
  border-radius: 10px;
  overflow: hidden;
}
.kv_box img {
  width: 100%;
  height: auto;
}

.kv_movie_box {
  width: 1200px;
  margin: 0 auto 0px;
  border-radius: 10px;
	overflow: hidden;
}

.movie {
  position: relative;
  float: right;
  margin-left: 30px;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.content_lead {
  display: block;
  clear: both;
  width: 850px;
  padding-top: 30px;
  margin: 0px auto 0px;
}
.index {
  margin: 30px 0px;
  padding: 30px 0px;
  background: var(--gray);
}
.index_box {
  width: 850px;
  margin: 0 auto;
}
.index h3 {
  height: 30px;
  margin-bottom: 30px;
}
.index h3 img {
  height: 30px;
  width: auto;
}
.index ul li {
  font-weight: bold;
  font-size: 105%;
  text-indent: -2em;
  padding-left: 2em;
  margin-bottom: 5px;
}
.index ul li a {
  display: inline-block;
  padding-left: 2em;
  margin-right: -2em;
  text-decoration: none;
  color: var(--darkblue);
  color: transparent;
  background: linear-gradient(to right, var(--darkblue_hover-l) 50%, var(--darkblue) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
  overflow: visible;
}
.index ul li a:hover {
  background-position: 0 100%;
}

.content_txt {
  display: block;
  clear: both;
  width: 850px;
  padding-top: 30px;
  margin: 0px auto 0px;
}
.content_txt_mt60 {
  display: block;
  clear: both;
  width: 850px;
  padding-top: 60px;
  margin: 0px auto 0px;
}
h3 {
  min-height: 36px;
  color: var(--darkblue);
  font-weight: bold;
  font-size: 160%;
  margin-bottom: 25px;
}
.content_h3_line {
  width: 1200px;
  margin: 50px auto 0;
}
.h3_line {
  width: 100%;
  height: 60px;
  border-bottom: 2px solid var(--darkblue);
}
#h3_01 {
  background: url(../img/no_01.svg) right no-repeat;
  background-size: contain;
}
#h3_02 {
  background: url(../img/no_02.svg) right no-repeat;
  background-size: contain;
}
#h3_03 {
  background: url(../img/no_03.svg) right no-repeat;
  background-size: contain;
}
#h3_04 {
  background: url(../img/no_04.svg) right no-repeat;
  background-size: contain;
}
#h3_05 {
  background: url(../img/no_05.svg) right no-repeat;
  background-size: contain;
}
#h3_06 {
  background: url(../img/no_06.svg) right no-repeat;
  background-size: contain;
}
#h3_07 {
  background: url(../img/no_07.svg) right no-repeat;
  background-size: contain;
}
#h3_08 {
  background: url(../img/no_08.svg) right no-repeat;
  background-size: contain;
}
#h3_09 {
  background: url(../img/no_09.svg) right no-repeat;
  background-size: contain;
}
#h3_10 {
  background: url(../img/no_10.svg) right no-repeat;
  background-size: contain;
}

h4 {
  position: relative;
  line-height: 1.4;
  padding:0.25em 1em;
  display: inline-block;
  top:0;
  margin: 20px 0 20px;
  font-size: 120%;
  font-weight: bold;
  color: var(--darkblue);
}
h4.h4_top0 {
  margin: 0px 0 20px;
}

h4:before, h4:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
h4:before {
  border-left: solid 1px var(--darkblue);
  border-top: solid 1px var(--darkblue);
  border-bottom: solid 1px var(--darkblue);
  left: 0;
}
h4:after {
  content: '';
  border-top: solid 1px var(--darkblue);
  border-right: solid 1px var(--darkblue);
  border-bottom: solid 1px var(--darkblue);
  right: 0;
}

.content_lead p,
.content_txt p,
.content_txt_mt60 p,
.content_txt .base_li
.content_txt .atten_li {
  margin-bottom: 15px;
}

.txt_right {
  text-align: right;
}

/* 複数行にまたがる可能性があるlinkアンダーライン */
.content_txt p a,
.content_txt_mt60 p a,
.content_txt .base_li a,
.content_txt .atten_li a {
  color: var(--darkblue);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.3s;
}
.content_txt p a:hover,
.content_txt_mt60 p a:hover,
.content_txt .base_li a:hover,
.content_txt .atten_li a:hover {
  text-decoration-color: var(--darkblue);
}


.gray_box {
  background: var(--gray);
  padding: 30px 40px;
  box-sizing: border-box;
}
.prof_box {
  clear: both;
  overflow: hidden;
}
.prof_img {
  float: left;
  margin-right: 30px;
  width: 200px;
}
.prof_img img {
  width: 100%;
  height: auto;
}
.gray_box .img1_box,
.gray_box .img2_box {
  margin-bottom: 20px;
}
.content_img_big {
  width: 1200px;
  padding-top: 30px;
  margin: 0px auto 0px;
}
.content_img_small {
  width: 850px;
  padding-top: 30px;
  margin: 0px auto 0px;
}

.img1_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0% 2%;
}
.img1_box div {
  width: 100%;
}
.img1_box div a {
  display: block;
  overflow: hidden;
}
.img1_box div a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.img1_box div a:hover img {
  scale: 105%;
}

.img1_box_flex {
  margin: 0 auto;
}
.img1_box_flex div {
  width: 100%;
}
.img1_box_flex div a {
  display: block;
  overflow: hidden;
}
.img1_box_flex div a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.img1_box_flex div a:hover img {
  scale: 105%;
}

.img2_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0% 2%;
}
.img2_box div {
  width: 49%;
}
.img2_box div a {
  display: block;
  overflow: hidden;
}
.img2_box div a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.img2_box div a:hover img {
  scale: 105%;
}

.img1_box div img,
.img1_box_flex div img,
.img2_box div img {
  width: 100%;
  height: auto;
}

.content_movie_big {
  width: 1200px;
  padding-top: 30px;
  margin: 0px auto 0px;
}
.content_movie_small {
  width: 850px;
  padding-top: 30px;
  margin: 0px auto 0px;
}
.content_movie_big::after,
.content_movie_small::after {
  display: block;
  content:"";
  clear: both;
  overflow: hidden;
}

.content_img_scroll {
  margin-top: 30px;
  background: var(--gray);
  padding-top: 30px;
  padding-bottom: 30px;
}
.content_img_scroll_box {
  position: relative;
  overflow: hidden;
}
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--darkblue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 150%;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.25s ease;
  }
  .prev { left: -30px; }
  .next { right: -30px; }
  .scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
  }
.img_scroll_box {
  width: 1200px;
  margin: 0px auto;
  display: flex;
  column-gap: 10px;
  overflow-x: auto;
  scroll-behavior: auto; /* GSAPで制御 */
  -webkit-overflow-scrolling: touch; /* iOSでの慣性スクロールを滑らかにする */
  touch-action: pan-x;
  scroll-snap-type: x mandatory; /* スクロール位置を綺麗に止める場合 */
  scrollbar-width: none; /* スクロールバー非表示 */
}
.img_scroll_box::-webkit-scrollbar {
    display: none;
  }
.img_scroll_box div {
  flex: 0 0 500px;
  height: auto;
}
.img_scroll_box div a {
  display: block;
  overflow: hidden;
}
.img_scroll_box div a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.img_scroll_box div a:hover img {
  scale: 105%;
}

.description {
  margin-top: 10px;
  font-size: 80%;
  text-align: center;
}

.base_dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.base_dl dt,
.base_dl dd {
  box-sizing: border-box;
}
.base_dl dt {
  display: flex;
  align-items: center;
  width: 10em;
  margin-right: 20px;
  margin-bottom: 2px;
  padding: 10px 20px;
  background: #c4c4c4;
}
.base_dl dd {
  display: flex;
  align-items: center;
  width: calc(100% - (10em + 20px));
  padding: 10px 0px;
}

.copyright {
  font-size: 80%;
}

.btn_area {
  text-align: center;
  margin: 30px auto 0px;
}

/* ------------------ SEGAWAYとは */
.title_about {
  background: var(--darkblue);
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  padding: 5px 0;
  font-size: 180%;
  font-weight: bold;
}
.title_about span {
  font-size: 80%;
}
.lead_about {
  background: var(--white) url(../img/about_lead_bg.jpg) center bottom no-repeat;
  color: var(--darkblue);
  text-align: center;
  padding: 20px 0;
  font-size: 120%;
  font-weight: bold;
}
.kv_about_bg {
  Width: 100%;
}
.kv_segaway_box {
  width: 750px;
  height: auto;
  margin: 80px auto 60px;
  opacity: 0.0;
}
.kv_segaway_box img {
  width: 100%;
  height: auto;
}
.detail_about {
  background: var(--darkblue) url(../img/about_detail_bg.jpg) center top no-repeat;
  background-size: cover;
  color: var(--white);
}
.detail_about h3 {
  color: var(--white);
}
.detail_about_white {
  margin-top: 30px;
  background: #ffffff15;
  padding-bottom: 30px;
}
.about_content_txt {
  display: block;
  clear: both;
  width: 850px;
  padding-top: 30px;
  margin: 0px auto 0px;
}

/* ------------------ ソニックライン */
.sonic_line {
  position: relative;
  height: 110px;
  width: calc(50% + 600px); /* 真ん中まで ＋ 1200の半分 */
  margin-right: auto; /* 右はすべて */
  margin-top: 50px;
}
.sonic_line .sonic_line_way {
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0px;
  background: var(--darkblue);
  transform: translateX(-1000px);
}
.sonic_line .sonic {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 105px;
  width: 140px;
  background: url(../img/sonic.svg) no-repeat;
  background-size: contain;
  opacity: 0;
}

/* ------------------ サブナビ */
.sub_nav {
  width: 100%;
  margin: 20px auto 0px;
}
.sub_nav h3 {
  width: 1200px;
  height: 30px;
  margin: 0px auto 30px;
}
.sub_nav h3 img {
  height: 30px;
  width: auto;
}

.recommends_list {
  margin-top: 30px;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0% 2%;
  align-items: stretch;
}

.recommends_list .recommends_content {
  width: 49%;
  margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    gap: 2%;
}
.recommends_content_img {
    width: 40%;
}
.recommends_content_img a {
  display: block;
  overflow: hidden;
}
.recommends_content_img a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.recommends_content_img a:hover img {
  scale: 105%;
}

.recommends_content_txt {
    width: 58%;
}
.recommends_content_title a {
  color: var(--darkblue);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.3s;
}
.recommends_content_title a:hover {
  text-decoration-color: var(--darkblue);
}

.recommends_content_add {
  width: 100%;
  border-top: 1px solid var(--gray_border);
  margin-top: 5px;
  padding-top: 5px;
}

.recommends_content_add .recommends_content_date,
.recommends_content_add .recommends_content_category {
  font-size: 80%;
}

.recommends_content_add .recommends_content_date::before {
  content: '';
  background: url("../img/clock.svg") no-repeat left;
  display: inline-block;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right:3px;
  vertical-align: underline;
}

.recommends_content_add .recommends_content_category a span p {
  text-decoration: none;
}
.recommends_content_add .recommends_content_category a:hover span p {
  text-decoration: underline;
}

.recommends_content_add .recommends_content_category span.cate {
  display: inline-block;
  padding: 0px 5px;
}

/* カテゴリーカラーはbase.css */

.recommends_content_add .recommends_content_category span.tag {
  display: inline-block;
  color: var(--darkblue);
  padding: 0px 5px;
}

.content_shorts_scroll {
  padding-bottom: 30px;
}
.content_shorts_scroll_box {
  position: relative;
  overflow: hidden;
}

.movie_s {
  width: 1200px;
  margin: 0px auto;
  display: flex;
  column-gap: 15px;
  overflow-x: auto;
  scroll-behavior: auto; /* GSAPで制御 */
  -webkit-overflow-scrolling: touch; /* iOSでの慣性スクロールを滑らかにする */
  touch-action: pan-x;
  scroll-snap-type: x mandatory; /* スクロール位置を綺麗に止める場合 */
  scrollbar-width: none; /* スクロールバー非表示 */
}
.movie_s::-webkit-scrollbar {
    display: none;
  }

.movie_s .youtube_s_box {
  flex: 0 0 235px;
  height: auto;
}
.youtube_s_box .youtube_s {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
}
.youtube_s_box .youtube_s iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: 10px;
}
.movie_txt {
  margin: 10px 5px;
  font-size: 80%;
}

.series_list {
  width: 1200px;
  margin: 0 auto;
  border-top: var(--gray_border) solid 1px;
}
.series_content {
  margin: 0px auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: var(--gray_border) solid 1px;
}
.series_title {
  width: 15%;
  margin-right: 3%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.series_title img {
  width: 100%;
  height: auto;
}
.series_details {
  width: 58%;
  padding: 0 3%;
  border-left: var(--gray_border) solid 1px;
  border-right: var(--gray_border) solid 1px;
}
.series_more {
  margin-left: 3%;
  width: 15%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.series_more a {
  text-decoration: none;
  color: var(--darkblue);
  transition: 0.2s;
}
.series_more a:hover {
  margin-right: -5px;
}


/*-----------------------------------------------------	*/
/*	for - 1200px以下の記述　*/
/*-----------------------------------------------------	*/

@media screen and (max-width:1200px) {
/* ------------------ 記事一覧 */
.content_keyword_box {
  width: 96%;
}
.content_list {
  width: 96%;
}
.new_list {
  width: 100%;
}
.new_list .new_content {
  width: 49%;
    gap: 2%;
}

/* ------------------ 個別記事 */
.content_title {
  width: 96%;
}
.kv_box {
  width: 96%;
  height: auto;
}
.kv_box img {
  top: 0px;
}
.kv_movie_box {
  width: 96%;
}

.content_lead {
  width: 96%;
}
.index_box {
  width: 96%;
}

.content_txt {
  width: 96%;
}
.content_txt_mt60 {
  width: 96%;
}

.content_h3_line {
  width: 96%;
}

.content_img_big {
  width: 96%;
}
.content_img_small {
  width: 96%;
}
.description {
  text-align: left;
}

.content_movie_big {
  width: 96%;
}
.content_movie_small {
  width: 96%;
}
.img_scroll_box div {
  flex: 0 0 280px;
}

.img_scroll_box {
  width: 96%;
}

/* ------------------ ソニックライン */
.sonic_line {
  width: 98%; /* 真ん中まで ＋ 96%の半分 */
  margin-right: auto; /* 右はすべて */
  margin-top: 50px;
}

/* ------------------ サブナビ */
.sub_nav {
  width: 100%;
}
.sub_nav h3 {
  width: 96%;
}
.recommends_list {
  width: 96%;
  gap: 0% 20%;
}

.recommends_list .recommends_content {
  width: 100%;
}
.movie_s {
    width: 92%;
}

.series_list {
  width: 96%;
}
.series_content {
  flex-wrap: wrap;
}
.series_title {
  width: 100%;
  margin-right: 0%;
}
.series_title img {
  width: 300px;
  height: auto;
}
.series_details {
  width: 65%;
  padding: 0 3%;
  border-left: none;
}
.series_more {
  margin-left: 3%;
  width: 25%;
}
/* ------------------ SEGAWAYとは */
.lead_about {
  padding: 20px 6%;
  box-sizing: border-box;
}
.kv_segaway_box {
  width: 70%;
}
.about_content_txt {
  width: 90%;
}
}

/*-----------------------------------------------------	*/
/*	for - 700px以下の記述　*/
/*-----------------------------------------------------	*/

@media screen and (max-width:700px) {
/* ------------------ 記事一覧 */
.content_list h2 {
  min-height: 70px;
}
.content_list h2.h2_a {
  background: url(../img/h2_a_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2.h2_s {
  background: url(../img/h2_s_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2.h2_n {
  background: url(../img/h2_n_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2.h2_c {
  background: url(../img/h2_c_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2.h2_t {
  background: url(../img/h2_t_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2.h2_d {
  background: url(../img/h2_d_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2.h2_b {
  background: url(../img/h2_b_bg.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_list h2 p {
  left: 90px;
  bottom: 10px;
}
.content_list h2 span {
  left: 120px;
  bottom: 15px;
  font-size: 220%;
}
.new_list .new_content {
  width: 100%;
}

/* ------------------ 個別記事 */
.content_title h2 {
  min-height: 70px;
  background: url(../img/h2_articles.svg) no-repeat left bottom;
  background-size: auto 70px;
}
.content_title h2 p {
  padding-left: 30px;
  padding-bottom: 10px;
  font-size: 140%;
}
.content_title h2 span {
  bottom: 15px;
  font-size: 240%;
}
h3 {
  font-size: 120%;
}
h4 {
  font-size: 110%;
}
.gray_box {
  padding: 30px 4%;
}

.base_dl dt {
  width: 100%;
  margin-right: 0px;
}
.base_dl dd {
  width: 100%;
}

/* ------------------ サブナビ */
.recommends_list .recommends_content {
  margin-bottom: 30px;
    gap: 0% 10px;
    flex-wrap: wrap;
}
.recommends_content_img {
    width: 100%;
    margin-bottom: 5px;
}
.recommends_content_txt {
    width: 100%;
}
.movie_s .youtube_s_box {
  flex: 0 0 200px;
  height: auto;
}

.series_title img {
  width: 50%;
  height: auto;
}
.series_details {
  width: 100%;
  padding: 0 3%;
  border-left: none;
  border-right: none;
  margin-bottom: 5px;
}
.series_more {
  margin-left: 0%;
  width: 100%;
}

/* ------------------ SEGAWAYとは */
.kv_segaway_box {
  width: 80%;
}
.about_content_txt {
  width: 80%;
}
}