@charset "utf-8";

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
共通
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

:root {
    /* フォント */
    --fontA: "Zen Kaku Gothic New", sans-serif;
    --fontB: "Shippori Mincho B1", serif;
    --fontC: "Yuji Syuku", serif;
    --fontD: "Ibarra Real Nova", serif;
    /* カラー */
    --white: #EBE8E3;
    --black: #151310;
    --black02: #402613;
    --primary: #B3A17D;
    --secondary: #B31212;
    --tertiary: #014095;
    /* --quaternary: #321B05; */
    /* --fifth: #E6D6B8; */
    /*--sixth: #F9EFE8;
    --seventh: #F4DEBF;
    --eighth: #B9874F;
    --ninth: #F0BADC;
    --tenth: #805A41; */
}

#root {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow-x: clip;
}

#root::-webkit-scrollbar {
    display: none;
}

body {
    position: relative;
    width: 100%;
    -webkit-text-size-adjust: ('none' '100%' 'auto');
    font-family: var(--fontA);
    font-style: normal;
    color: var(--black);
    letter-spacing: 0em;
    line-height: 1.944;
    font-weight: 500;
    /* 15-18px */
    font-size: clamp(0.938rem, 0.892rem + 0.194vw, 1.125rem);
    transition: all ease .3s;
    background: var(--white) url(/system_panel/uploads/images/cmn_bg01.jpg)repeat-y center top /cover;
    overflow-x: clip;
}

/* 電話番号定数のチラつき対策 */
p.tel,
p.fax,
a[data-cke-saved-href^="tel:電話番号"] {
    opacity: 0;
}

.gjs-dashed p.tel,
.gjs-dashed p.fax,
.gjs-dashed a[data-cke-saved-href^="tel:電話番号"] {
    opacity: 1;
}

/* 電話番号定数のチラつき対策 */

p>a,
label>a {
    color: inherit;
    text-decoration: underline;
}

p>a:hover,
label>a:hover {
    color: inherit;
}

.fontA {
    font-family: var(--fontA);
    font-style: normal;
}

.fontB {
    font-family: var(--fontB);
    font-style: normal;
}

.fontC {
    font-family: var(--fontC);
    font-style: normal;
}

.fontD {
    font-family: var(--fontD);
    font-style: normal;
}

.ptFontA s {
    text-decoration: none;
    font-family: var(--fontA);
}

.ptFontB s {
    text-decoration: none;
    font-family: var(--fontB);
}

.anchor {
    position: relative;
    z-index: -99;
    pointer-events: none;
    padding-top: 80px;
    margin-top: -80px;
}

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

.txtBx>p:nth-of-type(n+2) {
    margin: 20px 0 0;
}

.txtShadow01 {
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.imgShadow01 {
    filter: drop-shadow(20px 10px 20px rgba(0, 0, 0, 0.2));
}

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

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
frame
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.inWrap {
    width: 100%;
    padding: 70px 0 0 0;
}

.inBtm {
    padding-bottom: 80px;
}

.inBtmM {
    margin-bottom: 120px;
}

.area {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.area01 {
    width: 100%;
    max-width: 1550px;
    padding: 0 15px;
    margin: 0 auto;
}

.area02 {
    width: 100%;
    max-width: 1250px;
    padding: 0 15px;
    margin: 0 auto;
}

.area03 {
    width: 100%;
    max-width: 1030px;
    padding: 0 15px;
    margin: 0 auto;
}

.area04 {
    width: 100%;
    max-width: 830px;
    padding: 0 15px;
    margin: 0 auto;
}

/*-----------------------------------------------------------
frame
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
プルダウン
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pull {
    position: relative;
    cursor: pointer;
}


.pull:hover .down {
    visibility: visible;
    opacity: 1;
    display: block;
}

.down {
    display: none;
    visibility: hidden;
    position: absolute;
}

/*-----------------------------------------------------------
プルダウン
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ヘッダー
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.gjs-dashed .hFixed {
    position: static !important;
}

.header {
    position: relative;
    z-index: 999;
}

.header.clone {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all .3s;
}

.header.clone.is-animation {
    transform: translateY(0%);
}

.fixedHeader {
    transition: all .3s;
}

.fixedHeader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hNav {
    gap: 0 12px !important;
}

/* 16px～20px */
.hNavLink {
    color: var(--black);
    font-family: var(--fontB);
    font-weight: 700;
}

.hNavLink:hover {
    text-decoration: underline;
    color: var(--black);
}

.hFixed {
    transition: all .3s;
    aspect-ratio: 13/7;
}

.hFixed * {
    transition: all .3s;
}

.hFixed:hover {
    background: #7F0B0B !important;
}

.hFixed:hover .hFixedIn {
    border: 1px solid #ffffff00;
}

.hFixed:hover .hFixedArrow {
    transform: translateX(6px);
}

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

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
フッター
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.fShopList {
    gap: 30px 0;
}

.fShopImg {
    aspect-ratio: 248/143;
    overflow: hidden;
}

.fShopImg>img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: all .3s;
}

.fShopName {
    font-size: clamp(0.938rem, 0.723rem + 0.335vw, 1.125rem) !important;
}

.fShopItem:hover .fShopImg>img {
    transform: scale(1.05);
}

.fInstaItem .fInstaIcon {
    transition: all .3s;
}

.fInstaItem:hover .fInstaIcon {
    transform: scale(1.1);
}

.fNavLink:hover {
    text-decoration: underline;
    color: var(--white);
}

/*-----------------------------------------------------------
フッター
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPヘッダー
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.hamMenu {
    margin: auto;
    padding: 0;
    max-width: 1920px;
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: ease .5s;
}

.hamMenu.open {
    right: 0;
}

.hamMenuAr {
    width: 100%;
    height: 100%;
}

.hamMenuConte {
    padding: 90px 15px 30px;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    overflow-y: auto;
    -ms-overflow-style: none;
    background: url(/system_panel/uploads/images/cmn_bg01.jpg)repeat-y center top /cover;
}

.hamMenu .hamMenuConte {
    max-width: none;
}

.hamMenuConte::-webkit-scrollbar {
    width: 12px;
    /* 横幅 */
}

