@charset "utf-8";



/*リセットCSS（ress.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/ress/dist/ress.min.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	font-size: 14px;
}

body {
	overflow-x: hidden;
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #333;
	line-height: 2;
}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*section全般の設定*/
section + section {
	padding-top: 30px;
}

/*フォームタグ全般の設定*/
input, textarea, select {
	border: 1px solid #999;
	padding: 0 10px;
}

/*ress.cssでselectで矢印が消えてしまうのを戻す*/
select {
	-moz-appearance: menulist;
	-webkit-appearance: menulist;
	appearance: menulist;
}
select::-ms-expand {
    display: block;	/*IE用*/
}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ulタグ、olタグ*/
ul,ol {
	margin: 0 5px 30px 25px;
}

/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*文字色*/
}

a:hover {
	color: #ec8c1a;
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1400px;	/*最大幅。これ以上幅が広がらないように。*/
}

/*header。ロゴなどが入った最上段のボックス。
---------------------------------------------------------------------------*/
header {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 10px 0;
}

/*logo画像*/
header #logo {
	width: 200px;
	margin: 0 auto;
}

/*電話番号*/
header address {
	font-style: normal;
}

/*電話番号のアイコン（アイコンにはFont Awesomeを使用）*/
header i {
	padding-right: 10px;
}

/*address内のspanタグ。受付時間などの行です。*/
header address span {
	display: block;
	font-size: 0.7rem;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #ec8c1a url(../images/icon_menu.png) no-repeat center top/50px;
}

/*小さな端末用のメニューが開いた段階の３本バーの設定。×印が出ている状態の設定。*/
#menubar_hdr.close {
	background: #ff0000 url(../images/icon_menu.png) no-repeat center bottom/50px;	
}

/*大きな端末用のメインメニューの設定
---------------------------------------------------------------------------*/
#menubar {
	display: none;
}

/*小さな端末用のメインメニューの設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#menubar-s {
	display: none;
	animation-name: opa1;
	animation-duration: 1S;
	animation-fill-mode: both;
	background: #ec8c1a;
	position: fixed;overflow: auto;z-index: 99;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 50px;
	text-align: center;
}

/*nav要素*/
#menubar-s nav {
	height: 100%;
	background: #fff;
	padding: 20px;
	border-radius: 30px;
}

/*ul要素。メニュー１個１個を囲む親のボックス。*/
#menubar-s ul {
	margin: 0;
	height: 100%;
	list-style: none;
	padding: 20px;
	background: #fff;
	overflow: auto;
}

/*メニュー１個あたりの設定*/
#menubar-s li {
	margin-bottom: 10px;
}

/*リンクテキスト*/
#menubar-s a {
	text-decoration: none;
	display: block;
	color: #333;
	padding: 5px 0;
	transition: 0.3s;
}

/*アイコン画像（アイコンにはFont Awesomeを使用）*/
#menubar-s i {
	display: block;
	padding-bottom: 10px;
	color: #ec8c1a;
}

/*英字の装飾テキスト*/
#menubar-s li span {
	display: block;
	font-size: 0.5rem;
	color: #ccc;
	letter-spacing: 0.2em;
}

/*スクロールバーのカスタマイズ（※対応しているブラウザは限られます）*/
#menubar-s ul::-webkit-scrollbar {
	width: 8px;	
}

/*スクロールバー本体（色のついた部分）*/
#menubar-s ul::-webkit-scrollbar-thumb {
    background: #ec8c1a;
}

/*スクロールバーの背景部分（グレー色の部分）*/
#menubar-s ul::-webkit-scrollbar-track {
    background: #eee;
}

/*共通設定。角を丸くする指定。直角がいいならブロックごと削除。*/
#menubar-s ul::-webkit-scrollbar-thumb,
#menubar-s ul::-webkit-scrollbar-track {
    border-radius: 50px;	/*ある程度大きければ適当でOK*/
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	padding: 50px 20px 20px 20px;
}

