@charset "utf-8";

/* ==========================================
カスタムプロパティ 
========================================== */

:root {
	/* base color */
	--base-font-color: #1C1A1A;
	--base-bg-color: #D1CDC8;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--primary: #A0492F;
	--primary-hover: #f55;
	--secondary: #E7E4E1;
	--secondary-hover: #55f;
	--tertiary: #B5B1AD;
	--tertiary-hover: #5f5;
	/* --quaternary: #261D3D;
	--quaternary-hover: #f5f;
	--fifth: #FFF8ED;
	--fifth-hover: #ff5;
	--sixth: #F3E1C9;
	--sixth-hover: rgb(13, 15, 15);
	--seventh: #F3E1C9;
	--seventh-hover: #5ff;
	--eighth: #F3E1C9;
	--eighth-hover: #5ff;
	--ninth: #F3E1C9;
	--ninth-hover: #5ff; */

	--white: #FFF;
    --black: #1C1A1A;

    --bg-primary: #A0492F;
    --bg-secondary: #2B2A2A;
    --bg-tertiary: #E7E4E1;
    /* --bg-quaternary: #F3E1C9;
    --bg-fifth: #F3E1C9; */

    --gradation-primary: linear-gradient(to left, rgba(236, 229, 224), rgba(248, 242, 241, 80%));
    --gradation-secondary: linear-gradient(to right, rgba(236, 229, 224), rgba(248, 242, 241, 80%));

    --img-bg-color-primary: rgba(199, 176, 176, 62%);

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Noto Sans JP", serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Shippori Mincho", serif;
	--font-family02: "Inter", sans-serif;
	--font-family03: "Noto Sans JP", sans-serif;

}

/* 管理画面 */

.gjs-dashed {
    overflow-x: unset;
}

/*---------*/

html {
	overflow-x: hidden;
}

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

body {
    margin: 0 auto !important;
    max-width: 1920px;
    width: 100%;
    -webkit-text-size-adjust: ('none' '100%' 'auto');
    background-color: var(--base-bg-color);
    font-size: 18px;
	font-weight: 400;
	font-family: var(--base-font-family);
    letter-spacing: 0.05em;
    color: var(--base-font-color);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/system_panel/uploads/images/bg01.png);
    background-attachment: scroll;
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center top;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: .2;
    z-index: -1;
}

.telWrap {
    color: inherit;
}

.telWrap:hover {
    color: inherit;
    text-decoration: underline;
}

.hidden {
    overflow: hidden;
}

.opacity_hover:hover {
    opacity: .7;
}

.cursol-pointer {
    cursor: pointer;
}

.inLink>a:hover {
    text-decoration: underline;
    color: #485053;
}

/*===========================================================
共通パーツ
===========================================================*/

.font-weight-medium {
    font-weight: 500 !important;
}


.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-tertiary {
    color: var(--tertiary);
}

.color-quaternary {
    color: var(--quaternary);
}

.color-fifth {
    color: var(--sixth);
}

.color-sixth {
    color: var(--sixth);
}

.color-seventh {
    color: var(--seventh);
}

.color-eighth {
    color: var(--eighth);
}

.color-ninth {
    color: var(--ninth);
}

.color-white {
    color: #FFFFFF;
}

.bg-primary {
    background: var(--bg-primary) !important;
}

.bg-secondary {
    background: var(--bg-secondary) !important;
}

.bg-tertiary {
    background: var(--bg-tertiary) !important;
}

.bg-quaternary {
    background: var(--bg-quaternary) !important;
}

.bg-fifth {
    background: var(--bg-fifth) !important;
}

.br-none br {
    display: none;
}

/*===========================================================
ボタン
===========================================================*/


.btn01 {
    display: inline-flex;
    align-items: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-family: var(--font-family01);
    color: var(--base-font-color);
    position: relative;
    transition: all .3s;
}

.btn01::after {
    content: "";
    display: block;
    width: 15px;
    height: 11px;
    background: url(/system_panel/uploads/images/btn_arrow01.svg) center / contain no-repeat;
    margin: 0 0 0 15px;
    transition: all .3s;
}

.btn01:hover {
    color: var(--base-font-color);
}

.btn01:hover::after {
    transform: translateX(6px);
}

.btn02 {
    padding: 14px 35px 17px;
    display: inline-flex;
    align-items: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 500;
    font-family: var(--font-family01);
    color: var(--base-font-color);
    border: 1px solid var(--base-font-color);
    border-radius: 30px;
    position: relative;
    transition: all .3s;
}

.btn02::after {
    content: "";
    display: block;
    width: 15px;
    height: 11px;
    background: url(/system_panel/uploads/images/btn_arrow01.svg) center / contain no-repeat;
    margin: 4px 0 0 15px;
    transition: all .3s;
}

.btn02:hover {
    color: var(--base-font-color);
}

.btn02:hover::after {
    transform: translateX(6px);
}

.btn03 {
    padding: 11px 25px;
    max-width: 60px;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    border-radius: 30px;
    position: relative;
    transition: all .3s;
}

.btn03::after {
    content: "";
    display: block;
    width: 12px;
    height: 8px;
    background: url(/system_panel/uploads/images/btn_arrow02.svg) center / contain no-repeat;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all .3s;
}

/* .btn03:hover::after {
    transform: translateX(6px);
} */

.btn04 {
    padding: 14px 35px 20px;
    display: inline-flex;
    align-items: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 500;
    font-family: var(--font-family01);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 30px;
    background-color: var(--black);
    position: relative;
    transition: all .3s;
}

.btn04::after {
    content: "";
    display: block;
    width: 15px;
    height: 11px;
    background: url(/system_panel/uploads/images/btn_arrow03.svg) center / contain no-repeat;
    margin: 4px 0 0 15px;
    transition: all .3s;
}

.btn04:hover {
    color: var(--secondary);
}

.btn04:hover::after {
    transform: translateX(6px);
}

.btn05 {
    width: 100%;
    padding: 16px 15px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 500;
    font-family: var(--font-family01);
    color: var(--base-font-color);
    border: 1px solid var(--base-font-color);
    border-radius: 30px;
    position: relative;
    transition: all .3s;
}

.btn05::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(/system_panel/uploads/images/diagonal_arrow02.svg) center / contain no-repeat;
    margin: 0 0 0 15px;
    transition: all .3s;
}

.btn05:hover {
    color: var(--base-font-color);
}

.btn05:hover::after {
    transform: translate(6px, -6px);
}

.btn06 {
    padding: 14px 35px 20px;
    display: inline-flex;
    align-items: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.2589)), 18px);
    font-weight: 500;
    font-family: var(--font-family01);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 30px;
    background-color: var(--black);
    position: relative;
    transition: all .3s;
}

.btn06::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(/system_panel/uploads/images/diagonal_arrow01.svg) center / contain no-repeat;
    margin: 4px 0 0 15px;
    transition: all .3s;
}

.btn06:hover {
    color: var(--secondary);
}

.btn06:hover::after {
    transform: translate(6px, -6px);
}

.tel-box01 {
    max-width: 224px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.7767)), 30px);
    font-weight: 500;
    color: var(--base-font-color);
    letter-spacing: 0.05em;
    font-family: var(--font-family01);
}

.tel-box01::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    max-width: 22px;
    width: 100%;
    height: 26px;
    background: url(/system_panel/uploads/images/tel_icon.svg) center / contain no-repeat;
}

.tel-box02 {
    max-width: 224px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.7767)), 30px);
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.05em;
    font-family: var(--font-family01);
}

.tel-box02::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    max-width: 22px;
    width: 100%;
    height: 25px;
    background: url(/system_panel/uploads/images/tel_icon_white.svg) center / contain no-repeat;
}

/*===========================================================
バナー
===========================================================*/

.banner-link01 {
    max-width: 1420px;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.banner-link01::before {
    content: "";
    display: block;
    max-width: 1100px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 26, 26, 1) 50%, rgba(28, 26, 26, 0));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 0;
}

.banner-link01-logo {
    max-width: 185px;
    width: 100%;
    position: absolute;
    bottom: -2%;
    left: -1%;
}

.banner-link01-container {
    max-width: 1331px;
    width: 100%;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}

.banner-link01-text-area {
    padding: 40px 15px;
    max-width: 331px;
    width: 100%;
}

.banner-link01-text-box01 {
    display: flex;
    align-items: center;
}

.banner-link01-text-box01::before {
    content: "";
    display: block;
    margin: 0 15px 0 0;
    width: 1px;
    height: 30px;
    background: var(--secondary);
    z-index: 0;
}

.banner-link01-img-box {
    max-width: 1000px;
    width: 100%;
    height: 250px;
    position: relative;
    z-index: -1;
}

.banner-link01-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-link01-btn-area {
    margin: 40px 0 0;
}

.banner-link01:hover {
    filter: brightness(1.2);
}

.banner-link01:hover .btn03::after {
    transform: translateX(6px);
}

.banner-link02 {
    max-width: 1420px;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.banner-link02::before {
    content: "";
    display: block;
    max-width: 1100px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(160, 73, 47, 1) 50%, rgba(160, 73, 47, 0));
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 0;
}

.banner-link02-logo {
    max-width: 185px;
    width: 100%;
    position: absolute;
    bottom: -2%;
    right: -1%;
}

.banner-link02-container {
    max-width: 1331px;
    width: 100%;
    margin: 0 auto 0 0;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}

.banner-link02-text-area {
    padding: 40px 15px;
    max-width: 331px;
    width: 100%;
}

.banner-link02-text-box01 {
    display: flex;
    align-items: center;
}

.banner-link02-text-box01::before {
    content: "";
    display: block;
    margin: 0 15px 0 0;
    width: 1px;
    height: 60px;
    background: var(--secondary);
    z-index: 0;
}

.banner-link02-img-box {
    max-width: 1000px;
    width: 100%;
    height: 250px;
    position: relative;
    z-index: -1;
}

.banner-link02-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-link02-btn-area {
    margin: 40px 0 0;
}

.banner-link02:hover {
    filter: brightness(1.2);
}

.banner-link02:hover .btn03::after {
    transform: translateX(6px);
}

.common-banner-frame {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.banner-link03 {
    width: 100%;
    display: block;
    position: relative;
    transition: all .3s;
}

.banner-link03::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(28, 26, 26, 0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: all .3s;
}

.banner-link03-img-box {
    width: 100%;
    height: 368px;
}

.banner-link03-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-link-text-container {
    margin: auto;
    padding: 0 15px;
    max-width: 890px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: absolute;
    bottom: 60px;
    right: 0;
    left: 0;
    gap: 10px;
    z-index: 1;
}

.banner-link03-text-box01 {
    display: flex;
    align-items: center;
    position: relative;
}

.banner-link03-text-box01::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    width: 8px;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 50%;
}

.banner-link03-text-box02 {
    position: relative;
}

.banner-link03-text-box02 .common-title-illust01 {
    bottom: -41%;
    left: -5%;
}

.banner-link-text-area {
    width: 100%;
    color: var(--secondary);
}

.banner-link03:hover {
    filter: brightness(1.2);
}

.banner-link03:hover::before {
    background: rgba(28, 26, 26, 0.4);
}

.banner-link03:hover .btn03::after {
    transform: translateX(6px);
}

/*===========================================================
テキスト
===========================================================*/

.font-family01 {
    font-family: var(--font-family01) !important;
}

.font-family02 {
    font-family: var(--font-family02) !important;
}

.font-family03 {
    font-family: var(--font-family03) !important;
}

.text01 {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.3236)), 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.2222em;
}

.text02 {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.75px) * 0.1942)), 16px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.8125em;
}

.text03 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2em;
}

.text04 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.3883)), 22px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

.title01 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 1.2945)), 40px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2em;
}

.title02 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.5825)), 25px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.title03 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 1.1003)), 35px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.7857em;
}

.title04 {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 1.2945)), 50px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

.title05 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 1.1003)), 35px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.4285em;
}

.title06 {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 0.7767)), 30px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

/* .title07 {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.75px) * 4.5307)), 110px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
} */

/* .title08 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
} */

/* .sub-title01 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.2589)), 20px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
} */

.en-title01 {
    font-size: clamp(15px, calc(0.9375rem + ((1vw - 3.75px) * 0.3236)), 20px);
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: var(--font-family02);
}

.common-title-container {
    position: relative;
}

.common-title-illust01 {
    content: "";
    display: block;
    max-width: 311px;
    width: 100%;
    position: absolute;
    bottom: -30%;
    left: -7%;
    z-index: -1;
}

.common-en-title-box01 {
    display: flex;
    align-items: center;
    position: relative;
}

.common-en-title-box01::before {
    content: "";
    display: block;
    margin: 0 10px 0 0;
    width: 8px;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 50%;
}

.common-title-box02 {
    margin: 30px 0 0;
}

/*===========================================================
スライダー
===========================================================*/

.loopImgBx01 {
    width: 300px;
    padding-top: 200px;
    position: relative;
}

.loop-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: auto;
}

.loopImgBx01>img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    height: 100%;
}

.loopImgArea {
    margin: 0 0 0 -1.3px;
    display: flex;
    animation: loop-slide 50s infinite linear 1s both;
}

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

/*ここまで*/

.loopImgBx img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}

/*アニメーション*/
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*===========================================================

===========================================================*/

.inBalanceImg01>img {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    width: auto;
    bottom: 0;
    left: 0;
    margin: auto;
}

.objectFitImg {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}


a[data-lightbox] {
    position: relative;
    display: block;
}

a[data-lightbox]:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    transition: .5s;
}

a[data-lightbox]:hover:before {
    opacity: 1;
    transition: .5s;
}

.galleryImg01>a[data-lightbox] {
    padding-top: 100%;
}

.galleryImg01>a[data-lightbox] img {
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*----*/

.compBaseTb {
    border: 1px solid #ccc;
}

.compBaseTr {
    border: 1px solid #ccc;
}

.compBaseTh {
    padding: 15px;
    background-color: #555;
    color: #fff;
}

.compBaseTd {
    padding: 15px;
    background: #fff;
}

/*----*/


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

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

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 375px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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




/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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

.sp-br-block br {
    display: block;
}

.sp-br-none br {
    display: none;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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

/*===========================================================
共通
===========================================================*/

.md-br-block br {
    display: block;
}

.md-br-none br {
    display: none;
}

/*===========================================================
バナー
===========================================================*/

.banner-link01 {
    padding: 0 0 0 15px;
}

.banner-link01::before {
    background: linear-gradient(to right, rgba(28, 26, 26, 1) 40%, rgba(28, 26, 26, 0));
}

.banner-link01-logo {
    max-width: 325px;
}

.banner-link01-container {
    flex-direction: row;
    width: 100%;
}

.banner-link01-text-area {
    padding: 50px 0;
}

.banner-link01-img-box {
    height: 380px;
}

.banner-link02 {
    padding: 0 15px 0 0;
}

.banner-link02::before {
    background: linear-gradient(to left, rgba(160, 73, 47, 1) 40%, rgba(160, 73, 47, 0));
}

.banner-link02-logo {
    max-width: 325px;
}

.banner-link02-container {
    flex-direction: row-reverse;
    width: 100%;
}

.banner-link02-text-area {
    padding: 50px 0;
}

.banner-link02-img-box {
    height: 380px;
}

.common-banner-frame {
    flex-direction: row;
}

.banner-link03-img-box {
    height: 460px;
}

/*===========================================================
スライダー
===========================================================*/

.loopImgBx01 {
    width: 400px;
    padding-top: 300px;
}


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


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

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

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

/*===========================================================
共通パーツ
===========================================================*/

.lg-br-block br {
    display: block;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */