@charset "UTF-8";
/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================
	読み込み
===============================================================*/
/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .full_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.max_width {
  max-width: 1900px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  max-width: 1130px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.btn_width {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .btn_width {
    max-width: inherit;
  }
}

/*===============================================================

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section_wrp {
  position: relative;
  z-index: 1;
}

.section_inner {
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .section_inner {
    padding-top: 6vw;
    padding-bottom: 10vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

.section_inner2 {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .section_inner2 {
    padding-top: 15vw;
    padding-bottom: 15vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

/*===============================================================

	common

===============================================================*/
body, #page {
  overflow: visible;
}

#page, .container {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.en {
  font-family: "Teko", sans-serif;
}

.no_data_box {
  display: grid;
  place-items: center;
  width: 90vw;
  min-height: 30vh;
  margin: 0 auto;
}

.errormessage {
  display: block;
  background: #013c88;
  width: 100%;
  color: #fff;
  font-weight: bold;
  border: 2px solid #013c88;
  max-width: 600px;
  border-radius: 8px;
  padding: 32px !important;
  text-align: center;
  opacity: 0.95;
}

/*===============================================================

	共通ヘッダ 幅調整

===============================================================*/
.frame_width {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  padding-left: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem); /*8*50*/
  padding-right: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem); /*8*50*/
}

@media only screen and (max-width: 767px) {
  .frame_width {
    padding: 0 8px;
  }
}
/*===============================================================

テーマヘッダー

===============================================================*/
.p-themaHeader {
  position: relative;
  top: 0;
  width: 100%;
  display: grid;
  place-items: center;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 102;
  /*include remorokuのz-indexが100のため*/
}
.p-themaHeader a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
}
.p-themaHeader a:hover {
  opacity: 0.8;
}

.p-themaHeader-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 clamp(0rem, -1.136rem + 5.68vw, 3.125rem);
  width: min(100%, 1300px);
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-themaHeader-title {
  line-height: 1;
  padding: 1rem 0;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-perspective: 1000;
          perspective: 1000;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.p-themaHeader-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
.p-themaHeader-nav li {
  position: relative;
}
.p-themaHeader-nav li:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: inline-block;
  width: 2rem;
  height: 3px;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: transparent;
}
.p-themaHeader-nav li.is_active:before {
  background-color: #1e90ff;
}
.p-themaHeader-nav li a {
  display: block;
  padding: 2.4rem 0;
  font-size: clamp(0.8rem, 0.659rem + 0.45vw, 1rem);
}

.p-themaHeader-nav li.p-themaHeader-remoroku a {
  font-weight: normal !important;
}

.page--top .p-themaHeader-nav li.off a {
  color: #ddd;
  pointer-events: none;
  cursor: default;
}

/*縮小版*/
.is-active {
  position: fixed;
}

.page--top .p-themaHeader-nav li:nth-child(1):before,
.page--column .p-themaHeader-nav li:nth-child(2):before,
.page--column-detail .p-themaHeader-nav li:nth-child(2):before {
  background-color: #e93817;
}

/* SP向けレイアウトの指定：～767px */
@media only screen and (max-width: 767px) {
  .p-themaHeader-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
  }
  .p-themaHeader-title {
    padding: 1.1rem 0 0.6rem 0;
    font-size: 1.5rem;
  }
  .p-themaHeader-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .p-themaHeader-nav li {
    height: 100%;
  }
  .p-themaHeader-nav li:before {
    bottom: 0;
    height: 4px;
  }
  .p-themaHeader-nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.6rem 0.5rem;
    min-height: 50px;
    line-height: 1.2;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .p-themaHeader-nav li:nth-child(1), .p-themaHeader-nav li:nth-child(2), .p-themaHeader-nav li:nth-child(3) {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  .p-themaHeader-nav li:nth-child(1) a, .p-themaHeader-nav li:nth-child(2) a, .p-themaHeader-nav li:nth-child(3) a {
    font-size: 1rem;
    white-space: nowrap;
  }
  /*縮小版*/
}
/*===============================================================

	contents

===============================================================*/
.thiscontents {
  background: #1e90ff;
}

.thiscontents * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.thiscontents img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-touch-callout: none;
}