/*mainブロック内のh2タグ*/
main h2 {
	padding: 5px;
	margin-bottom: 30px;
	position: relative;		/*アニメーションに必要な設定*/
	letter-spacing: 0.1em;

}

/*h2タグのbefor（下線のデフォルトの状態の設定）*/
main h2::before {
	background: #d9d9d9;
}

/*h2タグのbefor,after 共通設定*/
main h2::before ,main h2::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 3px;	/*ラインの高さ*/
}

/*h2タグのafter（アニメーションの初期設定）*/
main h2::after {
	background: #ec8c1a;
	transition: 1s 0.5s;
	transform: scaleX(0);		/*幅。最初は0にして見えなくしておく。*/
	transform-origin: left top;	/*線の出現起点が左からになるように。中央からの出現がよければこの１行削除。*/
}

/*h2タグのアニメーション結果。ライン幅が100%になる。*/
main h2.linestyle::after {
	transform: scaleX(1);
}

/*mainブロックのh3タグ*/
main h3 {
	padding: 5px;
	margin-bottom: 30px;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #ccc;	
}

/*mainブロックのpタグ*/
main p {
	margin: 0 5px 30px;	
}

/*listボックスを囲むボックス*/
.list-container {
	display: flex;
	flex-wrap: wrap;
	padding: 0 5px;
}

/*１個あたりのボックス*/
.list {
	width: 49%;
	margin-bottom: 15px;
	margin-right: 2%;
	padding: 10px;
	position: relative;
	overflow: hidden;
	transition: 0.3s;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	background: #fff;
}

/*偶数のボックスの右側マージンをなくす*/
.list:nth-of-type(even) {
	margin-right: 0;
}

/*マウスオン時にボックスの影を少し濃くする*/
.list:hover {
	box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
}

/*リンクテキスト*/
.list a {
	text-decoration: none;
	color: #333;
}

/*ボックス内のh4タグ*/
.list h4 {
	line-height: 1.5;
	color: #ec8c1a;
	margin: 5px 0;
}

/*ボックス内のpタグ。指定した行数までを表示。*/
.list p {
	margin: 0!important;	/*「main p」のマージンをリセットする*/
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;	/*表示させたい行数。変更する際は、下の「IE対策」の「height」も変更。*/
	font-size: 0.7rem;
    line-height: 1.5em;		/*IE対策。行間。１行あたりの高さの事。1.5文字分。*/
    max-height: 4.5em;		/*IE対策。最大の高さ。1.5emの3倍の4.5emになっているので、3行分。*/
}

/*NEW,UPアイコン
---------------------------------------------------------------------------*/
/*NEW,UPアイコン 共通*/
.newicon, .upicon {
	display: inline-block;
	text-align: center;
	padding: 0 5px;
	border-radius: 3px;
	transform: scale(0.7);
}

/*newiconへの追加指定。*/
.newicon {
	background: #f00;
	color: #fff;
}

/*upiconへの追加指定。*/
.upicon {
	background: #257dce;
	color: #fff;
}

/*option帯リボン
---------------------------------------------------------------------------*/
/*option1,option2 共通*/
.option1, .option2 {
	font-size: 0.7rem;	/*文字サイズ*/
	display: inline-block;
	width: 200px;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 0px;
	transform: translate(-60px, 20px) rotate(-30deg);	/*translateは配置場所の指定。rotateは回転。*/
	box-shadow: 0px 3px 2px rgba(0,0,0,0.2);
}

/*h2タグ内で使った場合のoption1,option2 共通（※CMS用）*/
h2 .option1, h2 .option2 {
	width: auto;
	position: relative;
	transform: translate(0px, -4px) rotate(0deg);
	padding: 5px 20px;
	margin-left: 10px;
}

/*option1への追加指定。*/
.option1 {
	background: #ff0000;
	color: #fff;
}