.hamMenuConte::-webkit-scrollbar-thumb {
    background: var(--primary);
    /* ハンドルの色 */
}

.hamMenuConte::-webkit-scrollbar-track {
    background: var(--white);
    /* 背景色 */
}

.hamMenuBx {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.hamNavBx {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40px auto 0;
    gap: 15px;
}

.hamNavLink {
    color: var(--black);
}

.hamNavLink:hover {
    text-decoration: underline;
    color: var(--black);
}

.hamNavLinkTxt {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0em;
    font-family: var(--fontB);
    font-weight: 500;
}

.spNavBlock {
    flex: 1;
    display: flex;
}

.spNav {
    max-width: calc(100% - 70px);
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
    border-top: 1px solid #B3A17D;
}

.spNavArea {
    width: 100%;
    height: 100%;
    display: flex;
    background: #E4DAC0;
}

.spNavConte-l {
    width: 50%;
    border-right: 1px solid #B3A17D;
}

.spNavConte-m {
    width: 33.33%;
    background: #141418;
}

.spNavLink {
    padding: 11px 5px 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spFa {
    font-size: 23px;
    color: var(--black);
}

.spNavBtnBar {
    max-width: 36px;
    height: 26px;
    width: 100%;
    position: relative;
}

.spNavBtnTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: var(--black);
}

.spNavLinkTxt {
    margin: 5px auto 0;
    font-size: 10px;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.spHamBox {
    padding: 12px 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 99999999;
    border-top: 1px solid #B3A17D;
    background: #E4DAC0;
}


.spHamBox .spNavBtnBarItem:nth-of-type(2) {
    top: 12px;
}

.spHamBox .spNavBtnBarItem:nth-of-type(3) {
    bottom: 0;
}

.open.spHamBox .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(12px) rotate(45deg);
}

.open.spHamBox .spNavBtnBarItem:nth-of-type(2) {
    opacity: 0;
}

.open.spHamBox .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.spNavBtnBarItem {
    width: 100%;
    height: 2px;
    right: 0;
    background: #333;
    border-radius: 3px;
    position: absolute;
    transition: ease .5s;
}

.spNavMainBtn {
    right: 0;
    bottom: 0;
    position: fixed;
    display: flex;
    z-index: 99999;
    background: #333;
    width: 70px;
    height: 70px;
}

.open .spNavBtnBarItem {
    transition: ease .5s;
}

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

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
下層カバー
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.cover {
    position: relative;
    width: 100%;
    height: 300px;
}

.cover::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .5;
    pointer-events: none;
}

