/*
執筆ページ
*/
@charset "UTF-8";
/* 即時に遷移する */
html {
	scroll-behavior: auto;
}

/* ゆっくり遷移する */
html {
	scroll-behavior: smooth;
}

.content-inner {
  max-width: 1100px; /* サイト共通の幅 */
  margin: 0 auto;
}

.section-label {
  position: relative;
  padding-top: 15px;
  font-size: 14px;
}

.section-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1f276f;
}

.section-label {
  padding-left: 16px; /* 丸の分の余白 */
}

.section-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  background-color: #f08300;
  border-radius: 50%;
}

/* メインビジュアル */
.mv {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url(https://nxrise.com/wp/wp-content/uploads/2026/01/service_eyecatch_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  inset: 0;
  background-color: rgba(32, 44, 146, 0.7);
}

.mv-inner {
  position: relative;/* ← overlayより上に出す */
  z-index: 2;
  padding-left: 170px;
}

.mv h1  {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 100px;
  font-weight: 300;
  margin: 0;
  padding-top: 30px;
  padding-left: 60px;
}

.mv p  {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 17px;
  padding-left: 60px;
}

.mv-label {
  position: relative;
  padding-left: 24px; /* 線の分だけ余白 */
}

.mv-label::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #f08300;
}

/* コンテンツ一覧 */
.contents-tabs {
  display: flex;
  gap: 20px; /* ボタン間の隙間 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents-tabs li {
  flex: 1;
}

.contents-tabs a {
  display: block;
  text-align: center;
  padding: 25px 0;
  background-color: #1f2a7a;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/* 書籍 */
.books {
  background-color: #1f276f;
  color: #fff;
  min-height: 540px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.book-item {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 100px;
  padding-top: 50px;
}

.book-text {
  width: 500px;
  align-items: center;
}

.book-text p:last-of-type {
  margin-bottom: 50px;
}

.book-button {
  color: #1f276f;
  padding: 20px;
  background-color: #fff;
  text-decoration: none;
  border-radius: 20px;
}

.book-button:hover {
  background: #f08300;
  color: #fff;
}

.book-image img {
  width: 300px;      /* 好きなサイズに調整 */
  max-width: 100%;
  height: auto;
}

/* 連載 */
.serialization {
  color: #1f276f;
  border-top-color: #1f276f;
  border-top-width: 1px;
  margin: 70px 0 70px 0;
}

.serialization-link {
  text-decoration: none;
}

.serialization-image img {
  width: 400px;
  height: auto;
  margin-top: 30px;
}

/* コラム */
.column {
  color: #1f276f;
}

.column-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.column-item {
  width: 300px;
  height: auto;
  border: 1px solid #1f276f;
  padding: 10px;
  text-decoration: none;
}

.column-img img {
  width: 300px;
  height: auto;
}

.column-content h3 {
	font-size: 18px;
}

.column-content p {
  background-color: #1f276f;
  color: #fff;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  margin: 0;
}

.column-date p {
  text-align: right;
}

.column h3 {
  content: none;
  padding-top: 20px;
}

.column-subtitle {
  position: relative;
  padding-left: 18px;
}

.column-subtitle::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 16px;
  color: #0a1251;
}

#btn {
  background-color: #1f276f;
  color: #fff;
  text-decoration: none;
  padding: 20px 40px;
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

/* 雑誌 */
.magazine {
  margin: 50px 0 50px 0;
}

.magazine-link {
  text-decoration: none;
}

/* 外部メディア */
.external-media {
  color: #1f276f;
}

.external-media h3 {
  font-size: 20px;
  font-weight: bold;
}

.external-media-inner {
  text-decoration: none;
}

.serialization a:visited,
.column a:visited,
.magazine a:visited,
.external-media-inner a:visited {
  color: #1f276f;
}

@media all and ( max-width:768px ){
.serialization-image img{
    width: 80vw;
}
.mv-inner{
    padding-left: 0px;
}
.mv h1 {
    font-size: 60px;
    padding-left: 20px;
}
.content-inner {
	margin: 20px;
}
.contents-tabs {
	display: block;
}
.contents-tabs a {
	flex-wrap: wrap;
}
.contents-tabs li {
	margin: 20px;
}
.book-item {
  flex-direction: column;
  margin: 40px 20px;
  gap: 24px;
  padding-top: 20px;
}
.book-text {
  width: 100%;
  text-align: center;
}
.book-image img {
  width: 70%;
  margin: auto;
  margin-bottom: 40px;
  display: block;
}
.book-button {
  display: inline-block;
}
.column-list {
    flex-direction: column;
	align-items: center;
    padding: 15px;
}
.column-item {
  width: 100%;
}
.column-img img {
  width: 100%;
  height: auto;
}

.column-date p {
  text-align: left;
  margin-top: 10px;
}
}