/*option2への追加指定。*/
.option2 {
	background: #ccc;
	color: #888;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #222;
	color: #999;
	font-size: 0.7rem;
	padding: 10px 25px;
	display: flex;
	justify-content: space-between;
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #999;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（列単位）*/
#footermenu ul {
	margin: 0;
	list-style: none;
	align-self: center;	/*フッターメニューをブロックの上下中央に配置する。上によせたいならこの１行削除。*/
}

/*title*/
#footermenu .title {
	font-weight: bold;
	color: #ccc;
	padding-bottom: 5px;
}

/*フッター右側の装飾画像*/
#footermenu .kazari {
	display: none;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6rem;
	background: #ec8c1a;
	color: #fff;
	text-align: center;	
	padding: 20px;
}

/*リンクテキスト*/
footer a {color: #fff;text-decoration: none;}

/*リンクテキストのマウスオン時*/
footer a:hover {color: #fff;}

/*著作部分*/
footer .pr {display: block;}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #ccc;
	font-weight: bold;
	padding: 10px 5px;
	background: #fafafa;
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;
	table-layout: fixed;
	width: calc(100% - 10px);
	margin: 0 auto 30px;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;
	word-break: break-all;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;
	text-align: left;
}

/*よく頂く質問
---------------------------------------------------------------------------*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}
/*質問*/
.faq dt {
	border-radius: 10px;
	margin-bottom: 20px;
	background: linear-gradient(#fff, #f7f7f7);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
	text-indent: -54px;
	padding: 20px 20px 20px 54px;
}
/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";	/*Font Awesome*/
	color: #ec8c1a;
	padding: 0 20px;
}

/*回答*/
.faq dd {
	padding: 0 40px 30px;
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;
}


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

.pagetop 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);
	border: 1px solid #fff;
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);
}

/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;
	font-size: 1.2rem;
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	background: #ec8c1a;
	color: #fff;
	border-radius: 5px;
	padding: 5px 10px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/*右側の矢印アイコン（アイコンにはFont Awesomeを使用）*/
.btn i {
	padding-left: 10px;
	transform: scale(1.5);
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	opacity: 0.9;
}

/*詳細ページの画像切り替え（imgchg_pack.js）※一般のhtmlテンプレートで利用。
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	margin: 0 auto 20px;
	text-align: center;
	width: 100%;
}

/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index: 2;
	position: relative;
	overflow: hidden;
}

/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index: 1;
	position: absolute;
	left: 0px;
	top: 0px;
	overflow: hidden;
}

/*大きな画像のボックスの中の画像*/
#item-image img {
	width: 100%;
}

/*サムネイル画像*/
.thumbnail {
	width: 80px;	/*画像の幅*/
	border: 1px solid #dcdcdc;
	margin-bottom: 5px;
}

.thumbnail:hover {
	border: 1px solid #999;
}

/*こだわりアイコンブロックの設定（※CMS用）
---------------------------------------------------------------------------*/
.specialbox {
	display: inline-block;
}
.specialbox img {
	padding: 2px 0;;
}

/*パノラマ画像のサイズ設定（※CMS用）
---------------------------------------------------------------------------*/
.panorama-img {
	width: 100% !important;
	height: 200px !important;
}

/*テーマカラーの背景色の「注目物件」ボックス
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.bg1 {
	background: #ec8c1a;
	padding: 12px;
	border-radius: 5px;
	color: #fff;
}

/*ボックス内のリンクテキスト*/
.bg1 > a {
	color: #fff;
}

/*ボックス内のh2タグ*/
.bg1 h2 {
	text-align: center;
	margin: 0 !important;
}

/*ボックス内のh2タグのbefor（下線のデフォルトの状態の設定）*/
.bg1 h2::before {
	background: transparent;
}

/*ボックス内のh2タグのafter（アニメーションの初期設定）*/
.bg1 h2::after {
	background: #fff;
	transform-origin: center top;
}

/*pickupスライドショーコーナー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むボックス*/
.pickup {
	position: relative;
	display: flex;
}

/*マウスオン時の設定*/
.pickup .list:hover figure {
	opacity: 0.8;
}

/*１個あたりのボックス*/
.pickup .slick-slide {
	margin: 5px !important;
	width: auto;
}

/*ボックス内のh4タグ*/
.pickup .list h4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
    line-height: 1.5em;
    height: 1.5em;
}

/*ボックス内のpタグの最大の高さ*/
.pickup .list p {
    height: 4.4em;
}

/*ボックス内の画像*/
.pickup .list img {
	object-fit: cover;
	height: 70px;
	width: 100%;
	font-family: 'object-fit: cover;';
}

/*左右の三角矢印の共通設定*/
.slick-arrow {
	position: absolute;
	bottom: 45%;
}

/*左右の三角矢印の共通設定。マウスオン時。*/
.slick-arrow:hover {
	cursor: pointer;
	opacity: 0.8;
}

/*左右の三角矢印の形、色、サイズ*/
.slick-prev::after,
.slick-next::after {
	display: block;
	content: "▼";
	color: #fff;
	font-size: 0.8rem;
}

/*左側の三角*/
.slick-prev {
	left: 5px;
}

/*左側の三角を回転させる指定*/
.slick-prev::after {
	transform: rotate(90deg);
}

/*右側の三角*/
.slick-next {
	right: 5px;	/*右からの配置場所*/
}

/*右側の三角を回転させる指定*/
.slick-next::after {
	transform: rotate(-90deg);
}

/*スライドショー（slickを使用）
---------------------------------------------------------------------------*/
.mainimg {
	position: relative;
	padding: 0 !important;
}

/*マウスオン時の設定*/
.mainimg:hover {
	opacity: 0.8;
}

/*丸いページナビボタン全体を囲むブロック*/
.slick-dots {
	text-align: center;
	width: 100%;
	margin:0;
	line-height: 1;
	position: absolute;
	bottom: 10px;
}

/*丸いページナビボタン１個あたりの設定*/
.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
.slick-dots li button {
	display: block;
	text-indent: -9999px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	cursor: pointer;
	background: #fff;
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
.slick-dots li.slick-active button {
	background: #ec8c1a;
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	display: flex;
	flex-wrap: wrap;
	padding: 0 5px;
}

/*----<p>使用の場合-----*/

p#new {
	border-bottom: 1px solid #ccc;
	padding: 5px 0;
}

/*----<dl>使用の場合-----*/

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid #ccc;
	padding: 5px 0;
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;
}

/*bg1設定*/
#new dt span.icon-bg1 {
	background: #386091;
}

/*bg2設定*/
#new dt span.icon-bg2 {
	background: #91384d;
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #ec8c1a !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.large {font-size: 2rem;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}

/*追加
------------------------------------------------------------------------------*/
.markback{
    background: url(../images/markback2.png) repeat-x left bottom ;
    background-size: contain;
    width:100%;
    height:80px;
}

.Gcalendar{
    width:80%;
    height:500px;
}


/* タブレットでの大きさ */
@media (max-width: 1020px) and (min-width: 768px){
 iframe{
  width:100%; /* 横幅 */
  height:400px; /* 縦幅 */
　}
}
/* スマホでの大きさ */
@media (max-width: 767px) {
iframe{
 width:100%; /* 横幅 */
 height:300px; /* 縦幅 */
　}
}

@media screen and (max-width:796px) {

    .Gcalendar{
        width:100%;
        height:100%;
    }
    }
/*---------------------------------------------------------------------------
ここから下は画面幅480px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:480px) {

/*ボックス内の画像*/
.pickup .list img {
	height: 120px;
}

}



/*---------------------------------------------------------------------------
ここから下は画面幅600px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:600px) {

/*ボックス内の画像*/
.pickup .list img {
	height: 160px;
}
}