.cvrAr {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1470px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.cvrTit {
    font-size: clamp(2rem, 1.575rem + 1.812vw, 3.75rem);
    letter-spacing: 0em;
    line-height: 1.45em;
    font-family: var(--fontB);
    font-weight: 600;
    color: var(--white);
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
パンくず
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.pankuzuWr {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
}

.pankuzuAr {
    margin: 0 auto;
    padding: 10px 15px 0;
    max-width: 1430px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 14px;
}

.pankuzuLink {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--black);
}

.pankuzuLink:hover {
    color: var(--black);
    text-decoration: underline;
}

.pankuzuTxt {
    font-size: 14px;
    line-height: 1.5em;
}

.pankuzuLink>p {
    text-decoration: none;
}

.pankuzuLink:hover>p {
    text-decoration: underline;
}

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ボタン
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.telBx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: max-content;

}

.telBx img {
    width: 35px;
    margin: 0 5px 0 0;
}

.telBx p {
    font-size: clamp(1.813rem, 1.494rem + 1.359vw, 3.125rem);
    font-weight: 600;
    line-height: 1.5em;
    font-family: var(--fontD);
    color: var(--primary);
}

.btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    height: 60px;
    gap: 20px;
    transition: all .3s;
}

.btn01::after {
    content: "";
    display: block;
    width: 40px;
    height: 10px;
    margin: -5px 0 0;
    transition: all .3s;
}

.btn01 p {
    font-size: clamp(1rem, 0.939rem + 0.259vw, 1.25rem);
    line-height: 1.45;
    letter-spacing: 0;
    font-family: var(--fontB);
    font-weight: 700;
    transition: all .3s;
}

.btn02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    height: 60px;
    gap: 20px;
    transition: all .3s;
}

.btn02::after {
    content: "";
    display: block;
    width: 40px;
    height: 10px;
    margin: -5px 0 0;
    transition: all .3s;
}

.btn02 p {
    font-size: clamp(1rem, 0.939rem + 0.259vw, 1.25rem);
    line-height: 1.45;
    letter-spacing: 0;
    font-family: var(--fontB);
    font-weight: 700;
    transition: all .3s;
}

.backBtn {
    flex-direction: row-reverse;
}

.backBtn::after {
    transform: scale(-1, 1);
}

.btnWhite {
    background: var(--white);
}

.btnWhite:hover {
    background: var(--black);
}

.btnWhite p {
    color: var(--black);
}

.btnWhite:hover p {
    color: var(--white);
}

.btnWhite::after {
    background: url(/system_panel/uploads/images/arrow_black.svg) no-repeat center/contain;
}

.btnWhite:hover::after {
    background: url(/system_panel/uploads/images/arrow_white.svg) no-repeat center/contain;
}

.btnBlack {
    background: var(--black);
}

.btnBlack:hover {
    background: #c9bfb0;
}

.btnBlack p {
    color: var(--white);
}

.btnBlack:hover p {
    color: var(--black);
}

.btnBlack::after {
    background: url(/system_panel/uploads/images/arrow_white.svg) no-repeat center/contain;
}

.btnBlack:hover::after {
    background: url(/system_panel/uploads/images/arrow_black.svg) no-repeat center/contain;
}

.btnBlack02 {
    background: var(--black02);
}

.btnBlack02:hover {
    background: var(--white);
}

.btnBlack02 p {
    color: var(--white);
}

.btnBlack02:hover p {
    color: var(--black);
}

.btnBlack02::after {
    background: url(/system_panel/uploads/images/arrow_white.svg) no-repeat center/contain;
}

.btnBlack02:hover::after {
    background: url(/system_panel/uploads/images/arrow_black.svg) no-repeat center/contain;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
テキスト
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.titBx {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tit40 {
    font-family: var(--fontB);
    /* 25px～40px */
    font-size: clamp(1.563rem, 1.335rem + 0.971vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.45;
}

.subtit18 {
    font-family: var(--fontD);
    color: var(--primary);
    letter-spacing: 0;
    line-height: 1.45;
    /* 15px～18px */
    font-size: clamp(0.938rem, 0.892rem + 0.194vw, 1.125rem);
}

.subtit20 {
    font-family: var(--fontD);
    color: var(--primary);
    letter-spacing: 0;
    line-height: 1.45;
    /* 16px～20px */
    font-size: clamp(1rem, 0.939rem + 0.259vw, 1.25rem);
}

.titBxBorderL {
    position: relative;
    padding-bottom: 20px;
}

.titBxBorderL::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 1px;
    background: var(--primary);
}

.titBxBorderR {
    position: relative;
    padding-bottom: 20px;
}

.titBxBorderR::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background: var(--primary);
}

.ptFs35 s {
    text-decoration: none;
    font-size: clamp(1.438rem, 1.255rem + 0.777vw, 2.188rem);
}

.ptFs35 s {
    text-decoration: none;
    font-size: clamp(1.438rem, 1.255rem + 0.777vw, 2.188rem);
}

.inShopReadFl01TxtBx{
    display: contents;
}

.inShopReadTxtBx {
    order: 5;
}

.inShopReadFl01TxtBx .titBx{
    align-items: center;
}

.inShopReadFl01ListTxt span {
    font-size: 125%;
}

.inScrollSlider {
    flex: 1;
    max-width: 1360px;
}

.inScrollSliderImg {
    width: 100%;
    aspect-ratio: 7/5;
    overflow: hidden;
}

.inScrollSliderImg>img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.inScrollSliderTxt {
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.45;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    justify-content: center;
    align-items: center;
    width: 10px;
    aspect-ratio: 2/1;
    margin: auto !important;
    transition: all .3s;
    /* pointer-events: all !important;
    cursor: pointer !important;
    opacity: 1 !important; */
}


.swiper-button-prev {
    background: url(/system_panel/uploads/images/slider_arrow_l.svg)no-repeat center /contain;
}

.swiper-button-next {
    background: url(/system_panel/uploads/images/slider_arrow_r.svg)no-repeat center /contain;
}

.inScrollSliderBxWhite .swiper-button-prev,
.inScrollSliderBxWhite .swiper-button-next {
    filter: brightness(0) invert(1);
}

.inScrollSliderPagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
}

