@charset "UTF-8";

/* ------------------------------------------------------------
   変数
------------------------------------------------------------ */
:root {
	/*新築の色*/
	--c-new: #4cbbb4;
	--c-new-rgb: 76,187,180;
	
	/*リフォームの色*/
	--c-renovate: #0068b7;
	--c-renovate-rgb: 0,104,183;
	
	/*茶色*/
	--c-brown: #41210f;
	--c-brown-rgb: 65,33,15;
	
	/*黄色*/
	--c-yellow: #cfbe37;
	
	--sec-space: 40px;
	--sec-space-half: 20px;
	--sec-padding: 20px;
	
	--br-s: 5px;
	--br-m: 10px;
	--br-l: 20px;
}

@media (min-width:768px) {
	:root {
	--sec-space: 60px;
	--sec-space-half: 30px;
	--sec-padding: 30px;
}
}

@media (min-width:1180px) {
	:root {
	--sec-space: 100px;
	--sec-space-half: 50px;
	--sec-padding: 40px;
}
}

/* ------------------------------------------------------------

   base

------------------------------------------------------------ */
* {
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,body {
	width: 100%;
}
html {
    font-size: 62.5%;
    overflow: auto;
}
body {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    line-height: 1.5;
	color: #333;
	font-size: 1.5rem;
	box-sizing: border-box;
	background-image: url("../img/bg.jpg");
	overflow: hidden;
	padding-bottom: 3em;
}

@media (min-width:768px) {
    body {
	font-size: 1.6rem;
}
}

@media (min-width:960px) {
    body {
	padding-bottom: 0;
}
}

@media (min-width:1180px) {
    body {
	font-size: 1.7rem;
}
}

a {
	color: #333;
	text-decoration: none;
	transition: .5s;
}
a:link,a:visited {
	color: #333;
}
a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
a:focus, *:focus { outline: none; }
img {
	vertical-align: bottom;
	max-width: 100%;
}
a:hover img {
	/*opacity:0.7;
	filter:alpha(opacity=70);*/
}
ul {
    list-style: none;
}
ul,li {
	list-style-type: none;
}


/* スペース
----------------------------------------------------*/
.sec {
	padding-top: var(--sec-space);
	padding-bottom: var(--sec-space);
}
.sec-s {
	padding-top: var(--sec-space-half);
	padding-bottom: var(--sec-space-half);
}



/* 汎用クラス
----------------------------------------------------*/
.marugo {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
.b {
	font-weight:bold;
}
.txt {
	line-height: 1.8;
}
.line {
	background: linear-gradient(transparent 50%,#ffff66 50%);
}
.tc {
	text-align: center;
}
.att {
	font-size: .8em;
}
.indent {
	padding-left:1em;
	text-indent:-1em;
}
.pink {
	color: var(--pink);
}
.pt0 { padding-top: 0; }
.pb0 { padding-bottom: 0; }
.pt1 { padding-top: 1em; }
.pb1 { padding-bottom: 1em; }
.pt-half { padding-top: .5em; }
.pb-half { padding-bottom: .5em; }

.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
.mt1 { margin-top: 1em; }
.mb1 { margin-bottom: 1em; }
.mt-half { margin-top: .5em; }
.mb-half { margin-bottom: .5em; }

/* タグ　*/
/* 新年度が先頭にならないので逆順に　*/
.tag-wrap {
	display: flex;
}
/*.tag-wrap .tag2024 {
	order: 1;
	margin-right: .75em;
}
.tag-wrap .tag2023 {
	order: 2;
}*/
.tag {
	background-color: rgba(var(--c-brown-rgb),.1);
	padding: .2em .6em .3em;
	margin-right: .75em;
	border-radius: 3px;
	font-size: .75em;
}
.tag:last-of-type {
	margin-right: 0;
}

/* 巻頭特集　*/
.tagkanto {
	background-color: #d9c70f;
	color: #fff;
}
/* 今年度のタグ色づけ　*/
.new .tag2026,
.category-new .tag2026 {
	background-color: var(--c-new);
	color: #fff;
}
.renovate .tag2026,
.category-renovate .tag2026 {
	background-color: var(--c-renovate);
	color: #fff;
}

@media (min-width:768px) {
	.txt {
	line-height: 2;
}
}


/* responsive
----------------------------------------------------*/
.inner {
	padding-left: 3%;
	padding-right: 3%;
}
.sp,.tb,.pc { display: none; }

@media (max-width:767px) {
	.sp { display: block; }
}
@media (min-width:768px) and (max-width:1179px) {
	.tb { display: block; }
}
@media (min-width:1180px) {
	.pc { display: block; }
	.inner {
	width: 1180px;
	padding-left: 0;
	padding-right: 0;
	margin-left: auto;
	margin-right: auto;
}
}


/* ジャンルアイコン
----------------------------------------------------*/
.genre-ico {
	display: inline-block;
	color: #fff;
	padding: .3em .4em;
	font-size: .7em;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 0.25em;
}
/*新築*/
body.new h2 .genre-ico,
.genre-ico.genre-n {
    background-color: var(--c-new);
}
/*リフォーム*/
body.renovate h2 .genre-ico,
.genre-ico.genre-r {
    background-color: var(--c-renovate);
}


/* 各社のアイキャッチ画像3：2の比率に
----------------------------------------------------*/
.eye-ratio {
	position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.666%;
    overflow: hidden;
}
.eye-ratio img {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
	transform: translateY(-50%);
	will-change: transform;
}


/* hoverで画像拡大
----------------------------------------------------*/
a .pht-zoom {
	position: relative;
	overflow: hidden;
}
a .pht-zoom img {
	transition: 1s;
	will-change: transform;
}
a:hover .pht-zoom img {
	transform: scale(104%);
}
a:hover .pht-zoom.eye-ratio img {
	transform: translateY(-50%) scale(104%);
}


/* 吹き出しの見出し
----------------------------------------------------*/
.ttl-fuki {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	position: relative;
	margin-bottom: 1em;
}
.ttl-fuki::before,
.ttl-fuki::after {
	position: absolute;
	content: "";
	display: block;
	width: 1em;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center bottom;
	bottom: 0px;
	left: 50%;
}
.ttl-fuki::before {
	background-image: url("../img/osusume-line-l.svg");
	transform: translateX(-8em);
}
.ttl-fuki::after {
	background-image: url("../img/osusume-line-r.svg");
	transform: translateX(7em);
}

@media (min-width:768px) { 
	.ttl-fuki {
	margin-bottom: 2em;
}
	.ttl-fuki::before,
	.ttl-fuki::after {
	width: 1.4em;
	height: 50px;
	bottom: -.5em;
}
	.ttl-fuki::before {
	transform: translateX(-9em);
}
	.ttl-fuki::after {
	transform: translateX(8em);
}
}


/*=====================================================*/
/*　ヘッダー　*/
/*=====================================================*/

@media (max-width:767px) { 
/*	header {
	position: relative;
	height: 70px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}*/
	.header-inner {
	position: relative;
	height: 70px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
	.header-inner h1 {
	width: 60%;
	max-width: 240px;
	margin-left: 4%;
}
}

@media (min-width:768px) {
	.header-inner {
	position: relative;
	height: 120px;
	width: 94%;
	max-width: 1200px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}
	.header-inner h1 {
	width: 280px;
}
	.nav-right {
	width: 220px;
}
	.nav-right .logo {
	margin-botom: 20px;
}
	.nav-right .header-sns {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}
	.nav-right .header-sns li {
	width: 44px;
	padding: 10px;
}
}


/*=====================================================*/
/*　ナビゲーション（スマホ）　*/
/*=====================================================*/
@media (max-width:767px) { 

/* ハンバーガーボタン
----------------------------------------------------*/
/* ===============
  This hamburger button was generated by Zarigani Design Office Hamburger Button Generator.

  Zarigani Design Office's Hamburger Button
  Copyright: 2019 Zarigani Design Office
  URL: https://zarigani-design-office.com/hamburger/
  This software is released under the MIT License.
  http://opensource.org/licenses/mit-license.php
  ================*/

/*+++ Reset +++*/
.zdo_drawer_button * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
  text-decoration: none;
  list-style: none;
}

.zdo_drawer_button {
  display: block;
  padding: 0;
  width: 24px;
  height: 16px;
  position: relative;
  background: none;
  border: none;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
}

.zdo_drawer_button .zdo_drawer_bar {
  display: block;
  width: 24px;
  height: 2px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}

.zdo_drawer_button .zdo_drawer_bar1 {
  top: 0;
}

.zdo_drawer_button .zdo_drawer_bar2 {
  top: 50%;
}

.zdo_drawer_button .zdo_drawer_bar3 {
  top: 100%;
}

.zdo_drawer_button.active .zdo_drawer_bar {
  width: 22.63px;
  left: 4px
}

.zdo_drawer_button.active .zdo_drawer_bar1 {
  transform: rotate(0.7853981633974483rad) translateY(-50%);
  top: 0px
}

.zdo_drawer_button.active .zdo_drawer_bar2 {
  opacity: 0;
}

.zdo_drawer_button.active .zdo_drawer_bar3 {
  transform: rotate(-0.7853981633974483rad) translateY(-50%);
  top: calc(100% - 0px)
}

.zdo_drawer_button.active .zdo_drawer_menu_text {
  display: none;
}

.zdo_drawer_button.active .zdo_drawer_close {
  display: block;
}

.zdo_drawer_text {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  text-align: center;
  font-size: 10px;
}

.zdo_drawer_close {
  letter-spacing: 0.08em;
  display: none;
}

/*+++ Default Button Color +++*/
  .zdo_drawer_button {
  color: #fff;
}

.zdo_drawer_button .zdo_drawer_bar {
  background-color: #fff;
}

/*ボタンの配置*/
/*.zdo_drawer_button {
	top: -5px;
}*/
.btn-wrap {
	background-color: var(--c-brown);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	cursor: pointer;
	position: fixed;
	right: 4%;
}

/*メニュー非表示*/
#g-nav {
	opacity: 0;
}

#g-nav{
    position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width: 100%;
    height: 100vh;
	/*height: calc(var(--vh, 1vh) * 100);*/
	background-image: url("../img/bg.jpg");
	transition: .3s ease;
}
/*アクティブ付与*/
#g-nav.panelactive {
    opacity: 1;
	z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width:100%;
    height: 100vh;
	/*height: calc(var(--vh, 1vh) * 100);*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.g-nav-inner {
	position: absolute;
    z-index: 999;
    top: 50%;
	left: 50%;
    transform: translateX(-50%) translateY(-50%);
	text-align: center;
	width: 70%;
}
.g-nav-inner .logo {
	width: 75%;
    max-width: 240px;
	margin: 0 auto 2em;
}
.header-nav {
	margin-bottom: var(--sec-space-half);
	border-top: 1px dashed rgba(var(--c-brown-rgb),.3);
}
.header-nav li {
	border-bottom: 1px dashed rgba(var(--c-brown-rgb),.3);
	text-align: left;
}
.header-nav li a {
	padding: 1.5em .5em 1.5em 1em;
	display: block;
	font-weight: bold;
	line-height: 1;
	position: relative;
}
.header-nav li a:hover {
	opacity: 1;
}
.header-nav li a::before {
	content: "";
	display: block;
	position: absolute;
	width: 5px;
	height: 60%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--c-yellow);
	opacity: 0;
}
.header-nav li a:hover::before {
	opacity: 1;
}

/*.header-nav li a .ja {
	position: relative;
}
.header-nav li a .ja::before,
.header-nav li a .ja::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 60%;
	height: 1px;
	transition: .5s;
	background-color: rgba(var(--c-brown-rgb),.3);
}
.header-nav li a .ja::after {
	width: 30px;
	left: calc(100% + 1em);
}
.header-nav li a .ja::before {
	width: 10px;
	transform: rotate(45deg);
	transform-origin: right bottom;
	left: calc(100% + 1em + 20px);
}
.header-nav li a:hover .ja::after {
	left: calc(100% + 1em + 5px);
}
.header-nav li a:hover .ja::before {
	left: calc(100% + 1em + 25px);
}*/



.header-nav li .en {
	padding-left: 1em;
	position: absolute;
	right: .5em;
}
.header-nav li .en img {
	height: 1.1em;
	width: auto;
}
.header-nav li .en-h img {
	height: 1.45em;
}
.nav-right .logo {
	width: 75%;
	max-width: 240px;
	margin: 0 auto 10px;
}
.nav-right .header-sns {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.nav-right .header-sns li {
	width: 44px;
	padding: 10px;
}

/*モーダル背景がスクロールしないように
https://qiita.com/yowatsuyoengineer/items/b43b64e1419fa285b758*/
.modalWrapper {
    display: flex;
    overscroll-behavior: contain;
    overflow-y: scroll;
}
.nonScroll {
    height:calc(100vh + 1px) ;
    width: 1px;
    background-color: transparent;
}

/* 受付終了 */
.header-nav li.close {
	position: relative;
}
.header-nav li.close .close-ill {
	position: absolute;
	z-index: 1;
	width: 76%;
	max-width: 350px;
	right: 0%;
	top: 50%;
}
}


/*=====================================================*/
/*　ナビゲーション（タブレット/PC）　*/
/*=====================================================*/
@media (min-width:768px) { 
	.btn-wrap{
	display: none;
}
	.header-nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	padding-bottom: 2em;
	max-width: 1200px;
	margin: auto;
}
	.header-nav li {
	flex-grow: 1;
}
	.header-nav li:not(:last-of-type) {
	border-right: 1px dashed rgba(var(--c-brown-rgb),.3);
}
	.header-nav li a {
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	font-weight: bold;
	font-size: .94em;
	line-height: 1;
	position: relative;
	text-align: center;
}
	.header-nav li a::after {
	position: absolute;
	content: "";
	display: block;
	height: 3px;
	background-color: var(--c-yellow);
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s width;
	width: 0;
}
	.header-nav li a:hover::after {
	width: 80%;
}
	.header-nav li .en {
	display: block;
	
}
	.header-nav li .en img {
	height: .8em;
	width: auto;
	margin-top: 10px;
}
	.header-nav li .en-h img {
	height: 1.1em;
}

/*表示中のページは下線を表示*/
	.home .header-nav li:nth-of-type(1) a::after,
	.category-new .header-nav li:nth-of-type(2) a::after,
	.category-renovate .header-nav li:nth-of-type(3) a::after,
	.page-id-760 .header-nav li:nth-of-type(4) a::after {
	width: 80%;
	}

/* 受付終了 */
	.header-nav li.close {
	position: relative;
}
	.header-nav li.close .close-ill {
	position: absolute;
	z-index: 1;
	width: 92%;
	right: 4%;
	top: 44%;
}
	.header-nav li.close a {
	cursor: default;
}
	.header-nav li.close a::after {
	display: none;
}
	.header-nav li.close a:hover {
	opacity: 1;
}
}

@media (min-width:1180px) { 
	.header-nav li a {
	font-size: 1em;
}
}


/*=====================================================*/
/*　CTA　*/
/*=====================================================*/
.cta {
	background-image: url("../img/cta-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.cta-txt {
	text-align: center;
	font-weight: bold;
	font-size: 1.25em;
	line-height: 1.7;
}
.cta-txt strong {
	background-color: #740003;
	color: #fff;
	line-height: 1;
	display: inline-block;
	padding: .15em .5em .3em;
	margin-right: .25em;
}
.cta-book {
	width: 62%;
	max-width: 240px;
	margin: 2em auto 2.5em;
}
.cta-book img {
	box-shadow: 0 0 20px rgba(var(--c-brown-rgb),.3);
}
/*CTAボタン*/
.cta-btn-wrap ul {
	width: 75%;
	max-width: 400px;
	margin: auto;
}
.cta-btn-wrap li {
	position: relative;
}
.cta-btn-wrap li:first-of-type {
	margin-bottom: 1.5em;
}
.cta-btn-wrap li a {
	display: block;
	background-color: #f7f574;
	color: var(--c-brown);
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	padding: 1em 0;
	box-shadow: 0 3px #a3913f;
	position: relative;
	transform: translateY(0);
	transition: .3s transform;
}
.cta-btn-wrap li:not(.close) a:hover {
	opacity: 1;
	transform: translateY(3px);
	box-shadow: none;
	background-color: #fffd99;
}
.cta-btn-wrap li a .icon {
	margin-right: 10px;
	display: inline-block;
}
.cta-btn-wrap li:first-of-type a .icon img {
	height: 1.4em;
	width: auto;
}
.cta-btn-wrap li:last-of-type a .icon img {
	height: 1.8em;
	width: auto;
}
.cta-btn-wrap li a strong {
	font-size: 1.25em;
}

/* 受付終了 */
.cta-btn-wrap li.close {
	margin-bottom: 2em;
}
.cta-btn-wrap li.close a {
	cursor: default;
}
.cta-btn-wrap li.close a:hover {
	opacity: 1;
}
.cta-btn-wrap li.close .close-ill {
	position: absolute;
	z-index: 1;
	width: 84%;
	max-width: 350px;
	right: 8%;
	top: 62%;
}

@media (min-width:768px) { 
	.cta-wrap {
	display: grid;
	grid-template-columns: 30% auto;
	width: 94%;
	max-width: 1200px;
	margin: auto;
}
	.cta-txt {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	text-align: left;
	padding-left: 5%;
	align-self: end;
	padding-bottom: 1em;
}
	.cta-txt strong {
	background-color: #740003;
	color: #fff;
	line-height: 1;
	display: inline-block;
	padding: .15em .5em .3em;
	margin-right: .25em;
}
	.cta-book {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
	margin: 0;
	width: 90%;
	justify-self: center;
	
}
/*CTAボタン*/
	.cta-btn-wrap ul {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
    padding-left: 5%;
	padding-right: 5%;
	width: 100%;
	max-width: none;
	margin: 0;
}
	.cta-btn-wrap li:first-of-type {
	margin-bottom: 1.0em;
}
	.cta-btn-wrap li a {
    padding: .75em 0;
}
/* 受付終了 */
	.cta-btn-wrap li.close {
	margin-bottom: 3em;
}
}

@media (min-width:1180px) {
	.cta-txt {
	font-size: 1.5em;
	line-height: 2;
}
/*CTAボタン*/
	.cta-btn-wrap ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
	.cta-btn-wrap li {
	width: 48%;
}
	.cta-btn-wrap li a {
    padding: 1em 0;
}
/* 受付終了 */
	.cta-btn-wrap li.close  {
	margin-bottom: 0;
}
	.cta-btn-wrap li.close .close-ill  {
	width: 84%;
	right: 8%;
	top: 68%;
}
}


/*=====================================================*/
/*　フッター　*/
/*=====================================================*/
/*footer.sec {
	padding-bottom: var(--sec-space-half);
}*/
footer dl {
	padding-bottom: calc(var(--sec-space-half) + 10px);
}
footer dt {
	font-weight: normal;
	font-size: .7em;
	padding-bottom: .25em;
}
footer dt strong {
	font-weight: bold;
	font-size: 1.3em;
}
footer dd {
	font-size: .8em;
}
footer dd a {
	text-decoration: underline;
}
footer dd a:hover {
	text-decoration: none;
}
footer .ban {
	font-size: .7em;
	padding: 0 0 .5em;
	text-align: center;
}
footer .copyright {
	font-size: .65em;
	text-align: center;
}


@media (min-width:768px) { 
	footer .inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
	footer dl {
	padding-bottom: 0;
}
	footer .footer-r p {
	text-align: right;
}
}

@media (min-width:1180px) {
	footer.sec {
	padding-top: 60px;
	padding-bottom: 60px;
}
}



/*=====================================================*/
/*　下部固定メニュー　*/
/*=====================================================*/
.fix-menu ul {
	position: fixed;
	width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
    z-index: 1;
	display: flex;
}
.fix-menu ul li {
	/*width: 50%;*/
	width: 100%;
}
.fix-menu ul li a {
	display: block;
	text-align: center;
	font-weight: bold;
	font-size: .9em;
	height: 4em;
	line-height: 4em;
	color: #fff;
}
.fix-menu ul li a:hover {
	opacity: 1;
}
/* 左・本の請求　*/
.fix-menu ul li:first-of-type a {
	background-color: #c76800;
}
.fix-menu ul li:first-of-type a:hover {
	background-color: #da7200;
}
/* 左・本の請求　*/
.fix-menu ul li:last-of-type a {
	background-color: var(--c-brown);
}
.fix-menu ul li:last-of-type a:hover {
	background-color: #693010;
}

/* ページの先頭へ　*/
	#page-top {
	position: fixed;
	z-index: 1;
	bottom: calc(4em + 10px);
	right: 10px;
	width: 40px;
	height: 40px;
}

@media (min-width:768px) { 
/* ページの先頭へ　*/
	#page-top {
	bottom: calc(4em + 20px);
	right: 20px;
	width: 50px;
	height: 50px;
	
}
}

@media (min-width:960px) {
	.fix-menu ul {
	width: auto;
    height: auto;
	top: 270px;
    bottom: auto;
    right: 0;
	flex-direction: column;
	justify-content: center;
}
	.fix-menu ul li {
	width: auto;
}
	.fix-menu ul li a {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	height: auto;
	font-size: .85em;
	line-height: 1;
	letter-spacing: .05em;
	width: 3em;
	padding: 1em;
	border-radius: 5px 0 0 5px;
}
/* 上・本の請求　*/
	.fix-menu ul li:first-of-type {
	margin-bottom: 1em;
}
/* ページの先頭へ　*/
	#page-top {
	bottom: 1.5em;
}
}


/* ------------------------------------------------------------

   各社ページ

------------------------------------------------------------ */
.sub-comp {
	padding-top: 0;
	padding-bottom: 0;
}

/*=====================================================*/
/*　先頭社名　*/
/*=====================================================*/
.sub-ttl {
	background-color: #fff;
	padding-top: var(--sec-space-half);
	padding-bottom: var(--sec-space-half);
}
.sub-ttl .inner {
	position: relative;
}
.sub-ttl h2 {
	font-weight: bold;
	font-size: 1.25em;
	margin-bottom: .25em;
}
.sub-ttl h2 .genre-ico {
	display: block;
	width: fit-content;
	margin-bottom: .25em;
	margin-right: .6em;
	padding-right: .6em;
	padding-left: .6em;
}
.sub-ttl h3 .txt {
	font-size: 1.35em;
	line-height: 1.5;
	display: inline;
}
.sub-ttl h3 .txt:last-of-type {
	padding-left: .5em;
}

@media (min-width:768px) {
/*筆記体英語*/
	.sub-ttl .inner::before {
	position: absolute;
	content: "";
	display: block;
	background-repeat: no-repeat;
	background-size: 100%;
	right: 3%;
}
	body.new .sub-ttl .inner::before {
	background-image: url("../img/newlybuilt.png");
	width: 180px;
	height: 58px;
	top: calc(50% - 10px);
}
	body.renovate .sub-ttl .inner::before {
	background-image: url("../img/renovate.png");
	width: 140px;
	height: 55px;
	top: calc(50% - 10px);
}
	.sub-ttl h2 {
	margin-bottom: .5em;
}
	.sub-ttl h2 .genre-ico {
	display: inline-block;
	margin-right: 1em;
	padding-right: .8em;
	padding-left: .8em;
}
	.sub-ttl h3 .txt {
	font-size: 1.65em;
	line-height: 1.7;
	display: block;
}
	.sub-ttl h3 .txt:last-of-type {
	padding-left: 0;
}
}

@media (min-width:1180px) {
/*筆記体英語*/
	body.new .sub-ttl .inner::before {
	width: 222px;
	height: 71px;
	top: calc(50% - 10px);
}
	body.renovate .sub-ttl .inner::before {
	width: 163px;
	height: 64px;
	top: calc(50% - 10px);
}
	.sub-ttl h2 {
	margin-bottom: .75em;
}
	.new .sub-ttl h2 .genre-ico {
	margin-right: 1em;
	padding-right: .8em;
	padding-left: .8em;
}
	.sub-ttl h3 .txt {
	font-size: 2.0em;
}
}

/*=====================================================*/
/*　スライダー　*/
/*=====================================================*/
.slider-wrap {
	margin-bottom: 60px!important;
}
.slick-list {
	/*max-height: 653px;*/
}
.slick-slide {
	/*position: relative;*/
}
.slick-slide .slide-cont {
	position: relative;
	width: 100%;
    height: 0;
    padding-bottom: 66.666%;
    overflow: hidden;
	background-color: rgba(var(--c-brown-rgb),.05);
}
.slick-slide .slide-cont img {
	
	/*position: absolute;*/
	/*display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
	max-height: 350px;*/
	position: absolute;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
	object-fit: contain;
    object-position: 50% 50%;
	/*max-height: 653px;*/
	/*max-width: 980px;*/
}


/*キャプション*/
.slick-slide .caption {
    text-align: left;
    position: absolute;
    left: 0px;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: .5em 1em;
    background: rgba(var(--c-brown-rgb), .6);
    color: #fff;
    font-size: .65em;
	line-height: 1.3;
	opacity: 0;
	transition: .3s ease;
}
.slick-current .caption {
	opacity: 1;
	transition-delay: .3s;
}


/*矢印*/
.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	top: 40%;
}
.slick-prev {
    left: 0;
	z-index: 1!important;
}
.slick-next {
	right: 0;
}
.slick-prev:before,
.slick-next:before {
	width: 40px;
	height: 40px;
	background-size: 100%;
    color: var(--c-brown);
	/*top: 30%;*/
	display: block;
	content: "";
}
.slick-next::before {
    background-image: url(../img/arrow-r.png);
}
.slick-prev::before {
    background-image: url(../img/arrow-l.png);
}

@media (min-width:980px) {
/*キャプション*/
	.slick-slide .caption {
    font-size: .7em;
}
/*矢印*/
	.slick-prev,
	.slick-next {
	width: 60px;
	height: 60px;
}
	.slick-prev:before,
	.slick-next:before {
	width: 60px;
	height: 60px;
}
	.slick-prev {
    left: 4%;
}
	.slick-next {
	right: 4%;
}
}

@media (min-width:1500px) {
/*矢印*/
	.slick-prev {
    left: 10%;
}
	.slick-next {
	right: 10%;
}
}

