@charset "UTF-8";
/*======*/
/* 共通 */
/*======*/
html {
  --paddingWrap: 5.3vw;
  --paddingWrap-negative: calc(var(--paddingWrap) * -1.1);
}

@media screen and (min-width: 768px) {
  html {
    --paddingWrap: 24px;
  }
}

/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  header {
    height: 0;
    padding: 0;
  }
}

.fnt-inter{
	font-family: "Inter", sans-serif;
	font-weight: 400;
}
.fnt-inter-m{
	font-family: "Inter", sans-serif;
	font-weight: 500;
}

.conteiner section {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.conteiner .section-type2 {
  padding: 15vw 0 15vw;
}
.slick-prev, .slick-next{
	width: 14px;
	height: 21px;
	background-repeat: no-repeat;
	background-size: 100%;
	top: 35%;
}
.slick-prev{
	background-image: url('../../../img/texcyluxe/2026/com_bt01.png');
	left: 7px;
}
.slick-next{
	background-image: url('../../../img/texcyluxe/2026/com_bt02.png');
	right: 7px;
}
.slick-prev:before, .slick-next:before{
	display: none;
}
@media screen and (min-width: 768px) {
  .conteiner section {
  }
  .conteiner .section-type2 {
    padding: 190px 0 190px;
  }
	.slick-prev, .slick-next{
		top: 35%;
	}
	.slick-prev{
		left: -10px;
	}
	.slick-next{
		right: -10px;
	}
}
@media screen and (min-width: 1180px){
	.slick-prev{
		left: -30px;
	}
	.slick-next{
		right: -30px;
	}
}

.contents {
  padding: 0 var(--paddingWrap);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .contents {
    max-width: 1205px;
    margin: 0 auto;
  }
}

/* アニメーション
------------------------------ */
.animated {
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*=========*/
/* ヘッダー */
/*=========*/
/* header
------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  margin: 0 auto;
  padding: 16px 24px;
  background: #FFF;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav .l-list,
header nav .r-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav .l-list li:not(:last-child) {
  position: relative;
  margin-right: 28px;
  padding-right: 28px;
}

header nav .l-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: #000;
}

header nav .l-list li:nth-of-type(2) {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0em;
  white-space: nowrap;
}

header nav .r-list li:not(:last-child) {
  margin-right: 22px;
}

header nav .r-list li:nth-of-type(2) {
  max-width: 80px;
}

@media screen and (max-width: 767px) {
  header {
    padding: 2.66vw;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
  }
  header nav .l-list {
    width: 66.28vw;
  }
  header nav .l-list li:not(:last-child) {
    margin-right: 3vw;
    padding-right: 3vw;
  }
  header nav .l-list li:not(:last-child)::before {
    height: 6vw;
  }
  header nav .l-list li:nth-of-type(1) img {
    width: auto;
    max-width: none;
    height: 6vw;
  }
  header nav .l-list li:nth-of-type(2) {
    font-size: 12px;
    line-height: 1.5;
  }
  header nav .r-list {
    width: 21.56vw;
  }
  header nav .r-list li:not(:last-child) {
    margin-right: 2.4vw;
  }
  header nav .r-list li:nth-of-type(1) img {
    height: 5.33vw;
  }
  header nav .r-list li:nth-of-type(2) {
    max-width: 100%;
  }
  header nav .r-list li:nth-of-type(2) img {
    height: 6.66vw;
  }
}

/* リンクボタン
-----------------------------------*/
a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* フッター
-----------------------------------*/
footer {
  padding: 13vw 0 6vw;
  text-align: center;
  color: #BA0C2F;
}

footer .contents {
  padding: 0 5%;
}

footer .txt {
  font-size: 28px;
  font-weight: 600;
}

footer .btn-link {
  margin-top: 10px;
  text-align: center;
}

.btn-footer {
  color: #BA0C2F;
  position: relative;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
}

footer .copyright {
  margin-top: 10vw;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 69px 0 50px;
  }
  footer .btn-link {
    margin-top: 1px;
    text-align: center;
  }
  footer .copyright {
    margin-top: 16px;
    font-size: 10px;
  }
  .btn-footer,
  .ptop {
    transition: all 0.3s ease;
  }
  .btn-footer:hover,
  .ptop:hover {
    opacity: 0.7;
  }
  .btn-footer i {
    transition: all 0.3s ease;
    display: inline-block;
  }
  .btn-footer:hover i {
    transform: translateX(5px);
  }
  .ptop i {
    transition: all 0.3s ease;
    display: inline-block;
  }
  .ptop:hover i {
    transform: translateX(-5px);
  }
}

.ptop {
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 6px;
  z-index: 9;
}

.top-btn-w .ptop .btn-style-3 {
  color: #BA0C2F;
}

.top-btn-w.top-btn-w1 .ptop .btn-style-3 {
  color: #BA0C2F;
}

.ptop .btn-style-3 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #BA0C2F;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
}

.ptop .btn-style-1::before {
  -webkit-transform: translate(-60%, -2px) scaleX(-1);
  transform: translate(-60%, -2px) scaleX(-1);
  left: 0;
  right: auto;
}

hr.section-line {
  width: auto;
  max-width: 1440px;
  margin: 0 7%;
  background: none;
  border: 0;
  border-top: 1px solid #BA0C2F;
}

.btn-style-1 {
  display: inline-block;
  padding: 7px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 100%;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333333;
  position: relative;
  z-index: 0;
}

.btn-style-1::before {
  content: "";
  width: 18px;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.396 8.935'%3E%3Cpath id='Path_911' data-name='Path 911' d='M0,0V27.35L8.12,20.8' transform='translate(0 8.435) rotate(-90)' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E") 50% 45%/contain no-repeat;
  -webkit-transform: translateX(55%);
  transform: translateX(55%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.btn-style-1:hover {
  background: #333333;
  text-decoration: none;
  color: #fff;
}

.ttl-style-1 {
  font-weight: 600;
  letter-spacing: 0;
}

.ttl-style-1 > span {
  display: block;
}

.ttl-style-1 .txt1 {
  font-size: 12px;
  font-weight: 400;
}

.ttl-style-1 .txt2 {
  font-size: 28px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .ttl-style-1 .txt1,
  .ttl-style-1 .txt2 {
    line-height: 32px;
  }
  .ttl-style-1 .txt1 {
    letter-spacing: 0.03em;
  }
  .ttl-style-1 .txt2 {
    letter-spacing: 0.04em;
  }
}

dl.item-detail-style-1 {
  margin-bottom: 8px;
}

dl.item-detail-style-1 dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  line-height: 18px;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

dl.item-detail-style-1 dd {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 1px;
}

.btn-buy {
  position: relative;
}

.btn-buy a {
  background: #BA0C2F;
  color: #FFF;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  width: 34px;
  box-sizing: border-box;
  padding: 0;
  display: block;
}

.btn-buy span {
  color: #BA0C2F;
  background: #FFF;
  line-height: 18px;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  background-origin: padding-box;
  bottom: 0;
  opacity: 0;
}

.btn-buy.is a {
  background: #FFF;
  color: #BA0C2F;
}

.btn-buy.is span {
  color: #FFF;
  background: #BA0C2F;
}

.btn-buy:hover span {
  opacity: 1;
}

.btn-buy:hover a {
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  dl.item-detail-style-1 dt .btn {
    margin-left: 12px;
  }
  dl.item-detail-style-1 dd {
    margin-top: 2px;
    font-size: 12px;
  }
}

.section-style-1 .imgbox-01 {
  margin: 5vw 0 15vw;
}

.section-style-1 .block{
	width: 66.4vw;
	margin: 9.3vw auto 0;
}

.section-style-1 .txtbox {
  margin: 20px 0 0;
}

@media screen and (min-width: 768px) {
  .section-style-1 .imgbox,
  .section-style-1 .txtbox {
    margin: 35px 0 0;
  }
  .section-style-2 .imgbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
  .section-style-2 .imgbox {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

@-webkit-keyframes logo {
  0% {
    -webkit-filter: none;
    filter: none;
  }
  100% {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

@keyframes logo {
  0% {
    -webkit-filter: none;
    filter: none;
  }
  100% {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

@-webkit-keyframes imgboxFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes imgboxFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cl-red{
	color: #BA0C2F;
}

#open {
  background: #BA0C2F;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

#open .logo {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38vw;
}

.open-out #open {
  opacity: 1;
  z-index: 999;
}

.open-out #open {
  opacity: 1;
}

.sec-main {
  padding: 0 !important;
}

.sec-main .logo {
  width: 38vw;
}

.sec-main .kv {
  position: relative;
}

.sec-main .kv .logobox,
.sec-main .kv .imgbox {
  grid-area: 1/1/1/1;
  height: 100vh;
}

.sec-main .kv .logobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec-main .kv .imgbox .img {
  width: 100%;
  height: 100%;
}

.sec-main .kv .imgbox .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .sec-main {
    height: 100lvh;
  }
  #open .logo {
    position: absolute;
    top: 50%;
		left: 207px;
		transform: translateY(-50%);
    width: 274px;
  }
  .sec-main .kv .logobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
  }
  .sec-main .logo {
    width: 274px;
  }
  .sec-main .kv {
    height: 100%;
  }
	.sec-main .kv .imgbox .img img{
		object-position: 90%;
	}
}

@media screen and (min-width: 1080px) {
	.sec-main .kv .imgbox .img img{
		object-position: 80%;
	}
}

.sec-01 {
  position: relative;
	padding: 0;
}

.sec-01 .img-left{
	height: 100vh;
}

.sec-01 .img-left img{
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: 50%;
}

.sec-01 .img-right{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	padding: 22.7vw 5.3vw;
}

.sec-01 .img-right .txt{
	font-weight: 700;
	letter-spacing: 0;
}

.sec-01 .img-right .txt small{
	display: block;
	font-size: 16px;
	line-height: 22px;
}

.sec-01 .img-right .txt .big{
	display: block;
	font-size: 30px;
	line-height: 44px;
}

.sec-01 .img-right .txt .medium{
	display: block;
	font-size: 22px;
	line-height: 28px;
}

@media screen and (min-width: 768px) {
  .sec-01 {
    height: 100vh;
		display: flex;
		align-items: center;
  }
		
	.sec-01 .img-left{
		width: 61.5%;
	}

	.sec-01 .img-right{
		width: 38.5%;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		padding: 0;
	}

	.sec-01 .img-right .img{
		max-width: 247px;
		width: 100%;
		margin: 0 auto 53px;
	}

	.sec-01 .img-right .txt{
		max-width: 247px;
		width: 100%;
		margin: 0 auto;
	}

}

.sec-02 {
  padding: 0 !important;
}

.sec-02 .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

#controlBar_bg-movie {
  display: none !important;
}

.sec-02 .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (min-width: 768px) {
  .sec-02 {
    height: calc(100vh + 45px);
  }
  .sec-02 .video {
    height: calc(100vh + 45px);
    padding: 0;
    overflow: hidden;
  }
}

.sec-03 {
  padding: 15vw 0 0 !important;
}

.sec-03 .ttl{
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
	margin-bottom: 28px;
}

.sec-03 .txt1{
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0;
	margin-bottom: 19px;
}

.sec-03 .txt2{
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .sec-03 {
		padding: 115px 0 0 !important;
	}

	.sec-03 .ttl{
		font-size: 34px;
	}

	.sec-03 .txt1{
		font-size: 15px;
		margin-bottom: 21px;
	}

	.sec-03 .txt2{
		font-size: 15px;
		line-height: 24px;
	}
}
@media screen and (min-width: 768px) and (max-width: 980px){
	.sec-03 .ttl{
		font-size: 33px;
		margin-right: -30px;
	}
}

.sec-04 .ttlbox {
  padding: 20vw 0 8.5vw;
}

.sec-04 .imgbox{
	padding: 0 28px;
}

.sec-04 .imgbox .item a {
  display: block;
  position: relative;
  transition: all 0.3s ease;
	padding-bottom: 20px;
}

.sec-04 .imgbox .item a:after{
	content: '';
	width: 0;
	height: 0;
  border-style: solid;
  border-width: 15px 9px 0px 9px;
  border-color: #000 transparent transparent transparent;
  transform: rotate(0deg) translateX(-50%);
	position: absolute;
	bottom: 0;
	left: 50%;
}

.sec-04 .imgbox .item .img {
  position: relative;
	margin-bottom: 10px;
}

.sec-04 .imgbox .item .txt {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin: 0 0 2px;
}

.sec-04 .imgbox .item .desc {
  font-weight: 500;
  font-size: 9px;
  line-height: 15px;
  position: relative;
  z-index: 1;
}

.sec-04 .imgbox .slick-slide{
	padding: 0 10px;
}
@media screen and (max-width: 767px){
	.sec-04 .imgbox .item a:hover img{
		opacity: 1 !important;
	}
}
@media screen and (min-width: 768px) {
	.sec-04{
		scroll-margin-top: 70px;
	}
	.sec-04 .ttlbox {
		padding: 115px 0 41px;
	}

	.sec-04 .imgbox{
		padding: 0 10px;
	}

	.sec-04 .imgbox .item .desc {
		font-size: 10px;
	}

	.sec-04 .imgbox .slick-slide{
		padding: 0 20px;
	}
}
@media screen and (min-width: 1180px){
	.sec-04 .imgbox{
		padding: 0;
		margin: 0 -20px;
	}
}

.section-product{
	padding-bottom: 20vw;
}

.contents.full-sp{
	padding: 0;
}

.ttl-number {
  text-align: center;
	margin-bottom: 25px;
	color: #000;
  font-size: 44px;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
  line-height: 1;
}

@media screen and (min-width: 768px) {
	.section-product{
		padding-bottom: 120px;
	}

	.contents.full-sp{
		max-width: 1440px;
	}

  .ttl-number {
    font-size: 60px;
  }
	
}

.sec-05 {
  margin: 25vw 0 0;
}
.sec-05 .row-imgbox .main-photo{
	margin-bottom: 35px;
}
.sec-05 .row-imgbox .sub-photo{
	width: 66.4vw;
	margin: 0 auto;
}
.sec-05 .row-imgbox .sub-photo .photo{
	margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .sec-05 {
    margin: 200px 0 0px;
  }
	.sec-05 .ttl-number{
		text-align: left;
	}
	.sec-05 .row-imgbox{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.sec-05 .row-imgbox .main-photo{
		max-width: 780px;
		width: 54.167%;
		margin-bottom: 0;
	}
	.sec-05 .row-imgbox .sub-photo{
		max-width: 501px;
		width: 34.79%;
	}
	.sec-05 .row-imgbox .sub-photo .photo{
		margin-bottom: 30px;
	}
}

.sec-06 .row-imgbox .main-photo{
	margin-bottom: 35px;
}
.sec-06 .row-imgbox .sub-photo{
	width: 66.4vw;
	margin: 0 auto;
}
.sec-06 .row-imgbox .sub-photo .photo{
	margin-bottom: 20px;
}
@media screen and (min-width: 768px){
	.sec-06 .contents.full-sp{
		max-width: 1205px;
		width: 100%;
		padding: 0 var(--paddingWrap);
	}
	.sec-06 .ttl-number{
		text-align: left;
	}
	.sec-06 .row-imgbox{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row-reverse;
	}
	.sec-06 .row-imgbox .main-photo{
		max-width: 708px;
		width: 54.6%;
		margin-bottom: 0px;
	}
	.sec-06 .row-imgbox .sub-photo{
		max-width: 501px;
		width: 38.66%;
		margin: 0;
	}
	.sec-06 .row-imgbox .sub-photo .photo{
		margin-bottom: 30px;
	}
}

.sec-07 .row-imgbox .photo-right{
	margin-bottom: 22px;
}
.sec-07 .txtbox,
.sec-07 .row-imgbox .photo-left{
	width: 89.3vw;
	margin: 0 auto;
}
.sec-07 .row-imgbox .photo-left{
	margin-bottom: 20px;
}
@media screen and (min-width: 768px){
	.sec-07 .contents.full-sp{
		max-width: none;
	}
	.sec-07 .ttl-number{
		max-width: 1205px;
		width: 100%;
		margin: 0 auto 25px;
		text-align: right;
		padding: 0 var(--paddingWrap);
	}
	.sec-07 .row-imgbox{
		display: flex;
		flex-direction: row-reverse;
		margin-bottom: 30px;
	}
	.sec-07 .row-imgbox .photo-right{
		width: 50%;
		margin-bottom: 0;
	}
	.sec-07 .row-imgbox .photo-left{
		width: 50%;
		margin: 0;
	}
	.sec-07 .row-imgbox img{
		width: 100%;
		height: auto;
	}
	.sec-07 .txtbox{
		max-width: 1080px;
		width: 90%;
		margin: 0 auto;
	}
}

.sec-08 .row-imgbox{
	position: relative;
}
.sec-08 .col-left .ttl-number{
	position: absolute;
	left: 20vw;
	top: 0;
}
.sec-08 .col-left .photo{
	width: 48.8vw;
	position: absolute;
	left: 0;
	top: 35.7vw;
	z-index: 1;
}
.sec-08 .col-right .photo{
	width: 48.5vw;
	margin: 0 0 41.1vw auto;
}
@media screen and (min-width: 768px){
	.sec-08 .row-imgbox{
		max-width: 1080px;
		width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}
	.sec-08 .col-left{
		max-width: 511px;
		width: 48%;
		margin-top: 140px;
	}
	.sec-08 .col-left .ttl-number{
		position: relative;
		left: auto;
		top: auto;
		text-align: left;
	}
	.sec-08 .col-left .photo{
		width: 100%;
		position: relative;
		left: auto;
		top: auto;
	}
	.sec-08 .col-right{
		max-width: 511px;
		width: 48%;
	}
	.sec-08 .col-right .photo{
		width: 100%;
		margin: 0 0 30px;
	}
}

.sec-09 .row-imgbox .main-photo{
	margin-bottom: 20px;
}
.sec-09 .row-imgbox .sub-photo{
	display: flex;
	flex-direction: column-reverse;
}
.sec-09 .row-imgbox .sub-photo .photo{
	width: 50.7vw;
	margin: 26.7vw auto 0;
}
@media screen and (min-width: 768px){
	.sec-09 .contents{
		max-width: 1296px;
	}
	.sec-09 .ttl-number{
		text-align: left;
	}
	.sec-09 .row-imgbox{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
	}
	.sec-09 .row-imgbox .main-photo{
		max-width: 720px;
		width: 58%;
		margin: 0px 0 0 30px;
	}
	.sec-09 .row-imgbox .sub-photo{
		max-width: 357px;
		width: 38%;
		flex-direction: column;
	}
	.sec-09 .row-imgbox .sub-photo .photo{
		width: 100%;
		margin: 0 0 30px;
	}
}
@media screen and (min-width: 980px){
	.sec-09 .row-imgbox .main-photo{
		margin-left: 57px;
	}
}

.sec-text{
	padding: 0 0 25vw 20px;
}
.sec-text h2{
	font-size: 27px;
	line-height: 42px;
	letter-spacing: 0;
	margin-bottom: 13px;
}
.sec-text h2 span{
	display: block;
	position: relative;
}
.sec-text h2 span:before{
	content: '';
	width: 49px;
	height: 1px;
	background: #BA0C2F;
	position: absolute;
	left: 0;
	top: 21px;
}
.sec-text .txt{
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0;
}
@media screen and (max-width: 370px){
	.sec-text{
		padding-left: 0;
	}
	.sec-text h2{
		font-size: 26px;
	}
}
@media screen and (min-width: 768px){
	.sec-text{
		padding: 80px 0 200px;
	}
	.sec-text h2{
		line-height: 44px;
		margin-bottom: 5px;
	}
	.sec-text h2 span:before{
		top: 21px;
	}
}

.sec-12 .row-imgbox,
.sec-11 .row-imgbox,
.sec-10 .row-imgbox{
	padding: 0 5.1vw;
}
.sec-12 .row-imgbox .main-photo,
.sec-11 .row-imgbox .main-photo,
.sec-10 .row-imgbox .main-photo{
	margin-bottom: 30px;
}
.sec-12 .row-imgbox .sub-photo,
.sec-11 .row-imgbox .sub-photo,
.sec-10 .row-imgbox .sub-photo{
	width: 56.3vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column-reverse;
}
.sec-12 .row-imgbox .sub-photo .photo,
.sec-11 .row-imgbox .sub-photo .photo,
.sec-10 .row-imgbox .sub-photo .photo{
	margin-bottom: 20px;
}
@media screen and (min-width: 768px){
	.sec-12 .ttl-number,
	.sec-11 .ttl-number,
	.sec-10 .ttl-number{
		text-align: left;
	}
	.sec-12 .row-imgbox,
	.sec-11 .row-imgbox,
	.sec-10 .row-imgbox{
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.sec-12 .row-imgbox .main-photo,
	.sec-11 .row-imgbox .main-photo,
	.sec-10 .row-imgbox .main-photo{
		max-width: 720px;
		width: 62.23%;
		margin-bottom: 0px;
	}
	.sec-12 .row-imgbox .sub-photo,
	.sec-11 .row-imgbox .sub-photo,
	.sec-10 .row-imgbox .sub-photo{
		max-width: 357px;
		width: 31%;
		margin: 0;
		flex-direction: column;
	}
	.sec-12 .row-imgbox .sub-photo .photo,
	.sec-11 .row-imgbox .sub-photo .photo,
	.sec-10 .row-imgbox .sub-photo .photo{
		margin: 30px 0 0;
	}
}

.sec-13 .row-imgbox{
	position: relative;
	z-index: 0;
	padding: 7.2vw 5.6vw 14.7vw;
	margin-bottom: 20px;
}
.sec-13 .row-imgbox .main-photo{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
.sec-13 .row-imgbox .main-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}
.sec-13 .row-imgbox .sub-photo{
	width: 39.5vw;
}
@media screen and (min-width: 768px){
	.sec-13 .ttl-number{
		text-align: left;
		max-width: 1205px;
		width: 100%;
		margin: 0 auto 25px;
		padding: 0 var(--paddingWrap);
	}
	.sec-13 .row-imgbox{
		padding: 139px 0 370px;
		margin-bottom: 30px;
	}
	.sec-13 .row-imgbox .sub-photo{
		max-width: 1205px;
		width: 100%;
		padding: 0 var(--paddingWrap);
		margin: 0 auto;
	}
	.sec-13 .row-imgbox .sub-photo .photo{
		width: 357px;
	}
	.sec-13 .txtbox{
		display: table;
		margin-left: auto;
	}
}

.sec-14 .row-imgbox{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 20px;
}
.sec-14 .row-imgbox p{
	width: 63.5vw;
}
.sec-14 .row-imgbox .photo1{
	position: relative;
	z-index: 1;
}
.sec-14 .row-imgbox .photo2{
	margin: 50.7vw -30vw 0 0;
}
@media screen and (max-width: 767px){
	.sec-14 .contents{
		padding: 0;
	}
	.sec-14 .txtbox{
		padding: 0 var(--paddingWrap);
	}
}
@media screen and (min-width: 768px){
	.sec-14 .contents{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.sec-14 .ttl-number{
		text-align: left;
	}
	.sec-14 .row-imgbox{
		width: calc(100% - 208px);
		flex-direction: row;
		margin-bottom: 0px;
	}
	.sec-14 .row-imgbox p{
		width: calc(50% - 9px);
	}
	.sec-14 .row-imgbox .photo2{
		margin: 0;
	}
}

.sec-15 .row-imgbox{
	padding-top: 39.5vw;
	position: relative;
}
.sec-15 .row-imgbox .main-photo{
	width: 73.6vw;
	margin-bottom: 20px;
}
.sec-15 .row-imgbox .sub-photo .photo{
	width: 48.8vw;
	position: absolute;
	right: 5.3vw;
	top: 0;
	z-index: 1;
}
@media screen and (max-width: 767px){
	.sec-15 .contents{
		padding: 0;
	}
	.sec-15 .txtbox{
		padding: 0 var(--paddingWrap);
	}
}
@media screen and (min-width: 768px){
	.sec-15 .ttl-number{
		text-align: left;
	}
	.sec-15 .row-imgbox{
		max-width: 1054px;
		width: 100%;
		margin: 0 auto;
		padding-top: 0;
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: center;
	}
	.sec-15 .row-imgbox .main-photo{
		max-width: 651px;
		width: 62%;
		margin-bottom: 0px;
	}
	.sec-15 .row-imgbox .sub-photo{
		max-width: 378px;
		width: 36%;
	}
	.sec-15 .row-imgbox .sub-photo .photo{
		width: 100%;
		position: relative;
		right: auto;
		top: auto;
		margin-bottom: 30px;
	}
}

.sec-text2{
	padding-left: 0;
}
@media screen and (max-width: 767px){
	.sec-text2 h2{
		margin-right: -6%;
	}
}
@media screen and (max-width: 370px){
	.sec-text2 h2{
		font-size: 7.2vw;
	}
}

.sec-16 .main-photo{
	margin-bottom: 12px;
}
.sec-16 .sub-photo{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.sec-16 .sub-photo p{
	width: 48.5vw;
}
@media screen and (max-width: 767px){
	.sec-16 .contents{
		padding: 0;
	}
	.sec-16 .txtbox{
		padding: 0 var(--paddingWrap);
	}
}
@media screen and (min-width: 768px){
	.sec-16 .contents{
		max-width: 1406px;
	}
	.sec-16 .main-photo{
		max-width: 768px;
		margin: 0 auto -65px;
		display: flex;
		flex-direction: column-reverse;
	}
	.sec-16 .ttl-number{
		text-align: right;
		margin-top: 25px;
	}
	.sec-16 .row-imgbox{
		display: flex;
		align-items: flex-end;
	}
	.sec-16 .sub-photo{
		max-width: 655px;
		width: calc(100% - 175px);
		margin: 0px 30px 0 0;
	}
	.sec-16 .sub-photo p{
		width: calc(50% - 8px);
	}
}

.sec-17 .row-imgbox{
	margin-bottom: 20px;
}
@media screen and (max-width: 767px){
	.sec-17 .row-imgbox,
	.sec-17 .txtbox{
		padding: 0 4.5vw;
	}
}
@media screen and (min-width: 768px){
	.sec-17 .contents{
		max-width: none;
		padding: 0;
	}
	.sec-17 .ttl-number{
		max-width: 1205px;
		width: 100%;
		margin: 0 auto 25px;
		padding: 0 var(--paddingWrap);
		text-align: left;
	}
	.sec-17 .row-imgbox{
		display: flex;
		margin-bottom: 30px;
	}
	.sec-17 .row-imgbox p{
		width: 50%;
	}
	.sec-17 .row-txt{
		max-width: 1205px;
		width: 100%;
		margin: 0 auto 25px;
		padding: 0 var(--paddingWrap);
	}
	.sec-17 .row-txt .txtbox{
		display: table;
		margin-left: auto;
	}
}

.sec-18 .main-photo{
	margin-bottom: 20px;
}
@media screen and (min-width: 768px){
	.sec-18 .main-photo{
		max-width: 769px;
		width: 100%;
		margin: 0 auto -79px;
		display: flex;
		flex-direction: column-reverse;
	}
	.sec-18 .ttl-number{
		text-align: left;
		margin-top: 25px;
	}
	.sec-18 .row-txt{
		max-width: 811px;
		width: 100%;
		margin: 0 auto;
	}
	.sec-18 .row-txt .txtbox{
		display: table;
		margin-left: auto;
	}
}

.sec-19 .row-imgbox{
	position: relative;
	padding: 47.7vw 0 65.3vw;
}
.sec-19 .row-imgbox .main-photo{
	width: 77.3vw;
	margin-bottom: 20px;
}
.sec-19 .row-imgbox .sub-photo .photo2,
.sec-19 .row-imgbox .sub-photo .photo3{
	width: 47.5vw;
	position: absolute;
}
.sec-19 .row-imgbox .sub-photo .photo2{
	top: 0;
	right: 5.3vw;
	z-index: 1;
}
.sec-19 .row-imgbox .sub-photo .photo3{
	right: 0;
	bottom: 0;
}
.sec-19 .row-imgbox .txtbox{
	padding: 0 var(--paddingWrap);
}
@media screen and (max-width: 767px){
	.sec-19 .contents{
		padding: 0;
	}
}
@media screen and (min-width: 768px){
	.sec-19 .contents{
		max-width: 1440px;
		padding: 0;
	}
	.sec-19 .row-imgbox{
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.sec-19 .row-imgbox .main-photo{
		max-width: 768px;
		width: 53.5%;
		margin-bottom: 0px;
	}
	.sec-19 .row-imgbox .sub-photo{
		max-width: 620px;
		width: 43.5%;
	}
	.sec-19 .row-imgbox .sub-photo .photo2,
	.sec-19 .row-imgbox .sub-photo .photo3{
		max-width: 467px;
		width: 80%;
		position: relative;
	}
	.sec-19 .row-imgbox .sub-photo .photo2{
		top: auto;
		right: auto;
		margin-bottom: 350px;
	}
	.sec-19 .row-imgbox .sub-photo .photo3{
		right: auto;
		bottom: auto;
	}
	.sec-19 .row-imgbox .txtbox{
		padding: 0;
		margin-bottom: 30px;
	}
	.sec-19 .row-imgbox .ttl-number{
		text-align: left;
	}
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

html {
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

@supports (-webkit-hyphens: none) {
  html {
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
  }
  .fnt-inter-b {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .bold {
    font-weight: 600 !important;
  }
}

@supports (-webkit-touch-callout: none) {
  html {
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
  }
  .fnt-inter-b {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .bold {
    font-weight: 600 !important;
  }
}

@supports not (-webkit-touch-callout: none) {
  html {
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
  }
  .fnt-inter-b {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .bold {
    font-weight: 600 !important;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    html {
      -webkit-font-smoothing: antialiased;
      /* WebKit  */
    }
    .fnt-inter-b {
      font-family: "Inter", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
    }
    .bold {
      font-weight: 600 !important;
    }
  }
}