.inScrollSliderPagination .swiper-pagination-bullet {
    border: 1px solid var(--black);
    background: transparent;
    width: 15px;
    height: 15px;
    transition: all .3s;
}

.inScrollSliderPagination .swiper-pagination-bullet-active {
    background: var(--black);
}

.inScrollSliderBxWhite+.inScrollSliderPagination .swiper-pagination-bullet {
    border: 1px solid var(--white);
}

.inScrollSliderBxWhite+.inScrollSliderPagination .swiper-pagination-bullet-active {
    background: var(--white);
}

/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
共通部品
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.border01 {
    border: 1px solid rgba(235, 232, 227, 0.3);
}

/* ++++++ inRead ++++++ */

.inShopRead01 {
    position: relative;
}

.inShopRead01::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 86.62%;
    background: url(/system_panel/uploads/images/in_bg02.png) no-repeat center top /100% 100%;
}

.inShopRead01.inShopRead01Black::before {
    background: none;
    background: url(/system_panel/uploads/images/in_bg04.png) no-repeat center top /100% 100%;
}

.inShopRead01.inShopRead01Primary::before {
    height: 75%;
    background: none;
    background: url(/system_panel/uploads/images/in_bg07.png) no-repeat center top /100% 100%;
}

.gjs-dashed .inShopReadSlider .carousel-inner {
    display: flex
}

.gjs-dashed .inShopReadSlider .carousel-inner {
    flex-direction: column;
    gap: 30px;
    overflow: auto !important;
}

.gjs-dashed .inShopReadSlider .carousel-inner .carousel-item {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    pointer-events: all;
}

.inShopReadSliderTxtBx .carousel-inner {
    overflow: visible !important;
}

.inShopReadSlider .carousel-item {
    opacity: 0 !important;
    pointer-events: none;
    transition: all .3s;
}

.inShopReadSlider .carousel-item.active {
    opacity: 1 !important;
    pointer-events: all;
}

.inShopReadFl01Img .carousel-inner,
.inShopReadSliderIndi .indicator {
    aspect-ratio: 38/27;
    overflow: hidden;
}

.inShopReadSlider .carousel-inner img,
.inShopReadSliderIndi .indicator img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: all .3s;
}

.inShopReadSliderIndi .indicator .active {
    background: none !important;
}

.inShopReadSliderIndi .indicator:hover img {
    transform: scale(1.05);
}

.cursol-pointer {
    cursor: pointer;
}

.inShopReadSlider .carousel-inner .carousel-item {
    opacity: 0 !important;
    transition-property: opacity !important;
    transition-duration: 0s !important;
    transform: none !important;
    left: 0 !important;
    position: absolute !important;
    top: 0 !important;
    display: block !important;
    width: 100% !important;
}

.inShopReadSlider .carousel-inner .carousel-item.active {
    opacity: 1 !important;
    position: relative !important;
}

.inShopReadTxtBxTit span {
    font-size: clamp(2.25rem, 1.734rem + 2.201vw, 4.375rem);
}

.inShopReadTxtBxTit s {
    text-decoration: none;
    font-size: clamp(1.438rem, 1.255rem + 0.777vw, 2.188rem);
}

.inShopIllustItemTxt span {
    font-size: clamp(1.563rem, 1.335rem + 0.971vw, 2.5rem);
}

