@charset "UTF-8";
/*----------------------------------------

	index CSS

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

/*----------------------------------------
	common
-----------------------------------------*/
:root {
  --ff-open-sans: 'Open Sans Condensed Bold', arial;
  --clr-red: #660033;
}

/* tb  768 - # */
@media print, screen and (min-width:768px) {}
/* pc  1200 - # */
@media screen and (min-width:1200px) {}

body #main #contentWrap {
  width: 100%;
  /* padding-top: 50px; */
  padding-top: 0;
}
#main #content {
  /* margin-top: -55px; */
  /* padding-top: 55px; */
}
/* tb  768 - # */
@media print, screen and (min-width:768px) {
	body #main #contentWrap {
    /* padding-top: 80px; */
	}
  #main #content {
    /* margin-top: -130px; */
    /* padding-top: 130px; */
  }
	#s01>div,
  #s02>div,
  #s03>div,
  #sLinks {
		max-width: 980px;
		margin: 0 auto;
	}
}

/* font */
@font-face {
  font-family: 'Open Sans Condensed Bold';
  font-style: normal;
  font-weight: 700;
  src:
    local('Open Sans Condensed Bold'), local('OpenSansCondensed-Bold'),
    url("./font/open-sans-condensed-bold.woff") format('woff'),
    url("./font/open-sans-condensed-bold.ttf") format('truetype');
}
#main {
  font-size: 1.6rem;
  line-height: 2.0;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

/* title */
.t_anc {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-red);
}
.t_anc>.t_dots {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 3px;
  background-color: var(--clr-red);
}
.num {
  font-family: var(--ff-open-sans);
}
/* tb  768 - # */
@media print, screen and (min-width:768px) {
  .t_anc {
    margin-bottom: 30px;
  }
}

/* anime */
.fadeIn {
		opacity: 0;
		-webkit-filter: blur(4px);
		        filter: blur(4px);
		-webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
		transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadeIn.on {
		opacity: 1;
		-webkit-filter: blur(0px);
		        filter: blur(0px);
}

.slideUp {
		opacity: 0;
		-webkit-transform: translateY(100px);
		        transform: translateY(100px);
		-webkit-transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
		transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.slideUp.on {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
}

.child {
		opacity: 0;
		-webkit-transform: translateY(100px);
		        transform: translateY(100px);
		-webkit-transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
		transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.child.on {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
}

/*----------------------------------------
	mv
-----------------------------------------*/
@keyframes mv-timer {
  0% {width: 0%;}
  100% {width: 100%;}
}
#main #mv {
  margin-bottom: 0;
}
#main #mv .slick-slide {
  font-size: 0;
}
#main #mv .slick-dots {
  display: flex;
}
#main #mv .slick-dots > li {
  flex: 1;
}
#main #mv .slick-dots > li button {
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
  padding: 0;
  border: none;
  background: #222;
  font-size: 0;
  transition: background 0.2s;
}
#main #mv .slick-dots > li button:hover {
  background-color: #666
}
#main #mv .slick-dots > li button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #B3015A;
}
#main #mv .slick-dots > li.slick-active button {
  background-color: #666
}
#main #mv .slick-dots > li.slick-active button::before {
  width: 100%;
  animation: mv-timer 5s linear;
}
#main #mv .mv__slide:not(.slick-initialized) .mv__slide-item:nth-child(n+2) {
  display: none;
}
/* tb 768px - # */
@media print, screen and (min-width:768px) {
}

