/*container 
-----------------------------------------------------------*/
#container {
	position: relative;
	max-width: 1920px;
    margin: 0 auto;
}



/*text
-----------------------------------------------------------*/

.mm-txt_title {
	display: block;
	font-size: 16px;
	line-height: calc(28 / 16 * 100%);
	font-weight: 600;
	color: #222;
}

.mm-txt_title_l {
	font-size: 20px;
	line-height: calc(36 / 20 * 100%);
}

.mm-txt_date {
	font-size: 14px;
	line-height: calc(24 / 14 * 100%);
	font-weight: 700;
	color: #222;
}

.mm-txt_date span {
	display: inline-block;
}

.mm-txt_date_l {
	font-size: 18px;
	line-height: calc(32 / 18 * 100%);
	padding-left: 60px;
	position: relative;
}

.mm-txt_date_l::before {
	font-size: 14px;
	line-height: calc(32 / 14 * 100%);
	font-weight: 500;
	position: absolute;
	top: 2px;
	left: 0;
	content: '開催日：';
}

.mm-txt_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
	padding-bottom: 8px;
}

.mm-txt_tag a {
	display: block;
	font-size: 12px;
	line-height: calc(16 / 12 * 100%);
	font-weight: 500;
	color: #666;
}

.mm-txt_tag a::before {
	content: '#';
	margin-right: 1px;
}

.mm-txt_price {
	text-align: right;
	padding-bottom: 4px;
	border-bottom: solid 1px #bbb;
}

.mm-txt_price span {
	display: inline-block;
	font-size: 16px;
	line-height: calc(28 / 16 * 100%);
	font-weight: 600;
	color: #e8717c;
	margin-left: 12px;
}

.mm-txt_priceShopping span {
	color: #888;
}

.mm-txt_price_l span {
	font-size: 18px;
	line-height: calc(32 / 18 * 100%);
}

.mm-txt_price_l::before {
	display: inline-block;
	content: '参加費：';
	font-size: 14px;
	line-height: calc(32 / 14 * 100%);
	font-weight: 500;
	color: #666;
	margin-left: -8px;
}

.mm-txt_release {
	display: grid;
  grid-template-columns: 1fr 80px;
	align-items: end;
	border-bottom: solid 1px #bbb;
	margin-top: 12px;
}

.mm-txt_release .mm-txt_releaseDate {
	font-size: 12px;
	line-height: calc(18 / 12 * 100%);
	font-weight: 500;
	color: #333;
	text-align: right;
	padding-bottom: 6px;
}

.mm-txt_name {
	display: block;
	font-size: 20px;
	line-height: calc(32 / 20 * 100%);
	font-weight: 600;
	color: #222;
}

.mm-txt_exp {
	font-size: 14px;
	line-height: calc(24 / 14 * 100%);
	font-weight: 500;
}


@media screen and (max-width: 800px) {
	
    .mm-txt_title {
        font-size: 14px;
        line-height: calc(26 / 14 * 100%);
    }

    .mm-txt_title_l {
        font-size: 18px;
        line-height: calc(32 / 18 * 100%);
    }

    .mm-txt_date {
        font-size: 13px;
        line-height: calc(22 / 13 * 100%);
    }

    .mm-txt_date_l {
        font-size: 16px;
        line-height: calc(28 / 16 * 100%);
        padding-left: 52px;
    }

    .mm-txt_date_l::before {
        font-size: 12px;
        line-height: calc(22 / 12 * 100%);
        top: 2px;
    }

    .mm-txt_tag {
        gap: 6px 10px;
    }

    .mm-txt_price span {
        display: inline-block;
        font-size: 15px;
        line-height: calc(27 / 15 * 100%);
        margin-left: 10px;
    }

    .mm-txt_price_l span {
        font-size: 16px;
        line-height: calc(28 / 16 * 100%);
    }

    .mm-txt_price_l::before {
        line-height: calc(22 / 12 * 100%);
        margin-left: -6px;
    }

    .mm-txt_release {
        margin-top: 10px;
    }

    .mm-txt_name {
        font-size: 18px;
        line-height: calc(30 / 18 * 100%);
    }

    .mm-txt_exp {
        font-size: 13px;
        line-height: calc(23 / 13 * 100%);
    }
	
}