.inShopIllustItemTxt s {
    text-decoration: none;
    font-size: clamp(1.188rem, 1.096rem + 0.388vw, 1.563rem);
}

.inShopIllustFl {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px 3%;
}

.inShopIllustItem {
    margin: 0 !important;
    width: 48% !important;
}

.inShopIllustItemTxt span {
    white-space: nowrap;
}


/* ++++++ アニメーション ++++++ */

/* .hazeAnim01 {
    animation-name: hazeAnim01;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
}

@keyframes hazeAnim01 {
    0% {
        opacity: 0;
        translate: 0 64%;
    }

    15% {
        opacity: 1;
    }

    100% {
        translate: 0 -64%;
    }
} */

/* ------ アニメーション ------ */

/*-----------------------------------------------------------
共通部品
-----------------------------------------------------------*/

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:414px) {}

/* min-width: 414px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:544px) {}

/* min-width: 544px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:576px) {

    .hamMenu .hamMenuConte {
        max-width: 400px;
    }

}

/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    共通
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .anchor {
        padding-top: 120px;
        margin-top: -120px;
    }

    .txtBx>p:nth-of-type(n+2) {
        margin: 32px 0 0;
    }

    .hamMenu {
        display: none;
    }

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

    .swiper-button-prev,
    .swiper-button-next {
        width: 16px;
    }

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    frame
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .inWrap {
        padding: 150px 0 0 0;
    }

    .inBtm {
        padding-bottom: 150px;
    }

    /*-----------------------------------------------------------
    frame
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ヘッダー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .header.clone {
        display: block !important;
        background: url(/system_panel/uploads/images/header_bg01.jpg) repeat center/cover;
    }

    .header.clone.is-scroll {
        transform: translateY(0);
    }

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    フッター
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    /*-----------------------------------------------------------
    フッター
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    SPヘッダー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .spNav {
        display: none;
    }

    .hamMenuConte {
        padding: 125px 15px 60px;
    }

    .hamNavBx {
        gap: 22px;
    }

    .hamNavLinkTxt {
        font-size: 18px;
    }

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    下層カバー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .cover {
        height: 400px;
    }

    /*-----------------------------------------------------------
    下層カバー
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ボタン
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .telBx img {
        width: 40px;
    }

    .btn01 {
        max-width: 250px;
        height: 70px;
    }

    .btn01::before {
        width: 51.5px;
    }

    .btn02 {
        max-width: 290px;
        height: 70px;
    }

    .btn02::after {
        width: 51.5px;
    }

    /*-----------------------------------------------------------
    ボタン
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    テキスト
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    /*-----------------------------------------------------------
    テキスト
    -----------------------------------------------------------*/


    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    共通部品
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .inScrollSliderPagination {
        margin: 40px auto 0;
    }

    .inScrollSliderTxt {
        text-align: center;
        margin: 10px 0 0;
    }

    .inShopIllustFl {
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .inShopIllustItem {
        width: 32% !important;
    }

    .inShopIllustItemTxtBr br:first-of-type {
        display: none;
    }

    .inShopReadFl01TxtBx{
    display: block;
}

.inShopReadFl01TxtBx .titBx{
    align-items: flex-start;
    order: -1;
}
    /*-----------------------------------------------------------
    共通部品
    -----------------------------------------------------------*/

}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:992px) {}

/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    共通
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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


    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    SPヘッダー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

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

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    下層カバー
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    .cvrTit::before {
        width: 125%;
    }

    .cvrTit {
        font-size: 60px;
    }

    .cvrTxt {
        font-size: 24px;
    }

    /*-----------------------------------------------------------
    下層カバー
    -----------------------------------------------------------*/

    /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    テキスト
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

    /*-----------------------------------------------------------
    テキスト
    -----------------------------------------------------------*/

}

/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {}

/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1320px) {}

/* min-width: 1320px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1440px) {

    .fShopList {
        justify-content: space-between !important;
    }

    .fShopItem {
        width: 19% !important;
    }

    .fShopName {
        font-size: 18px !important;
    }

    /* 16px～20px */
    .hNavLink {
        font-size: clamp(1rem, 0.939rem + 0.259vw, 1.25rem) !important;
    }

    .hNav {
        gap: 1.5% !important;
    }

}

/* min-width: 1440px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1600px) {}

/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1720px) {

    .fShopName {
        font-size: 20px !important;
    }


    .hNav {
        gap: 2.97% !important;
    }

}

/* min-width: 1720px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1920px) {}

/* min-width: 1920px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */