@charset "UTF-8";

/* CSS Document */

html {
	font-size: 100%;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
	background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	/* animation: float 3s ease-in-out infinite; */
}

/* レスポンシブ時のh1サイズ調整 */
@media (max-width: 768px) {
	h1 {
		font-size: 1.4rem;
		line-height: 1.3;
		word-break: keep-all;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 1.2rem;
		line-height: 1.2;
		word-break: keep-all;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1rem;
		line-height: 1.2;
		word-break: keep-all;
	}
}

@media (max-width: 400px) {
	h1 {
		font-size: 0.9rem;
		line-height: 1.2;
		word-break: keep-all;
	}
}

h2,
h3 {
	font: 1em/1.5em Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Helvetica, sans-serif;
	margin-top: 0;
	margin-bottom: 0;
	color: #4b441e;
}

.clear {
	clear: both;
}

.red {
	color: #c03;
}

.dark {
	font-weight: bold;
}

.lighter {
	color: #877757;
}

/* navbar */

.navbar {
	padding: 1rem 0;
	background: linear-gradient(to right, #ffffff, #f8f9fa);
}

.navbar-inverse {
	background-color: #ffffff;
	border: none;
	height: 80px;
	display: flex;
	justify-content: center;
	border-top: #a72126 solid 8px;
}

.navbar-inverse .navbar-toggle {
	border-color: #004a77;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
	background-color: #004a77;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
	border-color: #5c95d5;
}

.glyphicon.glyphicon-bookmark.lev1 {
	color: #efa400;
}

.glyphicon.glyphicon-bookmark.lev2 {
	color: #b81c62;
}

.glyphicon.glyphicon-bookmark.lev3 {
	color: #0287cc;
}

.glyphicon.glyphicon-bookmark.lev4 {
	color: #be0118;
}

.glyphicon.glyphicon-bookmark.lev5 {
	color: #009657;
}

.glyphicon.glyphicon-info-sign {
	color: #a03735;
}

/* jumbotron */

.jumbotron {
	padding: 20px 15px;
	margin-bottom: 30px;
	color: inherit;
	background-color: #fff;
}

.jumbotron h1,
.jumbotron .h1 {
	color: inherit;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

.jumbotron p {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 100;
}

.jumbotron2 {
	width: 680px;
	padding: 20px 15px;
	margin: 30px auto;
	color: inherit;
	background-color: #fff;
	box-shadow: 0 0 2px gray;
}

.jumbotron2 h1 {
	text-align: center;
	font-family: Meiryo;
}

.jumbotron2 h2 {
	border-bottom: solid 3px black;
	font-size: 1.3em;
	margin-bottom: 15px;
}

.jumbotron2 p {
	margin-bottom: 10px;
	font-size: 16px;
	padding: 10px 5px;
}

.jumbotron3 {
	width: 680px;
	padding: 20px 15px;
	margin: 20px auto;
	border-radius: 2px;
	color: inherit;
	background-color: #fff;
	box-shadow: 0 0 2px gray;
}

.jumbotron3 h2 {
	position: relative;
	padding: 0.75em 1em 0.75em 0.2em;
	border: 1px solid #ccc;
	font-size: 1.3em;
	font-weight: bold;
	color: #31708f;
	text-align: center;
}

.jumbotron3 h2 ::after {
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	content: "";
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color: #3498db;
	border-radius: 4px;
}

.jumbotron3 p {
	margin-bottom: 10px;
	font-size: 16px;
	padding: 10px 5px;
}

.jumbotron3 span {
	color: red;
}

.button_sibmit {
	margin: 10px auto;
}

/* Contents */

.contents {
	background-color: transparent;
}

.contents p {
	padding-left: 12px;
}

p.info_label {
	margin: 2em 0 0.5em 0;
	padding-left: 8px;
	padding: 10px;
	border-left: var(--bs-primary-text-emphasis) 12px solid;
	background-color: var(--bs-tertiary-bg);
}

.btn-block {
	margin: 20px auto;
}

/* sahre */

ul.share {
	padding-left: 8px;
}

ul.share li {
	margin: 0 8px 0 0;
	padding: 0;
	list-style: none;
	float: left;
	display: block;
	text-align: left;
}

.sns-icon {
	margin-top: 30px;
}

.sns-icon li {
	padding-left: 20px;
}

.sns-icon li:hover {
	color: #fff;
}

/* form */

form {
	padding: 30px 20px;
}

/* breadcrumb */

.breadcrumb {
	margin: 0;
	background-color: #f6f4e9;
	border-radius: 0;
}

.breadcrumb a {
	color: #877757;
	text-decoration: underline;
}

.breadcrumb a:hover,
.breadcrumb a:active,
.breadcrumb a:focus {
	color: #6f6146;
	text-decoration: none;
	background-color: #e7e2c5;
}

/* t01 */

.t01 table {
	border-top: #999 solid 1px;
	border-left: #999 solid 1px;
}

.t01 tr {
	border-bottom: #999 solid 1px;
}

.t01 td,
.t01 th {
	border-right: #999 solid 1px;
	text-align: center;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.t01 th.th_s {
	width: 6em;
}

.t01 td.td_l {
	text-align: left;
}

/* Footer */

footer {
	background: #ffffff;
	padding: 20px 0;
	text-align: center;
	color: #555;
	font-size: 12px;
	border-bottom: #a72126 solid 8px;
}

footer a {
	color: #555;
	text-decoration: underline;
}

footer a:hover,
footer a:active,
footer a:focus {
	color: #6e6e6e;
	text-decoration: none;
	background-color: #eee;
}

.fullh {
	height: 100vh;
	background: #003555;
}

/* =main
-------------------------------------------------------------- */

section.main {
	height: 400px;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	padding: 20px;
	border: solid 1px;
	border-radius: 8px;
	border-color: #eee;
}

section#main h1 {
	margin: 0 0 16px 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 1.4rem;
	font-weight: bold;
	color: #31708f !important;
	/* 色 */
	border-bottom: #014481 4px solid;
	/* 色 */
}

section#main h2.hborder {
	margin: 0;
	padding: 36px 0 6px 0;
	font-size: 16px;
	font-weight: 500;
	background: transparent url(../img/h_border.gif) left bottom no-repeat;
	text-align: left;
}

section#main p.subtitle {
	font-size: 22px;
	line-height: 120%;
}