/*=====================================================*/
/*　バックナンバー　*/
/*=====================================================*/
.bk-wrap {
	background-color: rgba(var(--c-brown-rgb),.05);
	margin-bottom: var(--sec-space-half);
}
.bk-wrap .ttl-bk {
	background-color: var(--c-brown);
	color: #fff;
	font-weight: bold;
	font-size: .94em;
	display: inline-block;
	position: absolute;
	padding: .3em 1em;
	left: calc(50% - 47%);
	margin-top: -5px;
}
.bk-wrap .ttl-bk::after {
	position: absolute;
	content: "";
	display: block;
	width: 0;
	height: 0;
	top: 100%;
	left: 0;
	border-style:solid;
	border-width: 8px 4.1em 0 4.1em;
	border-color: var(--c-brown) transparent transparent transparent;
}
.bk-wrap    .thumb-wrap + .ttl-bk   {
    display: none;
}
.bk-wrap .bk-year {
	font-weight: bold;
	text-align: center;
	padding-top: var(--sec-space);
	padding-bottom: .75em;
}
.bk-wrap .thumb-wrap {
	background-color: transparent;
	padding-top: 0;
}

@media (min-width:768px) {
	.bk-wrap .ttl-bk {
	left: calc(50% - 350px);
	font-size: 1.1em;
}
	.bk-wrap .bk-year {
	padding-top: var(--sec-space-half);
	padding-bottom: 1em;
}
}

@media (min-width:1180px) {
	.bk-wrap .ttl-bk {
	left: calc(50% - 560px);
}
	.bk-wrap .bk-year {
	padding-top: var(--sec-space-half);
	padding-bottom: 1em;
}
}


/*=====================================================*/
/*　スライダーサムネイル　*/
/*=====================================================*/
.thumb-wrap {
	background-color: #fff;
	padding-top: var(--sec-space-half);
}
.thumb-wrap:last-of-type {
	padding-bottom: var(--sec-space-half);
}
.thumb-wrap .thumb-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 94%;
	max-width: 500px;
	margin: auto;
}
.thumb-wrap .thumb-list li {
	width: 20%;
	max-width: 100px;
	padding-right: 1px;
	padding-left: 1px;
}

.bk-wrap .thumb-wrap .thumb-list li:nth-of-type(-n+5) {
	padding-bottom: 2px;
}

@media (min-width:768px) {
	.thumb-wrap {
	padding-top: var(--sec-space-half);
}
	.thumb-wrap:last-of-type {
	padding-bottom: var(--sec-space-half);
}
	.thumb-wrap .thumb-list {
	width: 100%;
	max-width: 570px;
}
	.thumb-wrap .thumb-list li {
	margin-left: 7px;
	margin-right: 7px;
}

	.bk-wrap .thumb-wrap .thumb-list li:nth-of-type(-n+5) {
	padding-bottom: 14px;
}
}

@media (min-width:1180px) {
	.thumb-wrap .thumb-list {
	max-width: 1140px;
	justify-content: center;
}

	.bk-wrap .thumb-wrap .thumb-list li:nth-of-type(-n+5) {
	padding-bottom: 0;
}
}


/*slickのリストに画像を適応*/
.slick-dots {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 94%;
	max-width: 500px;
	margin: auto;
	position: relative;
}
.slick-dots li {
	position: relative;
	width: calc(20% - 2px);
	height: 0;
	max-width: 100px;
	padding-right: 1px;
	padding-left: 1px;
	padding-bottom: 20%;
	margin: 0 1px;
	overflow: hidden;
	transition: .5s;
}
.slick-dots li img {
	object-fit: cover;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-dots li:hover {
	opacity: .8;
}

@media (min-width:768px) {
	.slick-dots {
	width: 100%;
	max-width: 570px;
}
	.slick-dots li {
	width: calc(20% - 7px);
	margin: 0 7px;
	padding-bottom: 17.55%;
}
	.slick-dots li {
	
}

}

/*=====================================================*/
/*　person　*/
/*=====================================================*/
.person-wrap {
	/*padding-top: var(--sec-space);*/
	padding-bottom: var(--sec-space-half);
}
.person-wrap .inner {
	padding-left: 5%;
    padding-right: 5%;
}
.person-wrap .person-sec {
	background-color: #fff;
	padding: calc(var(--sec-padding) * 1.25) var(--sec-padding);
	box-shadow: 0 0 10px rgba(var(--c-brown-rgb),.1);
	position: relative;
}
.person-wrap .person-sec::before,
.person-wrap .person-sec::after {
	position: absolute;
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	background-color: var(--c-brown);
	transform: rotate(-45deg);
	transform-origin: left top;
}
.person-wrap .person-sec::before {
	left: -5px;
	top: 30px;
}
.person-wrap .person-sec::after {
	right: -20px;
	bottom: -8px;
}
.person-wrap .person-sec:nth-child(n+2) {
	margin-top: var(--sec-space);
}
.person-wrap dl {
	padding-bottom: 1em;
}
.person-wrap dt {
	padding-bottom: .25em;
	font-weight: bold;
	color: var(--c-brown);
	padding-left: 2em;
}
.person-wrap dt svg {
	display: inline-block;
	margin-left: -1.5em;
	margin-right: .5em;
	vertical-align: -0.1em!important;
}
.person-wrap dd {
	line-height: 1.7;
	font-size: .94em;
}
.person-wrap .pht-person img {
	width: 44%;
	max-width: 250px;
	display: block;
	margin: auto;
}

@media (min-width:768px) { 
	.person-wrap {
	padding-top: var(--sec-space-half);
}
	.person-wrap .person-sec {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: var(--sec-padding);
	max-width: 900px;
	margin: auto;
}
	.person-wrap .person-sec::before,
	.person-wrap .person-sec::after {
	width: 70px;
}
	.person-wrap .person-sec::before {
	left: -10px;
    top: 40px;
}
	.person-wrap .person-sec::after {
	right: -28px;
	bottom: -10px;
}
	.person-wrap .pht-person {
	width: 25%;
}
	.person-wrap .pht-person img {
	width: 100%;
}
	.person-wrap dl {
	width: 75%;
	padding-left: 5%;
	padding-bottom: 0;
}
}

@media (min-width:1180px) {
	.person-wrap .inner {
	position: relative;
}
	.person-wrap .inner::before,
	.person-wrap .inner::after {
	position: absolute;
	content: "";
	display: block;
	left: 50%;
	top: 50%;
}
	.person-wrap .inner::before {
	background-image: url(../img/sub-ill-l.png);
	width: 84px;
	height: 124px;
	transform: translateX(-630px) translateY(0px);
}
	.person-wrap .inner::after {
	background-image: url(../img/sub-ill-r.png);
	width: 140px;
	height: 101px;
	transform: translateX(520px) translateY(-130px);
}
}


/*=====================================================*/
/*　会社データ　*/
/*=====================================================*/
.company-data {
	margin-bottom: var(--sec-space);
}
.company-data .fuki {
	margin-bottom: 1em;
}
.company-data .fuki img {
	width: 40%;
	max-width: 250px;
}
.data-wrap {
	background-color: #fff;
	padding: 5px;
	margin-left: 3%;
	margin-right: 3%;
	position: relative;
	max-width: 1020px;
}
.data-wrap::before,
.data-wrap::after {
	position: absolute;
	content: "";
	display: block;
	width: 30%;
	height: 30%;
	background-image: url("../img/stripe-bgdata.png");
	z-index: -1;
}
.data-wrap::before {
	right: -3%;
	top: -20px;
}
.data-wrap::after {
	left: -3%;
	bottom: -20px;
}
.data-inner {
	border: 1px solid rgba(var(--c-brown-rgb),.1);
	padding: 1.5em 1em;
}
.company-data h4 {
	border-bottom: .5em solid rgba(var(--c-brown-rgb),.05);
	position: relative;
	font-weight: bold;
	font-size: 1.2em;
	padding-left: 50px;
	padding-bottom: .25em;
	margin-bottom: 1em;
}
.company-data h4::before {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-image: url("../img/ico-home.svg");
	background-repeat: no-repeat;
	background-position: center bottom;
	left: 10px;
	bottom: 5px;
}
.company-data .cmp-list {
	font-size: .94em;
	margin-bottom: 1.25em;
}
.company-data .cmp-list dd a {
	text-decoration: underline;
}
.company-data .cmp-list dd a:hover {
	text-decoration: none;
}
/* SNSアイコン　*/
.company-data .cmp-list dd a .fa-fw {
	width: 1.5em;
}

/* タグ　*/
.company-data .tag-wrap {
	margin-bottom: 2em;
}
.company-data .tag-wrap .tag {
	font-size: .9em;
	padding-left: 1em;
	padding-right: 1em;
}

/*地図*/
.company-data .gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}
.company-data .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (min-width:768px) {
	.company-data .fuki {
	margin-bottom: 1.5em;
}
	.data-wrap {
	padding: 10px;
}
	.data-wrap::before,
	.data-wrap::after {
	width: 30%;
	height: 30%;
}
	.data-wrap::before {
	right: -3%;
	top: -30px;
}
	.data-wrap::after {
	left: -3%;
	bottom: -30px;
}
	.data-inner {
	padding: 3em;
}
	.company-data h4 {
	font-size: 1.4em;
	padding-left: 70px;
	padding-bottom: .25em;
	margin-bottom: 1.5em;
}
	.company-data h4::before {
	width: 40px;
	height: 40px;
	left: 20px;
	bottom: 10px;
}
	.company-data .data-list {
	background-image: url("../img/dot-data.png");
	background-repeat: repeat-y;
	background-position: 25% top;
	margin-bottom: 2em;
}
	.company-data .cmp-list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5em;
}
	.company-data .cmp-list dt {
	width: 25%;
	padding-right: 1em;
}
	.company-data .cmp-list dd {
	width: 70%;
}

