@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */


/*General Elements
---------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	color: #000;
}

a {
	text-decoration: underline;
	outline: none;
	color: #777;
}

a:hover,
a:active,
a:visited,
a:focus {
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
	color: #000;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

strong {
	font-weight: bold;
}


/*l-header
---------------------------------------------------------------------------- */
.l-header {
	position: fixed;
	width: 180px;
	top: 0;
	left: 0;
	z-index: 100;
}

.l-header-content {
	position: relative;
}

.l-header-content .logo {
	position: absolute;
	top: 60px;
	left: 40px;
	width: 98px;
}

.l-header-content .ig {
	position: fixed;
	bottom: 80px;
	left: 80px;
	width: 20px;
}

.l-header-content .ig a {
	display: block;
	transition: .3s;
}

.l-header-content .logo a {
	display: block;
	transition: .3s;
}

.l-menu {
	position: fixed;
	z-index: 150;
  width: 50px;
  height: 50px;
  background-color: #80070C;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
	right: 20px;
	top: 20px;
}

.l-menu span {
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.l-menu span:first-child {
  transform: translateY(-5px);
}

.l-menu span:last-child {
  transform: translateY(5px);
}

.l-menu.active {
  background-color: transparent;
}

.l-menu.active span:first-child {
  transform: translateY(0);
	background-color: #80070C;
}

.l-menu.active span:last-child {
  transform: translateY(0);
	background-color: #80070C;
}


@media screen and (min-width: 768px){

	.l-header-content {
		width: 100%;
		/*height: 100vh;*/
	}

	.l-header-content .logo a:hover {
		opacity: .8;
	}

	.l-header-content .ig a:hover {
		opacity: .8;
	}
}


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

	.l-header-content .logo {
		display: none;
	}
    .l-header-content .ig {
    	position: absolute;
    }

	.l-menu {
		right: 5px;
		top: 5px;
	}
}


/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
	display: none;
	position: fixed;
	z-index: 90;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	top: 20px;
	left: 20px;
	background: rgb(255 255 255 / 90%);
	font-family: "proxima-nova", sans-serif;
  font-weight: 400;
}

.l-gNav a {
	text-decoration: none;
}

.l-gNav-list li + li {
	margin-top: 30px;
}

.l-gNav-list li a {
	color: #000;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	transition: .3s;
	white-space: nowrap;
}

.l-gNav-button {
    width: 180px;
    text-align: center;
		border: solid 1px #80070C;
}

.l-gNav-button a {
    color: #fff;
    display: block;
    background: #80070C;
    min-height: 57px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    padding: 18px 0;
		transition: .3s;
}

.l-gNav-button.fix {
	border: none;
	position: fixed;
	top: 20px;
	right: 80px;
    z-index: 80;
}
.l-gNav-button.fix a {
    display: flex;
    height: 50px;
    min-height: 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border: 1px #80070C solid;
    font-size: 1.6rem;
    text-decoration: none;
	position: relative;
}
/*.l-gNav-button.fix a {
    min-height: 0;
    box-sizing: border-box;
	border: 2px #fff solid;
    padding: 10px 0 0;
    font-size: 2rem;
    text-decoration: none;
	position: relative;
}
.l-gNav-button.fix a span {
    display: block;
	margin-top: 10px;
	padding: 6px 0;
	background: #000;
    font-size: 0.7em;
    letter-spacing: 0;
}
*/
.l-gNav-button.fix a::after {
 /*   content: "\025b6\0fe0e";*/
	display: block;
	font-size: 0.4em;
	position: absolute;
	top: 20px;
	right: 15px;
}

.l-gNav-lang {
    width: 130px;
    position: fixed;
    top: 300px;
	left: 25px;
    z-index: 50;
}
.l-gNav-lang li {
	display: block;
	border-bottom: 1px #000 solid;
	font-size: 0;
	line-height: 1;
}
.l-gNav-lang li:last-child {
	border-bottom: none;
}
.l-gNav-lang li span {
	display: block;
	padding: 1.15em 0;
	background: #80070C;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
}
.l-gNav-lang li a {
	display: block;
	padding: 1.15em 0;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	text-align: center;
	color: #80070C;
	text-decoration: none;
}