/*column
-----------------------------------------------------------*/

.mm-column {
	width: clamp(1200px, 75%, 1440px);
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1439px) {
	
	.mm-column {
        width: min(85%, 1200px);
    }
	
}

@media screen and (max-width: 1079px) {
	
	.mm-column {
        width: 90%;
    }
	
}



/*grid
-----------------------------------------------------------*/

.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4%;
  row-gap: 0;
  grid-auto-rows: auto;
}

.mm-gridBox {
  height: auto;
  display: flex;
  flex-direction: column;
	margin-bottom: 48px;
}

.gridThumb a {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
	overflow: hidden;
}

.infoBox {
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}

.infoBox span {
  padding: 2px 4px 3px;
  font-size: 14px;
  line-height: calc(16 / 14 * 100%);
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
  display: block;
	border-radius: 4px;
}

.infoBox .fix { background-color: #79a701; }
.infoBox .few { background-color: #FC6621; }
.infoBox .full { background-color: #E8222D; }
.infoBox .wait { background-color: #666699; }
.infoBox .finish { background-color: #6c7874; }

.infoBox .new { background-color: #79a701; }
.infoBox .soldout { background-color: #E8222D; }

.gridTxt {
  margin-top: 8px;
}


.mm-grid .gridTxt .mm-txt_date {
  margin-top: 8px;
}

.mm-grid .gridTxt .mm-txt_title {
  margin-top: 6px;
}

.mm-grid .gridTxt .mm-txt_tag {
  margin-top: 10px;
}

.mm-grid .gridTxt .mm-txt_price {
  margin-top: 2px;
}

.mm-oldLink a {
	border-bottom: solid 1px #bbb;
	padding-bottom: 8px;
}

.mm-oldLink a,
.mm-oldLink a img {
  display: block;
  width: 100%;
}


@media screen and (max-width: 1079px) {
	
	.mm-grid {
      grid-template-columns: repeat(2, 48%);
    }

    .mm-gridBox {
        margin-bottom: 40px;
    }
	
}

@media screen and (max-width: 600px) {
	
	.mm-grid {
      display: block;
    }

    .gridThumb a {
      width: 80%;
		margin: 0 auto;
      aspect-ratio: 5 / 3;
    }

    .infoBox {
      position: absolute;
      top: 8px;
      left: 8px;
      width: calc(100% - 16px);
      gap: 4px;
    }

    .infoBox span {
      padding: 2px 3px 3px;
      font-size: 13px;
      line-height: calc(15 / 13 * 100%);
    }

    .gridTxt {
      margin-top: 12px;
    }


    .mm-grid .gridTxt .mm-txt_date {
      margin-top: 12px;
    }

    .mm-grid .gridTxt .mm-txt_title {
      margin-top: 2px;
    }

    .mm-grid .gridTxt .mm-txt_tag {
      margin-top: 8px;
    }

    .mm-grid .gridTxt .mm-txt_price {
      margin-top: 0;
    }
	
}

/*recommend
-----------------------------------------------------------*/

.mm-topRecommend {
	display: grid;
  grid-template-columns: 50% 45%;
  justify-content: space-between;
	margin-bottom: 56px;
}

.mm-topRecommend2nd {
  display: grid;
  justify-content: space-between;
  direction: rtl;
}
.mm-topRecommend2nd > * {
  direction: ltr;
}

.mm-topRecommend .recommendThumb a {
	display: block;
	width: 100%;
	position: relative;	
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.mm-topRecommend .recommendThumb a .liq {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mm-topRecommend .recommendTxt {
	padding-top: 24px;
}

.mm-topRecommend .recommendTxt .recommendHeading span {
	display: inline-block;
	background-color: #e8717c;
	padding: 1px 4px 3px;
	font-size: 16px;
	line-height: calc(20 / 16 * 100%);
	font-weight: 600;
	color: #fff;
}

.mm-topRecommend .recommendTxt .mm-txt_title {
	margin-top: 12px;
}

.mm-topRecommend .recommendTxt .mm-txt_date {
	margin-top: 20px;
}

.mm-topRecommend .recommendTxt .mm-txt_tag {
	margin-top: 10px;
}

.mm-topRecommend .recommendTxt .mm-txt_price {
	margin-top: 8px;
}


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

    .mm-topRecommend .recommendTxt {
        padding-top: 0;
    }

    .mm-topRecommend .recommendTxt .mm-txt_title {
        margin-top: 8px;
		line-height: calc(34 / 20 * 100%);
    }

    .mm-topRecommend .recommendTxt .mm-txt_date {
        margin-top: 12px;
    }

    .mm-topRecommend .recommendTxt .mm-txt_tag {
        margin-top: 8px;
    }

    .mm-topRecommend .recommendTxt .mm-txt_price {
        margin-top: 4px;
    }
	
}

@media screen and (max-width: 800px) {
	
	.mm-topRecommend {
        display: block;
        margin-bottom: 40px;
		aspect-ratio: 5 / 3;
    }

    .mm-topRecommend .recommendTxt {
        padding-top: 16px;
    }

    .mm-topRecommend .recommendTxt .recommendHeading span {
        padding: 1px 3px 3px;
        font-size: 14px;
        line-height: calc(18 / 14 * 100%);
    }

    .mm-topRecommend .recommendTxt .mm-txt_title {
        margin-top: 6px;
    }

    .mm-topRecommend .recommendTxt .mm-txt_date {
        margin-top: 10px;
    }

    .mm-topRecommend .recommendTxt .mm-txt_tag {
        margin-top: 6px;
    }

    .mm-topRecommend .recommendTxt .mm-txt_price {
        margin-top: 4px;
    }
	
}


/*top event
-----------------------------------------------------------*/

.mm-topEventGrid {
	margin-bottom: 8px;
}



/*top sns btn
-----------------------------------------------------------*/

#mm-topSns {
	position: absolute;
	top: 28px;
	left: 40px;
	display: grid;
    grid-template-columns: repeat(5, 40px);
    justify-content: space-between;
}

#mm-topSns a {
	display: block;
	background-color: #444;
}

@media screen and (max-width: 1079px) {
	
	#mm-topSns {
        top: 24px;
        left: 32px;
    }
	
}

@media screen and (max-width: 800px) {
	
	#mm-topSns { display: none; }
	
}


/*menu btn
-----------------------------------------------------------*/

#mm-menuBtn {
	position: fixed;
	top: 22px;
	right: 44px;
	width: 128px;
	height: 48px;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
	cursor: pointer;
	z-index: 1000;
}

#mm-menuBtn::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
}

#mm-menuBtn .bars {
	position: relative;
	top: -2px;
	width: 48px;
	height: 20px;
	overflow: visible;
}

#mm-menuBtn .bars .bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #333;
}

#mm-menuBtn .bars .barTop { top: 0; }
#mm-menuBtn .bars .barBottom { top: 100%; }

#mm-menuBtn .txts {
	position: relative;
	width: 80px;
	height: 20px;
	overflow: visible;
}