/*地図*/
	.company-data .gmap {
    padding-bottom: 75%;
}

}

@media (min-width:1180px) {
	.company-data .fuki .inner {
	padding-left: 3%;
}
	.data-wrap {
    margin-left: auto;
    margin-right: auto;
}
	.data-wrap::before,
	.data-wrap::after {
	width: 70%;
	height: 500px;
}
	.data-wrap::before {
	right: -200px;
	top: -70px;
}
	.data-wrap::after {
	left: -200px;
	bottom: -50px;
}
	.company-data h4 {
	margin-bottom: 2em;
}
/*	.company-data .data-list {
	margin-bottom: 3em;
}*/

/*地図*/
	.company-data .gmap {
    padding-bottom: 56.25%;
}
}


/*=====================================================*/
/*　こんな施工事例もおすすめ　*/
/*=====================================================*/
.recommend-wrap {
	background-color: #fff;
}
.recommend-wrap ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	/*max-width: 800px;*/
	margin: auto;
}
.recommend-wrap ul li {
	width: 44%;
}
.recommend-wrap ul li:nth-of-type(1),
.recommend-wrap ul li:nth-of-type(2) {
	margin-bottom: var(--sec-space-half);
}
.recommend-wrap ul li img {
	height: auto;
}

.recommend-wrap ul li .comp-name {
	padding-top: .5em;
	font-size: .9em;
	color: var(--c-brown);
}
.recommend-wrap ul li .comp-name .genre-ico {
	margin-right: .5em;
	font-size: .75em;
	font-weight: normal;
}
.recommend-wrap ul li .comp-name p {
	display: block;
	padding-top: .3em;
	font-size: .94em;
	font-weight: bold;
}

@media (min-width:768px) { 
	.recommend-wrap ul li {
	width: 22%;
}
	.recommend-wrap ul li:nth-of-type(1),
	.recommend-wrap ul li:nth-of-type(2) {
	margin-bottom: 0;
}
}

@media (min-width:1180px) {
	.recommend-wrap ul {
	width: 100%;
	max-width: 1700px;
	margin: auto;
}
	.recommend-wrap ul li {
	width: 22%;
}
	.recommend-wrap ul li:nth-of-type(1),
	.recommend-wrap ul li:nth-of-type(2) {
	margin-bottom: 0;
}
}




/* ------------------------------------------------------------

   ディスプレイページ

------------------------------------------------------------ */
.display-wrap .inner {
	max-width: 980px;
	padding-bottom: var(--sec-space);
}
.display-wrap h2 {
	font-weight: bold;
	font-size: 1.25em;
	border-bottom: 0.5em solid rgba(var(--c-brown-rgb),.05);
	padding-left: 50px;
	padding-bottom: 0.25em;
	margin: var(--sec-space-half) auto;
	position: relative;
	max-width: 980px;
}
.display-wrap h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("../img/ico-home.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    left: 10px;
    bottom: 5px;
}
.display-wrap .dis-img {
	/*max-width: 980px;
	margin-left: auto;
	margin-right: auto;*/
	margin-bottom: var(--sec-space-half);
}
.display-wrap .dis-img2 {
	margin-bottom: 0;
}

@media (min-width:768px) { 
	.display-wrap h2 {
	font-size: 1.4em;
	padding-left:70px;
}
	.display-wrap h2::before {
    width: 40px;
    height: 40px;
    left: 20px;
    bottom: 10px;
}
}

@media (min-width:768px) { 
	.display-wrap h2 {
	font-size: 1.6em;
}
}

@media (min-width:980px) { 
	.display-wrap .inner {
	margin-left: auto;
	margin-right: auto;
}
}