@media screen and (min-width: 768px){
	.l-gNav-inner {
		width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
		transform: translate(-50%, -50%);
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.l-gNav-2col {
		display: flex;
		align-items: flex-start;
		width: 350px;
	}

	.l-gNav-list {
		width: 50%;
	}

	.l-gNav-list li a:hover {
		color: #80070C;
	}

	.l-gNav-button a:hover {
		background: #fff;
		color: #80070C;
	}

	.l-gNav-lang li a:hover {
		text-decoration: underline;
	}

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

	.l-gNav {
		width: 100%;
		height: 100svh;
		top: 0;
		left: 0;
		padding: 20px;
	}

	.l-gNav-button {
		display: none;
	}

	.l-gNav-logo {
		width: 119px;
		margin: 0 auto 30px;
	}

	.l-gNav-logo a {
		display: block;
	}

	.l-gNav-list + .l-gNav-list {
		margin-top: 20px;
	}

	.l-gNav-list li + li {
    margin-top: 20px;
	}

	.l-gNav-list li a {
	    font-size: 1.4rem;
	}

	.l-gNav-list {
	    text-align: left;
	}

	.l-gNav-2col {
	    display: inline-block;
	}

	.l-gNav-inner {
	    text-align: center;
	}
/*
	.l-gNav-lang {
		text-align: center;
		bottom: 20px;
	}

	.l-gNav-lang li {
		padding: 0 15px;
	}


	.l-gNav-lang li a {
		font-size: 1rem;
	}
*/
	.l-gNav-ig {
		position: absolute;
		top: 20px;
		left: 20px;
		width: 20px;
	}

	.l-gNav-ig a {
		display: block;
	}
}


/* l-topicPath
---------------------------------------------------------------------------- */
.l-topicPath {
}

.l-topicPath li {
    display: inline-block;
}

.l-topicPath li.p-topicHome {
    /*
    background: url(../../../images/common/bg_crumb_home.png) left center no-repeat;
    padding-left: 22px;
    */
}

.l-topicPath li a {
    text-decoration: underline;
    color: #0588ce;
}

.l-topicPath li a:hover {
    text-decoration: none;
}

.l-topicPath-arrow {
    margin-left: 0.5em;
}

.l-topicPath-arrow:before {
    content: '＞ ';
}

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


/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
    width: 100%;
}

@media screen and (max-width: 767px){
    .l-pageBody {
    }
}



/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
}

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


/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
	background: #F2F1EE;
	padding: 100px 0 0;
}

.l-footer .lead {
	font-size: 4.2rem;
	color: #B21920;
	line-height: 1;
	margin-bottom: 60px;
	text-align: center;
}

.l-footer .logo {
	width: 98px;
	margin: 0 auto;
}

.l-footer .inner {
	margin: 0 0 100px;
	position: relative;
}

.l-footer .bottom {
    background: #B21920;
    padding: 10px 40px;
    color: #fff;
    line-height: 1;
    font-size: 1.2rem;
}

.l-footer-list li {
    font-size: 1.4rem;
}

.l-footer-list li + li {
	margin-top: 10px;
}

.l-footer-list li a {
    color: #000000;
		text-decoration: none;
		display: inline-block;
		transition: .3s;
}

.l-footer-list li a[target="_blank"] {
  padding-right: 20px;
	background: url("../../images/common/ico_blank.svg")no-repeat;
	background-size: 12px;
	background-position: right center;
}



.max840 {
    max-width: 840px;
    margin: auto;
}
.mb_120 {
    margin-bottom: 120px;
}

@media screen and (min-width: 768px){

	.l-footer .box {
    position: absolute;
    top: 50%;
    right: 80px;
		transform: translateY(-50%);
	}

	.l-footer-list li a:hover {
		opacity: .7;
	}
}


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

	.l-footer {
		padding: 80px 0 0;
	}

	.l-footer .lead {
		font-size: 2.4rem;
		margin-bottom: 40px;
	}

	.l-footer .logo {
		margin: 0 auto 60px;
	}

	.l-footer-list {
		text-align: center;
	}

	.l-footer-list li {
	    font-size: 1.2rem;
	}

	.l-footer .inner {
		margin: 0 0 80px;
	}
}


/* 言語切り替えボタン、フッター固定「空室検索ボタン」追記 */
@media screen and (max-width: 767px){
    .l-header,
    .l-header-content {
        width: 100%;
    }
	.l-gNav-button.fix {
		display: block;
        width: 100%;
        position: sticky;
		top: auto;
		right: auto;
        bottom: 0;
        left: 0;
	}
    .l-gNav-button.fix a {
		background: rgba(103,5,9,0.85);
        font-size: 1.8rem;
    }
/*    .l-gNav-button.fix a span {
        margin-top: 0;
        padding: 0;
        background: none;
    }
*/	.l-gNav-button.fix a::after {
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}

	.l-menu {
		width: 60px;
		height: 60px;
	}
	.l-gNav-lang {
	    width: 60px;
		box-sizing: border-box;
		padding: 0 5px;
		background: #fff;
	    position: absolute;
	    top: 80px;
		left: auto;
		right: 5px;
		transform: none;
	}
	.l-gNav-lang li:first-child {
		display: none;
	}
	.l-gNav-lang li a {
		padding: 1.4em 0;
		font-size: 1.4rem;
		letter-spacing: 0;
	}

    .mb_120 {
        margin-bottom: 60px;
    }

}



