@charset "utf-8";

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}
header {
    background-color: #ffda6b;
}
body {
    font-family: sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    background-color: #fff9e7;
}
.inner {
    width: 930px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.title {
    height: 110px;
    /* background-image: url(../images/concept/bg-main.jpg); */
    /* background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-shadow: 1px 1px 10px #4b2c14;
}
p {
    line-height: 1.5;
}

img {
    max-width: 100%;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;/*中央揃え*/
    margin-right: auto;
    padding-left: 40px; 
    padding-right: 40px;
    display: flex;
    justify-content: space-between; /*アイテムを均等に配置し、最初のアイテムは先頭、最後は末尾に寄せる*/
    align-items: center; /*フレックスアイテムの交差軸方向の配置を指定する→ロゴ・ナビが天地中央揃えになる*/
}

/* ハンバーガーメニューの非表示*/
.toggle-menu-button {
    display: none;
}

.header-logo {
    display: block; /*いったんロゴをblock要素にしてからサイズを指定しなければならい*/
    width: 170px;
}

.site-menu ul {
    display: flex; /*ナビゲーションの横並び*/
}

.site-menu ul li {
    margin-left: 20px;
    margin-right: 20px;
}
.pagenate {
    display: flex;
    width: max-content;
    margin: 0 0 0 auto;
}
.pagenate li{
    background-color: #ffffff;
    border: solid 1px #bfbfbf;
    padding: 5px;
    margin: 2px;
}
.pagenate li.active {
    background-color:#c77a41;
    color:white;
}
.footer {
    color: #ffffff;
    background-color: #24211b;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;/*90度回転させて、縦並びにする*/
    align-items: center; /*align-itemsはflexの向きにクロスする方向の配置を指定する*/
}

.footer-logo {
    display: block;
    width: 235px;
    margin-top: 90px;
}

.footer-tel {
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}

.footer-time {
    font-size: 13px;
    margin-top: 16px;
}


.copyright {
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}
.site-menu ul li a {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

/* メッセージ関係 */
.error {
    /* フラッシュのエラー */
    color: red;
    background-color: #fff2f2;
    border-radius: 3px;
    border: 1px solid;
    padding: 10px;
}

.success {
    /* フラッシュの成功 */
    color: rgb(89 201 154);
    background-color: #ddffeb;
    border-radius: 3px;
    border: 1px solid;
    padding: 10px;
}
.error-message {
    /* 入力エラーメッセージ */
    margin-top:5px;
    color: red;
}



/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    /* top: -40px; */
    right: 1px;
    width: 10px;
    height: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal-in-button {
    display: flex;
}
.modal-in-button .delete-no {
    margin:10px;
    padding: 8px;
    background-color: #f8fdff;
    border: solid 2px #1366fd;
    border-radius: 5px;
}
.modal-in-button .delete-no:hover{
    background-color: #ccf0ff;
}

.modal-in-button .delete-yes {
    margin:10px;
    padding: 8px;
    background-color: #f8fdff;
    border: solid 2px #ff7a7a;
    border-radius: 5px;
}
.modal-in-button .delete-yes:hover {
    background-color: #ffa0a5;
}

@media (max-width: 800px) {
    .site-menu ul {
        display: block;
        text-align: center;
    }
    .site-menu li {
        margin-top: 20px;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        /* background-color: #ffffff; */
        height: 50px;
        z-index: 10; /*要素の重なり順を指定する*/
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }
    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }
    .header-logo {
        width: 100px;
    }
    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #ffffff;
        background-color: #736E62;
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
    }
    .header-site-menu.is-show {
        display: block;
    }
    .toggle-menu-button {
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(/img/common/icon-menu.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
    }
    .main {
        padding-top: 50px;
    }
    .footer-logo {
        margin-top: 60px;
    }
    .footer-tel {
        font-size: 20px;
    }
    .copyright {
        margin-top: 50px;
    }
    
}