.thiscontents .none {
  display: none;
}

.thiscontents h2,
.thiscontents h3,
.thiscontents h4,
.thiscontents h5,
.thiscontents h6 {
  font-weight: bold;
  line-height: 1.6;
}

.thiscontents p {
  margin: 0;
  padding: 0;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  /*14-16*/
  line-height: 1.8;
}

/*===============================================================

	メインタイトル

===============================================================*/
.p-hero {
  text-align: center;
  background: url(../images/bg_text_pc.svg) no-repeat top 40px center;
  background-size: 1160px auto;
}

.section_column .p-hero {
  background: url(../images/bg_column_sign.png) no-repeat top 50px center;
  background-size: 800px auto;
}

.p-hero-inner {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
  /*8*50*/
  padding-right: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
  /*8*50*/
}

.p-hero-title {
  font-size: clamp(1.75rem, 1.477rem + 1.36vw, 2.5rem);
  color: #fff;
  margin: 0 auto;
  max-width: 1000px;
  line-height: 1 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-family: "Noto Sans JP";
  font-weight: 700 !important;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  white-space: nowrap;
}
.p-hero-title > span {
  text-shadow: 0 0 4px rgba(62, 133, 245, 0.8), 0 0 4px rgba(62, 133, 245, 0.8);
}
.p-hero-title small {
  position: relative;
}
.p-hero-title small span {
  position: absolute;
  left: 16px;
  top: -10px;
}
.p-hero-title .en {
  font-family: "Teko", sans-serif;
  font-size: 140%;
  vertical-align: middle;
}

.p-hero-titleS {
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  /*20-36*/
  font-weight: 600;
}

.p-hero-summary {
  margin: -1.5rem auto;
  font-weight: normal;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  letter-spacing: 0.06em;
  line-height: 1.4 !important;
  font-weight: normal !important;
  white-space: wrap;
  text-align: center;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  text-shadow: 0 0 4px rgba(62, 133, 245, 0.8), 0 0 4px rgba(62, 133, 245, 0.8);
}

