@charset "utf-8";

/*--------------------
Reset
--------------------*/
/* * {text-transform:lowercase;} */
/* *::first-letter {text-transform:capitalize;} */
/* .text-lower::first-letter {text-transform:lowercase;} */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
li {
    list-style: none;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
img,video {
    vertical-align: bottom;
}
img {
   image-rendering: auto; 
  /* image-rendering: -webkit-optimize-contrast; */
  width:100%;
  height: auto;
  display: block;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, button, select, textarea {
   vertical-align:middle;
   /* font-family: inherit; */
   font-size: inherit;
}
*,
*::before,
*::after {
   box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset, 72px);
}
html, body {
    overscroll-behavior: none;
}

:root {
    --anchor-offset: 72px;
}

/* Keep hash-link targets clear of the fixed header/nav. */
[id] {
    scroll-margin-top: var(--anchor-offset, 72px);
}

@media (max-width: 768px) {
    :root {
        --anchor-offset: 88px;
    }
}


/*--------------------
common
--------------------*/
/* @media (max-width: 1200px) {
    body {
        width: 1200px;
    }
    
} */

body.no-scroll {
    overflow: hidden;
}

/* SP only */
@media (max-width: 1000px) {
    body {
        width:1000px;
    }
}


/* SP only */
@media (max-width: 768px) {
    body {
        width:100%;
    }
    .pc {
        display: none;
    }

    .spflex {
        display: flex;
    }
    .spcolumn {
        display: flex;
        flex-direction: column;
    }
        body {
        overflow-x: hidden!important;
    }
}

/* PC only*/
@media (min-width: 769px) {
    .sp {
        display: none;
    }

    .pcflex {
        display: flex;
    }
    .pccolumn {
        display: flex;
        flex-direction: column;
    }
}


/* block */
.flex {
    display: flex;
}

.column {
    display: flex;
    flex-direction: column;
}

.block {
    display: block;
}

.auto {
    margin-left: auto;
    margin-right: auto;
}

.noclick {
    pointer-events: none;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.bold {
    font-weight: bold!important;
}

/* a common */
a {
    color: #000000;
    transition-duration: 300ms;
}
.sc {

    transition-duration: 300ms;
}

.sc:hover {
    /* transform: scale(1.09); */
}

.op {
    transition-duration: 300ms;
}

.op:hover {
    opacity: 0.7;
}

body {
    color: #000000;
    font-family: "futura-pt", sans-serif;
    letter-spacing: 0.04rem;
    font-weight: 500;
    font-size: 16px;
    overflow: visible;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body.no-scroll {
    overflow: hidden;
}



/* 横幅 */
.wd {
    width: 96%;
    max-width: 1186px;
    margin-right:auto ;
    margin-left:auto;
}

/* SP */
@media (max-width: 768px) {
.wd {
    width: 92%;
}
}


img.ft {
    object-fit: none;
    width: fit-content;
}



/* color */
:root {
    --red:#C2191F; 

}




/* 角丸 */
.rd {
    border-radius: 25px;
}


/* margin---------------------- */
.mg_bottom_05 { margin-bottom: 0.5rem; }
.mg_bottom_1 { margin-bottom: 1rem; }
.mg_bottom_2 { margin-bottom: 2rem; }
.mg_bottom_3 { margin-bottom: 3rem; }
.mg_bottom_4 { margin-bottom: 4rem; }
.mg_bottom_5 { margin-bottom: 5rem; }
.mg_bottom_6 { margin-bottom: 6rem; }
.mg_bottom_7 { margin-bottom: 7rem; }


/* slick dots 共通 */
.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 90%;
    flex-wrap: wrap;
}


.slick-dots li {
    line-height: 0;
}

.slick-dots li button {
    width: 0.875rem;
    height: 0.875rem;
    border: 1px solid var(--red);
    border-radius: 50%;
    background: #ffffff;
    font-size: 0;
    padding: 0;
}

.slick-dots li button::before {
    content: none;
}

.slick-dots li.slick-active button {
    background: var(--red);
}


/* 各コンテンツ基本ウインドウ */
.contents_wrap {
    width: 96%;
    max-width: 1210px;
    background: #ffffff;
}
/* 上部ボタン */
a.gototop {
    position: fixed;
    bottom :2rem;
    right: 2rem;
    z-index: 30;
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}
a.gototop img {
    transition: opacity 300ms;
}
a.gototop:hover {
    filter: none;
}
a.gototop:hover img {
    opacity: 0.6;
}


/* booknowボタン */
a.booknow {
    width: 220px;
    height: 58px;
    flex-shrink: 0;
    background: #F2A100;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    font-weight: 400;
}
a.booknow:hover {
    opacity: 0.7;
}


/* SEEMOREボタン */
.seemore {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 3.4rem;
    margin: auto auto 0;
    border: none;
    border-radius: 5px;
    background: #d7ba78;
    color: #ffffff;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    cursor: pointer;
    overflow: hidden;
}

.seemore:hover {
    opacity: 0.7;
}

.seemore::before,
.seemore::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #fff;
}

.seemore::before {
    left: 7px;
}

.seemore::after {
    right: 7px;
}

.seemore span {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
}

.seemore span:before,
.seemore span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.seemore span:before {
    top: 7px;
}

.seemore span:after {
    bottom: 7px;
}




main {
    margin-top: 60px;
    background: #ffeeee;
    background-image: url(../img/main_bg.webp);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: repeat;
    padding-bottom: 8rem;
}


/* SP */
@media (max-width: 768px) {
main {
    padding-top: 4.6875rem;
    margin: 0;
    padding-bottom: 4rem;
    background-size: contain;
}
}

main.sub {
    margin-top: 0;
    padding-top: 0;
}



/* パンくず */
.breadcrumb {
    width: 100%;
    height: 45px;
    background: #ffffff;
    margin-top: 60px;
}

.breadcrumb ul {
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 96%;
    max-width: 1100px;
    gap: 3px;

}

.breadcrumb ul li {
    color: #000000;
    font-size: 13px;
}

.breadcrumb ul li a,
.breadcrumb ul li.ar {
    color: #50CAD7;
    font-size: 13px;
}

/* SP */
@media (max-width: 768px) {
    .breadcrumb {
        margin-top:4.6875rem;
    }
}

/* リスト系のh3共通部分 */
section.list_top {
    width: 96%;
    max-width: 1210px;
}

/* SP */
@media (max-width: 768px) {
    section.list_top {
        width: 100%;
    }
}

.list_top_line {
    width: 100%;
    height: 0.625rem;
    background: linear-gradient(90deg, #C2191F 0%, #F8A7AA 32.69%, #8F1217 62.98%, #C35D60 86.54%);
}

section.list_top .top_area {
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 0.5rem;
    margin-bottom: 0.5rem;
}

section.list_top .lt_title {
    color: var(--red);
    font-size: 2.25rem;
    font-weight: 500;
}

/* SP */
@media (max-width: 768px) {
    section.list_top .top_area {
        padding-top: 1rem;
        margin-bottom: 1rem;
    }
section.list_top .lt_title {
    font-size: 1.5rem;
    padding: 0 1rem;
}
}

section.list_top small {
    color: var(--red);
    font-size: 1rem;
}

section.list_top .top_area div {
    justify-content: space-between;
    align-items: flex-end;
}

section.list_top .top_area div p {
    width: 70%;
    max-width: 820px;
    font-size: 1rem;
}




section.list_top .list_bottom_line {
    width: 100%;
    height: 0.1875rem;
    background: linear-gradient(90deg, #C2191F 0%, #F8A7AA 32.69%, #8F1217 62.98%, #C35D60 86.54%);
}

/* SP */
@media (max-width: 768px) {
    section.list_top .nop {
        padding-top: 0.5rem;
        align-items: flex-start;
        width: 100%;
        align-items: center;
        gap: 1rem;
    }

    section.list_top .nop span {
        color: var(--red);
        font-size: 0.75rem;
        white-space: nowrap;
        padding-right: 1rem;
        
    }

    section.list_top .nop:before {
        content: "";
        width: stretch;
        display: block;
        height: 0.1875rem;
        background: linear-gradient(90deg, #C2191F 0%, #F8A7AA 32.69%, #8F1217 62.98%, #C35D60 86.54%);
    }
}


.list_top_line_last {
    width: 96%;
    max-width: 1210px;
    margin: 4rem auto 0;
    width: 100%;
    height: 0.625rem;
    background: linear-gradient(90deg, #C2191F 0%, #F8A7AA 32.69%, #8F1217 62.98%, #C35D60 86.54%);
}




/* SP */
@media (max-width: 768px) {
.list_top_line_last {
    width: 100%;
    margin: 2rem auto 0;
}
}


/* ページャー */
ul.pager {
    justify-content: center;
    gap: 0.7rem;
}

ul.pager li {
    width: 2.9375rem;
    height: 3.125rem;
    border: solid 1px var(--red);
    border-radius: 0.3125rem;
    background: #ffffff;
    color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

ul.pager li.now {
    background: var(--red);
    color: #ffffff;
}

ul.pager li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--red);
}
ul.pager li a:hover {
    background: var(--red);
    color: #ffffff;
}


/* SP */
@media (max-width: 768px) {
    ul.pager {
        gap: 0.4rem;
    }
    ul.pager li {
        
    width: 2rem;
    height: 2.5rem;
    font-size: 1rem;
    }
    ul.pager li a {
    font-size: 1rem;
    }
        

}


/* SP */
@media (max-width: 768px) {
}



/* SP */
@media (max-width: 768px) {
}



/* SP */
@media (max-width: 768px) {
}