#mm-menuBtn .txts .txt {
	position: absolute;
	top: 0;
	width: 100%;
	font-size: 16px;
	line-height: calc(20 / 16 * 100%);
	font-weight: 700;
	text-align: center;
}

#mm-menuBtn .txts .txtMenu {
	left: 0;
	letter-spacing: 1px;
}

#mm-menuBtn .txts .txtClose {
	left: 50%;
	opacity: 0;
}

@media screen and (max-width: 800px) {
	
	#mm-menuBtn {
        top: 16px;
        right: 16px;
        width: 64px;
		height: 64px;
        -webkit-justify-content: center;
        justify-content: center;
        flex-direction: row;
    }

    #mm-menuBtn .bars {
        top: 6px;
        width: 40px;
        height: 16px;
    }

    #mm-menuBtn .txts {
        width: 100%;
		top: 4px;
    }

    #mm-menuBtn .txts .txt {
        font-size: 13px;
        line-height: calc(16 / 13 * 100%);
		font-weight: 700;
    }

    #mm-menuBtn .txts .txtMenu {
        letter-spacing: 0;
    }
	
}

@media screen and (max-width: 480px) {
	
	#mm-menuBtn {
        top: 12px;
        right: 12px;
        width: 48px;
		height: 48px;
    }

    #mm-menuBtn .bars {
        top: 4px;
        width: 32px;
        height: 13px;
    }

    #mm-menuBtn .bars .bar {
        height: 3px;
    }

    #mm-menuBtn .txts {
		top: 6px;
    }

    #mm-menuBtn .txts .txt {
        font-size: 10px;
        line-height: calc(12 / 10 * 100%);
		font-weight: 800;
    }

    #mm-menuBtn .txts .txtMenu {
        letter-spacing: 0;
    }
	
}