/*----------------------------------------
	cm
-----------------------------------------*/
.cm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 8px 0;
  /* margin: 0 0 50px; */
  padding: 20px 10px;
  background: #000;
}
.cm__ttl {
  width: 100%;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
}
.cm__ttl::before {
  content: '';
  vertical-align: super;
  margin-right: 10px;
  padding: 10px 16px 10px 0;
  background: url(../img/cm_icon01.svg) center center / contain no-repeat;
  font-size: 0;
}
.cm__list {
  display: grid;
  grid-gap: 2px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.cm__item {
  padding: 10px;
  background: #333;
}
.cm__item-img {
  position: relative;
  margin-bottom: 5px;
}
.cm__item-img::before {
  content: '';
  display: block;
  padding-bottom: 74%;
}
.cm__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cm__item-txt dt {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
}
.cm__item-txt dd {
  display: grid;
  grid-gap: 2px;
}
.cm__item-txt dd button {
  padding: 14px 0;
  border: none;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
}
.cm__item-txt dd button::before {
  content: '';
  vertical-align: middle;
  margin-right: 6px;
  padding: 3px 6px 3px 0;
  background: rgba(255,255,255,0.4);
  font-size: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media print, screen and (min-width:768px) {
  .cm {
    grid-gap: 10px 40px;
    align-items: center;
    /* margin: 0 0 130px; */
  }
  .cm__ttl {
    width: auto;
    font-size: 2.4rem;
  }
  .cm__list {
    width: auto;
  }
  .cm__item {
    display: flex;
    grid-gap: 10px;
    width: 316px;
  }
  .cm__item-img {
    width: 10%;
    width: 100px;
    margin-bottom: 0;
  }
  .cm__item-txt {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .cm__item-txt dt {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .cm__item-txt dd {
    display: flex;
    grid-gap: 4px;
  }
  .cm__item-txt dd button {
    flex: 1;
    padding: 10px 0;
    font-size: 1.4rem;
    transition: background 0.2s;
  }
  .cm__item-txt dd button:hover {
    background-color: #660032;
  }
}


.topics {
  display: grid;
  grid-gap: 8px;
  padding: 20px 10px;
  background: #E0CCD6;
}
.topics__ttl {
  color: #603;
  font-size: 2.2rem;
  text-align: center;
}
.topics__ttl::before {
  content: '';
  vertical-align: super;
  margin-right: 10px;
  padding: 10px 16px 10px 0;
  background: url(../img/topics_icon01.svg) center center / contain no-repeat;
  font-size: 0;
}
.topics__list {
  display: grid;
  grid-gap: 1px;
}
.topics__list-item {
  display: grid;
  grid-gap: 8px 0;
  padding: 12px 15px;
  background-color: #fff
}
.topics__list-item .__txt {
  font-size: 1.3rem;
  line-height: 1.5
}
.topics__list-item .__btn a {
  display: block;
  padding: 10px 0;
  background-color: #603;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
}
.topics__list-item .__btn a::before {
  content: '';
  vertical-align: middle;
  margin-right: 6px;
  padding: 3px 6px 3px 0;
  background: rgba(255,255,255,0.4);
  font-size: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media print, screen and (min-width:768px) {
  .topics {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .topics__ttl {
    font-size: 2.4rem;
  }
  .topics__ttl::before {
    padding: 12.5px 25px 12.5px 0;
    background-size: 69% auto;
  }
  .topics__list {
    flex: 1;
    max-width: 1020px;
  }
  .topics__list-item {
    grid-gap: 10px 0;
    padding: 20px 30px;
  }
  .topics__list-item .__txt {
    font-size: 1.5rem;
    line-height: 2;
  }
  .topics__list-item .__btn a {
    font-size: 1.4rem;
    transition: background 0.2s;
  }
  .topics__list-item .__btn a:hover {
    background: #000;
  }
}

/*----------------------------------------
	s01
-----------------------------------------*/
#s01 {
	margin-bottom: 100px;
  padding: 0 10px;
}
.c_grid_box+.c_grid_box {
  margin-top: 60px;
}
.c_grid_box__tit {
  margin-bottom: 20px;
}
.c_grid_box__tit h3 {
  font-size: 5.2rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
.c_grid_box__tit h4 {
  font-size: 3.0rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
.c_grid_box__txt {
  margin-bottom: 30px;
}
.c_grid_box__link {
  display: flex;
  justify-content: flex-end;
  margin: 25px 0 0;
  font-size: 1.4rem;
}
.c_grid_box__link a {
  color: #660032;
  font-weight: 700;
  text-decoration: none !important;
}
.c_grid_box__link .t_arrow {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: calc(1.5em * 0.5);
  z-index: 2;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  border-radius: 20px;
  transform: translateY(-50%);
  border: 1px solid #660032;
}
.c_grid_box__link .t_arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c_grid_box__link .t_arrow span::before,
.c_grid_box__link .t_arrow span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #660032;
}
.c_grid_box__link .t_arrow span::before {
  width: 18px;
  height: 1px;
}
.c_grid_box__link .t_arrow span::after {
  width: 8px;
  height: 1px;
  transform-origin: right center;
  transform: translateX(5px) rotate(45deg);
}
/* tb 768px - # */
@media print, screen and (min-width:768px) {
	#s01 {
		margin-bottom: 100px;
		padding: 0;
	}
  .c_grid_box {
    display: grid;
  }
  .c_grid_box+.c_grid_box {
    margin-top: 100px;
  }
  .c_grid_box>* {
    position: relative;
  }
  .c_grid_box__tit {
    margin-bottom: 0;
  }
  .c_grid_box__tit h3 {
    font-size: 10.0rem;
    line-height: 1.2;
    letter-spacing: 0.25em;
  }
  .c_grid_box__tit h4 {
    font-size: 5.6rem;
    line-height: 1.2;
    letter-spacing: 0.25em;
  }
  .c_grid_box__txt {
    margin-bottom: 0;
  }
  .c_grid_box__link {
    margin-top: 40px;
  }
  .c_grid_box__link .t_arrow {
    margin-left: 20px;
  }
  .c_grid_box__link .t_arrow::after {
    content: "";
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 1px solid #660032;
    border-radius: 50%;
    transform-origin: center center;
  }
  .c_grid_box__link a:hover .t_arrow::after {
    opacity: 0;
    transition: all 0.4s ease-out;
    transform: scale(1.5);
  }
  /* c01 */
  .c_grid_box.c01 {
    gap: 60px 80px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 380px;
  }
  .c_grid_box.c01 .c_grid_box__tit {
    z-index: 2;
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .c_grid_box.c01 .c_grid_box__txt {
    z-index: 1;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    align-self: flex-end;
    padding: 0 0 2em 0;
  }
  .c_grid_box.c01 .c_grid_box__pic {
    z-index: 1;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    margin-top: -110px;
  }
  /* c02 */
  .c_grid_box.c02 {
    gap: 60px 80px;
    grid-template-rows: auto;
    grid-template-columns: 380px 1fr;
  }
  .c_grid_box.c02 .c_grid_box__tit {
    z-index: 2;
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .c_grid_box.c02 .c_grid_box__txt {
    z-index: 1;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-self: center;
    padding: 0 0 3em 0;
  }
  .c_grid_box.c02 .c_grid_box__pic {
    z-index: 1;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    margin-top: -85px;
  }
}

/*----------------------------------------
	news
-----------------------------------------*/
#main #news {
	position: relative;
	margin: 0 0 55px;
	padding: 60px 0 30px;
}
#main #news .inner {
	padding: 0 2.6666vw;
}
#main #news ._head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 20px;
}
#main #news ._head-ttl {
	font-size: 4.0rem;
	line-height: 1;
}
#main #news ._body ul li a {
	display: block;
	margin: 0 0 2px;
	padding: 25px 5.6% 15px;
	background: #fff;
	line-height: 1.5;
	text-decoration: none !important;
}
#main #news ._body ul li a > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 10px;
}
#main #news ._body ul li a .time {
	margin-right: 15px;
	font-size: 1.4rem;
}
#main #news ._body ul li a [class^="cat_"] {
	width: 90px;
	padding: 2px 5px;
	background: #ddd;
	color: #fff;
	text-align: center;
}
#main #news ._body ul li a[href$=".pdf"] > p:after {
	content: '';
	margin-left: 6px;
	padding: 5px 0;
	padding-left: 18px;
	background: url("/cmn/img/pdf2.png") 0 center / contain no-repeat;
}
#main #news ._body ul li a .cat_ir {
	background-color: #659835;
}
#main #news ._body ul li a .cat_notice {
	background-color: #2780cc;
}
#main #news ._body ul li a p {
	font-size: 1.6rem;
	line-height: 1.9;
}
/* tb  768 - # */
@media print, screen and (min-width:768px) {
	#main #news {
		margin-bottom: 95px;
		padding: 80px 0;
	}
	#main #news .inner {
		display: flex;
		flex-wrap: wrap;
		padding: 0;
	}
	#main #news .t_anc {
		width: 100%;
	}
	#main #news ._head {
		display: block;
		width: 220px;
	}
	#main #news ._head-ttl {
		margin-bottom: 50px;
		font-size: 5.0rem;
	}
	#main #news ._head .c_btn01 a {
		width: 170px;
		height: 50px;
		margin-left: 0;
	}
	#main #news ._body {
		flex: 1;
	}
	#main #news ._body ul li a {
		display: flex;
		align-items: flex-start;
		padding: 35px 30px 30px;
		transition: background 0.2s, color 0.2s;
	}
	#main #news ._body ul li a:hover {
		background-color: #660033;
		color: #fff;
	}
	#main #news ._body ul li a > div {
		margin-bottom: 0;
		margin-right: 20px;
	}
	#main #news ._body ul li a p {
		flex: 1;
		margin-top: -0.2em;
	}
}