section#main p.highlight {
	margin: 30px 0 12px;
	padding: 0 0 0 4px;
	font-size: 18px;
	font-weight: 500;
	color: #014481;
	/* 色 */
	background: #d6e1ea;
	/* 色 */
}

/*=個人情報保護方針 */

section#main ol.supportlist1 li {
	margin-bottom: 1em;
}

section#main ol.supportlist1 ul li {
	margin-bottom: 0;
}

section#main ol.supportlist1 h3 {
	margin-bottom: 1em;
	font-size: 16px;
}

.border-solid {
	margin: 10px auto;
	padding: 0px 10px;
	line-height: 1.5;
	border: solid 1px #333;
	border-radius: 4px;
	clear: both;
}

.border-solid p {
	margin: 5px 0;
}

/* jumbotron */

.jumbotron {
	padding: 20px 15px;
	margin-bottom: 30px;
	color: inherit;
	background-color: #fff;
}

.jumbotron h1,
.jumbotron .h1 {
	color: inherit;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

.jumbotron p {
	margin: 15px auto;
	font-size: 18px;
	font-weight: 100;
}

.jumbotron2 {
	width: 680px;
	padding: 20px 15px;
	margin: 30px auto;
	color: inherit;
	background-color: #fff;
}

.jumbotron2 h1 {
	text-align: center;
	font-family: Meiryo;
}

.jumbotron2 h1 {
	text-align: center;
	font-family: Meiryo;
}

.jumbotron2 h2 {
	position: relative;
	padding: 0.75em 1em 0.75em 0.2em;
	border: 1px solid #ccc;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #31708f;
}

.jumbotron2 p {
	margin-bottom: 10px;
	font-size: 16px;
	padding: 10px 5px;
}

@media screen and (max-width: 768px) {
	.jumbotron2 {
		width: 96%;
		padding: 20px 15px;
		margin: 30px auto;
		color: inherit;
		background-color: #fff;
	}

	.jumbotron2 h2 {
		position: relative;
		border: 1px solid #ccc;
		font-size: 1em;
		font-weight: bold;
	}

	.jumbotron3 {
		width: 96%;
		padding: 20px 0px;
		margin: 20px auto;
		border-radius: 2px;
		color: inherit;
		background-color: #fff;
		box-shadow: 0 0 2px gray;
	}

	.jumbotron3 h2 {
		font-size: 18px;
		font-weight: bold;
		padding: 0.75em 1em 0.75em 0.2em;
		margin: 5px 10px;
		color: #31708f;
		text-align: center;
	}

	.jumbotron3 p {
		margin-bottom: 10px;
		font-size: 16px;
		padding: 10px 15px;
		text-align: left;
	}

	section#main p.highlight {
		margin: 30px 0 12px;
		padding: 0 0 0 4px;
		font-size: 1em;
		font-weight: 500;
		color: #014481;
		/* 色 */
		background: #d6e1ea;
		/* 色 */
	}
}

