@charset "UTF-8";

/* プライバシーポリシー関連のCSSのみ記載 */
.pp-sec1 {
	padding: 50px 0 100px 0;
	background-color: #FFF;
}

/*エントリー画像の代わりに使用*/
.pp-entry{
    background-image: linear-gradient(-45deg, #f5f2ef 25%, #e9e2da 25%, #e9e2da 50%, #f5f2ef 50%, #f5f2ef 75%, #e9e2da 75%, #e9e2da);
    background-size: 4px 4px;
    width: 100%;
    height: 250px;
}
.pp-entry-container {
    display: grid;
    justify-items: center;
    align-content: center;
    height: 100%;
}

.pp-entry h2{
	font-family: "Montserrat", sans-serif;
	font-size: clamp(25px, 5vw, 55px);
	min-height: 0vw;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}

.pp-entry p {
	margin-bottom: 72px;
}

.pp-title{
    font-size: clamp(18px, 5vw, 25px);
    margin-bottom: 10px;
    border-bottom: 1px solid #454545;
}
.pp-text{
    margin-bottom: 30px;
}

/* リスト */
ul.pp-list{
	list-style: disc;
	margin: 10px 5px 10px 27px;
	line-height: 1.3;
    margin-bottom: 30px;
}
ul.pp-list li{
	font-size: clamp(13px, 1.4vw, 15px);
}
ul.pp-list li:last-child {
	border-bottom: 0;
}
ul.pp-list li::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.8;
	color: #454545;
}

/* 問い合わせ タイトル枠 */
.pp-inquiry{
    display: grid;
    grid-template-columns: repeat(1,100px 300px);
    gap: 2px 0px;
}
@media (max-width: 568px) {
    .pp-inquiry{
        grid-template-columns: repeat(1,100px 1fr); /* スマホの時は item2を画面幅に合わせる*/
    }
}
.pp-inquiry-item1{
    width: 100px;
    border: 1px solid #454545;
    background-color: #454545;
    text-align: center;
    color:#FFF;
}
.pp-inquiry-item2{
    color: #454545;
    text-align: left;
    border: 1px solid #454545;
    padding-left: 10px;
    word-break: break-all;  /* 禁則処理を無視し、改行を行う */
}

/*リンク アンダーライン*/
a.pp-unli{
	text-decoration: none;
	color:#454545;
}
a.pp-unli:hover{
	color:#c5c5c5;
}