﻿@charset "utf-8";

html{
	font-size: 16px;
	scroll-behavior: smooth;
}

*,
*::before,
*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	width: 100%;
	height: auto;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", yu-mincho-pr6, serif;
}

li{
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	transition: all 0.3s;
}

a:hover{
	opacity: 0.5;
}

@font-face{
	font-family: "BIZ UDP明朝";
	src: url(../font/BIZ-UDMinchoM.ttc) format("truetype");
}

@font-face{
	font-family: "SegUI";
	src: url(../font/SegUIVar.ttf) format("truetype");
}

@font-face{
	font-family: "Noto Sans";
	src: url(../font/NotoSansJP-VariableFont_wght.ttf) format("truetype");
}

/* ---ヘッダー--- */

.header_wrapper{
	width: 100%;
	height: 150px;
	padding: 18px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}

.header_logo{
	width: 100%;
	margin-left: clamp(10px, 0.98vw, 20px);
	max-width: 370px;
	align-self: center;
}

.header_logo img{
	width: 100%;
}

.header_nav{
	width: 100%;
}

.header-menu_pc{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
}

.header-menu_pc>li,
.header-menu_mobile>li{
	height: 50px;
	text-align: center;
	margin: 0 clamp(10px,0.98vw,20px);
}

.header-menu_links>p{
	width: 100%;
	max-width: 180px;
	min-width: clamp(70px,6.83vw,108px);
	font-size: clamp(11px,1.07vw,16px);
	letter-spacing: 0.2em;
	padding-bottom: 5px;
}

.header-menu_links,
.header_contact{
	max-width: 208px;
	min-width: 187px;
	padding: 10px 20px;
	display: block;
}

.header-menu_links>p:first-child,
.header_contact>p:first-child{
	font-family: 'BIZ UDP明朝',serif;
	font-weight: 400;
	border-bottom: 1px solid #727171;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 22px;
}

.header-menu_links>p:last-child,
.header_contact>p:last-child{
	font-size: 10px;
	font-family: 'Noto Sans',sans-serif;
	font-weight: 600;
	color: #727171;
	padding-top: 5px;
	line-height: 1;
}

.header-menu_pc>li img,
.header-menu_mobile>li img{
	margin-right: 10px;
}

.header-menu_pc>li:last-child,
.header-menu_mobile>li:last-child{
	height: auto;
}

.header-menu_pc>li:last-child .header_tel,
.header-menu_mobile>li:last-child .header_tel{
	width: 100%;
	height: auto;
	font-size: clamp(18px,1.76vw,23px);
	font-family: '游ゴシック';
	font-weight: 600;
	text-align: end;
	color: #003783;
	display: block;
	letter-spacing: 0;
}

.header-menu_pc>li:last-child .header_tel>span,
.header-menu_mobile>li:last-child .header_tel>span{
	width: 100%;
	font-size: 10px;
	color: #727171;
	display: block;
}

.header_contact{
	display: block;
	color: #FFF;
	background: #003783;
	letter-spacing: 0.2em;
}

.header_contact p:first-child{
	font-family: 'Noto Sans',sans-serif;
	font-weight: 600;
	border-bottom: 1px solid #FFF;
}

.header_contact p:last-child{
	color: #FFF;
}

.header-menu_pc>li:nth-child(2){
	position: relative;
}

.header-menu_dropdown{
	width: 125%;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s;
	border: 2px solid #003783;
	border-radius: 10px;
}

.header-menu_pc>li:nth-child(2):hover>.header-menu_dropdown{
	opacity: 1;
	visibility: visible;
}

.header-menu_dropdown>li{
	width: 100%;
	height: 35px;
	margin: 0;
	border-bottom: 1px solid #003783;
}

.header-menu_dropdown>li:last-child{
	border-bottom: none;
}

.header-menu_dropdown::before{
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: 9999;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	border-bottom: 20px solid #003783;
	border-top: 0;
}

.header-menu_dl{
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	background: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-menu_dl:hover{
	opacity: 1;
	color: #FFF;
	background: #003783;
}

.header-menu_dropdown>li:first-child .header-menu_dl{
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.header-menu_dropdown>li:last-child .header-menu_dl{
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.header-menu_dl>p{
	font-size: clamp(10px,0.97vw,14px);
	font-family: 'BIZ UDP明朝',serif;
	padding: 5px 0;
}

.header-menu_sub{
	height: auto;
}

#header-menu,
.hamburger{
	display: none;
	position: relative;
	z-index: 99999;
}

.hamburger {
    position: absolute;
    top: 32px;
    right:32px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    z-index: 10;
}
.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #333;
    width:100%;
    z-index: 10;
}
.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-45deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(45deg);
}

/* -----メイン----- */
	/* ファーストビュー */
.first_view{
	width: 100%;
	display: flex;
}

.first_view img{
	width: 100%;
}

	/* グループホームレラ本通南について */
.top_explain{
	width: 100%;
	padding: 100px 0 40px 0;
	background: linear-gradient(#003783, #1E9CD7);
	display: flex;
	justify-content: center;
}

.top_explain_box{
	width: 85%;
	max-width: 900px;
	padding: 30px 30px 200px 30px;
	position: relative;
	z-index: 5;
	background: rgba(0, 0, 0, 0.3);
	font-family: '游明朝', serif;
	color: #FFF;
}

.top_explain_box::before{
	content: '';
	width: 125px;
	height: 125px;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
	background: transparent;
	position: absolute;
	top: -30px;
	left: -20px;

}

.top_explain_title{
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #FFF;
}

.top_explain_title h2{
	font-size: 24px;
}

.top_explain_title h2 span{
	font-size: 18px;
}

.top_explain_title p{
	font-size: 44px;
	font-family: "al-fresco", sans-serif;
	font-weight: 400;
	font-style: normal;
	opacity: 0.6;
}

.top_explain_box>p{
	font-size: 18px;
	margin-top: 30px;
	padding: 0 20px;
	line-height: 1.6;
}

	/* 障がいをお持ちの方を対象にした～ */
.top_detail{
	width: 100%;
	padding-bottom: 50px;
	background-image: url(../images/subview.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Noto Sans',sans-serif;
}

.top_detail h2{
	width: 95%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
	font-size: 24px;
	letter-spacing: 0.1em;
}

.top_detail h2 p{
	background: linear-gradient(transparent 70%,#CCC 30%);
	display: inline;
	line-height: 1.6;
}

.top_detail>p{
	width: 95%;
	margin: auto;
	margin-top: 20px;
	color: #727171;
	font-weight: 600;
	text-align: center;
	line-height: 1.6;
}

.top_detail_list{
	margin: 70px auto;
	width: 95%;
	max-width: 700px;
}

.top_detail_list ul{

	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-template-rows: repeat(3,1fr);
}

	/* ご利用条件 */
.top_conditions{
	width: 100%;
	padding: clamp(75px,23.4vw,160px) 0;
}

.top_conditions_box{
	width: 90%;
	max-width: 900px;
	margin: auto;
	color: #727171;
	font-family: '游明朝', serif;
	letter-spacing: 0.075em;
	position: relative;
}

.top_conditions_box::before{
	content: '';
	width: 125px;
	height: 125px;
	border-top: 1px solid #727171;
	border-left: 1px solid #727171;
	background: transparent;
	position: absolute;
	top: -40px;
	left: calc(clamp(15px,1.95vw,30px) * -1);
}

.top_conditions_title{
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 24px;
	border-bottom: 1px solid #727171;
}

.top_conditions_title img{
	margin-right: 10px;
}

.top_conditions_title>p{
	font-size: 45px;
	font-family: "al-fresco", sans-serif;
	letter-spacing: 0;
}

.top_conditions_text{
	margin-top: 30px;
	padding: 0 20px;
	line-height: 2;
	font-weight: 500;
}

.top_conditions_text>p{
	width: 100%;
}

.top_conditions_sub{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.top_sub_text{
	margin-top: 30px;
}

.top_sub_img{
	width: 100%;
	max-width: 300px;
}

.top_sub_img img{
	width: 100%;
}

/* -----共通----- */

/* タイトル */
.page_title_box{
	width: 100%;
	padding: 80px 0 60px 0;
	background: linear-gradient(#003783, #1E9CD7);
	display: flex;
	justify-content: center;
}

.page_title{
	width: 95%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	color: #FFF;
}

.page_title span{
	display: block;
}

.page_title span:first-child{
	border-bottom: 2px solid #FFF;
	font-size: 30px;
	font-family: 'BIZ UDP明朝',serif;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-bottom: 5px;
}

.page_title span:last-child{
	font-size: 20px;
	font-family: 'Noto Sans',sans-serif;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.05em;
}

.page_title span:first-child img{
	margin-right: 10px;
}

.contents_width{
	width: 95%;
	max-width: 915px;
	margin: auto;
}

.contents_title_flex{
	display: flex;
	flex-direction: row;
	align-items: center;
}

/* -----間取りページ----- */

/* 間取りなど */
.floor_plan,
.floor_photo{
	width: 100%;
	padding: 40px 30px;
	margin-top: 70px;
	
	position: relative;
}

.floor_plan::before,
.floor_photo::before{
	content: '';
	width: 125px;
	height: 125px;
	color: transparent;
	border-top: 1px solid #4D4D4D;
	border-left: 1px solid #4D4D4D;
	position: absolute;
	top: 0;
	left: 0;
}

.contents_title{
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid #4D4D4D;
}

.contents_title{
	padding: 5px;
}

.contents_title h2{
	font-size: 24px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	letter-spacing: 0.075em;
}

.contents_title img{
	margin-right: 10px;
}

.contents_title>p{
	font-size: 45px;
	font-family: "al-fresco", sans-serif;
	color: #999;
}

.floor_plan>p,
.floor_photo>p{
	padding: 50px 20px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	line-height: 1.6;
	letter-spacing: 0.075em;
}

.floor_plan_contents{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.floor_plan_box{
	width: 100%;
	max-width: 430px;
	height: 500px;
	background: #0071BC;
	color: #FFF;
}

.floor_plan_box h3{
	width: 100%;
	max-width: 118px;
	height: 126px;
	margin: 20px auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 2px solid #FFF;
}

.floor_plan_box h3 p{
	font-size: 18px;
	margin-top: 20px;
}

.floor_plan_box ul{
	width: 95%;
	max-width: 400px;
	margin: 30px auto;
}

.floor_plan_box li{
	font-size: 18px;
	border-bottom: 1px dotted #FFF;
	margin-top: 30px;
	letter-spacing: 0.075em;
}

.floor_plan_icons{
	width: 100%;
	margin-top: 30px;
	margin-bottom: 120px;
}

.floor_plan_icons ul{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5,1fr);
	grid-template-rows: repeat(2,1fr);
	gap: 30px;
	color: #003783;
	font-weight: 600;
}

.floor_plan_icons li{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.floor_plan_icons li img{
	width: 100%;
	max-width: 100px;
	margin-bottom: 10px;
}

.floor_photo_area{
	display: flex;
	flex-direction: row;
	margin-bottom: 120px;
}

.floor_photo_view{
	width: 100%;
}

.floor_photo_view img{
	width: 100%;
}

.floor_photo_round{
	width: 100%;
}

.floor_photo_round>p{
	font-size: 14px;
	color: #4D4D4D;
	font-family: '游明朝',serif;
	font-weight: 600;
	text-align: center;
	margin: 30px 0;
}

.floor_photo_round ul{
	width: 100%;
	max-width: 300px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3,90px);
	grid-template-rows: repeat(2,1fr);
	gap: 30px;
}

.floor_photo_round li{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 12px;
	font-family: 'Noto Sans',sans-serif;
	cursor: pointer;
}

.floor_photo_round img{
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin-top: 5px;
	transition: all 0.5s;
}

.floor_photo_round li:hover img{
	filter: brightness(0.5);
}

/* -----費用----- */
.cost_about{
	width: 100%;
	padding: 40px 30px;
	position: relative;
}

.cost_about::before{
	content: '';
	width: 125px;
	height: 125px;
	color: transparent;
	border-top: 1px solid #4D4D4D;
	border-left: 1px solid #4D4D4D;
	position: absolute;
	top: 0;
	left: 0;
}

.cost_about>p{
	padding: 50px 20px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	letter-spacing: 0.075em;
}

.cost_about_contents{
	width: 100%;
	margin: 80px 0 120px 0;
	border: 5px solid #727171;
}

.cost_about_row{
	width: 100%;
	height: auto;
	min-height: 50px;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	font-size: 18px;
	font-family: 'Noto Sans',sans-serif;
	font-weight: 600;
	letter-spacing: 0.075em;
	color: #4D4D4D;
}

.cost_about_row p{
	height: auto;
	padding: 25px;
	align-self: stretch;
}

.cost_about_left{
	width: 100%;
	max-width: 275px;
	border-bottom: 1px solid #727171;
	align-self: stretch;
}

.cost_about_right{
	width: 100%;
	border-bottom: 1px solid #727171;
	border-left: 1px solid #727171;
	color: #000;
}

.cost_about_right ul{
	width: 100%;
	padding: 25px;
}

.cost_about_right span{
	font-size: 14px;
	font-family: 'Yu Gothic UI',sans-serif;
	font-weight: 400;
}

/* -----流れ----- */

.flow_move-in{
	width: 100%;
	padding: 40px 30px;
	position: relative;
}

.flow_move-in>p{
	padding: 50px 20px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	letter-spacing: 0.075em;
}

.flow_contents{
	margin: 100px 0;
}

.flow_box{
	font-family: 'Noto Sans',sans-serif;
}

.flow_box.first_box,
.flow_box_flex{
	border-bottom: 1px dashed #666;
}

.flow_box.first_box{
	padding-bottom: 20px;
}

.flow_box h3{
	font-size: 24px;
	font-family: 'Noto Sans',sans-serif;
	display: flex;
	flex-direction: row;
}

.flow_box h3 span{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #FFF;
	background: #003783;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.flow_box>p{
	font-size: 18px;
	margin-top: 10px;
	margin-left: 42px;
	line-height: 1.6;
}

.flow_box_flex{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-bottom: 20px;
}

.flow_box_illust{
	width: 100%;
	max-width: 180px;
}

.flow_box_illust img{
	width: 100%;
}

.arrow_under{
	font-size: 40px;
	padding: 25px 0;
	text-align: center;
	color: #727171;
}

/* -----アクセス----- */
.access_area{
	width: 100%;
	padding: 40px 30px;
	margin-bottom: 120px;
	position: relative;
}

.access_area::before{
	content: '';
	width: 125px;
	height: 125px;
	color: transparent;
	border-top: 1px solid #4D4D4D;
	border-left: 1px solid #4D4D4D;
	position: absolute;
	top: 0;
	left: 0;
}

.access_area>p{
	padding: 50px 20px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	letter-spacing: 0.075em;
}

.access_box{
	margin: 80px 40px;
}

.access_row{
	width: 100%;
	border-bottom: 1px dotted #4D4D4D;
	padding: 10px 0 5px 0;
	display: flex;
	flex-direction: row;
	font-size: 16px;
	font-family: 'Noto Sans',sans-serif;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.075em;
}

.access_row p:first-child{
	width: 100%;
	max-width: 130px;
	color: #4D4D4D;
}

.access_map{
	width: 100%;
	height: 500px;
}

/* -----お問い合わせページ----- */

.contact_page{
	width: 100%;
	padding: 40px 30px;
	margin-top: 70px;
	position: relative;
}

.contact_page::before{
	content: '';
	width: 125px;
	height: 125px;
	color: transparent;
	border-top: 1px solid #4D4D4D;
	border-left: 1px solid #4D4D4D;
	position: absolute;
	top: 0;
	left: 0;
}

.contact_page_title{
	padding: 0 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-bottom: 1px solid #4D4D4D;
}

.contact_page_title h2{
	font-size: 24px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	letter-spacing: 0.075em;
}

.contact_page_title img{
	margin-right: 10px;
	width: 100%;
	max-width: 80px;
}

.contact_page_title>p{
	font-size: 45px;
	font-family: "al-fresco", sans-serif;
	color: #999;
}

.contact_page>p{
	padding: 50px 20px;
	font-family: '游明朝',serif;
	font-weight: 500;
	color: #4D4D4D;
	line-height: 1.6;
	letter-spacing: 0.075em;
}

.contact_form{
	width: 100%;
	max-width: 660px;
	margin: auto;
}

.contact_form_row{
	width: 100%;
	height: 60px;
	margin: 20px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 16px;
	font-family: '游ゴシック', sans-serif;
	font-weight: 600;
}

.contact_form_row.row_textarea{
	height: 130px;
}

/* 20250411 修正↓ */
.contact_form.mode_confirm .contact_form_row{
	height: auto;
	min-height: 60px;
	word-break: break-all;
}

.contact_form.mode_confirm .contact_form_row.row_textarea{
	height: auto;
	min-height: 130px;
}
/* 20250411 修正↑ */

.contact_form_row p:first-child{
	width: 100%;
	height: 100%;
	max-width: 190px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.contact_form_row p:first-child span{
	width: 100%;
	max-width: 47px;
	height: 18px;
	margin-left: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	color: #FFF;
	line-height: 1;
	background: #E50012;
}

.contact_form_row p:last-child{
	width: 100%;
	height: 100%;
	margin-left: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.contact_form_row select,
.contact_form_row input,
.contact_form_row textarea{
	width: 100%;
	height: 35px;
	margin-left: 20px;
	padding: 0 10px;
	border: 3px solid #4D4D4D;
}

.contact_form_row option:hover{
	background: #003783;
}

.row_textarea textarea{
	height: 100%;
	padding: 10px;
	resize: none;
}

.contact_form_button_flex{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.contact_form_button{
	width: 100px;
	height: 40px;
	color: #FFF;
	background: #003783;
	margin: auto;
	font-family: 'Noto Sans',sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.contact_form_button:hover{
	background: #D2AF3A;
}

.contact_form_button_flex>.contact_form_button{
	margin: 0;
}

.contact_form_button_flex>.contact_form_button:first-child{
	background: #808080;
	margin-right: 40px;
}

.contact_form_button_flex>.contact_form_button:first-child:hover{
	opacity: 0.5;
}

.priv_area{
	width: fit-content;
	font-size: 12px;
	font-family: 'Noto Sans',sans-serif;
	font-weight: 600;
	letter-spacing: 0.075em;
	margin: 30px auto;
}

.button_privacy_policy{
	color: #0071BC;
}

.priv_nolink{
	color: #727171;
}

.contact_error_message li{
	font-size: 14px;
	font-family: 'Noto Sans',sans-serif;
	color: #E50012;
	margin: 10px 0;
}

.contact_complete_img{
	width: 100%;
	max-width: 224px;
	margin: 50px auto 0 auto;
}

.contact_complete_img img{
	width: 100%;
}

.contact_page>.contact_complete_big{
	font-size: 36px;
	font-family: 'Noto Sans',sans-serif;
	line-height: 1.4;
	letter-spacing: 0.075em;
	color: #003783;
	text-align: center;
	padding: 0;
}

.contact_page>.contact_complete_small{
	font-size: 18px;
	margin: 20px 0;
	font-family: 'Noto Sans',sans-serif;
	line-height: 1.4;
	letter-spacing: 0.075em;
	color: #4D4D4D;
	text-align: center;
	padding: 0;
}

.contact_page>.contact_complete_return{
	width: fit-content;
	font-size: 18px;
	font-family: 'Noto Sans',sans-serif;
	letter-spacing: 0.075em;
	color: #4D4D4D;
	margin: auto;
	display: block;
	padding: 0;
}

/* プライバシーポリシー */
.priv_title{
	margin: 100px 0;
	text-align: center;
}
.priv_title p{
	font-size: 50px;
	font-family: 'Noto Sans JP',sans-serif;
	letter-spacing: 0.2em;
	padding: 10px 0;
	border-bottom: 1px solid #000;
}

.priv_text_top{
	font-size: 18px;
	font-family: 'Noto Sans JP',sans-serif;
	letter-spacing: 0.1em;
}

.priv_block{
	margin: 30px 0;
	font-family: 'Noto Sans JP',sans-serif;
}

.priv_block h2{
	margin-bottom: 20px;
	font-size: 24px;
	letter-spacing: 0.2em;
	border-bottom: 1px solid #000;
}

.priv_block h2::before{
	content: '\0025a0';
}

.priv_block p{
	margin-left: 0.5em;
	font-size: 18px;
	line-height: 1.75;
	letter-spacing: 0.1em;
}

.priv_address{
	width: fit-content;
	margin-top: 25px;
	padding: 20px;
	border: 1px solid #000;
}

.priv_address p{
	font-weight: 600;
}

.priv_address p:first-child{
	font-size: 20px;
}

.priv_address p a{
	font-size: 20px;
	color: #ED1C24;
}

	/* お問い合わせ */


	/* バナー */
.banner_area{
	width: 100%;
	text-align: center;
	padding: 100px 0;
}

.banner_area p{
	width: fit-content;
	margin: auto;
	font-size: 18px;
	font-family: 'Noto Sans',sans-serif;
	font-weight: 600;
	letter-spacing: 0.075em;
	color: #727171;
	position: relative;
}

.banner_area p::before{
	content: '＼';
	height: 200%;
	font-size: 2em;
	position: absolute;
	top: 0;
	right: calc(100% + 5px);
}

.banner_area p::after{
	content: '／';
	height: 200%;
	font-size: 2em;
	position: absolute;
	top: 0;
	left: calc(100% + 5px);
}

.banner_img{
	width: 95%;
	max-width: 1500px;
	margin: 30px auto 0 auto;
	display: block;
	cursor: pointer;
}

.banner_img img{
	width: 100%;
}

.banner_img img:first-child{
	display: block;
}

.banner_img img:last-child{
	display: none;
}
	/* フッター */
.footer_wrapper{
	width: 100%;
	background: linear-gradient(#003783, #1E9CD7);
	color: #FFF;
}

.footer_upper{
	width: 95%;
	max-width: 1500px;
	border-bottom: 1px solid #FFF;
	margin: auto;
	padding: 60px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.footer_logo_rela{
	font-size: 12px;
	font-family: 'メイリオ', sans-serif;
	line-height: 2;
}

.footer_logo_rela p:first-of-type{
	font-size: 24px;
	font-family: '游明朝', serif;
	line-height: 1;
	letter-spacing: 0.075em;
}

.footer_nav{
	display: flex;
	align-items: flex-end;
}

.footer_nav ul{
	font-size: 14px;
	font-family: 'BIZ UDP明朝', serif;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-template-rows: repeat(2,1fr);
	gap: 30px 60px;
}

.footer_under{
	width: 95%;
	max-width: 1500px;
	margin: auto;
	padding: 60px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.footer_banner_box{
	font-size: 12px;
	line-height: 2;
}

.footer_banner_box>.insert_margin{
	margin-bottom: 6px;
}

.footer_banner_box:last-child>img{
	margin-top: 43px;
}

.footer_banner_address{
	height: 48px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 20px;
}

.footer_sns{
	height: 48px;
	margin-bottom: 20px;
}

.footer_sns ul{
	height: inherit;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-template-rows: repeat(1,1fr);
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.footer_banner_img{
	width: 100%;
	max-width: 400px;
	display: block;
	cursor: pointer;
}

.footer_banner_box.right_margin{
	margin-right: 20px
}

.footer_banner_img img{
	width: 100%;
}

.copyright{
	text-align: center;
	display: block;
	padding: 60px 0 25px 0;
}

.insert_br,
.insert_br_mobile{
	display: none;
}

.news_area{
	text-align: center;
	border: #003783 3px solid;
}

.news_area > h2{
	font-size: 20px;
	color: #fff;
	background-color: #003783;
	padding: 20px 0;
}

.news_area > p{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	padding: 40px 0;
	color: #003783;
}

/* タブレット */

@media screen and (max-width:1024px) {
	/* ハンバーガーメニュー */
	.header_nav .header-menu_pc{
		display: none;
	}

	#header-menu,
	.hamburger{
		display: inline-block;
	}

	.hamburger{
		z-index: 99999;
	}

	.header_nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 99999;
	}

	.header_nav li img{
		width: 16px;
	}

	#header-menu {
		width: 100%;
		height: 0;
		padding: 0 10px;
		overflow: auto;
		transition: .3s;
		list-style:none;
		background-color: #FFF;
	}

	.header-menu_mobile>li{
		width: 100%;
		max-width: 208px;
		margin: auto;
		height: auto;
	}

	.header-menu_links{
		font-size: 21px;
		height: auto;
		width: 100%;
		max-width: 208px;
		padding: 10px;
		margin: auto;
	}

	.header-menu_links>p{
		font-size: 18px;
	}

	.header-menu_links>p:last-child{
		font-size: 14px;
	}

	.header-menu_sub{
		margin: auto;
		max-width: 208px;
		display: block;
		text-align: center;
		text-decoration: none;
	}

	.header-menu_mobile .header_contact{
		margin-top: 10px;
	}

	.header-menu_mobile>li:nth-child(3)>a{
		padding: 20px 10px;
	}

	.header-menu_sl{
		max-width: 110px;
		min-width: 80px;
		border-bottom: 1px solid #333;
		margin: 0 auto 10px auto;
	}

	.header-menu_sl:first-child{
		margin-top: 0;
	}

	.header-menu_sl>a{
		font-size: 16px;
		font-family: 'BIZ UDP明朝',serif;
		font-weight: 400;
		color: #000;
		border: none;
		display: block;
	}

	.header-menu_mobile>li:last-child{
		max-width: 208px;
	}

	.header-menu_mobile .header_contact{
		padding: 10px 15px;
	}

	.no-scroll {
		overflow: hidden;
		position: fixed;
		width: 100%;
	}

	.hamburger{
		margin-top: 24px;
	}

	/* レラについて */
	.top_explain_title h2{
		font-size: 21px;
	}

	.top_explain_title h2 span{
		font-size: 16px;
	}

	.top_explain_title p{
		font-size: 41px;
	}

	.top_explain_box>p{
		font-size: 16px;
	}

	/* 当グループホームは～ */

	.top_detail h2{
		font-size: clamp(20px,2.6vw,24px);
	}

	/*----- 間取りページ -----*/
	.floor_plan_box{
		max-width: clamp(350px,45.5vw,425px);
	}

	.floor_plan_box li{
		font-size: 16px;
	}

	.floor_plan_icons ul {
		grid-template-columns: repeat(4,1fr);
		grid-template-rows: repeat(3,1fr);
	}

	.floor_photo_round>p{
		margin: 20px 0;
	}

	.floor_photo_round ul{
		gap: 15px;
	}

	.floor_photo_round img{
		width: 75px;
		height: 75px;
	}

	/* ----- 費用 -----*/

	/* お問い合わせ */


	/* フッター */
	.footer_nav ul{
		gap: 30px clamp(20px,2.6vw,60px);
	}

	.insert_br{
		display: block;
	}
}
	/* スマホ */
@media  screen and (max-width:768px) {
	/* ヘッダー */
	.header_wrapper{
		height: 90px;
	}

	.header_logo{
		max-width: 220px;
	}

	.header-menu_links{
		max-width: 180px;
	}

	.header-menu_links>p{
		font-size: 14px;
	}

	.header-menu_links>p:last-child{
		font-size: 10px;
	}

	.header-menu_sub{
		margin: auto;
		max-width: 180px;
		padding: 0 10px;
		display: block;
		text-align: center;
		text-decoration: none;
	}

	.header-menu_sl>a{
		font-size: 12px;
	}

	.header-menu_mobile>li:last-child{
		max-width: 180px;
	}

	.hamburger{
		margin-top: 5px;
	}

	/* レラについて */
	.top_explain{
		padding: 70px 0 40px 0;
	}

	.top_explain_box{
		height: 200px;
		padding: 30px 10px 0 10px;
	}

	.top_explain_box::before{
		top: -20px;
		left: -15px;
	}

	.top_explain_title{
		padding: 0 10px;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.top_explain_title p{
		align-self: flex-end;
	}

	.top_explain_title h2,
	.top_explain_title p{
		font-size: 18px;
	}

	.top_explain_title h2 span{
		font-size: 14px;
	}

	.top_explain_box>p{
		font-size: 14px;
		padding: 0 10px;
	}

	/* 当グループホームは～ */
	.top_detail h2{
		font-size: clamp(16px,5vw,20px);
	}

	.top_detail>p{
		font-size: 14px;
	}

	.top_detail_list ul{
		grid-template-columns: repeat(1,1fr);
		text-align: center;
	}

	/* 利用条件 */
	.top_conditions_box::before{
		left: calc(clamp(5px,1.6vw,15px) * -1);
	}

	.top_conditions_title{
		padding: 0 10px;
		flex-direction: column;
		align-items: flex-start;
	}

	.top_conditions_title>p{
		align-self: flex-end;
	}

	.top_conditions_title h2,
	.top_conditions_title>p{
		font-size: 17px;
	}

	.top_conditions_title h2 img{
		width: 100%;
		max-width: 12px;
	}

	.top_conditions_text{
		font-size: 12px;
	}

	.top_sub_img{
		width: 33%;
		margin: 30px 0;
	}

	.page_title p:first-child{
		font-size: 30px;
	}

	/* -----間取りページ----- */
	.floor_plan,
	.floor_photo{
		padding: 0;
	}

	.floor_plan::before,
	.floor_photo::before{
		top: -30px;
		left: -5px;
	}

	.contents_title{
		padding: 0 10px;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		white-space: nowrap;
	}

	.contents_title_flex{
		padding-bottom: 5px;
	}

	.contents_title h2{
		font-size: 18px;
	}

	.contents_title img{
		width: 100%;
		max-width: 12px;
	}

	.contents_title .img_camera{
		max-width: 20px;
	}

	.contents_title>p{
		font-size: 17px;
		align-self: flex-end;
	}

	.floor_plan>p,
	.floor_photo>p{
		font-size: 14px;
		padding: 40px 20px;
	}

	.floor_plan_contents{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.floor_plan_box:first-child{
		height: 450px;
	}

	.floor_plan_box:last-child{
		margin-top: 20px;
	}

	.floor_plan_icons ul{
		gap: 20px;
	}

	.floor_plan_icons li{
		font-size: 12px;
	}

	.floor_photo{
		margin-top: 100px;
	}

	.floor_photo_area{
		margin-bottom: 50px;
		flex-direction: column;
	}

	.floor_photo_round>p{
		margin: 30px 0 20px 0;
	}

	.floor_photo_round ul{
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: repeat(3,1fr);
	}

	.floor_photo_round li img{
		width: 90px;
		height: 90px;
	}

	/* -----費用----- */
	.cost_about{
		padding: 20px 5px;
	}

	.cost_about::before{
		top: -30px;
		left: -5px;
	}

	.cost_about_contents{
		border: 3px solid #727171;
		margin: 40px 0;
	}

	.cost_about_row{
		font-size: 14px;
	}

	.cost_about_row p{
		padding: 10px;
	}

	.cost_about_left{
		max-width: 111px;
	}

	.cost_about_right span{
		font-size: 12px;
	}

	.cost_about_right ul{
		padding: 10px;
	}

	/* -----流れ----- */
	.flow_move-in{
		padding: 20px 5px;
	}

	.flow_title>p{
		align-self: flex-end;
	}

	.flow_box>p{
		font-size: 16px;
	}

	.flow_box_flex{
		flex-direction: column;
		align-items: center;
	}

	.flow_box_illust{
		margin-top: 10px;
	}

	/* -----アクセス-----*/
	.access_area{
		padding: 20px 5px;
	}

	.access_box{
		margin: 40px 0;
	}

	.access_row{
		font-size: 15px;
	}

	.access_row p:first-child{
		max-width: 80px;
	}

	/* -----お問い合わせページ-----*/
	.contact_page{
		padding: 20px 5px;
	}

	.contact_page::before{
		top: -30px;
		left: -5px;
	}

	.contact_page .contents_title img{
		max-width: 30px;
	}

	.contact_form_row{
		flex-direction: column;
		align-items: flex-start;
	}

	.contact_form_row p:first-child{
		border-right: none;
		height: auto;
		margin-bottom: 5px;
	}

	.contact_form_row p:last-child {
		align-items: flex-start;
	}

	.contact_form_row select,
	.contact_form_row input,
	.contact_form_row textarea{
		margin-left: 0;
	}

	.contact_complete_img{
		max-width: 185px;
	}

	.contact_page>.contact_complete_big{
		font-size: 28px;
	}

	.contact_page>.contact_complete_small{
		font-size: 15px;
	}

	/*----- プライバシーポリシー -----*/
	.priv_title{
		margin: 50px 0;
	}
	
	.priv_title p{
		font-size: 24px;
	}

	.priv_text_top{
		font-size: 14px;
	}

	.priv_block h2{
		font-size: 18px;
	}

	.priv_block p{
		font-size: 14px;
	}

	.priv_address p a{
		font-size: 17px;
	}

	/* お問い合わせ */

	/* フッター */
	.footer_upper,
	.footer_under{
		flex-direction: column-reverse;
		padding: 30px 0;
	}

	.footer_under{
		flex-direction: column;
	}

	.footer_logo_rela,
	.footer_nav,
	.footer_banner_box{
		margin: 20px auto;
	}

	.footer_logo_rela p:first-of-type{
		font-size: 21px;

	}
	
	.footer_nav ul{
		font-size: 14px;
		margin-top: 20px;
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: repeat(3,1fr);
		gap: 15px;
	}

	.footer_banner_box.right_margin{
		margin-right: auto;
	}

	.footer_banner_box:first-child{
		margin-bottom: 20px;
	}

	.footer_sns{
		height: 70px;
	}

	.copyright{
		padding: 30px 0 25px 0;
	}

	.footer_banner_box:first-child .footer_sns{
		display: none;
	}

	.insert_br_mobile{
		display: inline-block;
	}
}





.contact_area{
    width: 100%;
    height: 650px;
    background-image: url(../images/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact_box{
    width: 92%;
    max-width: 900px;
    margin: auto;
    padding-top: 70px;
}

.contact_box.contact_cv{
	width: 100%;
	padding-top: 30px;
}

.contact_title_box{
    width: 100%;
}

.contact_title{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact_title h2{
    font-size: 34px;
    font-family: 'Noto Sans',sans-serif;
    color: #3E3A39;
}

.contact_title_text{
    width: 100%;
    padding-top: 10px;
    text-align: center;
    font-size: 18px;
    font-family: 'Noto Sans',sans-serif;
    font-weight: bold;
    color: #595757;
    border-top: 1px solid #595757;
}

.contact_image_box{
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
}

.contact_cv .contact_image_box{
	margin-top: 0;
}

.contact_link_box{
    position: relative;
    display: flex;
    width: 333px;
    height: 333px;
    color: #595757;
    transition: filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.contact_image{
    position: absolute;
    width: 250px;
    z-index: 1;
    top: 0;
    left: 0;
}

.contact_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_image_text_box{
    position: absolute;
    display: flex;
    width: 190px;
    height: 170px;
    z-index: 2;
    bottom: 0;
    right: 8px;
    padding: 15px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #FFF;
    font-weight: bold;
}

.contact_image_text_title{
    font-size: 27px;
    font-weight: bold;
}

.contact_image_icon{
    width: 100%;
    max-width: 53px;
}

.contact_image_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact_image_tel{
    font-size: 12px;
}

.contact_image_tel span{
    font-size: 18px;
}

.contact_image_contact{
    font-size: 12px;
}

.contact_image_background{
    position: absolute;
    width: 190px;
    height: 170px;
    z-index: 0;
    bottom: 8px;
    right: 0;
    background-color: #0071BC;
}



@media screen and (max-width:768px){
    .contact_area{
        height: auto;
        padding-bottom: 70px;
    }

    .contact_box{
        width: 81.25%;
    }

    .contact_title h2{
        font-size: 27px;
    }

    .contact_title_text{
        font-size: 14px;
    }

    .contact_title img{
        height: 40px;
    }

    .contact_image_box{
        flex-direction: column;
        gap: 70px;
    }

    .contact_link_box{
        width: 100%;
        height: 183px;
    }

    .contact_image{
        width: 62.5%;
        height: 151px;
    }

    .contact_image_text_box{
        display: grid;
        width: 100%;
        max-width: 230px;
        height: auto;
        /* height: 131px; */
        aspect-ratio: 276 / 131;
        grid-template-columns: 35px 1fr;
        grid-template-areas: "c_img c_text" ". c_subtext";
    }

    .contact_image_text_title{
        order: 2;
        grid-area: c_text;
    }

    .contact_image_icon{
        display: flex;
        max-width: 44px;
        height: 100%;
        order: 1;
        /* grid-row: span 2; */
        align-items: start;
        grid-area: c_img;
    }

    .contact_image_tel,
    .contact_image_contact{
        order: 3;
        grid-area: c_subtext;
    }

    .contact_image_background{
        width: 100%;
        max-width: 230px;
        height: auto;
        aspect-ratio: 276 / 131;
    }
}

@media (hover:hover){
    .contact_link_box:hover{
        filter: brightness(1.3);
        opacity: 0.8;
    }
}