@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*全体の設定
---------------------------------------------------------------------------*/
body,
html {
	width: 100%;
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	color: var(--fifthColor);
	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/
	font-size: 15px;
	/*文字サイズ*/
	line-height: 2.2;
	/*行間*/
	/*1010 background: #fff; */
	background:
		var(--firstColor);
	/*背景色*/
	-webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
}

ul {
	list-style-type: none;
}

ol {
	padding-left: 40px;
	padding-bottom: 15px;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}

iframe {
	width: 100%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #c2a893;
	/*リンクテキストの色*/
	transition: 0.4s;
	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}

a:hover {
	color: #6983a9;
	/*マウスオン時の文字色*/
	text-decoration: none;
	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/* 追加部分 */
.icon {
	width: 50px;
	/* アイコンの幅 */
	height: auto;
	/* アスペクト比を保持 */
	vertical-align: middle;
	/* テキストとアイコンの位置を揃える */
}

th {
	text-align: center;
	/* テーブルヘッダ内のアイコンを中央揃え */
}

a:hover .icon {
	opacity: 0.7;
	/* マウスオーバー時に少し透明に */
}

/*ヘッダー。最初に出てくるアニメーションのメニューブロック。
---------------------------------------------------------------------------*/
header {
	width: 100%;
	height: 110%;
	overflow: hidden;
	position: relative;
	background: #fff url(../images/bg.jpg) no-repeat center center;
	/*背景画像の設定（古いブラウザ用）*/
	background: #fff url(../images/bg.jpg) no-repeat center center / cover;
	/*背景画像の設定*/
}

/*h1タグ*/
header h1 {
	position: solute;
	top: 0px;
	/*上から0pxの場所に配置*/
	width: 100%;
	/*幅*/
	text-align: center;
	/*テキストをセンタリング*/
	background: #99918b;
	/*背景色（古いブラウザ用）*/
	background: rgba(247, 168, 203, 0.1)
		/* rgba(221, 212, 169, 0.5) */
	;
	/*背景色。左４つの数字はRGBでのカラーコード指定。最後の0.5は色が50%ついた状態。*/
	color: #fff;
	/*文字色*/
	font-weight: normal;
	/*hタグのデフォルトの太字を標準に*/
	letter-spacing: 0.2em;
	/*文字間隔を少し広くとる設定*/
	font-size: 12px;
	/*文字サイズ*/
	z-index: 10;
	/*重なりの順番。数字が大きい方が上に配置されます。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	overflow: hidden;
	max-width: 1400px;
	/*コンテンツの最大幅*/
	padding: 50px 10%;
	/*上下、左右へのボックス内の余白*/
}

/*背景色のスタイルです。contentsとセットで使います。
---------------------------------------------------------------------------*/
/*1010bg1*/
.bg1 {
	background: var(--secondColor);
	/*背景色のみ*/
}

/*bg2（Contactブロックで使用）*/
.bg2 {
	/* background: #000 url(../images/bg2.jpg) no-repeat center center; */
	/*背景画像の読み込み（古いブラウザ用）*/
	/* background: #000 url(../images/bg2.jpg) no-repeat center center / cover; */
	/*背景画像の読み込み*/
	color: var(--fifthColor) !important;
	/*文字色*/
}

.bg2 a {
	color: secondColor !important;
	/*リンクテキストの文字色*/
}

/*contents
---------------------------------------------------------------------------*/
/*h2見出し*/
.contents h2 {
	clear: both;
	margin-bottom: 30px;
	/*下に空けるスペース*/
	font-size: 40px;
	/*文字サイズ*/
	text-align: center;
	/*文字をセンタリング*/
	letter-spacing: 0.2em;
	/*文字間隔を少し広くとる設定*/
	line-height: 1.5;
	/*行間をデフォルトから少し狭くする*/
}

/*h2見出し内のspanタグ。小文字表記部分。*/
.contents h2 span {
	display: block;
	font-size: 12px;
	/*文字サイズ*/
}

/*h3見出し*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;
	/*下に空けるスペース*/
	font-size: 20px;
	/*文字サイズ*/
	background: url(../images/line1.png) no-repeat center bottom;
	/*背景画像（下線）の読み込み（古いブラウザ用）*/
	background: url(../images/line1.png) no-repeat center bottom / 100% 2px;
	/*背景画像（下線）の読み込み。幅は100%、高さを2pxにする。*/
	padding: 0 10px;
	/*上下、左右へのブロック内の余白*/
}

/*段落タグ*/
.contents p {
	padding: 0px 10px 30px;
	/*上、左右、下への余白*/
}

/*段落タグが続いた場合の設定*/
.contents p+p {
	margin-top: -10px;
}

/*setionが続いた場合の２つ目のsectionへの設定*/
.contents section+section {
	margin-top: 50px;
	/*上に空けるスペース*/
}

/*Galleryページの各ボックス
---------------------------------------------------------------------------*/
.list {
	width: 33%;
	/*幅。今は３列ですが、25%に変更すれば4列になります。*/
	float: left;
	/*左に回り込み*/
	background: #000;
	/*背景色。下の設定で透明度を半分にしているので、その際に出てくる色です。白にしておけば白っぽく表示されます。*/
}

/*画像の設定*/
.list a img {
	opacity: 1;
	/*色が100%ついた状態*/
}

/*マウスオン時の画像の設定*/
.list a:hover img {
	opacity: 0.7;
	/*透明度50%。*/
}

/* 追加部分 */
/* Flexboxを使用して親要素を中央揃えにする */
.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* 10番目の画像を特定して中央に配置する */
.list-10 {
	width: 33%;
	order: 2;
	/* 2番目に表示されるように設定 */
	margin: 0 auto;
	/* 自動マージンで中央配置 */
	float: none;
	/* floatを無効にして中央揃え */
}

.list-10 {
	width: 33%;
	order: 1;
	/* 1番目に表示されるように設定 */
	margin-bottom: 35px;
	/* 下に40pxの空白を追加 */
	float: none;
	/* floatを無効にして中央揃え */
}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	/*センタリング*/
	background: rgba(216, 226, 162, 0.2);
	/*背景色*/
	color: var(--fifthColor);
	/*文字色*/
	padding: 10px 0;
	/*上下、左右へのボックス内の余白*/
}

footer a {
	text-decoration: none;
	color: #fff;
}

footer .pr {
	display: block;
	font-size: 12px;
}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 10px;
	/*上下、左右へのボックス内の余白*/
}

/*日付設定*/
#new dt {
	float: left;
	/*左に回り込み*/
	width: 9em;
	/*幅*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くとる設定*/
}

/*記事設定*/
#new dd {
	padding-left: 9em;
	/*左に空ける余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 30px;
	/*上、左右、下へのテーブルの外側へとるスペース*/
}

.ta1,
.ta1 td,
.ta1 th {
	border: 1px solid #67574a;
	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;
	/*ボックス内の余白*/
	word-break: break-all;
}

/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #67574a;
	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;
	/*上のborderの指定から下線だけ消す設定*/
	padding: 10px 15px;
	/*上下、左右へのボックス内の余白*/
	background: rgba(255, 255, 255, 0.3);
	/*背景色。255,255,255は白で、0.3は30%色がついた状態。古いブラウザでは適用されないので、必要ならこの上の行に通常のbackground指定を加えて下さい。*/
	text-align: left;
	/*文字を左寄せ*/
}

/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;
	/*幅*/
	text-align: center;
	/*センタリング*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {
	display: block;
}

.scroll a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 50px;
	/*幅*/
	line-height: 50px;
	/*高さ*/
	position: fixed;
	right: 30px;
	/*右からの配置場所指定*/
	bottom: 30px;
	/*下からの配置場所指定*/
	color: #fff;
	/*文字色*/
	background: rgba(0, 0, 0, 0.4);
	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.scroll a:hover {
	background: rgba(0, 0, 0, 0.8);
	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	/*背景色*/
	color: #FFF;
	/*文字色*/
	font-size: 70%;
	/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #c3b5a2;
	background: rgba(0, 0, 0, 0.1);
	padding: 5px 10px;
	border-radius: 4px;
}

.mb15,
.mb1em {
	margin-bottom: 15px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.clear {
	clear: both;
}

ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}

.color1,
.color1 a {
	color: #b52654 !important;
}

.pr {
	font-size: 10px;
}

.wl {
	width: 96%;
}

.ws {
	width: 50%;
}

.c {
	text-align: center;
}

.r {
	text-align: right;
}

