/**
* base.css
* ========================== */
body {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;; /* 左にある書いてあるフォントが優先的に表示される */
    color: #333;
    line-height: 1.5;
    font-size: 16px;
}

a {
    text-decoration: none; /* <a>タグで囲まれた文字に下線がついてしまうのでそれを削除 */
    color: #333; /* <a>タグで囲まれた文字は青色になってしまうので本文の色と同じにしている */
    display: inline-block;
}

/* a:hover {
    opacity: 0.6; /* マウスオンすると透過度が60％になる
}  */

img {
    width: 100%; /* 画像を画面幅に収まるように */
    height: auto; /* 画像の横幅が縮小したら、高さも縦横比を維持したまま自動的に調整する */
    }
video {
    width: 100%;
    height: auto;
}
section {
    padding: 120px 0;
}
.section-inner {
    width: 100%;
    max-width: 1000px; /* innerで囲まれたコンテンツ幅は最大1000pxまで */
    padding: 0 20px;
    margin: 0 auto; /* レイアウトを中央寄せにする */
}
.section-title {
    text-align: center;
}
.section-title h2 {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    padding: 0 10px 10px;
    border-bottom: 1px solid #75181c;
    margin-bottom: 60px;
}
.more a {
    font-weight: bold;
    padding: 10px 20px;
    color: #fff;
    background-color: #75181c;
    border:2px solid #75181c;
    border-radius: 10px;
}
.more a:hover {
    color: #75181c;
    background-color: transparent;
}
.br {
    display: none;
}

/**
* header
* ========================== */
.header {
    width: 100%;
    background-color: #fff;
    padding: 10px 80px;
    position: fixed;
    z-index: 10;
}
#header .header-logo {
    width: 250px;
}

/**
* kv
* ========================== */
.kv {
    height: 600px;
    width: 100%;
    background-image: url(../img/main.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.kv::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#kv .kv-text {
    display: inline-block;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: bold;
    position: absolute;
    top: 40%;
}

/**
* introduce
* ========================== */
#introduce .more {
    text-align: right;
    margin-top: 10px;
}
#introduce .introduce-movie {
    padding-bottom: 60px;
}
#introduce .movie-box {
    padding-bottom: 30px;
}
#introduce .movie-unit {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
/** 
#introduce .movie-unit video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 560px;
}
**/
#introduce .movie-unit iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#introduce .movie-box:nth-child(2) {
    padding-bottom: 0;
}
#introduce .map {
    position: relative;
    padding-bottom: 60%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
#introduce .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#introduce .room-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
}
#introduce .room-unit {
    padding: 0 10px;
    width: 25%;
    padding-bottom: 30px;
}
#introduce .room-unit:nth-child(n+9) {
    padding-bottom: 0;
}
#introduce .room-unit h3 {
    font-size: 14px;
    font-weight: bold;
    padding-top: 10px;
    line-height: 1;
}
#introduce .room-unit p {
    font-size: 12px;
    padding-top: 10px;
}

/**
* owner
* ========================== */
.owner {
    background-color: rgba(252, 238, 233,0.6);
}
#owner .owner-head {
    position: relative;
    margin: 60px 0 120px;
}
#owner .owner-title {
    display: inline-block;
    max-width: 540px;
    width: 100%;
    padding: 30px;
    background-color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: -15%;
    left: 40%;
}
#owner .owner-title p {
    padding-right: 60px;
}
#owner .owner-title span {
    position: relative;
    left: 100px;
}
#owner .owner-title img {
    max-width: 250px;
    width: 100%;
    padding-top: 20px;
}
#owner .owner-img {
    max-width: 600px;
    width: 100%;
}
#owner .owner-list {
    text-align: center;
}
#owner .owner-unit {
    padding-bottom: 30px;
}
#owner .owner-unit:last-child {
    padding-bottom: 0;
}
#owner .owner-unit h3 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 20px;
}
#owner .owner-unit p {
    line-height: 2;
}

/**
* voice
* ========================== */
#voice .voice-list {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
#voice .voice-unit {
    display: flex;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
}
#voice .voice-unit:nth-child(2n) {
    flex-direction: row-reverse;
}
#voice .voice-unit:last-child {
    padding-bottom: 0;
}
#voice .person {
    padding-right: 20px;
}
#voice .voice-img {
    max-width: 80px;
    width: 100%;
    padding: 6px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-bottom: 10px;
}
#voice .person p {
    padding-bottom: 5px;
    font-size: 14px;
}
#voice .voice-text {
    max-width: 350px;
    width: 100%;
}

/**
* contact
* ========================== */
.contact {
    background-color: rgba(252, 238, 233,0.6);
}
#contact .contact-wrap {
    text-align: center;
}
#contact .contact-btn,
#contact .tel-box {
    display: inline-block;
    text-align: center;
    padding: 0 30px;
}
#contact .contact-btn a {
    color: #fff;
    font-size: 18px;
    padding: 20px ;
    border-radius: 10px;
    width: 200px;
}
#contact .contact-btn span {
    font-weight: bold;
}
#contact .line a {
    background-color: #1abc04;
}
#contact .mail a {
    background-color: #333;
}
#contact .fa-line,
#contact .fa-envelope {
    padding-right: 10px;
}
#contact .contact-btn:hover {
    opacity: 0.6;
}
#contact .contact-tel {
    padding-top: 40px;
}
#contact .tel-box {
    display: inline-block;
}
#contact .tel-title {
    font-size: 12px;
    color: #fff;
    background-color: #75181c;
    padding: 5px;
}
#contact .tel-number {
    color: #75181c;
    font-size: 30px;
    font-weight: bold;
    padding-top: 10px;
}
#contact .fa-phone {
    padding-right: 10px;
}
#contact .php-number {
    text-align: right;
    padding-bottom: 5px;
    padding-right: 20px
}
#contact .business-hours {
    font-size: 12px;
    padding: 10px;
    border-top: 1px solid #75181c;
    color: #75181c;
}
#contact .time {
    padding: 5px;
    border: 1px solid #75181c;
    margin-right: 10px;
}
#contact .caution {
    color: #333;
    font-size: 10px;
    padding-left: 10px;
}

/**
* company
* ========================== */
.company {
    padding-top: 0;
    background-color: rgba(252, 238, 233,0.6);
}
#company .company-list {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
#company .company-unit {
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
#company .company-unit dt {
    font-weight: bold;
    width: 150px;
}
#company .company-unit dd {
    width: calc(100% - 150px);
}

/**
* room-p
* ========================== */
.room-video {
    max-width: 960px;
    width: 100%;
    padding: 140px 0 60px;
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
/** 
.room-video video {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 100%;
    width: 560px;
}
**/
.room-video iframe {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 100%;
}
.room-wrap {
    padding-top: 60px;
}
#main .room-name {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
#main .room-box {
    display: flex;
    padding: 0 10px 60px;
}
#main .box-left,
#main .box-right {
    width: 50%;
}
#main .box-right {
    padding-left: 30px;
}
#main .box-left p {
    padding-bottom: 30px;
}
#main .room-about h3 {
    font-weight: bold;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
}
#main .about-list {
    padding: 20px 10px;
}
#main .about-unit {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
#main .about-unit dt {
    font-weight: bold;
}
#main .about-unit .rent {
    font-size: 24px;
    font-weight: bold;
}
#main .about-unit .emphasis  {
    font-weight: bold;
}

#main .gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#main .gallery-unit {
    width: 32%;
    padding-bottom: 20px;
}
#main .gallery-unit:nth-child(n+7) {
    padding-bottom: 0;
}
#main .detail {
    padding: 60px 0;
    line-height: 2;
}
#main .detail span,
#main .point span{
    background:linear-gradient(transparent 20%, #f7f943 )
}
#main .point {
    line-height: 2;
    padding-bottom: 120px;
}
#main .point h3 {
    font-size: 18px;
    font-weight: bold;
    color: #75181c;
    padding: 0 0 20px 20px;
    position: relative;
}
#main .point h3::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 6px;
    border-color: transparent transparent transparent #75181d;
    position: absolute;
    top: 12px;
    left: 0px;
}


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

    #introduce .room-unit {
        padding: 0 10px;
        width: 50%;
        padding-bottom: 30px;
    }
    #introduce .room-unit:nth-child(n+9) {
        padding-bottom: 30px;
    }
    #introduce .room-unit:nth-child(n+11){
        padding-bottom: 0;
    }
    #owner .owner-title {
        display: inline-block;
        padding: 30px;
        background-color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        position: absolute;
        top: -15%;
        left: 20%;
    }
    #owner .owner-title p {
        padding-right: 40px;
    }
    #owner .owner-title span {
        position: relative;
        left: 80px;
    }