/* ------------------------------------------------------------

   トップページ

------------------------------------------------------------ */
/*=====================================================*/
/*　ヒーローエリア　*/
/*=====================================================*/
.hero .flex-box {
	position: relative;
	background-image: url("../img/hero-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	padding-top: var(--sec-space);
	padding-bottom: var(--sec-space);
	clip-path: polygon(38% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
}
.hero-book {
	width: 70%;
	margin: 2em auto;
}
.hero dl {
	display: table;
	margin: auto;
	width: 94%;
}
.hero .hero-txt {
	display: table;
	margin: .5em auto 0;
	color: #fff;
	font-size: 1.1em;
	/*font-weight: bold;*/
	line-height: 2.5;
	letter-spacing: .2em;
}
/*シャドウ*/
.hero-book img {
	box-shadow: 0 0 20px rgba(var(--c-brown-rgb),.3);
}
.hero dd .hero-txt {
	text-shadow: 0 0 10px rgba(var(--c-brown-rgb),.9);
}

@media (min-width:768px) {
	.hero {
	position: relative;
}
	.hero .flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	margin: auto;
	clip-path: polygon(38% 0, 100% 20%, 100% 100%, 0 100%, 0 15%);
}
	.hero-book {
	width: 38%;
	max-width: 330px;
	padding-right: 3%;
	margin: 0;
	position: absolute;
	top: 15px;
	left: 62%;
	z-index: 1;
}
	.hero dl {
	display: table;
	width: 60%;
	margin: 0;
	padding-top: 2em;
}
	.hero dt {
	padding-left: 3%;
}
	.hero .hero-txt {
	font-size: 1.2em;
}
}

@media (min-width:1180px) {
	.hero .flex-box {
	justify-content: center;
}
	.hero-book {
	width: 400px;
	max-width: none;
	padding-right: 0;
	top: 15px;
	left: calc(50% + 110px);
}
	.hero dl {
	display: table;
	width: 50%;
	max-width: 650px;
	margin: 0;
	padding-top: 2em;
	margin-left: -580px;
}
	.hero dt {
	padding-left: 0;
}
	.hero .hero-txt {
	font-size: 1.4em;
	padding-top: .7em;
}
}

@media (min-width:1300px) {
	.hero-book {
	padding-right: 0;
}
}


/* ------------------------------------------------------------
   ヒーローエリア　アニメーション
------------------------------------------------------------ */
.hero dt {
	opacity: 0;
	animation-duration: 1.0s;
	animation-fill-mode: both;
}
.hero dt.show {
	opacity: 1;
	transition: 1s;
}
.blur {
	animation-name: imageBlur;
	animation-fill-mode: forwards;
	transition: .8s;
}

@keyframes imageBlur {
  from {
	opacity: 0;
    filter: blur(20px);
  }
  to {
	opacity: 1;
    filter: blur(0px);
  }
}

.hero-book {
	opacity: 0;
	animation-duration: 1.0s;
	transform: translateY(10px);
}
.hero-book.show {
	opacity: 1;
	transform: translateY(0px);
	transition: 1s;
}
.hero-txt {
	opacity: 0;
	animation-duration: 1.0s;
	transform: translateY(10px);
}
.hero-txt.show {
	opacity: 1;
	transition: 1s;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(10px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 遅延時間 */
.hero dt {
	animation-delay: 0.2s;
}
.hero-book {
	animation-delay: 0.3s;
}
.hero-txt {
	animation-delay: 0.6s;
}


/*=====================================================*/
/*　掲載会社一覧　*/
/*=====================================================*/

/*掲載内容を一部ご紹介*/
.home-comp h2 {
	text-align: center;
	font-weight: bold;
	font-size: 1.3em;
	letter-spacing: .05em;
	position: relative;
	margin-bottom: 1.25em;
}
.home-comp h2::before,
.home-comp h2::after {
	position: absolute;
	content: "";
	display: block;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 0%;
	left: 50%;
}
.home-comp h2::before {
	background-image: url("../img/ill-leaf-l.svg");
	transform: translateX(-8em);
}
.home-comp h2::after {
	background-image: url("../img/ill-leaf-r.svg");
	transform: translateX(6.5em);
}

/*掲載会社一覧*/
.comp-list {
	width: 90%;
	padding-left: 0;
	margin: 0 auto var(--sec-space-half);
}
.comp-list li:not(:last-of-type) {
	margin-bottom: var(--sec-space-half);
}


/*会社テキスト*/
.comp-list li .comp-data {
	background-color: rgba(255,255,255,.9);
	padding: var(--sec-padding);
	transform: translateX(1em) translateY(-1em);
	z-index: 1;
	position: relative;
	box-shadow: 0 0 5px rgba(0,0,0,.01);
	margin: 0;
}
.comp-list li .comp-data::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0px 0;
	border-color: transparent rgba(var(--c-brown-rgb),.5) transparent transparent;
}
.comp-list li .comp-data dt {
	color: var(--c-brown);
	font-size: .9em;
	padding-bottom: .25em;
}
.comp-list li .comp-data dt .genre-ico {
	font-size: .84em;
	margin-left: .5em;
}
.comp-list li .comp-data dd {
	padding-left: 0;
}
.comp-list li .comp-data dd .txt {
	display: block;
}



/*新築・リフォームボタン*/
.genre-btn-wrap li {
	width: 75%;
	margin: auto;
	position: relative;
}
.genre-btn-wrap li:first-of-type {
	margin-bottom: 1.5em;
}
.genre-btn-wrap li a {
	display: block;
	background-color: #fff;
	padding-top: 1em;
	padding-bottom: 1em;
	text-align: center;
	position: relative;
}
.genre-btn-wrap li a .btn-txt {
	font-weight: bold;
	position: relative;
	transition: .3s;
}
/*矢印*/
.genre-btn-wrap li a .btn-txt::before,
.genre-btn-wrap li a .btn-txt::after {
	display: block;
	position: absolute;
	content: "";
	top: 60%;
	height: 1px;
	transition: .3s;
}
.genre-btn-wrap li a .btn-txt::after {
	width: 30px;
	left: calc(100% + 1em);
}
.genre-btn-wrap li a .btn-txt::before {
	width: 10px;
	transform: rotate(45deg);
	transform-origin: right bottom;
	left: calc(100% + 1em + 20px);
}
.genre-btn-wrap li a:hover .btn-txt {
	color: #fff;
}
.genre-btn-wrap li a:hover .btn-txt::after {
	left: calc(100% + 1em + 5px);
}
.genre-btn-wrap li a:hover .btn-txt::before {
	left: calc(100% + 1em + 25px);
}
/*色*/
.genre-btn-wrap li:first-of-type a:hover {
	background-color: var(--c-new);
}
.genre-btn-wrap li:last-of-type a:hover {
	background-color: var(--c-renovate);
}
.genre-btn-wrap li:first-of-type .btn-txt::before,
.genre-btn-wrap li:first-of-type .btn-txt::after {
	background-color: var(--c-new);
}
.genre-btn-wrap li:last-of-type .btn-txt::before,
.genre-btn-wrap li:last-of-type .btn-txt::after {
	background-color: var(--c-renovate);
}
.genre-btn-wrap li a:hover .btn-txt::before,
.genre-btn-wrap li a:hover .btn-txt::after {
	background-color: #fff;
}

/*囲み二重*/
.genre-btn-wrap li::after {
	display: inline-block;
	position: absolute;
	content: "";
	background-color: #fff;
	width: 100%;
	height: 100%;
	z-index: -1;
	left: 5px;
	top: 5px;
}
.genre-btn-wrap li a:hover {
	opacity: 1;
}
.genre-btn-wrap li:first-of-type a {
	border: 1px solid var(--c-new);
	color: var(--c-new);
}
.genre-btn-wrap li:first-of-type::after {
	border: 1px solid var(--c-new);
}
.genre-btn-wrap li:last-of-type a {
	border: 1px solid var(--c-renovate);
	color: var(--c-renovate);
}
.genre-btn-wrap li:last-of-type::after {
	border: 1px solid var(--c-renovate);
}

@media (min-width:768px) { 
	.home-comp {
	background-image: url("../img/ill-bird.svg"),url("../img/ill-house.svg");
	background-repeat: no-repeat;
	background-size: 120px,200px;
	background-position: calc(50% - 300px) 40px,calc(50% + 310px) 60px;
}
/*掲載内容を一部ご紹介*/
	.home-comp h2 {
	margin-top: 1em;
	margin-bottom: 2.5em;
}
	.home-comp h2::before,
	.home-comp h2::after {
	width: 40px;
	height: 40px;
}
	.home-comp h2::before,
	.home-comp h2::after {
	top: -.25em;
}

/*掲載会社一覧*/
	.comp-list {
	width: 94%;
	max-width: 1300px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto var(--sec-space);
}
	.comp-list li {
	width: 47.5%;
}
	.comp-list li .comp-data::after {
    border-width: 12px 12px 0px 0;
}
	.comp-list li:nth-of-type(even) {
	transform: translateY(var(--sec-space-half));
}
	.comp-list li .comp-data {
	padding: 5%;
}
	.comp-list li dd .txt {
	font-size: .94em;
	line-height: 1.5;
}
	.genre-ico {
    padding: 0.3em 0.4em 0.4em;
}

/*新築・リフォームボタン*/
	.genre-btn-wrap .flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	width: 85%;
	max-width: 820px;
	margin: auto;
}
	.genre-btn-wrap li {
	width: 46%;
	max-width: 380px;
}
	.genre-btn-wrap li:first-of-type {
	margin-bottom: 0;
}
	.genre-btn-wrap li a {
	padding-top: 1.25em;
    padding-bottom: 1.25em;
}
}

@media (min-width:1180px) {
/*掲載内容を一部ご紹介*/
	.home-comp {
	padding-top: 130px;
	background-size: 155px,265px;
	background-position: calc(50% - 450px) 65px,calc(50% + 430px) 130px;
}
	.home-comp h2 {
	font-size: 1.6em;
}
	.home-comp h2::before,
	.home-comp h2::after {
	width: 45px;
	height: 45px;
}
	.home-comp h2::before {
    transform: translateX(-8.5em);
}
	.home-comp h2::after {
    transform: translateX(7.5em);
}

/*掲載会社一覧*/
	.comp-list {
	margin: 0 auto var(--sec-space-half);
}
	.comp-list li {
	width: 46.5%;
}
	.comp-list li:nth-of-type(even) {
	transform: translateY(var(--sec-space-half));
}
	.comp-list li .comp-data {
	padding: 50px 40px 40px;
	transform: translateX(40px) translateY(-25px);
}
	.comp-list li .comp-data::after {
    border-width: 14px 14px 0px 0;
}
	.comp-list li dd .txt {
	font-size: 1.2em;
	line-height: 1.8;
}
	.genre-ico {
    padding: 0.45em 0.4em 0.35em;
}

/*新築・リフォームボタン*/
	.genre-btn-wrap .flex-box {
	max-width: 960px;
}
	.genre-btn-wrap li {
	max-width: 430px;
}
	.genre-btn-wrap li a {
	font-size: 1.1em;
	padding-top: 1.5em;
    padding-bottom: 1.5em;
}

}

/*=====================================================*/
/*　ディスプレイ　*/
/*=====================================================*/
.disp-list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	width: 94%;
	padding-top: var(--sec-space-half);
	padding-bottom: var(--sec-space-half);
}
.disp-list li {
	width: 48%;
	margin-bottom: 6%;
}
.disp-list li img {
	height: auto;
}


@media (min-width:768px) { 
	.disp-list {
	width: 90%;
	max-width: 840px;
	padding-bottom: 0;
}
	.disp-list li {
	width: 47%;
	margin-bottom: 6%;
}
}

@media (min-width:1180px) {
	.disp-list {
	width: 94%;
	max-width: 1300px;
	padding-top: 0;
	justify-content: flex-start;
	column-gap: 5%;
}
	.disp-list li {
	width: 30%;
	margin-bottom: 5%;
}
}



/* ------------------------------------------------------------

   新築/リフォーム　一覧ページ

------------------------------------------------------------ */
.category .intro-area {
	margin-bottom: 2em;
}
.category .intro-area h2 {
	font-weight: bold;
	font-size: 1.3em;
	text-align: center;
	/*color: var(--c-renovate);*/
	display: table;
	padding: 1em 0 0;
	margin: 0 auto 2em;
	position: relative;
}
.category .intro-area h2::after {
	position: absolute;
	content: "";
	display: block;
	height: 3px;
	width: 1em;
	left: calc(50% - .5em);
	bottom: -1em;
}
.category .intro-area .txt {
	padding: 0 1em;
}

/*新築・リフォームで違う箇所*/
.category-new .intro-area {
	background-image: url("../img/ill-tree.svg"),url("../img/ill-house3.svg");
	background-repeat: no-repeat;
	background-size: 50px auto,50px auto;
	background-position: calc(50% - 10.5em) 1em,calc(50% + 11em) 2.5em;
}
.category-renovate .intro-area {
	background-image: url("../img/ill-bird.svg"),url("../img/ill-house2.svg");
	background-repeat: no-repeat;
	background-size: 100px auto,50px auto;
	background-position: calc(50% - 13em) .5em,calc(50% + 12em) 1.5em;
}
.category-new .intro-area h2::after {
	background-color: var(--c-new);
}
.category-renovate .intro-area h2::after {
	background-color: var(--c-renovate);
}