@media screen and (max-width: 767px) {
  .p-hero {
    text-align: center;
    background: url(../images/bg_text_sp.svg) no-repeat top 30px center;
    background-size: 77vw auto;
  }
  .p-hero-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .p-hero-title {
    margin: 0 auto 0.75rem;
    width: 90vw;
    line-height: 1.15 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    white-space: wrap;
  }
  .p-hero-summary {
    margin: -0.25rem auto !important;
    letter-spacing: 0.03em;
    font-size: 12px;
  }
}
/*===============================================================

 コラム詳細ページ用

===============================================================*/
.p-detailHeader {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.p-detailHeader-inner {
  padding: 8px 0;
  background: url(../images/bg_column_sign.png) no-repeat bottom 10px right;
  background-size: 230px auto;
}

.p-detailHeader-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.p-detailHeader-title a {
  font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
  font-weight: 700;
  color: #fff;
}
.p-detailHeader-title a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.p-detailHeader-titleS {
  padding-left: 8px;
  font-weight: 600;
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}

.p-detailHeader-thumb {
  width: 72px !important;
  margin-right: 16px;
  padding: 2px;
  border: 1px solid #57b2ff;
  border-radius: 50%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-detailHeader-summary {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

@media screen and (max-width: 767px) {
  .p-detailHeader {
    padding: 0 12px;
  }
  .p-detailHeader-inner {
    padding: 8px 0;
    background: url(../images/bg_column_sign.png) no-repeat bottom 2px right;
    background-size: 110px auto;
  }
  .p-detailHeader-title {
    gap: 12px;
  }
  .p-detailHeader-thumb {
    width: 52px !important;
  }
}
/*===============================================================

背景
section_live_today_list,
ection_column

===============================================================*/
.section_live_today_list {
  position: relative;
  background-image: url(../images/subtle-grunge.png), url(../images/bg.jpg);
  background-repeat: repeat, no-repeat;
  background-position: top left, top center;
  background-size: auto, 100vw auto;
  padding: 0 0 100px;
  background-attachment: fixed, fixed;
  min-height: 100vh;
  background-blend-mode: color-burn, normal;
}

/*コラムページは背景をぼかす*/
.section_column {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .section_live_today_list,
  .section_column {
    background: none;
  }
  .section_live_today_list:before {
    position: fixed;
    content: "";
    top: 150px;
    left: 0;
    -webkit-transition: all 1s;
    transition: all 1s;
    background: #1e90ff url(../images/bg.jpg) no-repeat bottom center;
    background-size: cover;
    width: 100vw;
    height: calc(100dvh - 150px);
    z-index: -11;
  }
  .l-footer,
  #footer {
    position: relative;
    background: #fff;
    z-index: 102;
    padding: 8vw 0 0;
    margin: 0;
  }
  .zaqArea {
    margin: 0;
    padding: 4px;
    background: #fff;
  }
}
/*===============================================================

  loading	

===============================================================*/
.section_live_today_list .loading,
.section_live_today_list .loading:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

.section_live_today_list .loading {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*===============================================================

  program_list	

===============================================================*/
.program_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.program_list_wrp {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .program_list_wrp {
    margin-top: 1rem;
  }
}

/*===============================================================
   day_wrp
===============================================================*/
.day_wrp {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
  padding-right: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  /*sticky動作対策*/
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .day_wrp {
    width: 100%;
    margin: 0 auto;
    padding-left: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
    padding-right: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    /*sticky動作対策*/
    gap: 0;
  }
}
/*===============================================================
   date
===============================================================*/
.section_live_today_list .date {
  position: sticky;
  top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_live_today_list .date .month_day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: 148px;
  color: #fff;
  font-weight: bold;
  font-size: clamp(2.5rem, 1.773rem + 3.64vw, 4.5rem);
  font-family: "Teko", sans-serif;
}
.section_live_today_list .date .month_day:before {
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  vertical-align: middle;
}
.section_live_today_list .date .week {
  display: inline-block;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: #fff;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

@media screen and (max-width: 767px) {
  .section_live_today_list .date {
    position: sticky;
    top: 70px;
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
    justify-self: flex-start;
    padding-right: 16px;
  }
  .section_live_today_list .date:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80%;
    top: 3px;
    background: rgba(18, 86, 153, 0.5);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: -1;
  }
  .section_live_today_list .date .month_day {
    width: auto;
  }
  .section_live_today_list .date .month_day:before {
    min-width: 16px;
  }
}
/*===============================================================
    item
===============================================================*/
/* コンテナ */
.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.item a {
  width: 100%;
  display: grid;
  grid-template-rows: 40px 1fr 14px;
  grid-template-columns: auto 1fr 33.3%;
  grid-template-areas: "time status thumb" "title title thumb" "channel_name channel_name thumb";
  gap: 16px;
  padding: clamp(0.75rem, 0.295rem + 2.27vw, 2rem);
  background: #fff;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .item a {
    grid-template-areas: "time time status" "title title thumb" "channel_name channel_name channel_name";
    gap: 8px 16px;
  }
}
.item a:hover {
  text-decoration: none;
  background: #f7f7f7;
}

/* アイテム */
.time {
  grid-area: time;
  font-family: "Teko", sans-serif;
  font-size: clamp(1.75rem, 1.477rem + 1.36vw, 2.5rem);
  /*28-40*/
  font-weight: bold;
  color: #0c3966;
}

.title {
  grid-area: title;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  /*14-18*/
  font-weight: bold;
}

.thumb {
  grid-area: thumb;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}

.thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}

.channel_name {
  grid-area: channel_name;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  color: #444;
}

/*-------------------------------------------------------------
    status	
-------------------------------------------------------------*/
.status {
  grid-area: status;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-end !important;
      -ms-flex-align: self-end !important;
          align-items: self-end !important;
}
.status .live {
  width: 4em;
  text-align: center;
  font-size: 13px;
  border-radius: 3px;
  padding: 1px 0 2px 0;
  margin: 0 0 0 8px;
  color: #fff;
  background-color: #66CC00;
  border: solid 1px transparent;
}
.status .onair {
  width: 4em;
  text-align: center;
  font-size: 13px;
  border-radius: 3px;
  padding: 1px 0 2px 0;
  margin: 0 0 0 8px;
  color: #EA3226;
  border: solid 1px #EA3226;
}

@media screen and (max-width: 767px) {
  .status {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: -4px;
  }
}
/*===============================================================

	もっと見る

===============================================================*/
.show_more_btn {
  text-align: center;
  margin: 32px auto;
}

.show_more_btn a {
  display: inline-block;
  background: #fff;
  padding: 16px 32px;
  border-radius: 32px;
  color: #333;
  font-weight: bold;
}

.show_more_btn a:hover {
  text-decoration: none;
  background: #f7f7f7;
}

.is-hidden {
  display: none;
}

.is-show {
  display: block;
}

.p-linkShinsta {
  max-width: 728px;
  margin: 0 auto;
}
.p-linkShinsta a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.p-linkShinsta a:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.p-linkShinsta.sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-linkShinsta {
    margin: 0 auto;
    padding-left: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
    padding-right: clamp(0.5rem, -0.455rem + 4.77vw, 3.125rem);
  }
}

/*===============================================================

	コラムスライダー
	.section_column_slider 

===============================================================*/
.slick-list {
  overflow: visible;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.section_column_slider {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(2.5rem, 1.591rem + 4.55vw, 5rem) clamp(1rem, -0.455rem + 7.27vw, 5rem);
  /*    background: #4169e1;*/
  background: url(../images/bg_black_noise.png);
  background-position: bottom center;
  z-index: 0;
  overflow: hidden;
}

.section_column_slider:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-image: url(../images/bg.jpg);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-filter: opacity(10%);
          filter: opacity(10%);
  background-position: bottom center;
  background-size: 100vw auto;
  z-index: -1;
  overflow: hidden;
}

.section_column_slider .column_item {
  width: 240px;
  margin-right: 16px;
}

.section_column_slider .column_list a {
  display: grid;
  grid-template-rows: auto 1fr 14px;
  grid-template-columns: 1fr;
  grid-template-areas: "pic" "title" "date";
  gap: 16px;
  border-radius: 4px;
  padding-bottom: 16px;
  height: 100%;
  color: #333;
  background: #fefefe;
  line-height: 1;
  -webkit-transition: all 0.3slinear;
  transition: all 0.3slinear;
  cursor: pointer;
  -webkit-box-shadow: 0.1 0.25rem 0.2 0.5rem 0.4rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.1 0.25rem 0.2 0.5rem 0.4rem rgba(0, 0, 0, 0.1);
}

.section_column_slider .column_list .title {
  grid-area: title;
  line-height: 1.5;
  padding: 0 16px;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.section_column_slider .column_list .date {
  grid-area: date;
  padding: 0 16px;
  font-size: 12px;
  color: #0c3966;
}

.section_column_slider .column_list .pic {
  grid-area: pic;
}

.section_column_slider .column_list .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto;
  -o-object-position: top center;
     object-position: top center;
}

@media screen and (max-width: 767px) {
  .section_column_slider .column_item {
    width: 322px;
    margin-right: 8px;
  }
  .section_column_slider .column_list a {
    display: grid;
    grid-template-rows: 22px 1fr;
    grid-template-columns: 45% 1fr;
    grid-template-areas: "pic date" "pic title";
    gap: 8px 16px;
    padding: 4px 16px 4px 4px;
  }
  .section_column_slider .column_list .title {
    grid-area: title;
    line-height: 1.5;
    padding: 0 0 8px;
  }
  .section_column_slider .column_list .date {
    grid-area: date;
    padding: 0;
    line-height: 1;
  }
  .section_column_slider .column_list .pic {
    grid-area: pic;
  }
  .section_column_slider .column_list .pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: auto;
    -o-object-position: top center;
       object-position: top center;
  }
}
/*===============================================================

	pager

===============================================================*/
.slide-one .block_list_pager {
  display: none;
}

.block_list_pager {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}

.block_list_pager .pager {
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.block_list_pager .pager a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: solid 2px #fff;
  position: relative;
}

.block_list_pager .pager a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 2px #fff;
  width: 7px;
  height: 7px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
  transform: rotate(-45deg) translate(-1px, -1px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.block_list_pager .pager a:hover {
  opacity: 0.7;
}

.block_list_pager .pager a:hover::after {
  -webkit-transform: rotate(-45deg) translate(1px, 1px);
  transform: rotate(-45deg) translate(1px, 1px);
}

.block_list_pager .pager.prev {
  margin-right: 20px;
}

.block_list_pager .pager.prev a::after {
  -webkit-transform: rotate(135deg) translate(-1px, -1px);
  transform: rotate(135deg) translate(-1px, -1px);
}

.block_list_pager .pager.prev a:hover::after {
  -webkit-transform: rotate(135deg) translate(1px, 1px);
  transform: rotate(135deg) translate(1px, 1px);
}

.block_list_pager .pager.deactive {
  pointer-events: none;
  opacity: 0.2;
}

@media screen and (max-width: 1030px) {
  .block_list_pager .pager {
    width: 4.67vw;
    height: 4.67vw;
  }
  .block_list_pager .pager a {
    width: 4.67vw;
    height: 4.67vw;
    border-radius: 4.67vw;
  }
}
@media screen and (max-width: 767px) {
  .block_list_pager {
    margin-top: 5vw;
  }
  .block_list_pager .pager {
    width: 12vw;
    height: 12vw;
  }
  .block_list_pager .pager a {
    width: 12vw;
    height: 12vw;
    border-radius: 12vw;
  }
}
/*===============================================================

	サブタイトル

===============================================================*/
.headSub {
  color: #fff;
  font-size: 20px;
  margin-bottom: 24px;
}

/*===============================================================

	二宮コラムINDEX

===============================================================*/
/*背景--------------------------+++--------*/
.section_column {
  position: relative;
  padding: 0 0 100px;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.section_column:before {
  content: "";
  background-image: url(../images/noise.png), url(../images/bg.jpg);
  background-repeat: repeat, no-repeat;
  background-position: top left, top center;
  background-size: auto, 100% auto;
  padding: 0 0 100px;
  background-attachment: fixed, fixed;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(3px) contrast(115%);
          filter: blur(3px) contrast(115%);
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .section_column {
    background: none;
  }
  .section_column:before {
    position: fixed;
    content: "";
    top: 150px;
    left: 0;
    -webkit-transition: all 1s;
    transition: all 1s;
    background: #1E90FF url(../images/bg_sp.jpg) no-repeat top -100px center;
    background-size: cover;
    width: 100vw;
    height: calc(100dvh - 150px);
    z-index: -11;
  }
}
/*タイトル周り--------------------------------*/
.section_column .p-hero {
  background: none;
}

.section_column .p-hero-inner {
  min-height: 400px;
  max-width: 1200px;
  margin: 0 auto -40px auto;
  background-image: url(../images/bg_column_sign.png), url(../images/column_ninomiya2.png);
  background-repeat: no-repeat, no-repeat;
  background-size: clamp(7.5rem, 2.045rem + 27.27vw, 22.5rem) auto, auto 100%;
  background-position: top 120px right 20px, center left;
}

.section_column .p-hero-title {
  font-size: clamp(1.625rem, 1.216rem + 2.05vw, 2.75rem); /*26-44*/
  margin-top: 32px;
  text-align: center;
  line-height: 1;
  gap: 18px;
}

.section_column .p-hero-summary {
  margin-top: 40px;
  font-weight: normal;
  text-align: center;
  font-size: clamp(0.813rem, 0.699rem + 0.57vw, 1.125rem); /*13-18*/
}

@media only screen and (max-width: 767px) {
  .section_column .p-hero-inner {
    min-height: 240px;
    max-width: 100%;
    margin: 0 auto -20px auto;
    background-image: url(../images/bg_column_sign.png), url(../images/column_ninomiya2.png);
    background-repeat: no-repeat, no-repeat;
    /*    background-size: 40% auto, auto 100%;*/
    background-size: clamp(7.5rem, 2.045rem + 27.27vw, 22.5rem) auto, auto 100%;
    background-position: bottom 24px right 16px, center left -30px;
    padding: 32px 5% 0 41%;
  }
  .section_column .p-hero-title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 8px;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }
  .section_column .p-hero-summary {
    margin-top: 12px;
    text-align: left;
    line-height: 1.5 !important;
  }
}
/*//タイトル周り--------------------------------*/
.column_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px 1%;
}