/**
* room-p
* ========================== */
    #main .room-box {
        display: block;
    }
    #main .box-left,
    #main .box-right {
        width: 100%;
    }
    #main .box-right {
        padding-left: 0px;
    }
    #main .box-left p {
        padding-bottom: 30px;
    }
    #main .gallery-list {
        display: block;
    }
    #main .gallery-unit {
        width: 100%;
        padding-bottom: 20px;
    }
    #main .gallery-unit:nth-child(n+7) {
        padding-bottom: 20px;
    }
    #main .gallery-unit:last-child {
        padding-bottom: 0;
    }
    
}

@media screen and (max-width: 599px) {
    body {
        font-size: 14px;
    }
    section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .br {
        display: block;
    }
    /**
    * header
    * ========================== */
    .header {
        width: 100%;
        background-color: #fff;
        padding: 10px 40px;
    }
    #header .header-logo {
        width: 200px;
    }
    /**
    * kv
    * ========================== */
    #kv .kv-text {
        font-size: 16px;
        top: 50%;
    }
    /**
    * introduce
    * ========================== */
    #introduce .introduce-movie {
        padding-bottom: 30px;
    }
    #introduce .movie-unit:last-child {
        padding: 0;
    }
    #introduce .movie-box .more {
        text-align: center;
    }
    #introduce .movie-box .more a {
        max-width: 600px;
        width: 100%;
    }
    .map {
        height: 300px;
    }
    #introduce .room-list {
        display: block;
        flex-wrap: wrap;
        padding-top: 30px;
    }
    #introduce .room-unit {
        padding: 0;
        width: 100%;
        padding-bottom: 20px;
    }
    #introduce .room-unit:nth-child(n+9) {
        padding-bottom: 20px;
    }
    #introduce .room-unit:nth-child(n+11){
        padding-bottom: 20px;
    }
    #introduce .room-unit:last-child {
        padding-bottom: 0;
    }
    /**
    * owner
    * ========================== */
    #owner .owner-head {
        position: relative;
        margin: 30px 0 60px;
    }
    #owner .owner-title {
        padding: 30px 10px;
        font-size: 18px;
        top: -15%;
        left: 10%;
    }
    #owner .owner-title p {
        padding-right: 20px;
    }
    #owner .owner-title span {
        left: 60px;
    }
    #owner .owner-title img {
        max-width: 200px;
    }
    #owner .owner-unit {
        padding-bottom: 30px;
    }
    #owner .owner-unit h3 {
        font-size: 16px;
    }
    /**
    * voice
    * ========================== */
    #voice .voice-unit {
        padding-bottom: 20px;
    }
    #voice .person p {
        padding-bottom: 5px;
        font-size: 12px;
    }
    
    /**
    * contact
    * ========================== */
    #contact .contact-btn,
    #contact .tel-box {
        display: block;
    }
    #contact .contact-btn a {
        max-width: 600px;
        width: 100%;
        font-size: 16px;
    }
    #contact .line {
        padding-bottom: 20px;
    }
    #contact .contact-btn:hover {
        opacity: 0.6;
    }
    #contact .contact-tel {
        padding-top: 20px;
    }
    #contact .tel-number {
        font-size: 24px;
    }
    /**
    * company
    * ========================== */
    #company .company-unit {
        display: block;
    }
    #company .company-unit dt {
        font-weight: bold;
        width: 150px;
        padding-bottom: 5px;
    }
    #company .company-unit dd {
        width: 100%;
    }
    
    /**
    * room-p
    * ========================== */
    #main .room-wrap {
        padding-top: 30px;
    }
    #main .room-name {
        font-size: 20px;
    }
    #main .room-box {
        padding: 0 10px 30px;
    }
    #main .about-list {
        padding: 20px 10px;
    }
    #main .about-unit .rent {
        font-size: 18px;
    }
    #main .detail {
        padding: 30px 0;
    }
    #main .point {
        line-height: 2;
        padding-bottom: 60px;
    }
    #main .point h3 {
        font-size: 16px;
    }
}