/*----------------------------------------
	s02
-----------------------------------------*/
#s02 {
	margin-bottom: 60px;
  padding: 0 10px;
}
.c_read_box {

}
.c_read_box:not(.c01) {
  margin-top: 50px;
}
.c_read_box__head {
  height: 180px;
  margin-bottom: 50px;
}
.c_read_box__head>div {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-color: #B0B0B0;
}
.c_read_box__head>div p {
  position: absolute;
  left: 0;
  bottom: -5.0rem;
  font-size: 10.0rem;
  line-height: 10.0rem;
  color: var(--clr-red);
}
.c_readbox__txts {
  margin-left: 0;
}
.c_readbox__txts>div {

}
.c_readbox__txts>div h4 {
  font-size: 3.0rem;
  /* letter-spacing: 0.25em; */
}
.c_readbox__txts>div p {
  margin-top: 10px;
}
.c_readbox__txts>div h4 a {
  text-decoration: none !important;
}
.c_readbox__txts>div h4 .t_arrow {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: calc(1.5em * 0.5);
  z-index: 2;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  border-radius: 20px;
  transform: translateY(-50%);
  border: 1px solid #660032;
}
.c_readbox__txts>div h4 .t_arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c_readbox__txts>div h4 .t_arrow span::before,
.c_readbox__txts>div h4 .t_arrow span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #660032;
}
.c_readbox__txts>div h4 .t_arrow span::before {
  width: 18px;
  height: 1px;
}
.c_readbox__txts>div h4 .t_arrow span::after {
  width: 8px;
  height: 1px;
  transform-origin: right center;
  transform: translateX(5px) rotate(45deg);
}
/* c01 */
.c_read_box.c01 .c_read_box__head>div {
  background-image: url("../img/s02_head1.webp");
  background-size: 170% auto;
  background-position: 23% 100%;
}
/* c02 */
.c_read_box.c02 .c_read_box__head>div {
  background-image: url("../img/s02_head2.webp");
  background-size: 100% auto;
  background-position: 0% 0%;
}
/* c03 */
.c_read_box.c03 .c_read_box__head>div {
  background-image: url("../img/s02_head3.jpg");
  background-size: 100% auto;
  background-position: 50% 50%;
}
/* tb 768px - # */
@media print, screen and (min-width:768px) {
  .c_readbox__txts>div h4 .t_arrow {
    margin-left: 20px;
  }
  .c_readbox__txts>div h4 .t_arrow::after {
    content: "";
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 1px solid #660032;
    border-radius: 50%;
    transform-origin: center center;
  }
  .c_readbox__txts>div h4 a:hover .t_arrow::after {
    opacity: 0;
    transition: all 0.4s ease-out;
    transform: scale(1.5);
  }
}
/* tb 768px - # */
@media print, screen and (min-width:768px) {
	#s02 {
		margin-bottom: 120px;
    padding: 0;
	}
  .c_read_box:not(.c01) {
    margin-top: 60px;
  }
  .c_read_box__head {
    height: 220px;
  }
  .c_read_box__head>div p {
    left: 35px;
    bottom: -6.0rem;
    font-size: 12.0rem;
    line-height: 12.0rem;
  }
  .c_readbox__txts {
    margin-left: 170px;
  }
  .c_readbox__txts>div h4 {
    font-size: 4.0rem;
  }
  .c_readbox__txts>div p {
    margin-top: 20px;
  }
  /* c01 */
  .c_read_box.c01 .c_read_box__head>div {
    background-size: 100% auto;
    background-position: 50% 100%;
  }
  /* c02 */
  .c_read_box.c02 .c_read_box__head>div {
    background-size: 110% auto;
    background-position: 100% 70%;
  }
  /* c03 */
  .c_read_box.c03 .c_read_box__head>div {
    background-size: 100% auto;
    background-position: 50% 50%;
  }
}