/*modal menu
-----------------------------------------------------------*/

#mm-modalBg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 200vh;
	background-color: #f0eded;
	z-index: 800;
}

#mm-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: center;
	z-index: 900;
}

#mm-nav::-webkit-scrollbar{
    display: none;
}

#mm-nav .navInner {
	width: 960px;
	height: auto;
    position: relative;
	margin: 0 auto;
	padding: 48px 0;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#mm-nav .navInner .logoBox {
	width: 100%;
	padding-bottom: 48px;
}

#mm-nav .navInner .logoBox .logo {
	width: 240px;
}

#mm-nav .navInner .box01 {
	width: 480px;
}

#mm-nav .navInner .box02 {
	width: 440px;
}

#mm-nav .navInner .box .menuList {
	width: 100%;
}


#mm-nav .navInner .box .menuList li {
	margin-bottom: 24px;
}

#mm-nav .navInner .box .menuList li a {
	font-size: 20px;
	line-height: calc(36 / 20 * 100%);
	color: #222;
	font-weight: 600;
}

#mm-nav .navInner .box .menuList li a[target="_blank"] {
	padding-right: 24px;
	background-image: url("../img/blank_s_g.svg");
	background-position: top 8px right 0;
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

#mm-nav .navInner .box .menuList li .caption {
	font-size: 13px;
	line-height: calc(24 / 13 * 100%);
	font-weight: 500;
	margin-top: 4px;
}

#mm-nav .navInner .box .menuList li .caption span {
	display: inline-block;
}

#mm-nav .navInner .box .categories {
    display: flex;
    flex-wrap: wrap;
    width: 320px; 
	padding-bottom: 12px;
}

#mm-nav .navInner .box .categories li {
    width: 160px;
    margin-bottom: 16px;
}

#mm-nav .navInner .box .categories li a {
	font-size: 16px;
	line-height: calc(24 / 16 * 100%);
	color: #222;
	font-weight: 600;
	padding-right: 24px;
	background-image: url("../img/bow_s_g.svg");
	background-position: top 5px right 0;
	background-repeat: no-repeat;
	background-size: 16px 16px;	
}

#mm-nav .navInner .box .oters {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 424px; 
    margin-top: 40px;
}

#mm-nav .navInner .box .oters ul {
    width: 200px;
}

#mm-nav .navInner .box .oters ul li {
    margin-bottom: 4px;
}

#mm-nav .navInner .box .oters ul li a {
	font-size: 12px;
	line-height: calc(16 / 12 * 100%);
	color: #222;
	font-weight: 500;
}

#mm-nav .navInner .tbBannerBox {
	width: 100%;
	margin-top: 72px;
	padding-bottom: 32px;
}

#mm-nav .navInner .tbBannerBox a {
	display: block;
	width: 848px;
	height: 160px;
	margin: 0 auto;
	background-color: #fc9147;
	color: #222;
	position: relative;
}

#mm-nav .navInner .tbBannerBox a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 288px;
	height: 100%;
}

#mm-nav .navInner .tbBannerBox a .txtBox {
	position: absolute;
	top: 44px;
	left: 348px;
	width: 440px;
	height: auto;
}

#mm-nav .navInner .tbBannerBox a .txtBox h2 {
	display: inline-block;
	font-size: 20px;
	line-height: calc(36 / 20 * 100%);
	font-weight: 600;
}

#mm-nav .navInner .tbBannerBox a .txtBox h2 .iconBox {
	display: inline-block;
	margin-left: 8px;
	width: 16px;
	height: 16px;
	background-color: #222;
	position: relative;
}

#mm-nav .navInner .tbBannerBox a .txtBox h2 .iconBox img {
	width: 100%;
}

#mm-nav .navInner .tbBannerBox a .txtBox p {
	font-size: 13px;
	line-height: calc(18 / 13 * 100%);
	font-weight: 500;
	margin-top: 8px;	
}

#mm-nav .navInner .tbBannerBox a .txtBox p span {
	display: inline-block;
}

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

    #mm-nav .navInner {
        width: 800px;
        padding: 40px 0;
    }

    #mm-nav .navInner .logoBox {
        padding-bottom: 40px;
    }

    #mm-nav .navInner .logoBox .logo {
        width: 216px;
    }

    #mm-nav .navInner .box01 {
        width: 420px;
    }

    #mm-nav .navInner .box02 {
        width: 380px;
    }

    #mm-nav .navInner .box .menuList li {
        margin-bottom: 20px;
    }

    #mm-nav .navInner .box .menuList li a {
        font-size: 18px;
        line-height: calc(32 / 18 * 100%);
    }

    #mm-nav .navInner .box .menuList li a[target="_blank"] {
        padding-right: 22px;
        background-position: top 8px right 0;
        background-size: 15px 15px;
    }

    #mm-nav .navInner .box .menuList li .caption {
        font-size: 12px;
        line-height: calc(22 / 12 * 100%);
        margin-top: 3px;
    }

    #mm-nav .navInner .box .categories {
        width: 300px; 
		padding-bottom: 8px;
    }

    #mm-nav .navInner .box .categories li {
        width: 150px;
        margin-bottom: 8px;
    }

    #mm-nav .navInner .box .categories li a {
        font-size: 14px;
        line-height: calc(22 / 14 * 100%);
        padding-right: 22px;
        background-position: top 5px right 0;
        background-size: 15px 15px;	
    }

    #mm-nav .navInner .box .oters {
        width: 380px; 
        margin-top: 32px;
    }

    #mm-nav .navInner .box .oters ul {
        width: 180px;
    }

    #mm-nav .navInner .box .oters ul li {
        margin-bottom: 2px;
    }

    #mm-nav .navInner .box .oters ul li a {
        font-size: 11px;
        line-height: calc(14 / 11 * 100%);
    }

    #mm-nav .navInner .tbBannerBox {
        width: 100%;
        margin: 40px auto 0;
        padding-bottom: 48px;
    }

    #mm-nav .navInner .tbBannerBox a {
        display: block;
        width: 720px;
        height: 140px;
    }

    #mm-nav .navInner .tbBannerBox a img {
        width: 252px;
        height: 100%;
    }

    #mm-nav .navInner .tbBannerBox a .txtBox {
        top: 22px;
        left: 320px;
        width: 320px;
    }

    #mm-nav .navInner .tbBannerBox a .txtBox p {
        font-size: 12px;
        line-height: calc(22 / 12 * 100%);
        margin-top: 6px;	
    }
	
}

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

    #mm-nav .navInner {
        width: min(90%, 400px);
        height: auto;
        padding: 32px 0;
        display: block;
    }

    #mm-nav .navInner .logoBox {
        width: 100%;
        padding-bottom: 32px;
    }

    #mm-nav .navInner .logoBox .logo {
        width: 200px;
    }

    #mm-nav .navInner .box01 {
        width: 100%;
    }

    #mm-nav .navInner .box02 {
        width: 100%;
		margin-top: 24px;
    }

    #mm-nav .navInner .box .menuList li {
        margin-bottom: 16px;
    }

    #mm-nav .navInner .box .categories {
		padding-bottom: 16px;
    }

    #mm-nav .navInner .box .categories li {
        margin-bottom: 4px;
    }

    #mm-nav .navInner .box .oters {
        display: block;
        width: 100%; 
        margin-top: 28px;
    }

    #mm-nav .navInner .box .oters ul {
        width: 100%;
    }

    #mm-nav .navInner .box .oters ul li a {
        font-size: 12px;
        line-height: calc(16 / 12 * 100%);
    }

    #mm-nav .navInner .tbBannerBox {
        margin-top: 48px;
        padding-bottom: 32px;
    }

    #mm-nav .navInner .tbBannerBox a {
        width: 100%;
        height: auto;
    }

    #mm-nav .navInner .tbBannerBox a img {
        position: relative;
        width: 100%;
        height: auto;
    }

    #mm-nav .navInner .tbBannerBox a .txtBox {
        position: relative;
        top: 0;
        left: 0;
        width: 77.5%;
        height: auto;
		margin: 16px auto 0;
		padding-bottom: 24px;
    }

    #mm-nav .navInner .tbBannerBox a .txtBox h2 {
        font-size: 18px;
        line-height: calc(32 / 18 * 100%);
    }

    #mm-nav .navInner .tbBannerBox a .txtBox h2 .iconBox {
        margin-left: 6px;
        width: 14px;
        height: 14px;
    }

	
	#mm-nav .navInner .tbBannerBox a .txtBox p {
		margin-top: 4px;
	}
	
	#mm-nav .navInner .tbBannerBox a .txtBox p span {
		display: inline;
	}
	
}


/*btn
-----------------------------------------------------------*/

.mm-btnL {
	display: inline-block;
	min-width: 200px;
	text-align: center;
	background-color: #fff;
	height: 56px;
	border-radius: 28px;
	border: solid 1px #666;
    font-size: 16px;
    line-height: calc(20 / 16 * 100%);
	font-weight: 500;
	padding: 16px 56px 0 48px;
	background-image: url("../img/bow_s_g.svg");
	background-position: top 20px right 16px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

.mm-btnL[target="_blank"] {
	padding: 16px 60px 0 52px;
	background-image: url("../img/blank_s_g.svg");
	background-position: top 18px right 20px;
}

.mm-btnS {
	display: inline-block;
	min-width: 180px;
	text-align: center;
	background-color: #fff;
	height: 48px;
	border-radius: 24px;
	border: solid 1px #666;
    font-size: 14px;
    line-height: calc(18 / 14 * 100%);
	font-weight: 500;
	padding: 14px 48px 0 40px;
	background-image: url("../img/bow_s_g.svg");
	background-position: top 16px right 16px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

.mm-btnS[target="_blank"] {
	padding: 14px 52px 0 44px;
	background-image: url("../img/blank_s_g.svg");
	background-position: top 14px right 18px;
}

.mm-btnMini {
	display: inline-block;
	width: 160px;
	background-color: #fff;
	height: 48px;
	border-radius: 24px;
	border: solid 1px #666;
    font-size: 14px;
    line-height: calc(18 / 14 * 100%);
	font-weight: 500;
	padding: 14px 48px 0 22px;
	background-image: url("../img/bow_s_g.svg");
	background-position: top 16px right 16px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

.mm-btnMini[target="_blank"] {
	padding: 14px 52px 0 22px;
	background-image: url("../img/blank_s_g.svg");
	background-position: top 14px right 18px;
}

.btnBox {
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 800px) {
	
	.mm-btnL {
        min-width: 180px;
        height: 48px;
        border-radius: 24px;
        font-size: 14px;
        line-height: calc(18 / 14 * 100%);
        padding: 14px 48px 0 40px;
        background-position: top 17px right 14px;
        background-size: 14px 14px;
    }

    .mm-btnL[target="_blank"] {
        padding: 14px 52px 0 44px;
        background-position: top 16px right 16px;
    }

    .mm-btnS {
        min-width: 168px;
        height: 44px;
        border-radius: 22px;
        font-size: 13px;
        line-height: calc(16 / 13 * 100%);
        padding: 12px 44px 0 36px;
        background-position: top 15px right 16px;
        background-size: 14px 14px;
    }

    .mm-btnS[target="_blank"] {
        padding: 12px 48px 0 40px;
    }

    .mm-btnMini {
        width: 144px;
        height: 44px;
        border-radius: 22px;
        font-size: 13px;
        line-height: calc(16 / 13 * 100%);
        padding: 12px 44px 0 20px;
        background-position: top 15px right 16px;
        background-size: 14px 14px;
    }

    .mm-btnMini[target="_blank"] {
        padding: 12px 52px 0 20px;
    }
	
}

/*separate
-----------------------------------------------------------*/

.separate {
	width: 100%;
	height: 1px;
	background-color: #bbb;
}

/*footer
-----------------------------------------------------------*/

footer {
	width: 100%;
	margin-top: 144px;
	padding-top: 64px;
	background-color: #9b9493;
}

footer .logoBox {
	display: flex;
	justify-content: center;	
}

footer .logoBox h1 {
	width: 440px;
}

footer .ftNav01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 32px;
    width: 100%;
    margin-top: 48px;
	padding: 0 5%;
}

footer .ftNav01 a {
  position: relative;
  font-size: 14px;
  line-height: calc(24 / 14 * 100%);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 8px;
}

footer .ftNav01 a::after {
  content: "|";
  position: absolute;
  right: -16px;
}
footer .ftNav01 a:last-child::after,
footer .ftNav01 a.no-sep::after {
  content: none;
}

footer .ftNav02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 32px;
  width: 100%;
  margin-top: 16px;
	padding: 0 5%;
}

footer .ftNav02 a {
  position: relative;
  font-size: 14px;
  line-height: calc(24 / 14 * 100%);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
	padding-right: 22px;
	background-image: url("../img/blank_s_w.svg");
	background-position: top 2px right;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	margin-bottom: 8px;
}

footer .ftNav03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 28px;
    width: 100%;
    margin-top: 16px;
	padding: 0 5%;
}

footer .ftNav03 a {
  position: relative;
  font-size: 12px;
  line-height: calc(22 / 12 * 100%);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 7px;
}

footer .ftNav03 a::after {
  content: "|";
  position: absolute;
  right: -14px;
}

footer .ftNav03 a:last-child::after,
footer .ftNav03 a.no-sep::after {
  content: none;
}

footer .snsCol {
	margin: 48px auto 0;
  width: 684px;
  display: grid;
  grid-template-columns: 480px 180px;
  justify-content: space-between;
  gap: 24px;
}

footer .snsCol .snsBox {
	width: 100%;
	background-color: #7b7574;
	border: solid 1px #cac8c7;
	color: #fff;
	text-align: center;
	padding: 28px 24px 20px;
}

footer .snsCol .snsBox p {
    font-size: 14px;
    line-height: calc(24 / 14 * 100%);
    font-weight: 500;
}

footer .snsCol .snsBox p span {
	display: inline-block;
}

footer .snsCol .lineBox a {
	display: block;
	margin: 8px auto 0;
	background-color: #fff;
	width: 64px;
	height: 64px;
}

footer .snsCol .lineBox a img {
	width: 100%;
}

footer .snsCol .lineBox .addf {
    font-size: 13px;
    line-height: calc(14 / 13 * 100%);
    font-weight: 500;	
}

footer .snsCol .snsBox .snsIcons {
	margin: 16px auto 0;
  width: 88px;
  height: 88px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  grid-template-rows: 40px 1fr 40px;
}

footer .snsCol .snsBox .snsIcons a {
  width: 40px;
  height: 40px;
	background-color: #fff;
}

footer .snsCol .snsBox .snsIcons a img {
	width: 100%;
}
footer .snsCol .snsBox .snsIcons a:nth-child(1) {
  grid-row: 1;
  grid-column: 1;
}
footer .snsCol .snsBox .snsIcons a:nth-child(2) {
  grid-row: 1;
  grid-column: 3;
}
footer .snsCol .snsBox .snsIcons a:nth-child(3) {
  grid-row: 3;
  grid-column: 1;
}
footer .snsCol .snsBox .snsIcons a:nth-child(4) {
  grid-row: 3;
  grid-column: 3;
}

footer .ftCompany {
	margin-top: 80px;
    font-size: 12px;
    line-height: calc(20 / 12 * 100%);
    font-weight: 500;
	color: #fff;
	text-align: center;
}

footer .ftCopyright {
	margin-top: 16px;
	padding-top: 10px;
	background-color: #5d5655;
	width: 100%;
	height: 40px;
    font-size: 12px;
    line-height: calc(20 / 12 * 100%);
    font-weight: 500;
	color: #fff;
	text-align: center;
}

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

    footer {
        margin-top: 64px;
        padding-top: 48px;
    }

    footer .logoBox h1 {
        width: min(62.5%, 400px);
    }

    footer .ftNav01 {
        gap: 0 24px;
        margin-top: 40px;
    }

    footer .ftNav01 a {
      font-size: 13px;
      line-height: calc(22 / 13 * 100%);
      margin-bottom: 7px;
    }

    footer .ftNav01 a::after {
      right: -12px;
    }

    footer .ftNav02 {
      gap: 0 24px;
      margin-top: 14px;
    }

    footer .ftNav02 a {
      font-size: 13px;
      line-height: calc(22 / 13 * 100%);
        padding-right: 20px;
        background-position: top 1px right;
        background-size: 14px 14px;
        margin-bottom: 7px;
    }

    footer .ftNav03 {
        gap: 0 22px;
        margin-top: 14px;
    }

    footer .ftNav03 a {
      font-size: 11px;
      line-height: calc(20 / 11 * 100%);
      margin-bottom: 6px;
    }

    footer .ftNav03 a::after {
      right: -11px;
    }

    footer .snsCol {
        margin: 40px auto 0;
      width: 600px;
      grid-template-columns: 420px 160px;
      gap: 20px;
    }

    footer .snsCol .snsBox {
        padding: 24px 20px 18px;
    }

    footer .snsCol .snsBox p {
        font-size: 13px;
        line-height: calc(22 / 13 * 100%);
    }

    footer .snsCol .lineBox a {
        margin: 7px auto 0;
        width: 60px;
        height: 60px;
    }

    footer .snsCol .lineBox .addf {
        font-size: 12px;
        line-height: calc(13 / 12 * 100%);
    }

    footer .snsCol .snsBox .snsIcons {
        margin: 14px auto 0;
    }

    footer .ftCompany {
        margin-top: 48px;
        font-size: 11px;
        line-height: calc(20 / 11 * 100%);
    }

    footer .ftCopyright {
        margin-top: 14px;
        padding-top: 9px;
        height: 36px;
        font-size: 10px;
        line-height: calc(18 / 10 * 100%);
    }
	
	
}

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

    footer .snsCol {
        margin: 36px auto 0;
      width: min(90%, 400px);
      display: block;
    }

    footer .snsCol .snsBox {
        width: 100%;
        padding: 24px 20px 18px;
    }

    footer .snsCol .snsBox p {
        font-size: 12px;
        line-height: calc(22 / 12 * 100%);
    }
	
	footer .snsCol .lineBox {
		margin-bottom: 12px;
	}

    footer .snsCol .lineBox a {
        width: 60px;
        height: 60px;
    }

    footer .snsCol .lineBox .addf {
        font-size: 11px;
        line-height: calc(12 / 11 * 100%);
    }
	
	footer .snsCol .snsBox .snsIcons {
      width: 184px;
      height: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    footer .snsCol .snsBox .snsIcons a {
      width: 40px;
      height: 40px;
      grid-row: auto !important;
      grid-column: auto !important;
    }
	
}


/*class
-----------------------------------------------------------*/
.liq {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}

.liq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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