/*---------------------------------------------------------------------------
ここから下は画面幅800px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:800px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 18px;
}

/*section全般の設定*/
section + section {
	padding-top: 50px;
}

/*header。ロゴなどが入った最上段のボックス。
---------------------------------------------------------------------------*/
header{
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

/*logo画像*/
header #logo {
	width: 300px;
	margin: 0;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: none;
}

/*大きな端末用のメインメニューの設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#menubar {
	display: block;
}
/*ul要素。メニュー１個１個を囲む親のボックス。*/
#menubar ul {
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: space-around;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	line-height: 1.5;
}

/*メニュー１個あたりの設定*/
#menubar li {
	flex: 1;
	text-align: center;
	position: relative;
}

/*ラインアニメーションの設定*/
#menubar li::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 5px;
	background: #ec8c1a;
	transition: 0.3s;
	transform: scaleX(0);
	transform-origin: center top;
}

/*アニメーション結果。ライン幅が100%になる。*/
#menubar li:hover::before {
	transform: scaleX(1);
}

/*リンクテキスト*/
#menubar li a {
	text-decoration: none;
	display: block;
	color: #333;
	padding: 12px 0px 17px 0px;
}

/*アイコン画像（アイコンにはFont Awesomeを使用）*/
#menubar i {
	display: block;
	padding-bottom: 10px;
	color: #ec8c1a;
}

/*アイコンのマウスオン時*/
#menubar li:hover i {
	transition: 0.3s;
	transform: scale(1.15);
}

/*spanタグ（装飾用のテキスト）*/
#menubar span {
	display: block;
	font-size: 0.5rem;	
	opacity: 0.6;
	letter-spacing: 0.2em;
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	padding: 50px;	/*ボックス内の余白*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8rem;
	padding: 20px 55px;
}
/*フッター右側の装飾画像*/
#footermenu .kazari {
	display: block;
	max-width: 200px;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	text-indent: -58px;
	padding: 20px 20px 20px 58px;
}

/*listブロック設定
---------------------------------------------------------------------------*/
/*１個あたりのボックス*/
.list {
	width: 23%;
	margin-bottom: 25px;
	margin-right: 2.66%;
}
/*偶数のボックスの右側マージンを再指定。これがないと小さな端末のマージン0が引き継がれてレイアウトが崩れます。*/
.list:nth-of-type(even) {
	margin-right: 2.66%;
}
/*4の倍数のボックスの右側マージンをなく）*/
.list:nth-of-type(4n) {
	margin-right: 0;
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;
	display: flex;
	justify-content: space-between;
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;
	background: #999;
	color: #fff;
	font-size: 0.9rem;
	text-align: center;
	border-radius: 3px;
	margin-right: 1.2em;
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.5;
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);
}

/*btnの設定
---------------------------------------------------------------------------*/
/*ボタン*/
.btn a {
	padding: 15px 40px;	
	letter-spacing: 0.1em;
}

/*右側の矢印アイコン（アイコンにはFont Awesomeを使用）*/
.btn i {
	padding-left: 20px;
}

/*詳細ページの画像切り替え（imgchg_pack.js）※一般のhtmlテンプレートで利用。
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	width: 80%;
}

/*パノラマ画像のサイズ設定（※CMS用）
---------------------------------------------------------------------------*/
.panorama-img {
	height: 500px !important;
}

/*pickupスライドショーコーナー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むボックス*/
.pickup {
	padding: 20px;
}

/*１個あたりのボックス*/
.pickup .slick-slide {
	margin: 10px !important;
}

/*ボックス内の画像*/
.pickup .list img {
	height: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 45%;display: inline-block;}


}



/*---------------------------------------------------------------------------
ここから下は画面幅1000px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1000px) {

/*ボックス内の画像*/
.pickup .list img {
	height: 150px;


}
}