@media screen and (max-width: 767px) {
  .column_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 8px;
    gap: 4px;
  }
}
.column_list a {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-template-areas: "img" "txt";
  gap: 0;
  border-radius: 4px;
  padding: 0;
  height: 100%;
  color: #333;
  background: #fefefe;
  line-height: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  -webkit-box-shadow: 0.1 0.25rem 0.2 0.5rem 0.4rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.1 0.25rem 0.2 0.5rem 0.4rem rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .column_list a {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 50% 1fr;
    grid-template-areas: "img txt";
    gap: 0;
    padding: 4px;
  }
}
.column_list a:hover {
  text-decoration: none;
  background: #fff;
  color: #000;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.column_list .txt {
  grid-area: txt;
  padding: 16px;
  display: grid;
  grid-template-areas: "head" "date";
  grid-template-rows: 1fr 14px;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .column_list .txt {
    grid-area: txt;
    padding: 16px 8px 16px 12px;
    display: grid;
    grid-template-areas: "date" "head";
    grid-template-rows: 14px 1fr;
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.column_list .head {
  grid-area: head;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.column_list .img {
  grid-area: img;
  width: 100%;
}

.column_list .img img {
  overflow: hidden;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  /*    aspect-ratio: 1200/543;*/
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}

@media screen and (max-width: 767px) {
  .column_list a:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .column_list .title {
    padding: 0;
  }
  .column_list .img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
  }
  .column_list .img img {
    width: 100%;
    /*  aspect-ratio: 1200/543;*/
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    border-radius: 4px;
    /*    transform:translateX(-13%);*/
  }
}
.column_list .date {
  grid-area: date;
  font-size: 12px;
  color: #0c3966;
}

@media screen and (max-width: 767px) {
  .column_list .date {
    padding: 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
/*===============================================================

	二宮コラム詳細

===============================================================*/
.section_column_detail {
  padding: 0 8px;
}

.section_column_detailInner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 55% 1fr;
  grid-template-areas: "head photo" "text text" "writer writer";
  gap: 16px;
  background: #fefefe;
  border-radius: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1rem, 0.455rem + 2.73vw, 2.5rem) clamp(1rem, -0.455rem + 7.27vw, 5rem);
}

@media screen and (max-width: 767px) {
  .section_column_detailInner {
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-template-areas: "head" "photo" "text" "writer";
    gap: 16px;
    background: #fefefe;
    border-radius: 2px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1rem, -0.455rem + 7.27vw, 5rem);
  }
}
.section_column_detail .p-head {
  grid-area: head;
  border-top-left-radius: 16px;
}

.section_column_detail .p-head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.section_column_detail .p-head .p-head-update {
  margin-bottom: 0;
  line-height: 1;
  font-size: 14px;
}

.section_column_detail .p-head-title {
  font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333;
}

.section_column_detail .p-photo {
  grid-area: photo;
  padding-top: clamp(0.5rem, -3.043rem + 7.39vw, 2.5rem);
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .section_column_detail .p-head-inner {
    gap: 8px;
  }
  .section_column_detail .p-head-title {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .section_column_detail .p-photo {
    margin: 0 -20px;
  }
}
.section_column_detail .p-photo img {
  border-radius: 2px;
  -webkit-box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.15);
          box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.15);
}

.section_column_detail .p-text {
  grid-area: text;
  max-width: 920px;
  margin: 0 auto;
}

.section_column_detail .p-writer {
  grid-area: writer;
}

.section_column_detail .head {
  margin: 4rem 0 1.5rem 0;
  font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
}

.section_column_detail p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 2;
  letter-spacing: 0.8px;
  margin-bottom: 2rem;
}

.section_column_detail .intro {
  margin-top: 2rem;
  line-height: 2.2 !important;
}

/*sign-------------------------*/
.section_column_detail .sign {
  padding: 0 1.5rem;
  text-align: right;
}

.section_column_detail .sign img {
  width: 140px;
  height: auto;
}

.section_column_detail .sign p {
  width: 140px;
  text-align: center;
  font-size: 14px;
  margin: 0 0 0 auto;
}

/*writer-------------------------*/
.p-writer {
  margin: 3rem auto 3rem !important;
}

.p-writer-inner {
  /*	width: min(100%, 1030px);*/
  width: min(100%, 940px);
  margin: 0 auto;
  padding: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  background: #eff7fe;
  border-radius: 4px;
}

.columnIndex .p-writer-inner {
  width: min(90%, 1200px);
  border-top: 1px solid #ddd;
  border-radius: 0;
  padding: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  background: transparent;
}

.p-writer-head {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: rgba(6, 41, 144, 0.8);
}

.p-writer-head small {
  font-weight: 400;
  font-size: 0.75rem;
}

.p-writer-text {
  /*  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem)!important;*/
  font-size: 14px !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.6 !important;
}

.columnIndex .p-writer-head,
.columnIndex .p-writer-text {
  color: #eee;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.u_link_arrow:after {
  content: "";
  display: inline-block;
  margin: 0 0.5rem 0.15rem;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../images/icn-bullet.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}

.u_link_arrow:visited {
  color: #406faf;
}

/*===============================================================

    section_sports_mirunara

===============================================================*/
.section_sports_mirunara {
  position: relative;
  background: #013c88 url(../images/main-bg-texture.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  width: 100vw;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	section_sports_mirunara
  ===============================================================*/
}

.section_sports_mirunara .section_inner {
  position: relative;
  z-index: 1;
}

.section_sports_mirunara:before {
  content: "";
  mix-blend-mode: overlay;
  background-position: right top;
  background-image: url(../images/how-bg-1.png);
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-size: contain;
  position: absolute;
  width: 1000px;
  aspect-ratio: 89/215;
  top: 0;
  right: -20%;
  opacity: 0.05;
}

.section_sports_mirunara:after {
  content: "";
  mix-blend-mode: overlay;
  background-position: right bottom;
  background-image: url(../images/how-bg-2.png);
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-size: contain;
  position: absolute;
  width: 1000px;
  aspect-ratio: 89/215;
  bottom: 0;
  left: -20%;
  opacity: 0.05;
}

.section_sports_mirunara .title {
  font-size: 48px;
}

.section_sports_mirunara .lead {
  font-size: 28px;
  font-weight: bold;
}

.section_sports_mirunara .bnr {
  margin: 40px auto 0;
  max-width: 960px;
}

.section_sports_mirunara .bnr picture,
.section_sports_mirunara .bnr a {
  display: block;
}

.section_sports_mirunara .bnr a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .section_sports_mirunara .title {
    font-size: 6vw;
  }
  .section_sports_mirunara .lead {
    font-size: 3.8vw;
  }
  .section_sports_mirunara .bnr {
    margin-top: 5vw;
  }
}
/*===============================================================

	sns_sticky

===============================================================*/
.sns_sticky {
  position: fixed;
  z-index: 999;
  bottom: 50px;
  right: 40px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}

.sns_sticky .sns_btn {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #fff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.sns_sticky .sns_btn + .sns_btn {
  margin-top: 20px;
}

.sns_sticky a {
  display: block;
}

.sns_sticky a:hover {
  opacity: 0.6;
}

.sns_btn.line {
  padding: 10px;
}

@media screen and (max-width: 1030px) {
  .sns_sticky {
    bottom: 4.67vw;
    right: 3.74vw;
  }
  .sns_sticky .sns_btn {
    width: 5.61vw;
    height: 5.61vw;
    border-radius: 5.61vw;
  }
  .sns_sticky .sns_btn + .sns_btn {
    margin-top: 1.87vw;
  }
}
@media screen and (max-width: 767px) {
  .sns_sticky .sns_btn {
    width: 40px;
    height: 40px;
    border-radius: 32px;
  }
}
/*===============================================================

    section_related

===============================================================*/
.section_related {
  position: relative;
  background: #fff;
}

.section_related .bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.5%;
}

.section_related .bnr a {
  display: block;
  width: 31%;
  border-radius: 8px;
}

.section_related .bnr a img {
  border-radius: 8px;
}

.section_related .bnr a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .section_related .bnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .section_related .bnr a {
    width: 90%;
    margin: 0 auto;
  }
}
/*===============================================================

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
} /* for SP max-width: 800px *//*# sourceMappingURL=thiscontents.css.map */