@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap');

/*------------------------------------------------------------------------------------
          
COMMON
									
------------------------------------------------------------------------------------*/

* { box-sizing: border-box; }
html { font-size: 62.5%; /*10px*/ }

body {
	width: 100%;
	height: auto;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.05rem;
	color: #000;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
	background: linear-gradient(180deg,rgba(172, 0, 18, 1) 0%, rgba(229, 0, 18, 1) 60%);
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

::selection {
	background: rgb(204 239 231 / 30%);
	color: #9c9c9c;
}

::-moz-selection {
	background: rgb(204 239 231 / 30%);
	color: #9c9c9c;
}

h1,h2,h3,h4,h5,h6 { font-weight: 500; margin: 0; padding: 0; }

a, a:focus, a:active { color: #000; text-decoration: none;}
a { transition: .3s;}
a:hover { cursor: pointer;}
ul { margin: 0; padding: 0; }
li { list-style: none; }
p { margin: 0; padding: 0; line-height: 1.8; text-align: justify; letter-spacing: .2rem; }
a.disable { pointer-events: none;}
a.line { word-break: break-all;}
a.line:hover { text-decoration: underline;}
p, li, dt, dd, th, td { line-height: 1.5; }
img { display: block; width: 100%; -webkit-backface-visibility: hidden; pointer-events: none; }
figure img { display: block; }
picture { display: block; line-height: 0; }
img.fit { object-fit: cover;}

#container { width: 100%; margin: 0 auto; }
#wrapper { display:block; width: 100%;}
article { width: 100%; position:relative; z-index:10;}
address { font-style: normal;}

/* micro clearfix http://nicolasgallagher.com/micro-clearfix-hack/ = */
.cf::before,.cf::after{content: "";display: table}
.cf::after{clear: both}
.cf{zoom:1}

.pcOnly { display: block; }
.spOnly { display: none; }
.tabTo { display: block; }

.bk-wt { background-color: #fff;}

.mb-0 { margin-bottom: 0 !important;}
.pb-0 { padding-bottom: 0;}

/*FONT*/
.bold { font-weight: 900; }
.nowrap { word-break: keep-all; }
.inlineBlock{ display: inline-block;}

.fc-wt { color: #fff;}
.fc-red { color: #e50012;}
.fc-note-red { color: #ff0004;}
.fc-brown { color: #881a1f;}

.en {
	font-family: "Rammetto One", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
    letter-spacing: .25rem;
}

#main {
	margin: 130px 15px 0;
    /*background-color: #fff;*/
    border-radius: 25px;
}

.deco {
	position: absolute;
}

.max1150 {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}

/*リスト*/
.circleList {
    padding-left: 18px;
}

.circleList li {
    list-style-type: disc;
    line-height: 2.2;
    text-align: justify;
}


/*--------------------------------------------------------------------------- header */

#header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 80px;
    z-index: 100;
    transition: .5s;
    padding: 0 40px;
    background-color: #ae0211;
}

#header.white {
    background: rgba(255,255,255,0.8);
}

#header .header_logo {
    width: 188px;
}

#header .header_logo a:hover {
    opacity: .6;
}

/*-- gNav --*/
.nav-unshown,
#nav-open,
#header .menuBtn {
    display: none;
}

#header #gnav {
    /*width: calc(100% - 97px);*/
}

#gnav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#gnav ul li {
    font-weight: 600;
    position: relative;
    line-height: 1;
    margin-right: 35px;
}

#gnav ul li:last-child {
    margin-right: 0;
}

#gnav ul li a {
    display: block;
    transition: .5s;
    position: relative;
    color: #fff;
    line-height: 1;
    font-size: 1.5rem;
    letter-spacing: .05rem;
    padding: 30px 15px 30px 0;
}

#gnav ul li a:after {
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    background: url(/pp/frozen/images/common/arrow_yellow.svg) center center / 6px 10px no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 200ms ease;
}

/* HOVER */

#gnav ul li a:hover {
    color: #ffbf00;
}




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

#footer .footerInner {
    width: min(1000px, 85%);
    margin: 0 auto;
    padding: 60px 0 45px;
}

#footer .footerInner .footer_logo {
    width: 216px;
    margin: 0 auto 40px;
}

#footer .footerInner address {
    font-size: 1.2rem;
    color: rgb(255 255 255 / 80%);
    text-align: center;
    font-weight: 400;
}

#footer .footerInner .footer_logo a:hover {
    opacity: .6;
}



/*--------------------------------------------------------------------------- pagetop */

#pageTop {
    width: 90px;
    height: 90px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    /*background: #fff;*/
    border-radius: 50%;
}

#pageTop.fixed {
    opacity: 1;
    visibility: visible;
}

#pageTop a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

#pageTop a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 86px;
    height: 86px;
    background: url(/pp/frozen/images/common/ponnya_03.svg) top center / contain no-repeat;
    z-index: -1;
    transition: transform 300ms ease-out;
    transform: translateY(-37px);
}

#pageTop img {
    width: 100%;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #ac0012;
    box-shadow: 0px 5px 0px 0px #ac0012;
    transition: transform 300ms ease-out;
}

/* ホバー時の動き */
#pageTop a:hover:before {
    transform: translateY(-48px);
}

#pageTop a:hover img {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px 0px #ac0012;
}


/*--------------------------------------------------------------------------- リンク画像 */

.linkAreaBox {
    display: flex;
}

.linkAreaBox > .linkArea {
    width: calc((100% - 50px) / 2);
}

.linkAreaBox > .linkArea:nth-child(n+2) {
    margin-left: 50px;
}

.linkArea .imgBox {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    padding-bottom: max(240px, 24%);
}

.linkArea .imgBox {
    background-position: center;
    background-size: cover;
}

.linkArea .imgBox img {
    transition: .3s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkArea:hover .imgBox img {
    transform: scale(1.1);
}

.linkArea .imgBox .btnBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 300px;*/
    width: 55%;
}

.linkArea:hover .btnBox .btntext {
    background-color: #fff;
    color: #e50012;
}

.linkArea:hover .btnBox .btntext:after {
    background: url(/pp/frozen/images/common/icon_external_red.svg) center center / contain no-repeat;
}

.linkArea .name {
    font-size: 2rem;
    margin-top: 20px;
}


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

.btnBox {
	width: max(300px, 100%);
	margin: 0 auto;
}

.btnBox .btntext {
	font-size: 1.8rem;
    color: #fff;
    background-color: #e50012;
    padding: 16px 50px 16px;
    border-radius: 30px;
    position: relative;
    transition: .3s;
}

.btnBox .btntext:after {
	position: absolute;
	content: "";
    background: url(/pp/frozen/images/common/icon_external.svg) center center / contain no-repeat;
    width: 18px;
    height: 18px;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
}

/*HOVER*/




/*--------------------------------------------------------------------------- animation */

/* 上下ふわふわ */
.fuwafuwa { animation: float 5000ms cubic-bezier(0.46, 0.45, 0.25, 1) infinite 2500ms;}
@keyframes float {
    from { transform: translate(0,0);}
    50% { transform: translate(0,-3%);}
    to { transform: translate(0,0);}
}

/* ポンっと出る */
.pon {
    opacity: 0;
}

/*.in .pon,
.in.pon {
    animation: pon 0.6s ease forwards;
}*/

.pon {
    animation: pon 0.6s ease forwards;
}

#index #mv .mv_title.pon {
    animation-delay: .5s;
}

@keyframes pon {
  0% { transform: scale(0.8); opacity: 0;}
  50% { transform: scale(1.1); opacity: 1;}
  100% { transform: scale(1); opacity: 1;}
}

#index #interview .in.chara_02 {
    animation: lightSpeedInUp .8s ease forwards;
    animation-delay: .7s;
}
@keyframes lightSpeedInUp {
    0% {
        transform: translate3d(0, 100%, 0) skewX(10deg);
        opacity: 0;
    }
    60% {
        transform: translate3d(0, 0, 0) skewX(-5deg);
        opacity: 1;
    }
    80% {
        transform: translate3d(0, 0, 0) skewX(2deg);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        opacity: 1;
    }
}

/* スライドイン（勢いあり） 下から */
#product .chara01 {
    opacity: 0;
}

#product.in .chara01 {
    animation: lightSpeedInUp .8s ease forwards;
}
@keyframes lightSpeedInUp {
    0% {
        transform: translate3d(0, 100%, 0) skewX(10deg);
        opacity: 0;
    }
    60% {
        transform: translate3d(0, 0, 0) skewX(-5deg);
        opacity: 1;
    }
    80% {
        transform: translate3d(0, 0, 0) skewX(2deg);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        opacity: 1;
    }
}


/* スライドイン 左から */
.slideInL {
    opacity: 0;
}

.menuBoxList .long.in .chara02 {
    animation: slideInL 0.8s ease 0.4s forwards;
}

@keyframes slideInL {
    0% { transform: translate(-15%,0); opacity: 0;}
    100% { transform: translate(0,0); opacity: 1;}
}

/* ちょっと傾く　右 */
.menu_icon img.rotationR {
    animation: rotationR 3s ease 0s infinite;
}

@keyframes rotationR {
    0%   { transform: rotate(0); }
    25%  { transform: rotate(8deg); }
    50%  { transform: rotate(0); }
    100% { transform: rotate(0); }
}


.delay02{ animation-delay: 0.2s !important;}
.delay04{ animation-delay: 0.4s!important;}
.delay06{ animation-delay: 0.6s!important;}
.delay08{ animation-delay: 0.8s !important;}
.delay10{ animation-delay: 1s !important;}
.delay12{ animation-delay: 1.2s!important;}
.delay14{ animation-delay: 1.4s!important;}
.delay16{ animation-delay: 1.6s!important;}
.delay18{ animation-delay: 1.8s!important;}
.delay20{ animation-delay: 2.0s!important;}








/*------------------------------------------------------------- SPのみスワイプ */

.spOverflow {
    overflow-x: unset;
}

.swipeImgbox {
    /*overflow-x: scroll;
    padding: 25px 0 35px 25px;*/
}

.howToScroll.is-ua-sp {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.howToScroll.is-ua-sp .howToScrollInr {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 1;
}

.howToScroll.is-ua-sp .howToScrollInr::after {
    content: "";
    display: block;
    width: 70%;
    height: 100%;
    position: absolute;
    left: 15%;
    top: 0;
    z-index: 2;
    background: url(../images/common/swipe_icon.svg)center center / 60% auto no-repeat;
    animation: slide 1500ms linear infinite;
    transition: all 300ms;
}

.howToScroll.is-ua-sp.delete,
.howToScroll.is-ua-sp .howToScrollInr.delete {
    animation: none;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
    
@keyframes slide {
    0% { transform: translateX(10px); opacity: 0;}
    3% { transform: translateX(10px); opacity: 1;}
    100% { transform: translateX(-10px); opacity: 0; }
}

#about .categoryBox .inner .aboutMap .imgBox {
    max-width: 628px;
    margin: 0 auto 70px;
}

#about .categoryBox .inner .aboutMap .imgBox .swipeImgboxInner {
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 73%;
    position: relative;
}





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

1200px以下
									
------------------------------------------------------------------------------------*/

    @media print, screen and (max-width: 1200px) {

	/*--------------------------------------------------------------------------- header */

    }


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

以下 TAB 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (max-width: 900px) {

	.tabTo { display: none; }


	/*--------------------------------------------------------------------------- header */

	.hidden {
		display: none;
	}

	/* ボタンのスタイル */
	.hamburger {
		font-size: 2rem;
		background: none;
		border: none;
		cursor: pointer;
	}


	#header .menuBtn{
		position: absolute;
		right: 0;
		top: 0;
        display: block;
	}
	
	/*-- ドロワーメニュー --*/
	#nav-drawer {
	  position: relative;
	}
	.nav-unshown,
	#gnav{
		display: none;
	}
	/*アイコンのスペース*/
	#nav-open {
		display: block;
		width: 32px;
		height: 15px;
		transition: .5s;
		z-index: 9999;/*最前面に*/
		position: absolute;
		top: 32px;
   	    right: 20px;
	}
	/*ハンバーガーアイコンをCSSだけで表現*/
	#nav-open span.menuButton{
        display: block;
		position: absolute;
        width: 100%;
        height: 100%;
	}
	#nav-open span.menuButton:before,
	#nav-open span.menuButton:after,
	#nav-open span.menuButton span{
		content: '';
		display: block;
		position: absolute;
		height: 1px;
		width: 100%;
		background: #fff;
		cursor: pointer;
		transition: 0.5s;
	}
	#nav-open span.menuButton:before{
		top: 0;
		left: 0;
	}
	#nav-open span.menuButton:after{
		top: 7px;
		left: 0;
	}
	#nav-open span.menuButton span{
		top: 14px;
		left: 0;
	}

	/*閉じる用の薄黒カバー*/
	#nav-close {
	  display: none;/*はじめは隠しておく*/
	  position: fixed;
	  z-index: 99;
	  top: 0;/*全体に広がるように*/
	  left: 0;
	  width: 100%;
	  height: 100%;
	  /*background: #000;*/
	  opacity: 0;
	  transition: .5s;
	}

	/*中身*/
	#nav-content {
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0px;
		z-index: 9998;
		width: 100%;
		height: 100%;
		color: #fff;
		transition: 0.6s;/*滑らかに表示*/
		/*transform: translate(0, -105%);*//*上に隠しておく*/
		text-align: left;
		opacity: 0;
        padding: 15px 20px;
		
		visibility: hidden;
		pointer-events: none;

		background-color: #e50012;
	    /*-webkit-backdrop-filter: blur(30px);
	    backdrop-filter: blur(10px);*/
	}
    #nav-content .navLogo {
        width: 130px;
    }
    #sp_gnav ul {
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 15px;
        padding: 50px 50px 60px;
        background-color: #fff;
        /*box-shadow: 0 3px 8px 3px rgba(0, 0, 0, .1);*/
    }
    #sp_gnav ul .menu-title {
    	color: #e50012;
    	font-size: 1.5rem;
    	letter-spacing: .5rem;
    	text-align: center;
    	position: relative;
    	padding-bottom: 10px;
    	margin-bottom: 20px;
    }
    #sp_gnav ul .menu-title:after {
    	position: absolute;
    	content: "";
    	bottom: 0;
    	left: 0;
    	right: 0;
    	margin: auto;
    	width: 20px;
    	height: 1px;
    	border-radius: 1px;
    	background-color: #e50012;
    	line-height: 1;
    }
    #sp_gnav ul li a {
    	font-size: 1.5rem;
        text-align: center;
        letter-spacing: .3rem;
        display: block;
        padding: 20px 0;
        position: relative;
    }
    #sp_gnav ul li a::before {
		content: "";
		display: block;
		width: 5px;10		height: 8px;
		background: url(/pp/frozen/images/common/arrow_red.svg) center center / 5px 10px no-repeat;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
    }
    #sp_gnav ul li a::after {
    	position: absolute;
        bottom: 0;
        left: 0;
		background: radial-gradient(circle farthest-side, #e50012, #e50012 50%, transparent 60%, transparent);
		background-size: 5px;
		content: "";
		display: inline-block;
		height: 5px;
		width: 100%;
    }
    #sp_gnav ul li a .en {
    	font-size: 1rem;
    	font-weight: normal;
    	margin-bottom: 8px;
    }

	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
	  display: block;/*カバーを表示*/
	  opacity: .5;
		transition: .6s;
	}
	#nav-input:checked ~ #nav-content {
	  /*transform: translate(0%, 0%);*//*中身を表示（左へスライド）*/
		opacity: 1;
		visibility: visible;
		pointer-events: visible;
	}

	/*チェックが入ったらアイコンをバツへ*/
	/*#nav-input:checked ~ #nav-open span{
		top: 50%;
	}*/
	#nav-input:checked ~ #nav-open span.menuButton:before{
		transform: rotate(45deg);
		top: 5px;
        /*background: #000;*/
	}
	#nav-input:checked ~ #nav-open span.menuButton span{
		transform: rotate(-45deg);
		top: 5px;
        /*background: #000;*/
	}
    #nav-input:checked ~ #nav-open span.menuButton:after{
        display: none;
    }

    /* お問い合わせ */
    #nav-content #sp_gnav .navLink_sp a {
        font-size: 2rem;
        text-align: center;
        letter-spacing: .4rem;
        /*font-weight: bold;*/
        line-height: 1;
        padding: 20px;
        background-color: #d7f6fa;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
    }

    #nav-content #sp_gnav .navLink_sp a .en {
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 8px;
    }


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




    /*--------------------------------------------------------------------------- リンク画像 */

    .linkAreaBox {
        display: block;
    }

    .linkAreaBox > .linkArea {
        width: 100%;
    }

    .linkAreaBox > .linkArea:nth-child(n+2) {
        margin-left: 0;
        margin-top: 50px;
    }

    .linkArea .imgBox {
        padding-bottom: 180px;
    }
    
}





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

以下 SP 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (max-width: 600px) {
	
	body {
		font-size: 1.4rem;
	}
	
	p,
	.circleList li {
		line-height: 1.2;
	}

	#wrapper {
		padding-top: 60px;
	}

	.pcOnly { display: none; }
	.spOnly { display: block; }

	.tabNone { display: none; }

	/*--- 画像ボケ防止 ---*/
	img { 
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		image-rendering: crisp-edges;
		image-rendering: -webkit-optimize-contrast;
	}

	.rounded {
	    border-radius: 15px;
	}


	/*--------------------------------------------------------------------------- header */

	#header {
	    height: 50px;
	    padding: 0 20px;
	}

	#header .header_logo {
	    width: 130px;
	}

	#nav-open {
        width: 24px;
        top: 21px;
    }





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

	#footer .footerInner {
	    padding: 30px 0 30px;
	}

	#footer .footerInner .footer_logo {
	    width: 150px;
	    margin: 0 auto 20px;
	}

	#footer .footerInner address {
	    font-size: 1rem;
	}



    /*--------------------------------------------------------------------------- リンク画像 */

    .linkAreaBox > .linkArea:nth-child(n+2) {
        margin-left: 0;
        margin-top: 30px;
    }

    .linkArea .imgBox .btnBox {
        /*width: 200px;*/
        width: 85%;
    }

    .btnBox .btntext {
        font-size: 1.4rem;
        padding: 13px 20px;
    }

    .btnBox .btntext:after {
        width: 12px;
        height: 12px;
        right: 20px;
    }

    .linkArea .name {
        font-size: 1.4rem;
        margin-top: 10px;
    }


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

	.btnBox a {
		font-size: 1.3rem;
		letter-spacing: .1rem;
		padding: 15px 0;
	}

	.btnBox a .arrow {
	    margin-left: 8px;
	    width: 15px;
	    height: 15px;
	}

	.btnBox a .arrow:after {
	    width: 15px;
	    height: 15px;
	}


	/*--------------------------------------------------------------------------- pagetop */

	#pageTop {
		width: 60px;
	    height: 60px;
	    right: 20px;
	    bottom: 20px;
	}

    #pageTop a:before {
        width: 60px;
        height: 60px;
        transform: translateY(-25px);
    }

    #pageTop a:hover:before {
        transform: translateY(-30px);
    }


    /*------------------------------------------------------------- SPのみスワイプ */

    .spOverflow {
        overflow-x: scroll;
        padding-bottom: 20px;
        position: relative;
    }

    #about .categoryBox .inner .aboutMap .imgBox .swipeImgboxInner {
        width: calc(500px + 40px);
        height: 365px;
    }

}







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

   modal
 
=================================================================================== */
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
}

.modal_wrapper{
    background: rgb(229 0 18 / 75%);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal_content{
    width: 90%;
    max-width: 1200px;
    border-radius: 30px;
    background: #fff;
    left: 50%;
    padding: 9px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

.close_btn{
    width: 60px;
    height: 60px;
    background: #000;
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 50%;
    cursor: pointer;
}

.close_btn:before,
.close_btn:after {
    content: "";
    display: block;
    width: 22px;
    height: 3px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 2px;
}

.close_btn:before {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.close_btn:after {
    transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
iframe {
    width: 100%;
    height: 75vh;
    border-width: 0;
}


/*modalCnt*/
/*============================================= */
.modalCnt {
  padding: 100px;
  background-color: #fff;
    }

.modalCnt .productsBox {
    margin-bottom: 80px;
    }

.modalCnt .productsBox .productsImg {
    width: 50%;
    float: left;
    position: relative;
    }

.modalCnt .productsBox .productsImg .modalImg .slick-list {
    border-radius: 30px;
    overflow: hidden;
    }

.modalCnt .productsBox .productsImg .modalImg .slick-dots {
    bottom: -30px;
    }

.modalCnt .productsBox .productsImg .modalImg .slick-dots li button:before {
    font-size:70px!important;
    }

.modalCnt .productsBox .productsImg .modalImg button .prev-arrow,
.modalCnt .productsBox .productsImg .modalImg button .next-arrow {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

.modalCnt .productsBox .productsImg .modalImg ul button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  }
.modalCnt .productsBox .productsImg .modalImg ul .slide-arrow {
  position: absolute;
  top: 46%;
  z-index: 2;
  }

.modalCnt .productsBox .productsImg .modalImg ul .prev-arrow,
.modalCnt .productsBox .productsImg .modalImg ul .next-arrow {
  width: 40px;
  height: 40px;
  filter:drop-shadow( 4px 4px 4px rgba(0,0,0,.1));
  transition: .3s;
  }

.modalCnt .productsBox .productsImg .modalImg ul .prev-arrow {
  background: url(/pp/frozen/images/common/pre-modal.svg) center / 100% no-repeat;
  }

.modalCnt .productsBox .productsImg .modalImg ul .next-arrow {
  background: url(/pp/frozen/images/common/next-modal.svg) center / 100% no-repeat;
  }

.modalCnt .productsBox .productsImg .modalImg ul .prev-arrow {
  left: -22px;
  }

.modalCnt .productsBox .productsImg .modalImg ul .next-arrow {
  right: -22px;
  }

.modalCnt .productsBox .productsImg .new {
    width: 16%;
    position: absolute;
    top:-10px;
    left: -10px;
    z-index: 2;
    }

.modalCnt .productsBox .productsImg .slick-arrow {
    opacity: 1;
    }

.modalCnt .productsBox .productsImg .time {
    width: 26%;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    }

.modalCnt .productsBox .productsCnt {
    width: 43%;
    float: right;
    }

.modalCnt .productsBox .productsCnt .name {
    font-size: 2.4rem;
    margin-bottom: 20px;
    }

.modalCnt .productsBox .productsCnt ul.feature {
    margin-bottom: 40px;
    }

.modalCnt .productsBox .productsCnt ul.feature li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.5;
    }

.modalCnt .productsBox .productsCnt ul.feature li:last-child {
    margin-bottom: 0;
    }

.modalCnt .productsBox .productsCnt ul.feature li:before {
    content: "";
    display: block;
    background: #e50012;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
    margin: 0 auto;
    }

.modalCnt .productsBox .productsCnt ul.feature li.note {
    font-size: 1.3rem;
    font-weight: normal;
    padding-left: 0;
    margin-top: 15px;
}

.modalCnt .productsBox .productsCnt ul.feature li.note:before {
    content: none;
}

.modalCnt .productsBox .productsCnt .detail dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #cacbcb;
    margin-bottom: 10px;
    padding-bottom: 10px;
    }

.modalCnt .productsBox .productsCnt .detail dl dt {
    width: 23%;
    }

.modalCnt .productsBox .productsCnt .detail dl dd {
    width: 77%;
    font-weight: 400;
    margin: 0;
    }

.modalCnt .productsBox .productsCnt .caution {
  font-size: 2.4rem;
  font-weight: 400;
  }

.modalCnt .productsBox .productsCnt .name {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  }

.modalCnt .collaboBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    background: #e50012;
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 50px;
    }

.modalCnt .collaboBox:before {
    content: "";
    background: url(/special/ease_up/images/common/icon-collaboration.svg) top center / 100% no-repeat;
    width: 46px;
    height: 37px;
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    margin: auto;
    }

.modalCnt .collaboBox .logo {
    width: 25%;
    margin-right: 5%;
    }

.modalCnt .collaboBox .txt {
    width: 37%;
    margin-right: 5%;
    }

.modalCnt .collaboBox .link {
    width: 28%;
    }

.modalCnt .collaboBox .link a {
    width: 100%;
    display: block;
    position: relative;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 10px 40px;
    }

.modalCnt .collaboBox .link a span {
    width: 100%;
    font-size: 1.6rem;
    transition: .3s;
    }

.modalCnt .collaboBox .link a span:before {
    content: "";
    background: url(/special/ease_up/images/common/blank.svg) center right / 100% no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 35px;
    transition: .3s;
    }

.modalCnt .collaboBox.nolink .txt {
  width: 70%;
  margin-right: 0;
  }

.modalCnt .nutritionalBox {
    margin-bottom: 40px;
}

.modalCnt .nutritionalBox .midashi,
.modalCnt .rawmaterials .midashi,
.modalCnt .allergyBox .midashi {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #e50012;
    margin-bottom: 25px;
}

.modalCnt .rawmaterials {
    margin-bottom: 40px;
}

.modalCnt .rawmaterials .img {
    /*max-width: 446px;*/
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.round-loope{
    border-radius: 75px;
    border: 5px solid #F0F0F0;
}

.modalCnt .nutritionalBox .list {
    display: flex;
    flex-wrap: wrap;
}

.modalCnt .nutritionalBox .list dl {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #cacbcb;
    margin: 0 4% 10px 0;
    padding-bottom: 10px;
    }

.modalCnt .nutritionalBox .list dl:nth-child(2n) {
    margin-right: 0;
    }

.modalCnt .nutritionalBox .list dl dt,
.modalCnt .nutritionalBox .list dl dd {
    width: 50%;
    margin: 0;
    }

.modalCnt .nutritionalBox .list dl dd {
    text-align: right;
    font-weight: 400;
    }

.modalCnt .allergyBox ul.list {
    display: flex;
    flex-wrap: wrap;
  margin-bottom: 40px;
    }

.modalCnt .allergyBox ul.list li {
    font-weight: 400;
    border: 1px solid #cacbcb;
    border-radius: 5px;
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    }

.modalCnt ul.caution li {
  font-size: 1.3rem;
  font-weight: 400;
  text-indent: -1.3rem;
  margin-left: 1.3rem;
  }

.modalCnt ul.caution li:before {
  content: '※';
  }

.modalCnt .productsBox .productsCnt .detail dl dd ul li {
  margin-top: 10px;
  }

.modalCnt .productsBox .productsCnt .detail dl dd .caution {
  font-size: 1.3rem;
  color: #e50012;
  line-height: 1.6;
  display: inline-block;
  }


@media only screen and (min-width: 961px) {
    .modalCnt .collaboBox .link a:hover {
        border: 1px solid #e50012;
        }

    .modalCnt .collaboBox .link a:hover span {
        color: #e50012;
        }

    .modalCnt .collaboBox .link a:hover span:before {
        background: url(/special/ease_up/images/common/blank-red.svg) center right / 100% no-repeat;
        }
}


@media only screen and (max-width: 960px) {
    .modalCnt {
      padding: 30px;
      }

    .modal-contents {
        border-radius: 15px;
        }

    .modal-inner {
        padding: 0;
        }

    .modal-inner .modal-wrap {
        padding: 30px;
        }

    .modalCnt .productsBox .productsImg {
        width: 60%;
        float: none;
        margin: 0 auto 60px;
        }

    .modalCnt .productsBox .productsImg .modalImg .slick-list {
        border-radius: 15px;
        }

    .modalCnt .productsBox .productsCnt {
        width: 100%;
        float: none;
        }

    .modalCnt .productsBox .productsImg .time {
        width: 30%;
        right: 15px;
        bottom: 15px;
        }

    .modalCnt .productsBox .productsCnt .name {
        font-size: 2.2rem;
        }

    .modalCnt .productsBox .productsCnt ul.feature li {
        font-size: 1.5rem;
        padding-left: 20px;
        }

    .modalCnt .productsBox .productsCnt ul.feature li:before {
        width: 1.5rem;
        height: 1.5rem;
        }

    .modalCnt .productsBox .productsCnt .detail dl dt,
    .modalCnt .productsBox .productsCnt .detail dl dd {
        font-size: 1.4rem;
        }

    .modalCnt .collaboBox {
        display: block;
        border-radius: 15px;
        padding: 45px;
        }

    .modalCnt .collaboBox .logo {
        width: 30%;
        margin: 0 auto 12px;
        }

    .modalCnt .collaboBox .txt {
        font-size: 1.5rem;
        line-height: 1.5;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        }

    .modalCnt .collaboBox.nolink .txt {
        width: 100%;
        margin-bottom: 0;
    }

    .modalCnt .collaboBox .link {
        width: 300px;
        margin: auto;
        }

    .modalCnt .collaboBox .link a {
        padding: 8px 25px;
        }

    .modalCnt .collaboBox .link a span {
        font-size: 1.4rem;
        display: block;
        }

    .modalCnt .collaboBox .link a span:before {
        width: 13px;
        height: 13px;
        right: 25px;
        }

    .modalCnt .nutritionalBox .midashi,
    .modalCnt .rawmaterials .midashi,
    .modalCnt .allergyBox .midashi {
        font-size: 1.4rem;
        }

    .modalCnt .productsBox .productsCnt .detail dl dt {
        width: 26%;
        margin-right: 2%;
        }

    .modalCnt .productsBox .productsCnt .detail dl dd {
        width: 72%;
        }

    .modalCnt .nutritionalBox .list dl dt,
    .modalCnt .nutritionalBox .list dl dd,
    .modalCnt .allergyBox ul.list li {
        font-size: 1.4rem;
        }

    .modalCnt .nutritionalBox .list {
        display: block;
        }

    .modalCnt .nutritionalBox .list dl {
        width: 100%;
        margin-right: 0;
        }

    .modalCnt .allergyBox ul.list li {
        padding: 5px 10px;
        }
}


@media only screen and (max-width: 600px) {
    .modalCnt .productsBox .productsImg,
    .modalCnt .collaboBox .logo,
    .modalCnt .collaboBox .link {
        width: 100%;
        }

    .modalCnt .productsBox .productsImg .time {
        width: 35%;
        right: 10px;
        bottom: 10px;
        }

    .modalCnt .allergyBox .midashi {
        letter-spacing: .1em;
        }

    .modalCnt .productsBox .productsImg .modalImg ul .prev-arrow,
    .modalCnt .productsBox .productsImg .modalImg ul .next-arrow {
      width: 35px;
      height: 35px;
      }

    .modalCnt .productsBox .productsImg .modalImg ul .prev-arrow {
      left: -20px;
      }

    .modalCnt .productsBox .productsImg .modalImg ul .next-arrow {
      right: -20px;
      }

      .close_btn {
        width: 40px;
        height: 40px;
    }

}