.l {
	text-align: left;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.big1 {
	font-size: 40px;
}

.mini1 {
	font-size: 11px;
	display: inline-block;
	line-height: 1.5;
}

.sh {
	display: none;
}

#about {
	text-align: center;
}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {

	/*0726編集header
---------------------------------------------------------------------------*/
	header {
		background: #fff url(../images/bg3.png) no-repeat center center / cover;
	}

	/*inner
---------------------------------------------------------------------------*/
	.inner {
		padding: 50px 3%;
		/*上下、左右へのボックス内の余白*/
	}

	/*その他
---------------------------------------------------------------------------*/
	body.s-n #sub,
	body.s-n #footermenu,
	.m-n {
		display: none;
	}

	.big1 {
		font-size: 20px;
	}

	.fl {
		float: none;
	}

	.fr {
		float: none;
	}

	.sh {
		display: block;
	}

	.pc {
		display: none;
	}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

	/*全体の設定
---------------------------------------------------------------------------*/
	body {
		font-size: 12px;
		/*文字サイズ*/
		line-height: 1.5;
		/*行間*/
	}

	/*inner
---------------------------------------------------------------------------*/
	.inner {
		padding: 30px 3%;
		/*上下、左右へのボックス内の余白*/
	}

	/*contents
---------------------------------------------------------------------------*/
	/*h2見出し*/
	.contents h2 {
		margin-bottom: 20px;
		/*下に空けるスペース*/
		font-size: 24px;
		/*文字サイズ*/
		letter-spacing: normal;
		/*文字間隔をデフォルトにする*/
	}

	/*h3見出し*/
	.contents h3 {
		margin-bottom: 10px;
		/*下に空けるスペース*/
		font-size: 16px;
		/*文字サイズ*/
		padding-bottom: 5px;
		/*下線と文字が近すぎるので、少し余白を作る*/
	}

	/*段落タグ*/
	.contents p {
		padding: 0px 10px 20px;
		/*上、左右、下への余白*/
	}

	/*setionが続いた場合の２つ目のsectionへの設定*/
	.contents section+section {
		margin-top: 20px;
		/*上に空けるスペース*/
	}

	/*テーブル（ta1）
---------------------------------------------------------------------------*/
	/*ta1設定*/
	.ta1,
	.ta1 td,
	.ta1 th {
		padding: 5px;
		/*ボックス内の余白*/
	}

	/*ta1の左側ボックス*/
	.ta1 th {
		width: 100px;
	}

	/*その他
---------------------------------------------------------------------------*/
	.ws,
	.wl {
		width: 94%;
	}

	.big1 {
		font-size: 16px;
	}

}

/*8/8追加分*/
.works {
	display: flex;
	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

.works .worksText {
	margin-right: 0 auto;
}

.button a {
	/*1010*/
	background: var(--thirdColor);
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 350px;
	margin: 0 auto;
	padding: 10px 35px;
	color: #fff;
	line-height: 1.8;
	text-decoration: none;
	font-weight: 500;
}

.button a:hover {
	background: rgba(162, 77, 188, 0.4);
	color: #FFF;
}

/* 12/7追加分 */
@media screen and (orientation: portrait) {}

/* 10/1~追加分 */

/* 共通スタイル */
.section {
	margin: 20px 0;
	padding: 20px;
	/*1010*/
	background-color: var(--secondColor);
	/* rgba(247, 168, 203, 0.4) */
	;
	border-radius: 10px;
}

.image-text-container {
	display: flex;
	align-items: center;
}

.section-image {
	width: 300px;
	height: auto;
	margin-right: 20px;
	border-radius: 10px;
}

.text-container {
	max-width: 600px;
}

h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

p {
	font-size: 16px;
	line-height: 1.5;
}

.details-button {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	/*1010*/
	/* background-color: var(--thirdColor); */
	background-color: rgba(0, 0, 0, 0.7);
	/* 半透明の黒 */
	color: #fff;
	/* color: #333; */
	text-decoration: none;
	border-radius: 5px;
	font-size: 14px;
}

.details-button:hover {
	background-color: rgba(162, 77, 188, 0.4);
}

/* 11/28追加 */
/* Memoryタブ専用の背景色設定 */
.memory-tab .s ection {
	background-color: var(--mainColor);
	/* 黄色の背景に変更 */
}

/* 加賀コラムタブ専用の背景色設定 */
.experience-tab .section {
	background-color: var(--secondColor);
	/* 現状の背景色を維持 */
}

.back-button {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 28px;
	/* 適切なサイズ */
}

/* 1/7追加分 */

/* スライドする要素 */
.content {
	width: 300px;
	/* 任意の幅 */
	height: 300px;
	/* 任意の高さ */
	overflow: hidden;
	/* 画像が枠からはみ出ないように */
	display: flex;
	justify-content: center;
	/* 中央寄せ */
	align-items: center;
	/* 中央寄せ */
}

.content img {
	width: 100%;
	/* 親要素の幅にフィット */
	height: 100%;
	/* 親要素の高さにフィット */
	object-fit: cover;
	/* 縦横比を保ちつつ、要素内に収める */
	display: block;
	/* 不要な余白を防ぐ */
}

/* スライドレールの枠 */
.wrap {
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 340px;
	margin-bottom: 100px;
}

/* content4つをまとめたスライドブロック */
.slideshow {
	display: flex;
	-webkit-animation: loop-slide 20s infinite linear 1s both;
	animation: loop-slide 20s infinite linear 1s both;
}

@-webkit-keyframes loop-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes loop-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}