/*掲載会社一覧リスト*/
.cat-list{
	margin-bottom: var(--sec-space);
	border-top: 1px solid rgba(var(--c-brown-rgb),.2);
}
.cat-list li a {
	display: block;
	padding: 1.5em 0;
	border-bottom: 1px solid rgba(var(--c-brown-rgb),.2);
}
.cat-list li .flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cat-list li .flex-box .comp-pht {
	width: 38%;
}
.cat-list li .flex-box .comp-data {
	width: 58%;
	font-size: .9em;
}
.cat-list li .flex-box .comp-data dt {
	font-size: .94em;
	color: var(--c-brown);
	padding-bottom: .25em;
}
.cat-list li .flex-box .comp-data dd:first-of-type {
	margin: 0 0 .3em;
}
.cat-list li .flex-box .comp-data dd .txt {
	line-height: 1.5;
}
.cat-list li .flex-box .comp-data dd .txt:last-of-type {
	padding-left: 1em;
}


@media (min-width:768px) { 
	.category .intro-area {
	margin: 0 auto 3em;
	background-position: calc(50% - 16em) .5em,calc(50% + 15em) 1.5em;
}
	.category .intro-area h2 {
	font-size: 1.5em;
}
	.category .intro-area .txt {
	padding: 0;
	text-align: center;
}

/*新築・リフォームで違う箇所*/
	.category-new .intro-area {
	background-size: 60px auto,60px auto;
	background-position: calc(50% - 18em) 1em,calc(50% + 17.5em) 2.5em;
}

/*掲載会社一覧リスト*/
	.cat-list li a {
	/*padding: 2em 0;*/
	position: relative;
}
	.cat-list li a::after {
	display: block;
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	border-top: 1px solid rgba(var(--c-brown-rgb),.5);
	border-right: 1px solid rgba(var(--c-brown-rgb),.5);
	transform: rotate(45deg);
	transition: .5s;
	right: 10px;
	top: 50%;
}
	.cat-list li a:hover::after {
	right: 0;
}
	.cat-list li .flex-box .comp-pht {
	width: 30%;
}
	.cat-list li .flex-box .comp-data {
	width: 66%;
	font-size: 1em;
}
	.cat-list li .flex-box .comp-data dd .txt {
	font-size: 1.1em;
	line-height: 1.7;
	display: block;
}
	.cat-list li .flex-box .comp-data dd .txt:last-of-type {
	padding-left: 0;
}
}

@media (min-width:1180px) {
	.category .intro-area {
	margin: 1em auto 4em;
}
	.cat-list li a {
	padding: 2em 0;
}
/*新築・リフォームで違う箇所*/
	.category-new .intro-area {
	background-size: 75px auto,75px auto;
	background-position: calc(50% - 22em) 1em,calc(50% + 21.5em) 2.5em;
}
	.category-renovate .intro-area {
	background-size: 120px auto,65px auto;
	background-position: calc(50% - 20em) 1em,calc(50% + 19em) 2.5em;
}
	.category .intro-area h2 {
	font-size: 1.8em;
}

/*掲載会社一覧リスト*/
	.cat-list li .flex-box {
	padding: 0 2em;
}
	.cat-list li .flex-box .comp-pht {
	width: 33%;
}
	.cat-list li .flex-box .comp-data {
	width: 63%;
	font-size: 1em;
}
	.cat-list li .flex-box .comp-data dd .txt {
	font-size: 1.4em;
}
	.cat-list li .flex-box .comp-data dd .txt:last-of-type {
	padding-left: 0;
}
}


/* ------------------------------------------------------------

   本の内容

------------------------------------------------------------ */
/*=====================================================*/
/*　共通　*/
/*=====================================================*/
.book .red {
	color: #c00;
}
/*本の内容ページの応募ボタン*/
.book .btn-apply a {
	display: table;
	margin: auto;
	background-color: #cfbe36;
	color: #fff;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	letter-spacing: .05em;
	border-radius: 100px;
	padding: 1em 3em;
	position: relative;
	box-shadow: 0 0 10px rgba(var(--c-brown-rgb),.1);
	transition: .3s transform;
    transform: translateY(0);
}
.book .btn-apply a::after {
	position: absolute;
	content: "";
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: .6em;
	height: .6em;
	top: 50%;
	right: 1.5em;
	transform: rotate(45deg) translateY(-55%);
}
.book .btn-apply a:hover {
	opacity: .9;
	transform: translateY(2px);
	box-shadow: 0 3px 10px rgba(var(--c-brown-rgb),.2);
}
/* 受付終了 */
.book .btn-apply {
	width: 80%;
	margin: auto;
}

/*吹き出しの見出し*/
.book .ttl-fuki {
	font-size: 1.4em;
}
.book .ttl-fuki::before {
	transform: translateX(-6.5em);
}
.book .ttl-fuki::after {
	transform: translateX(5em);
}

@media (min-width:768px) {
/*本の内容ページの応募ボタン*/
	.book .btn-apply a {
	padding: 1em 5em;
	font-size: 1.4em;
}
/*吹き出しの見出し*/
	.book .ttl-fuki {
	font-size: 1.6em;
	margin-bottom: 1.5em;
}
}

@media (min-width:1180px) {

/*吹き出しの見出し*/
	.book .ttl-fuki {
	font-size: 1.8em;
}
	.book .ttl-fuki::before,
	.book .ttl-fuki::after {
	bottom: -0.2em;
}

}


/*=====================================================*/
/*　本の内容メイン　*/
/*=====================================================*/
.book-hero-inner {
	background-color: rgba(var(--c-brown-rgb),.05);
	padding: 30px 0;
	width: calc(100% - 60px);
	margin: auto;
	position: relative;
}
.book-hero-inner::before,
.book-hero-inner::after {
	content: "";
	display: block;
	position: absolute;
	background-image: url("../img/book/hero-txt.png"),url("../img/book/hero-txt.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 8px;
	height: 132px;
}
.book-hero-inner::before {
	left: -19px;
	top: 70%;
}
.book-hero-inner::after {
	right: -19px;
	top: 19%;
}
/*イラスト*/
.book-hero-inner .ill {
	position: absolute;
	height: auto;
}
.book-hero-inner .house {
	width: 22%;
	/*width: 95px;*/
	right: 2%;
	top: 7%;
}
.book-hero-inner .tree {
	width: 15%;
	/*width: 60px;*/
	left: -2.5%;
	top: 40%;
}
.book-hero .cover {
	width: 62%;
	max-width: 400px;
	margin: 30px auto;
}
.book-hero .cover img {
	box-shadow: 0 0 20px rgba(var(--c-brown-rgb),.3);
}
.book-hero h2 {
	display: table;
	margin-left: -15px;
}
.book-hero h2 span {
	display: inline-block;
	background-color: #fff;
	color: var(--c-brown);
	font-weight: bold;
}
.book-hero h2 span {
	display: inline-block;
	background-color: #fff;
	color: var(--c-brown);
	font-weight: bold;
	font-size: 2.4rem;
	padding: 5px 10px;
	margin: 7px 0;
}
.book-hero h2 span strong {
	font-size: 2.8rem;
}
.book-hero h2 span strong.free {
	color: #cfbe36;
	font-size: 3.1rem;
}

@media (min-width:600px) {
	.book-hero h2 span {
	font-size: 3.0rem;
}
	.book-hero h2 span strong {
	font-size: 3.4rem;
}
	.book-hero h2 span strong.free {
	font-size: 3.6rem;
}
}

@media (min-width:768px) {
	.book-hero {
	margin-bottom: 50px;
}
	.book-hero-inner {
	margin-top: 30px;
	padding: 50px 0;
}
	.book-hero-inner::before,
	.book-hero-inner::after {
	top: 50%;
	transform: translateY(-50%);
}
	.book-hero-inner .house {
	width: 20%;
	max-width: 180px;
	right: 3%;
	top: auto;
	bottom: -12%;
}
	.book-hero-inner .tree {
	width: 9%;
	max-width: 80px;
	left: 10%;
	top: 92%;
}
	.book-hero .grid {
	display: grid;
	grid-template-columns: 35% auto;
	width: 94%;
	max-width: 1020px;
	margin: auto;
}
	.book-hero .grid .cover {
 	grid-row-start: 1;
	grid-row-end: 3;
	grid-column-start: 1;
	grid-column-end: 2;
	margin: -70px 0 0;
	width: 100%;
	display: flex;
	align-items: flex-end;
}
	.book-hero h2 {
	margin-left: 7.5%;
	align-self: end;
}
	.book-hero h2 span {
	font-size: 3.2rem;
	white-space: nowrap;
	/*margin: 12px 0;*/
}
	.book-hero h2 span strong {
	font-size: 3.8rem;
}
	.book-hero h2 span strong.free {
	font-size: 3.8rem;
}
	.book-hero .btn-apply {
	margin-left: 7.5%;
	margin-top: 20px;
}
	.book-hero .btn-apply a {
	margin: 0;
	padding-left: 3em;
	padding-right: 3em;
}
}

@media (min-width:1180px) {
	.book-hero-inner {
    padding: 60px 0;
	margin-top: 60px;
    width: calc(100% - 100px);
}
	.book-hero-inner::before,
	.book-hero-inner::after {
	width: 9px;
    height: 149px;
}
	.book-hero-inner::before {
	left: -30px;
}
	.book-hero-inner::after {
	right: -30px;
}
	.book-hero-inner .house {
	max-width: 200px;
	right: auto;
	left: calc(50% + 400px);
}
	.book-hero-inner .tree {
	left: -7%;
	top: 80%;
	width: 110px;
	max-width: none;
}
	.book-hero .grid {
	grid-template-columns: 400px auto;
	width: 94%;
}
	.book-hero .grid .cover {
	margin: -120px 0 0;
}
	.book-hero h2 {
	margin-left: 50px;
}
	.book-hero h2 span {
	font-size: 3.6rem;
	margin: 12px 0;
}
	.book-hero h2 span strong {
	font-size: 4.7rem;
}
	.book-hero h2 span strong.free {
	font-size: 4.7rem;
}
	.book-hero .btn-apply {
	margin-left: 50px;
	margin-top: 30px;
}
	.book-hero .btn-apply a {
	padding-left: 4em;
	padding-right: 4em;
}
}

@media (min-width:1600px) {
	.book-hero-inner {
	width: calc(100% - 200px);
}
	.book-hero-inner .tree {
	left: calc(50% - 700px);
	top: 38%;
	width: 124px;
}
	.book-hero-inner::before {
	left: -55px;
}
	.book-hero-inner::after {
	right: -55px;
}
}


/* ------------------------------------------------------------
   本の内容　アニメーション
------------------------------------------------------------ */
.anime-txt {
	position: relative;
}
.anime-txt::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	right: 0;
	top: 0;
	opacity: 0;
	animation-name: slideText;
	animation-duration: 1.0s;
	animation-fill-mode: forwards;
	animation-delay: 0.4s;
}