.navbar-inverse .navbar-nav > li > a {
	color: #fff;
}

.navbar-inverse .navbar-brand {
	color: #fff;
}

:root {
	--primary-color: #8ebba2;
	--secondary-color: #6ba085;
	--accent-color: #2c5530;
	--text-color: #2d3436;
	--light-bg: #f8f9fa;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.card {
	border: none;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
}

.btn-primary {
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	border: none;
	color: white;
	font-weight: bold;
	padding: 1rem 2rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(142, 187, 162, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	color: #fff;
	box-shadow: 0 8px 25px rgba(142, 187, 162, 0.4);
	background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.info-section {
	padding: 2rem;
	background: white;
	border-radius: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.info-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.info-section h2 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	font-size: 1.2rem;
}

.author-note {
	color: var(--accent-color);
	font-weight: 600;
	font-size: 0.8rem;
	display: inline-block;
	margin-top: 0.5rem;
	position: relative;
	padding: 0.2rem 0;
	z-index: 1;
}

.author-note::after {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #ffd700, #ffed4e);
	border-radius: 2px;
	opacity: 0.4;
	z-index: -1;
}

.lead {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--text-color);
	line-height: 1.8;
}

/* 本のカバー自動スクロール */
.book-scroll-container {
	overflow: hidden;
	width: 100%;
	position: relative;
	margin: 2rem 0;
}

.book-scroll-container::before,
.book-scroll-container::after {
	content: "";
	position: absolute;
	top: 0;
	width: 50px;
	height: 100%;
	z-index: 10;
	pointer-events: none;
}

.book-scroll-container::before {
	left: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.book-scroll-container::after {
	right: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.book-scroll {
	display: flex;
	animation: scroll-left 20s linear infinite;
	gap: 0.5rem;
	align-items: end;
}

.book-item {
	flex-shrink: 0;
	max-width: 150px;
	height: auto;
}

.book-item img {
	width: 100%;
	height: auto;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* エレガントでポップなキャッチフレーズ */
.elegant-catchphrase {
	text-align: center;
	padding: 2.5rem 2rem;
	background: linear-gradient(135deg, #ffffff, #f8faf9);
	border-radius: 25px;
	border: 2px solid var(--primary-color);
	position: relative;
	overflow: hidden;
}

.catchphrase-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.catchphrase-star {
	color: var(--primary-color);
	font-size: 1.2rem;
	animation: twinkle 2s ease-in-out infinite;
}

.catchphrase-star:nth-child(3) {
	animation-delay: 1s;
}

.catchphrase-number {
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2.5rem;
	font-weight: 900;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.1em;
	position: relative;
}

.catchphrase-number::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
	border-radius: 2px;
}

.catchphrase-main-text {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
	position: relative;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, rgba(142, 187, 162, 0.1), rgba(107, 160, 133, 0.1));
	border-radius: 20px;
	border: 1px solid rgba(142, 187, 162, 0.3);
	display: inline-block;
}

.catchphrase-gift {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--accent-color);
}

.gift-icon {
	color: var(--primary-color);
	font-size: 1.8rem;
	animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

@keyframes twinkle {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

@keyframes gentle-pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.05);
		opacity: 1;
	}
}

.campaign-banner {
	/* animation: pulse 3s ease-in-out infinite; */
}

@media (max-width: 768px) {
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.card {
		margin-bottom: 1rem;
	}

	.btn-primary {
		width: 100%;
		padding: 0.8rem 1.5rem;
	}

	h1 {
		font-size: 2rem;
	}

	.info-section {
		padding: 1.5rem;
	}
	
	.elegant-catchphrase {
		padding: 2rem 1.5rem;
		margin: 0 1rem;
	}
	
	.catchphrase-header {
		gap: 0.8rem;
		margin-bottom: 1.2rem;
	}
	
	.catchphrase-star {
		font-size: 1rem;
	}
	
	.catchphrase-number {
		font-size: 2rem;
	}
	
	.catchphrase-main-text {
		font-size: 1.4rem;
		padding: 0.8rem 1.5rem;
		margin-bottom: 1.2rem;
	}
	
	.catchphrase-gift {
		font-size: 1.2rem;
		gap: 0.6rem;
	}
	
	.gift-icon {
		font-size: 1.4rem;
	}
}

#privacy h1 {
	color: #31708f !important;
	font-size: 1.4rem;
	font-weight: bold;
	background: initial;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: inherit;
}