/*----------------------------------------
	s03
-----------------------------------------*/
#s03 {
	margin-bottom: 60px;
  padding: 50px 10px 60px;
  background: url("../img/s03_bg1.webp") repeat;
}
#s03 .t_anc {
  color: #fff;
}
#s03 .t_anc>.t_dots {
  background-color: #fff;
}
.c_panel_box {
  
}
.c_panel_box>div {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: calc(50% - 1px) calc(50% - 1px);
  gap: 2px;
}
.panel {
  background-color: #fff;
}
.panel__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.panel__tit {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
.panel__main {
  line-height: 1;
  color: var(--clr-red);
  font-weight: 700;
}
.panel__main p {
  
}
.panel__main p .num {
  font-size: 7.0rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.panel__main p .txt {
  font-size: 2.6rem;
}
.panel__main p .txt.first {
  margin-right: -10px;
}
.panel__main p .txt.last {
  position: relative;
  margin-left: 5px;
}
.panel__main p .txt.last::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.panel__sub {
  color: var(--clr-red);
}
.panel__sub p {
  font-size: 1.0rem;
}
.panel.c01 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.panel.c01 .panel__main p .txt.last {
  margin-left: -5px;
  padding-right: 10px;
}
.panel.c01 .last::after {
  bottom: 100%;
  left: 6px;
  width: 34px;
  height: 30px;
  background-image: url("../img/SVG/ico-money.svg");
}
.panel.c02 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.panel.c02 .last::after {
  bottom: 100%;
  left: 0px;
  width: 34px;
  height: 30px;
  background-image: url("../img/SVG/ico-money.svg");
}
.panel.c03 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.panel.c03 .last::after {
  bottom: 100%;
  left: -4px;
  width: 39px;
  height: 22px;
  background-image: url("../img/SVG/ico-flag.svg");
}
.panel.c04 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.panel.c04 .first {
  display: block;
  margin: 10px 0 -6px 6px;
}
.panel.c04 .last::after {
  bottom: 100%;
  left: 13px;
  width: 27px;
  height: 25px;
  background-image: url("../img/SVG/ico-plant.svg");
}
.panel.c05 {
  grid-row: 3 / 5;
  grid-column: 1 / 2;
  width: calc(100% + 20px);
}
.panel.c05 .panel__inner {
  height: 100%;
}
.panel.c05 .panel__main p .txt.first {
  margin-right: 0;
  writing-mode: vertical-lr;
}
.panel.c05 .panel__main p .txt.last {
  margin-left: 0;
}
.panel.c05 .last::after {
  bottom: 100%;
  left: 7px;
  width: 12px;
  height: 30px;
  background-image: url("../img/SVG/ico-human.svg");
}
.panel.c06 {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
  width: calc(100% - 20px);
  margin-left: auto;
}
.panel.c06 .panel__inner {
  padding: 30px 0;
}
.panel.c06 .last::after {
  bottom: 100%;
  left: 4px;
  width: 33px;
  height: 15px;
  background-image: url("../img/SVG/ico-kouzai.svg");
}
.panel.c07 {
  grid-row: 4 / 5;
  grid-column: 2 / 3;
  width: calc(100% - 20px);
  margin-left: auto;
}
.panel.c07 .panel__inner {
  padding: 30px 0;
}
.panel.c07 .last::after {
  bottom: 100%;
  left: 0;
  width: 25px;
  height: 24px;
  background-image: url("../img/SVG/ico-recycling.svg");
}
.panel.c08 {
  grid-row: 5 / 6;
  grid-column: 1 / 2;
}
.panel.c08 .last::after {
  bottom: 100%;
  left: 0;
  width: 31px;
  height: 27px;
  background-image: url("../img/SVG/ico-flower.svg");
}
.panel.c09 {
  grid-row: 5 / 6;
  grid-column: 2 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.panel.c09 .panel__inner {
  justify-content: flex-end;
}
.panel.c09 .panel__main p .txt.first {
  margin-bottom: 5px;
  margin-right: 5px;
  font-size: 1.6rem;
  writing-mode: vertical-lr;
}
.panel.c09 .panel__main p .num .dot {
  font-size: 4.0rem;
}
.panel.c09 .last::after {
  bottom: 100%;
  left: 4px;
  width: 13px;
  height: 26px;
  background-image: url("../img/SVG/ico-milk.svg");
}
/* tb 768px - # */
@media print, screen and (min-width:768px) {
	#s03 {
		margin-bottom: 110px;
		padding: 100px 0 120px;
	}
  .panel__inner {
    padding: 60px 0;
  }
  .panel__tit {
    font-size: 2.0rem;
  }
  .panel__main {
    line-height: 1;
  }
  .panel__main p .num {
    font-size: 12.0rem;
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .panel__main p .txt {
    font-size: 5.0rem;
  }
  .panel__main p .txt.first {
    margin-right: -10px;
  }
  .panel__main p .txt.last {
    margin-left: 5px;
  }
  .panel__sub p {
    font-size: 1.3rem;
  }
  .panel.c01 .panel__main p .txt.last {
    margin-left: 5px;
    padding-right: 0;
  }
  .panel.c01 .panel__main p .txt.last::after {
    position: initial;
    display: inline-block;
    width: 58px;
    height: 50px;
    margin-left: 5px;
    margin-bottom: -5px;
  }
  .panel.c02 .panel__main p .txt.last::after {
    position: initial;
    display: inline-block;
    width: 58px;
    height: 50px;
    margin-left: 5px;
    margin-bottom: -5px;
  }
  .panel.c03 .last::after {
    width: 65px;
    height: 36px;
  }
  .panel.c04 .first {
    display: inline;
    margin: 0 -10px 0 0;
  }
  .panel.c04 .last::after {
    left: 30px;
    width: 45px;
    height: 42px;
  }
  .panel.c05 {
    width: calc(100% + 80px);
  }
  .panel.c05 .panel__main {
    text-align: center;
  }
  .panel.c05 .panel__main p .txt.first {
    margin-right: -8px;
    writing-mode: horizontal-tb;
  }
  .panel.c05 .panel__main p .txt.last {
    margin-left: 5px;
  }
  .panel.c05 .panel__main p .txt.last[data-pcint="3"]::after {
    position: initial;
    display: inline-block;
    width: 59px;
    height: 48px;
    margin-left: 5px;
    margin-bottom: -5px;
    background-repeat: space no-repeat;
    background-size: 17px 48px;
  }
  .panel.c05 .panel__main p .txt.last[data-pcint="2"]::after {
    position: initial;
    display: inline-block;
    width: 38px;
    height: 48px;
    margin-left: 5px;
    margin-bottom: -5px;
    background-repeat: space no-repeat;
    background-size: 17px 48px;
  }
  .panel.c06 {
    width: calc(100% - 80px);
  }
  .panel.c06 .last::after {
    left: 6px;
    width: 60px;
    height: 28px;
  }
  .panel.c07 {
    width: calc(100% - 80px);
  }
  .panel.c07 .last::after {
    left: 3px;
    width: 40px;
    height: 39px;
  }
  .panel.c08 {
    width: calc(100% - 80px);
  }
  .panel.c08 .last::after {
    width: 52px;
    height: 45px;
  }
  .panel.c09 {
    display: block;
    width: calc(100% + 80px);
    margin-left: -80px;
  }
  .panel.c09 .panel__tit {
    margin-bottom: 10px;
  }
  .panel.c09 .last::after {
    left: 12px;
    width: 20px;
    height: 42px;
  }
  .panel.c09 .panel__main {
    display: flex;
  }
  .panel.c09 .panel__main p {
    margin: 0 15px;
  }
  .panel.c09 .panel__main p .txt.first {
    display: block;
    margin: 0 0 -5px;
    font-size: 2.4rem;
    text-align: center;
    writing-mode: initial;
  }
  .panel.c09 .panel__main p .num .dot {
    font-size: 8.0rem;
  }
}

/*----------------------------------------
	sLinks
-----------------------------------------*/
#sLinks {
	margin-bottom: 80px;
}
#sLinks ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
#sLinks ul li {
  width: 100%;
  background-color: #ccc;
  background-repeat: no-repeat;
}
#sLinks ul li.sustainability {
  background-image: url("../img/btm_bg_sustainability.webp");
  background-size: 280% auto;
  background-position: 46% 67%;
}
#sLinks ul li.sustainability .sLinks__inner::after  {
  background-color: rgba(0,0,0,0.4);
}
#sLinks ul li.history {
  background-image: url("../img/btm_bg_history.webp");
  background-size: 150% auto;
  background-position: 59% 49%;
}
#sLinks ul li.history .sLinks__inner::after  {
  background-color: rgba(0,0,0,0.5);
}
#sLinks ul li a {
  display: block;
}
#main #content #sLinks ul li a:link,
#main #content #sLinks ul li a:visited {
  text-decoration: none;
}
.sLinks__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0 30px;
}
.sLinks__inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sLinks__inner h6 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.sLinks__inner h6 span {
  display: block;
}
.sLinks__inner h6 .t_en {
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.sLinks__inner h6 .t_ja {
  margin-top: 10px;
  font-size: 1.3rem;
}
.sLinks__inner .t_arrow {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid #fff;
}
.sLinks__inner .t_arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.sLinks__inner .t_arrow span::before,
.sLinks__inner .t_arrow span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
}
.sLinks__inner .t_arrow span::before {
  width: 18px;
  height: 1px;
}
.sLinks__inner .t_arrow span::after {
  width: 8px;
  height: 1px;
  transform-origin: right center;
  transform: translateX(5px) rotate(45deg);
}
/* tb 768px - # */
@media print, screen and (min-width:768px) {
	#sLinks {
		margin-bottom: 0;
	}
  #sLinks ul {
    flex-direction: row;
    gap: 2px;
  }
  #sLinks ul li {
    width: calc(50% - 1px);
  }
  #sLinks ul li.sustainability {
    background-size: 240% auto;
    background-position: 46% 83%;
  }
  #sLinks ul li.history {
    background-size: 150% auto;
    background-position: 59% 56%;
  }
  .sLinks__inner {
    padding: 150px 0 130px;
  }
  .sLinks__inner::after {
    transition: background-color 0.2s ease-out;
  }
  #sLinks ul li a:hover .sLinks__inner::after {
    background-color: rgba(0,0,0,0.7);
  }
  .sLinks__inner .t_arrow::after {
    content: "";
    position: absolute;
    display: block;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 1px solid #fff;
    border-radius: 50%;
    transform-origin: center center;
  }
  #sLinks ul li a:hover .sLinks__inner .t_arrow::after {
    opacity: 0;
    transition: all 0.4s ease-out;
    transform: scale(1.5);
  }
}

@keyframes ytModal-open {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes ytModal-close {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.ytModal {
  overflow: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  animation-name: ytModal-close;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.ytModal::-webkit-scrollbar {
	display:none;
}
.ytModal.open {
  animation-name: ytModal-open;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.ytModal__overlay {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.ytModal__scroll {
  display: table-cell;
  vertical-align: middle;
}
.ytModal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84%;
  height: 100%;
  margin: 0 auto;
  padding: 62px 0;
}
.ytModal__player {
  position: relative;
  width: 100%;
}
.ytModal__player::before {
  content: '';
  display: block;
  padding-bottom: 56.3%;
}
.ytModal__close {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #444;
  border: none;
  color: transparent;
}
.ytModal__close::before,
.ytModal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  box-sizing: border-box;
}
.ytModal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ytModal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#ytPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width:768px) {
  .ytModal__inner {
    max-width: 1138px;
    padding: 86px 0;
  }
  .ytModal__close {
    width: 56px;
    height: 56px;
  }
  .ytModal__close::before,
  .ytModal__close::after {
    width: 20px;
    height: 2px;
  }
}