.anime-txt.show::before {
	width: 0%;
	opacity: 1;
}

@keyframes slideText {
  from {
	width: 100%;
  }
  to {
	width: 0%;
  }
}


/*=====================================================*/
/*　スライダー　*/
/*=====================================================*/
.book-slide {
	padding-bottom: var(--sec-space-half);
	transition: none;
}
.slide-book li {
	/*width: 240px;
	transition: none;*/
}

@media (min-width:768px) {
	.slide-book li {
	/*width: 400px;*/
}
}

/*=====================================================*/
/*　本の中身はこちら　*/
/*=====================================================*/
.book-nakami .inner {
	background-color: #fff;
	padding: 5px;
	margin-bottom: 2em;
}
.book-nakami .inner2 {
	border: 2px solid #7a6a55;
	padding: 3px;
}
.book-nakami .inner3 {
	border: 1px solid #7a6a55;
	padding: 30px 1.5em;
}
.book-nakami .inner2,
.book-nakami .inner3 {
	position: relative;
}
.book-nakami .inner2::before,
.book-nakami .inner2::after,
.book-nakami .inner3::before,
.book-nakami .inner3::after {
	position: absolute;
	content: "";
	display: block;
}
.book-nakami .inner2::before {
	border-bottom: 1em solid transparent;
	border-left: 1em solid #7a6a55;
	left: 3px;
	top: 3px;
}
.book-nakami .inner2::after {
	border-top: 1em solid #7a6a55;
	border-left: 1em solid transparent;
	right: 3px;
	top: 3px;
}
.book-nakami .inner3::before {
	border-right: 1em solid transparent;
	border-bottom: 1em solid #7a6a55;
	left: 0px;
	bottom: 0px;
}
.book-nakami .inner3::after {
	border-top: 1em solid transparent;
	border-right: 1em solid #7a6a55;
	right: 0px;
	bottom: 0px;
}
/*誌面*/
.book-nakami .shimen-wrap {
	background-image: url("../img/book/dot.gif"),url("../img/book/dot.gif");
	background-repeat: repeat-x,repeat-x;
	background-position: center top,center bottom;
	padding: 40px 0;
	margin: 20px 0;
}
.book-nakami .shimen {
	max-width: 850px;
	margin: auto;
}
.book-nakami .shimen01 {
	margin-bottom: 40px;
}
/*注意事項*/
.book-nakami .shimen-att {
	font-size: .8em;
	margin-bottom: 30px;
}
.book-nakami .shimen-att li {
	padding-left: 2.5em;
	text-indent: -2.5em;
}
/*巻末シート*/
.book-nakami .siryo h4 {
	color: #245638;
	font-weight: bold;
	font-size: 1.2em;
	border-bottom: 1px solid #245638;
	padding-bottom: .25em;
	margin-bottom: 1em;
}
.book-nakami .siryo h4 br {
	display: none;
}
.book-nakami .siryo-img {
	width: 70%;
	max-width: 500px;
	margin: 0 auto 1em;
}

@media (min-width:768px) {
	.book-nakami .inner {
	margin-bottom: 3em;
	padding: 9px;
}
	.book-nakami .inner3 {
	padding: 40px 2.5em;
}
	.book-nakami .lead {
	margin: auto;
	display: table;
	text-align: center;
}
/*誌面*/
	.book-nakami .shimen-wrap {
	padding: 50px 0;
	margin: 30px 0;
}
	.book-nakami .shimen01 {
	margin-bottom: 50px;
}
/*注意事項*/
	.book-nakami .shimen-att {
	margin-bottom: 50px;
}
/*巻末シート*/
	.book-nakami .siryo h4 {
	font-size: 1.4em;
}
}


@media (min-width:960px) {
/*誌面*/
	.book-nakami .shimen-wrap {
	padding: 60px 0 70px;
	margin: 40px 0 60px;
}
	.book-nakami .shimen01 {
	margin-bottom: 60px;
}
/*注意事項*/
	.book-nakami .shimen-att {
	margin-bottom: 60px;
}
/*巻末シート*/
	.book-nakami .siryo {
 	display: grid;
	grid-template-columns: 35% auto;
}
	.book-nakami .siryo .siryo-img {
 	grid-row-start: 1;
	grid-row-end: 3;
	grid-column-start: 1;
	grid-column-end: 2;
	width: 100%;
}
	.book-nakami .siryo h4 {
 	grid-column-start: 2;
	grid-column-end: 3;
	align-self: end;
	padding-left: 5%;
	padding-bottom: .75em;
	line-height: 1.7;
}
	.book-nakami .siryo h4 br {
	display: block;
}
	.book-nakami .siryo .txt {
 	grid-column-start: 2;
	grid-column-end: 3;
	padding-left: 5%;
}

}


@media (min-width:1180px) {
	.book-nakami .inner {
	width: 1300px;	
	padding: 18px;
	margin-bottom: 4em;
}
	.book-nakami .inner2 {
	padding: 6px;
}
	.book-nakami .inner3 {
	padding: 70px 140px
}
	.book-nakami .inner2::before {
	border-bottom: 1.7em solid transparent;
	border-left: 1.7em solid #7a6a55;
	left: 6px;
	top: 6px;
}
	.book-nakami .inner2::after {
	border-top: 1.7em solid #7a6a55;
	border-left: 1.7em solid transparent;
	right: 6px;
	top: 6px;
}
	.book-nakami .inner3::before {
	border-right: 1.7em solid transparent;
	border-bottom: 1.7em solid #7a6a55;
}
	.book-nakami .inner3::after {
	border-top: 1.7em solid transparent;
	border-right: 1.7em solid #7a6a55;
}
}


/*=====================================================*/
/*　発刊のごあいさつ　*/
/*=====================================================*/
.book-aisatu {
	background-color: rgba(var(--c-brown-rgb),.05);
}
.book-aisatu .txt-wrap {
	max-width: 820px;
	margin: auto;
}
.book-aisatu .txt {
	padding-bottom: 1em;
}
.book-aisatu .shamei {
	text-align: right;
}

@media (min-width:768px) { 
	.book-aisatu {
	background-image: url("../img/book/aisatsu-l.png"),url("../img/book/aisatsu-r.png");
	background-repeat: no-repeat;
	background-position: calc(50% - 520px) 45% , calc(50% + 510px) 68%;
	background-size: 88px,83px;
}
	.book-aisatu .txt {
	line-height: 2.2;
	padding-bottom: 1.25em;
}
}


/*=====================================================*/
/*　404　*/
/*=====================================================*/
.sec404 {
	text-align: center;
	margin-top: var(--sec-space);
	margin-bottom: var(--sec-space);
}
.sec404 dt {
	font-size: 2em;
	padding-bottom: 1em;
}
.sec404 dd {
	line-height: 2;
}
.sec404 .btn {
	margin-top: 1em;
}
.sec404 .btn a {
	text-decoration: underline;
}

/* ------------------------------------------------------------

   ●●●

------------------------------------------------------------ */
@media (min-width:768px) { 
	
}
@media (min-width:1180px) {
	
}