@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #7E5B39;
	--base-bg-color: #FFF6F2;

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

	/* site color */
	--primary: #FF6161;
	--primary-hover: #f55;
	--secondary: #FFC2D2;
	--secondary-hover: #55f;
	--tertiary: #140A2C;
	--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: #383838;

    --bg-primary: #FF6161;
    --bg-secondary: #FFC2D2;
    --bg-tertiary: #7E5B39; 
    --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", sans-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: "Potta One", system-ui;
	--font-family02: "Montserrat", sans-serif;
	--font-family03: "Noto Sans JP", sans-serif;

}

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: 500;
	font-family: var(--base-font-family);
    letter-spacing: 0.05em;
    color: var(--base-font-color);
    overflow-x: hidden;
}

.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;
}

.padding01 {
    padding: 0 15px;
}

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

/* btn01 */


.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: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn01 {
    padding: 4px;
    display: block;
    max-width: 294px;
    width: 100%;
    border-radius: 13px;
    text-align: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 3.75px) * 0.3883)), 20px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0;
    color: var(--white);
    transition: all .3s;
}

.btn01:hover {
    color: vaR(--white);
    opacity: 0.7;
}

.btn01-text-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 7px;
    gap: 10px;
}

.btn01-text-box::before {
    content: "";
    display: block;
    width: 45px;
    height: 16px;
    background: url(/system_panel/uploads/images/btn_illust01.svg) center / contain no-repeat;
    transition: all .3s;
}

.btn01:hover .btn01-text-box::before {
    background: url(/system_panel/uploads/images/btn_illust02.svg) center / contain no-repeat;
}

.btn01-text-box::after {
    content: "";
    display: block;
    width: 45px;
    height: 16px;
    background: url(/system_panel/uploads/images/btn_illust02.svg) center / contain no-repeat;
    transition: all .3s;
}

.btn01:hover .btn01-text-box::after {
    background: url(/system_panel/uploads/images/btn_illust01.svg) center / contain no-repeat;
}

.btn01.btn01-pink {
    border: 3px solid var(--bg-primary);
}

.btn01.btn01-pink .btn01-text-box {
    background: var(--bg-primary);
}

.btn01.btn01-brown {
    border: 3px solid var(--bg-tertiary);
}

.btn01.btn01-brown .btn01-text-box {
    background: var(--bg-tertiary);
}

.sns-link01 {
	display: block;
	max-width: 27px;
	width: 100%;
	transition: all .3s;
}

.sns-link01:hover {
	opacity: 0.7;
}

.sns-link02 {
	display: block;
	max-width: 35px;
	width: 100%;
	transition: all .3s;
}

.sns-link02:hover {
	opacity: 0.7;
}

.tel-box01 {
	display: inline-flex;
	align-items: center;
    font-size: clamp(14px, calc(0.875rem + ((1vw - 7.68px) * 0.9549)), 25px);
	font-weight: 600;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
}

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

.mail-link01 {
    font-size: clamp(12px, calc(0.75rem + ((1vw - 7.68px) * 0.3472)), 16px);
    font-weight: 700;
    color: var(--base-font-color);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.mail-link01:hover {
    color: var(--base-font-color);
	text-decoration: underline;
}

.mail-link01::before {
    content: "";
    display: block;
    width: 26px;
    height: 19px;
    background: url(/system_panel/uploads/images/mail.svg) center / contain no-repeat;
    margin: 0 10px 0 0;
}

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

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

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

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

.common-text-flex {
    display: flex;
}

.common-title-area01 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}

.common-title-box {
    padding: 29px 30px 37px;
    display: inline-block;
    text-align: center;
    position: relative;
    background: url(/system_panel/uploads/images/title_bg_illust01.png) center / contain no-repeat;
}

.common-title-box .en-title01 {
    margin: 8px 0 0;
}

.common-title-box03 {
    margin: 0 0 0 -15px;
}

.common-title-box03 .en-title02 {
    margin: 20px 0 0 15px;
}

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

.text01 span {
    font-size: clamp(15px, calc(0.9375rem + ((1vw - 3.75px) * 0.4531)), 22px);
    font-weight: 700;
    line-height: 1.5909;
}

.text01-line-height01 {
    line-height: 2.2222;
}

.text-decoration01 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.3883)), 22px);
    color: var(--primary);
    -webkit-text-stroke: 3px #FFF;
    text-stroke: 1px #FFF;
    paint-order: stroke;
}

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

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

.title01 {
    font-size: clamp(22px, calc(1.375rem + ((1vw - 3.75px) * 1.4887)), 45px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    line-height: 1.3333;
}

.common-title-box02 {
    padding: 0 0 40px;
    position: relative;
}

.common-title-box02::before {
    content: "";
    display: block;
    max-width: 385px;
    width: 100%;
    height: 13px;
    background: url(/system_panel/uploads/images/title_illust01.png) center / cover no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.title02 {
    font-size: clamp(24px, calc(1.5rem + ((1vw - 3.75px) * 1.0356)), 40px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    line-height: 1.375;
}

.title03 {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 1.6181)), 55px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    line-height: 1;
}

.title04 {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 1.165)), 38px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    line-height: 1;
}

.title05 {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 1.2945)), 50px);
    font-weight: 400;
    font-family: var(--font-family01);
    letter-spacing: 0.05em;
    line-height: 1;
}

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

/* .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;
} */

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

.en-title02 {
    font-size: clamp(16px, calc(1rem + ((1vw - 3.75px) * 0.5825)), 25px);
    font-weight: 700;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
}

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

.loopImgBx01 {
    width: 240px;
    padding-top: 240px;
    margin: 0 5px;
    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 {
    display: flex;
}

.loopImgArea {
	-webkit-animation: loop 50s -25s linear infinite;
	animation: loop 50s -25s linear infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
}

.loop-wrapper .loopImgArea:last-child {
	-webkit-animation: loop2 50s linear infinite;
	animation: loop2 50s linear infinite;
}

.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;
}

/*アニメーション*/
@-webkit-keyframes loop {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@keyframes loop {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@-webkit-keyframes loop2 {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
	}

@keyframes loop2 {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}

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

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

.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;
}

/*----*/

/*===========================================================
お知らせ
===========================================================*/

.news-img {
    background: var(--primary);
    padding: 0px 0 64.07%;
    position: relative;
    height: 0;
    margin: 7px auto 0;
    transition: all .3s;
    position: relative;
}

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

img + .no-img {
    display: none;
}

.news-link {
    display: block;
    transition: all .3s;
}

.news-link:hover {
    opacity: 0.7;
}

/* .news-cate-flex {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 10px 0 0 12px;
} */

.news-date {
    margin: 9px 0 0;
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.2589)), 16px);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--base-font-color);
}

.news-cate {
    display: inline-block;
    padding: 1px 12px 0;
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.1942)), 15px);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--bg-tertiary);
    text-align: center;
    max-width: 320px;
    min-width: 116px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    z-index: 1;
}

.news-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 5px 0 0;
    color: var(--base-font-color);
}

/*===========================================================
カードエリア
===========================================================*/

.common-card-container {
    max-width: 1828px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.common-card-block02 {
    z-index: 1;
}

.common-card-block {
    margin: 40px 0 0;
    max-width: 600px;
    width: 100%;
    padding: 43px 20px 40px;
    background: var(--white);
    position: relative;
    box-shadow: 13px 15px 15px rgba(0, 0, 0, 0.16);
}

.common-card-block:first-child {
    margin: 0;
}

.common-card-block::before {
    content: "";
    display: block;
    max-width: 78px;
    width: 100%;
    height: 78px;
    background: url(/system_panel/uploads/images/illust07.png) center / cover no-repeat;
    position: absolute;
    top: -7px;
    left: -9px;
    margin: auto;
}

.common-card-area {
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
}

.common-card-title-box {
    width: 100%;
    text-align: center;
    position: relative;
}

.common-card-en-title-position {
    position: absolute;
    right: -4%;
    top: -170%;
    margin: auto;
    z-index: 1;
}

.common-card-en-title-area {
    padding: 7px 6px;
    max-width: 75px;
    width: 100%;
    /* writing-mode: vertical-rl; */
    text-orientation: upright;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.common-card-en-title-area .en-title01 {
    margin: 0;
}

.common-card-en-title-box {
    padding: 2px;
    width: 100%;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0; /* Safari/Chromeの幅暴走対策 */
}

.common-card-en-title-item {
    padding: 12px 12px 17px;
    border: 1px solid var(--primary);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    min-width: 0;
}

.common-card-en-title-item .en-title01 {
    letter-spacing: -0.2em;
    margin: 0;
    /* ← ここにだけ縦書きを適用 */
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: -0.2em; /* 必要なら調整 */
}

.common-card-img-area {
    margin: 45px 0 0;
    width: 100%;
    position: relative;
}

.common-card-img-box {
    width: 100%;
}

.common-card-text-box {
    margin: 35px auto 0;
    max-width: 480px;
    width: 100%;
}

.common-card-btn-area {
    margin: 33px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-card-illust-box01 {
    max-width: 165px;
    width: 30.9%;
    position: absolute;
    top: 0;
    left: -24px;
}

.common-card-illust-box02 {
    max-width: 180px;
    width: 34%;
    position: absolute;
    right: -8%;
    bottom: -8%;
}

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

@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-none br {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.common-title-box {
    padding: 29px 70px 37px;
    background: url(/system_panel/uploads/images/title_bg_illust01.png) center / cover no-repeat;
}

/*===========================================================
お知らせ
===========================================================*/

.news-item {
    max-width: 320px;
    width: 100%;
}

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

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

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

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

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

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



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

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

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


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

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

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

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

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

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

.title02 {
    font-size: clamp(28px, calc(1.75rem + ((1vw - 10.24px) * 1.3393)), 40px);
}

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

.tel-box01::before {
    margin: 0 15px 0 0;
    width: 28px;
    height: 28px;
}

.mail-link01::before {
    margin: 0 15px 0 0;
    width: 30px;
    height: 23px;
}

.btn01 {
    max-width: 364px;
}

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

.btn01-text-box {
    padding: 9px 20px;
}

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

.loopImgBx01 {
    width: 480px;
    padding-top: 480px;
}

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

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

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


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

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

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

/*===========================================================
カードエリア
===========================================================*/

.common-card-container {
    flex-direction: row;
    align-items: flex-start;
}

.common-card-block {
    margin: 0;
    max-width: 600px;
    width: 100%;
    padding: 53px 10px 75px;
}

.common-card-block:first-child {
    margin: 0;
}

.common-card-block02 {
    margin: -60px 0 0;
}

.common-card-block01 {
    left: 10px;
    transform: rotate(-2deg);
}

.common-card-block03 {
    right: 10px;
    transform: rotate(2deg);
}

.common-card-illust-box02 {
    transform: rotate(-4deg);
}

.common-card-en-title-position {
    right: 3%;
}

.common-card-text-box {
    text-align: center;
    max-width: 430px;
}

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

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

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

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

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

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

/*===========================================================
カードエリア
===========================================================*/

.common-card-block01 {
    top: 20px;
    left: 14px;
    transform: rotate(-4deg);
}

.common-card-block03 {
    top: 20px;
    right: 14px;
    transform: rotate(4deg);
}

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

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

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