@charset "UTF-8";

/* ==========================================================================
  ADJUSTMENT
========================================================================== */
/*  Font
-----------------------------------*/
/*
@font-face {
  font-family: '';
  src: url('');
  font-weight: 300;
  size-adjust: 106%;
}
@font-face {
  font-family: '';
  src: url('');
  font-weight: 700;
  size-adjust: 106%;
}
*/
body {
  color: #222;
}
img {
  vertical-align: bottom;
}

a:hover {
  opacity: .7;
}

/* font-size
12 = 0.75
13 = 0.8125
14 = 0.875
15 = 0.9375
16 = 1
17 = 1.0625
18 = 1.125
19 = 1.1875
20 = 1.25
21 = 1.3125
22 = 1.375
23 = 1.4375
24 = 1.5
25 = 1.5625
*/

/* font-size */
.txt__s { font-size: .875rem; line-height: 1.5; }
.txt__m { font-size: 1rem; line-height: 1.5; }
.txt__l { font-size: 1.125rem; line-height: 1.5; }
.txt__xl { font-size: 1.375rem; line-height: 1.5; }

@media screen and (max-width: 768px) {
  .txt__xl { font-size: 1.0625rem; }
}

/* font-weight */
.txt__bl { font-weight: bold; }

/* font color */
.txt_cl__grey { color: #666; }

/*  Color
-----------------------------------*/
.content-container .main { position: relative; padding-left: 48px; padding-right: 48px; }
.content-container .main:before, .content-container .main:after { content: ''; display: block; position: absolute; width: 16px; height: 100%; top:0; z-index: 10;}
.content-container .main:before { left: 0; }
.content-container .main:after { right: 0; }

@media screen and (max-width: 768px) {
  .content-container .main { margin-top: 46px; padding-left: 26px; padding-right: 26px; }
  .content-container .main:before, .content-container .main:after { width: 5px; }
}

/*
cl_cyan = #94e1d5
*/

body.cl_cyan .content-container .main:before,
body.cl_cyan .content-container .main:after,
body.cl_cyan .c-head h4:before,
body.cl_cyan .sec_features.model .c-flex.col-2 > .item:nth-child(1) { background-color: #94e1d5; }

/*
cl_tiffany = #97ebea
*/

body.cl_tiffany .content-container .main:before,
body.cl_tiffany .content-container .main:after,
body.cl_tiffany .c-head h4:before,
body.cl_tiffany .sec_features.model .c-flex.col-2 > .item:nth-child(1) { background-color: #97ebea; }

/*
cl_salmon = #ffaea7
*/

body.cl_salmon .content-container .main:before,
body.cl_salmon .content-container .main:after,
body.cl_salmon .c-head h4:before,
body.cl_salmon .sec_features.model .c-flex.col-2 > .item:nth-child(1) { background-color: #ffaea7; }

/*
cl_yellow = #ffde5b
*/

body.cl_yellow .content-container .main:before,
body.cl_yellow .content-container .main:after,
body.cl_yellow .c-head h4:before,
body.cl_yellow .sec_features.model .c-flex.col-2 > .item:nth-child(1) { background-color: #ffde5b; }

/*
cl_sand = #dfd8c0
*/

body.cl_sand .content-container .main:before,
body.cl_sand .content-container .main:after,
body.cl_sand .c-head h4:before,
body.cl_sand .sec_features.model .c-flex.col-2 > .item:nth-child(1) { background-color: #dfd8c0; }


/* ==========================================================================
  FRAME LAYOUT
========================================================================== */
/* heading */
.c-head {
  margin-bottom: 48px;
}
.c-head h3 {
  font-size: 1.375rem;
  font-weight: 700;
}
.c-head h4 {
  font-size: 1.125rem;
  font-weight: 700;
}
.c-head h4:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 16px;
  margin-right: 14px;
  transform: skewX(-34deg);
}

/* section */
.c-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}
.c-sec + .c-sec {
  border-top: 1px solid #e8e8e8;
}
.c-sec,
.c-nav,
.sec_mv {
  min-width: 1120px;
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .c-sec {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .c-sec,
  .c-nav,
  .sec_mv {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}


/* navigation */
.c-nav {}
.c-nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.c-nav > ul > li {
  padding-right: 16px;
  position: relative;
  white-space: nowrap;
}
.c-nav > ul > li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.c-nav > ul > li:after {
  content: '';
  display:
  block;
  width: 1px;
  height: 10px;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-nav > ul > li:last-child:after {
  display: none;
}

/* ==========================================================================
  CONTENTS LAYOUT
========================================================================== */
/* Common settings
-----------------------------------*/
/* Link */
.link:before,
.link__anchor:before,
.link__back:before {
  content:  '';
  width: 18px;
  height: 18px;
  display:  inline-block;
  background:  url('/stationery/campus_brand/cmn/img//ico_link.svg') no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
}
.link__anchor:before { transform: rotate(90deg); }
.link__back:before { transform: rotate(180deg); }
.txt__s.link:before,
.txt__s.link__anchor:before,
.txt__s.link__back:before {
  width: 16px;
  height: 16px;
}
.txt__xl.link:before,
.txt__xl.link__anchor:before,
.txt__xl.link__back:before {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .txt__xl.link:before,
  .txt__xl.link__anchor:before,
  .txt__xl.link__back:before {
    width: 16px;
    height: 16px;
  }
}

/* image */
.c-sec img,
.c-nav img,
.sec_mv img {
  object-fit: cover;
}
.img_bevel {
  clip-path: polygon(10% 0, 100% 0, 100% 0, 100% 84%, 90% 100%, 0 100%, 0 100%, 0 16%);
}

/* button */
.button {
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 0, 100% 84%, 90% 100%, 0 100%, 0 100%, 0 0);
  padding: 32px;
  min-height: 192px;
  position: relative;
  justify-content: space-between;
  position: relative;
  font-weight: 700;
}
.button:hover {
  opacity: .7;
}
.button:before,
.button:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
}
.button:before {
  background-color: #ccc;
  width: 100%;
  height: 4px;
  left: 32px;
}
.button:after {
  background: linear-gradient(to right, #222 0%, #222 50%, #f8ffe4 50%, #f8ffe4 100%);
  width: 20px;
  height: 8px;
}
.button.shop {
  background-color: #dcdcdc;
  height: 144px;
}
.button > div {
  display: flex;
  justify-content: space-between;
}
.button > div + div {
  align-items: center;
}
.button > div img {
  max-width: 136px;
}
.button > div + div .ico + img {
  max-width: 104px;
}
.button .ico {
  display: block;
  width: 20px;
  height: 20px;
  background:  url('/stationery/campus_brand/cmn/img//ico_link.svg') no-repeat;
  position: relative;
}
.button .ico:before {
  border-top: 1px solid rgba(34, 34, 34, 0.2);
  width: 100%;
  display: block;
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
}
.button.ecLink {
  padding: 32px 32px 12px;
}
.button.shop .ico { transform: rotate(90deg); }
.button.shop .ico:before { display: none; }

.button.shop:after {
  background: linear-gradient(to right, #ffaabd 0%, #ffaabd 50%, #ffe5be 50%, #ffe5be 100%);
}
.button.online:after {
  background: linear-gradient(to right, #222 0%, #222 50%, #f8ffe4 50%, #f8ffe4 100%);
}
.button.amazon:after {
  background: linear-gradient(to right, #fe8a66 0%, #fe8a66 50%, #666 50%, #666 100%);
}
.button.rakuten:after {
  background: linear-gradient(to right, #c05757 0%, #c05757 50%, #ffce5c 50%, #ffce5c 100%);
}
.button.kaunet:after {
  background: linear-gradient(to right, #c05757 0%, #c05757 50%, #eb7a9e 50%, #eb7a9e 100%);
}
.button.howsdesign:after {
  background: linear-gradient(to right, #32be67 0%, #32be67 50%, #b3bbff 50%, #b3bbff 100%);
}
.button.sutenai:after {
  background: linear-gradient(to right, #32be67 0%, #32be67 50%, #fe8a66 50%, #fe8a66 100%);
}

.button + p[class$="txt__"],
.button + p[class*="txt__"] {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .button {
    min-height: 176px;
  }
  .button.shop {
    height: auto;
    min-height: auto;
    flex-direction: row;
    justify-content: start;
    gap: 8px;
  }
  .button.shop > div {
    order: 2;
  }
  .button.shop > div + div {
    order: 1;
  }
}

/* pagenation */
.pagenation .link__back:before {
  margin-right: 36px;
}


/* Flex layout
-----------------------------------*/
.c-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.c-flex:before,
.c-flex:after {
  content: '';
  display: block;
}
.c-flex:before {
  order: 1;
}

.c-flex.col-2 > .item {
  width: 47.5%;
}
.c-flex.col-3:after,
.c-flex.col-3 > .item {
  width: 30%;
}
.c-flex.col-3 > .item:nth-child(n+4) {
  margin-top: 4.2rem;
}
.c-flex.col-4:before,
.c-flex.col-4:after,
.c-flex.col-4 > .item {
  width: 22.85%;
}
.c-flex.list {
  flex-wrap: wrap;
}
.c-flex.col-3.list  > .item {
  width: calc( 100% / 3 );
}

@media screen and (max-width: 768px) {
  .c-flex.col-3 > .item,
  .c-flex.col-4 > .item {
    width: 47.5%;
  }
  .c-flex.col-3 > .item:nth-child(n+3),
  .c-flex.col-3 > .item:nth-child(n+4) {
    margin-top: 2.2rem;
  }
  .c-flex.col-2 {
    flex-direction: column;
  }
  .c-flex.col-2 > .item {
    width: 100%;
  }
}

/* button */
.buttons {
  display: flex;
  gap: 16px;
  justify-content: start;
}
.buttons.col-2 > .item {
  width: calc((100% - 16px) / 2);
}
.buttons.col-3 > .item {
  width: calc((100% - 16px * 2) / 3);
}
.buttons.col-4 > .item {
  width: calc((100% - 16px * 3) / 4);
}

/* Card layout
-----------------------------------*/
.w-card,
.w-card > a {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .w-card,
  .w-card > a {
    gap: 20px;
    margin-bottom: 20px;
  }
}


/* Main Visual
-----------------------------------*/
.sec_mv {
  display: flex;
  gap: 56px;
}
.sec_mv .img-area {
  flex: 1;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.sec_mv .left {
  /*width: 18.66%;
  width: calc(20% + 16px);*/
  width: 22%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sec_mv nav {
  display: flex;
  margin-top: 20px;
}
.sec_mv nav li {
  font-size: .667rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: -.5px;
  border-bottom: 4px solid #e6e6e6;
  padding-bottom: .5rem;
  position: relative;
}
.sec_mv nav li + li {
  margin-left: 30px;
}
.sec_mv nav li + li:before {
  content: '';
  display: block;
  background-image: url('/stationery/campus_brand/cmn/img//ico_breadcrumbs.svg');
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
.sec_mv .site {
  border-top: 1px solid #e6e6e6;
  padding-top: 24px;
  padding-bottom: 24px;
}
/*
.img-area {
  width: 50vw;
}
*/
.sec_mv h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 80px;
}
.sec_mv h1 > span  {
  display: block;
  font-size: 1.125rem;
  margin-top: 40px;
}
.sec_mv .img-area img {
  clip-path: polygon(10% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 16%);
  width: 100%;
  aspect-ratio: 3 / 2;
}
@media screen and (max-width: 768px) {
  .sec_mv {
    flex-direction: column;
  }
  .sec_mv .left {
    display: contents;
    width: 100%;
  }
  .sec_mv .item01 {
    order: 1;
  }
  .sec_mv .item02 {
    order: 3;
  }
  .sec_mv .img-area {
    order: 2;
  }
  .sec_mv .img-area img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}


/* News
-----------------------------------*/
.sec_news ul {
  border-bottom: 1px solid #e8e8e8;
}
.sec_news ul > li {
  border-top: 1px solid #e8e8e8;
}
.sec_news ul > li > a {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.sec_news .js-Open {
  text-align: right;
  padding-top: 16px;
}
.sec_news .js-Open > span {
  cursor: pointer;
  font-size: .875rem;
  display: inline-block;
}
.sec_news .js-Open > span:before {
  content:  '';
  width: 12px;
  height: 12px;
  display:  inline-block;
  background:  url('/stationery/campus_brand/cmn/img//ico_morelink.svg') no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .sec_news ul > li > a .txt__s.link {
    padding-left: calc( 16px + 8px );
  }
  .sec_news ul > li > a .txt__s.link:before {
    margin-left: calc( (16px + 8px) * -1 );
  }
}

/* Experience etc
-----------------------------------*/
.c-flex .w-card.item img {
  aspect-ratio: 168 / 113;
}

/* Features
-----------------------------------*/
.sec_features.series .features_list .list__item {
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 2rem;
}
.sec_features.series .features_list .list__item:before {
  content: '';
  background-color: #dcdcdc;
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: .8rem;
  vertical-align: -.2rem;
  transform: skewX(-34deg);
}
.sec_features.series .c-flex {
  align-items: center;
}
.sec_features.series .c-flex + .c-flex,
.sec_features.model .c-flex + .c-flex {
  margin-top: 2.2rem;
}
.sec_features.model .c-flex.col-2 > .item:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 32px;
}
.sec_features.series img {
  aspect-ratio: 168 / 113;
}
.sec_features.model img {
  aspect-ratio: 560 / 373;
}
@media screen and (min-width: 769px) {
  .sec_features.model .c-flex.col-2 > .item {
    width: calc(100% / 2);
  }
  .sec_features.model .c-flex.col-2 > .item:nth-child(1) {
    padding: 0 56px;
  }
}


/* modaal
-----------------------------------*/
/*Movie*/
.YTbut {
  display: block;
  position: relative;
}
.YTbut:before {
  content:  '';
  width: 140px;
  height: 140px;
  display:  block;
  background:  url('/stationery/campus_brand/cmn/img//ico_movie.svg') no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.sec_movie img {
  aspect-ratio: 16 / 9;
}

/*Gallery*/
.GLYbut {
  position: relative;
}
.GLYbut:before {
  content:  '';
  width: 48px;
  height: 48px;
  display:  block;
  background:  url('/stationery/campus_brand/cmn/img//ico_zoomup.svg') no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 10;
}
.GLYbut img {
  aspect-ratio: 168 / 113;
}
@media screen and (max-width: 768px) {
  .GLYbut:before {
    width: 32px;
    height: 32px;
  }
}

/* Lineup
-----------------------------------*/
.sec_lineup {
  display: flex;
  gap: 56px;
}
.sec_lineup .left {
  /*width: 208px;*/
  width: 18.66%;
}
.sec_lineup .right {
  flex: 1;
}
.c-flex.list {
  justify-content: start;
}
.c-flex.list > .item {
  box-shadow: 0 0 0 1px #e6e6e6;
  position: relative;
}
.sec_lineup .right .c-head h4:before {
  display: none;
}
.sec_lineup .right .txt__m.txt_cl__grey + .c-head {
  margin-top: 24px;
}
.sec_lineup .left nav li {
  margin-bottom: 24px;
}
.sec_lineup .c-flex.list + .c-head {
  margin-top: 80px;
}
.sec_lineup .c-flex.col-4 .card .info {
  border: none;
  padding: 0;
  text-align: center;
}
.sec_lineup .c-flex.col-4 span.thum {
  padding: 25px 0px;
}

@media screen and (min-width: 769px) {
  .c-flex.list > .item:not(:nth-child(3n)) {
    margin-right: 1px;
    width: calc((100% / 3) - 1px);
  }
  .c-flex.list > .item:nth-child(n+4) {
    margin-top: 1px;
  }
  .c-flex.list > .item:before,
  .c-flex.list > .item:nth-of-type(3n):after,
  .c-flex.list > .item:last-child:after {
    content: '';
    display: block;
    background-image: url('/stationery/campus_brand/cmn/img//ico_dot.svg'), url('/stationery/campus_brand/cmn/img//ico_dot.svg');
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 6px 6px;
    width: 6px;
    height: calc( 100% + 6px );
    position: absolute;
    top: -3px;
  }
  .c-flex.list > .item:nth-child(n+4):before,
  .c-flex.list > .item:nth-of-type(n+6):after,
  .c-flex.list > .item:last-child:after {
    height: calc(100% + 7px);
    top: -4px;
  }
  .c-flex.list > .item:before {
    left: -3px;
  }
  .c-flex.list > .item:nth-of-type(3n):after {
    right: -3px;
  }
  .c-flex.list > .item:not(:nth-child(3n)):last-child:after {
    right: -4px;
  }
}
.c-flex .card span.label {
  display: block;
  padding: 25px 32px;
  font-weight: bold;
}
.c-flex .card span.thum {
  display: block;
  padding: 25px 52px;
}
.c-flex .card span.thum img {
  aspect-ratio: 1 / 1;
}
.c-flex .card span.label + span.thum {
  padding: 0 52px 25px;
}
.c-flex .card .link,
.c-flex .card .info {
  display: block;
}
.c-flex .card span.link,
.c-flex .card .info {
  border-top: 1px solid #e6e6e6;
  padding: 24px 0;
  margin: 0 32px;
}
.c-flex .card a.link {
  text-align: right;
  padding: 24px 32px;
}
.c-flex .card .marker {
  font-size: .875rem;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #e6e6e6 70%);
}
.c-flex .card .price {
  font-size: .875rem;
  line-height: 1.5;
  color: #666;
  display: block;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .sec_lineup {
    flex-direction: column;
  }
  .sec_lineup .left {
    display: contents;
    width: 100%;
  }

  .c-flex.col-3.list > .item {
    width: calc(100% / 2);
  }
  .c-flex.list > .item:not(:nth-child(2n)) {
    margin-right: 1px;
    width: calc((100% / 2) - 1px);
  }
  .c-flex.list > .item:nth-child(n+3) {
    margin-top: 1px;
  }
  .c-flex.list > .item:before,
  .c-flex.list > .item:nth-of-type(2n):after,
  .c-flex.list > .item:last-child:after {
    content: '';
    display: block;
    background-image: url('/stationery/campus_brand/cmn/img//ico_dot.svg'), url('/stationery/campus_brand/cmn/img//ico_dot.svg');
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 6px 6px;
    width: 6px;
    height: calc( 100% + 6px );
    position: absolute;
    top: -3px;
  }
  .c-flex.list > .item:nth-child(n+3):before,
  .c-flex.list > .item:nth-of-type(n+6):after,
  .c-flex.list > .item:last-child:after {
    height: calc(100% + 7px);
    top: -4px;
  }
  .c-flex.list > .item:before {
    left: -3px;
  }
  .c-flex.list > .item:nth-of-type(2n):after {
    right: -3px;
  }
  .c-flex.list > .item:not(:nth-child(2n)):last-child:after {
    right: -4px;
  }

  .c-flex .card span.label,
  .c-flex .card span.thum {
    padding: 20px;
  }
  .c-flex .card span.label + span.thum {
    padding: 0 20px;
  }
  .c-flex .card span.link {
    padding: 20px 0;
    margin: 0 20px;
  }
  .c-flex .card a.link {
    padding: 20px;
  }
  .sec_lineup .c-flex.list + .c-head {
    margin-top: 40px;
  }
  .sec_lineup .c-flex.col-4 span.thum {
    padding: 8px 0px;
  }
  .sec_lineup .c-flex.col-4 {
    gap: 32px 0;
  }
}

/* table */
.sec_lineup .table_title {
	font-size: 0.875rem;
	text-align: center;
	margin-bottom: 5px;
}
.sec_lineup .table {
	width: 100%;
	margin: 40px auto 0;
	text-align: center;
}
.sec_lineup .table table {
	width: 100%;
}
.sec_lineup .table table th {
	width: auto;
	vertical-align: middle;
  font-size: 0.875rem;
	padding: 4px;
  background-color: #fafafa;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	border-left: 1px solid #dcdcdc;
	font-feature-settings: "palt";
}
.sec_lineup .table table td {
	vertical-align: middle;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	border-left: 1px solid #dcdcdc;
  font-size: 0.875rem;
	padding: 8px 4px;
	font-feature-settings: "palt";
}
.sec_lineup .table table th:first-child,
.sec_lineup .table table td:first-child {
	border-left: none;
}
.sec_lineup .tableBotTxt {
	margin: 5px auto 0 auto;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
	.sec_lineup .table {
		overflow-y: hidden;
		overflow-x: scroll;
		width: 100%;
		box-sizing: border-box;
	}
	.sec_lineup .table table {
    width: auto;
  }
  .sec_lineup .table table th,
  .sec_lineup .table table td {
    white-space: nowrap;
  }
}

.sec_lineup .table table td[class$="itemColor_"] > span,
.sec_lineup .table table td[class*="itemColor_"] > span {
  display: block;
  text-align: left;
}
.sec_lineup .table table td[class$="itemColor_"] > span:before,
.sec_lineup .table table td[class*="itemColor_"] > span:before {
  content: '';
  display: inline-block;
  border-radius: 20px;
  width: 18px;
  height: 18px;
  margin-right: 20px;
  vertical-align: middle;
}
.sec_lineup .table p.tableNote {
  font-size: .875rem;
}

/* Recommend
-----------------------------------*/
.sec_recommend .c-flex .card span.link {
  text-align: right;
  padding: 24px 32px;
  margin: 0;
  border: none;
}

/* Shop
-----------------------------------*/
@media screen and (max-width: 768px) {
  .sec_shop .c-flex {
    flex-direction: column;
    gap: 16px;
  }
  .sec_shop .c-flex > .item {
    width: 100%;
  }
}
/* Sustinability
-----------------------------------*/
@media screen and (max-width: 768px) {
  .sec_sustainability .c-flex {
    flex-direction: column;
    gap: 24px;
  }
}

/* Modal layout
-----------------------------------*/
@media screen and (max-height: 1000px) {
  .modaal-video-wrap {
    width: 100%;
    height: auto;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .modaal-video-wrap {
    aspect-ratio: 9 / 16;
  }
  .modaal-video-container {
    max-height: inherit;
    padding-bottom: calc(100% * (16 / 9));
  }
}
