@charset "utf-8";
/* CSS Document */
/* ヘッダー */
html {
  font-size: 62.5%;
}
body {
  background: #fff;
  font-family: 'Noto Sans JP', 'YuGothic', 'Yu Gothic', sans-serif;
  color: #333;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.05em;
  /* フォントカーニング */
  font-feature-settings: "palt";
  /*position: relative;*/
}
* {
  box-sizing: border-box;
}

@media screen and (min-width:600px) {
  body {
    font-size: 1.5vw;
  }
}

@media screen and (min-width:1050px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (min-width:1900px) {
  /*body {
    font-size: 1vw;
  }*/
}

section{
  padding: 2em 0;
}

p, a, ul {
  /* 文字をきれいにみせる */
  transform: rotate(0.01deg);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.8;
}
img {
  /* max-width: 100%; */
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.header {
  background-color: #004D9F;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 561px) {
  .header {
    height: 50px;
  }
}
.header__inner {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  max-width: 1580px;
  margin: 0 auto;
}
/* ヘッダーのロゴ部分 */
.header__title {
  width: 45px;
  width: 80px;
}
.header__title:hover {
  opacity: 0.8;
}
@media screen and (min-width: 561px) {
  .header__title {
    width: 122px;
  }
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #004D9F;
  transition: ease .4s;
  display: flex;
}
@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 790px;
  }
}
.nav__items {
  margin: auto;
}
@media screen and (min-width: 960px) {
  .nav__items {
    margin: initial;
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    /*justify-content: space-between;*/
  }
  .nav__items {
    position: relative;
  }
  .nav-items__item {
    cursor: pointer;
    position: relative;
    height: 100%;
    align-items: center;
    display: flex;
    flex-grow: 1;
  }
  .nav__items li + li:before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    height: 20px;
    margin-top: -10px;
    border-right: 1px solid #fff;
  }
}

/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 16px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 16px;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 40px;
  height: 40px;
	border: 2px solid #fff;
    border-radius: 50%;
}
.hamburger {
  background-color: transparent;
  /*border-color: transparent;*/
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 60%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
	margin: 0 auto;
}
.hamburger span:nth-child(2) {
  margin: 8px auto;
}
.hamburger span:nth-child(3) {
  top: 0;
	margin: 0 auto;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}
/*共通*/
/* html {
  scroll-behavior: smooth;
} */
.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (min-width: 601px) {
  .pc-only {display: block;}
  .sp-only {display: none;}
}
@media screen and (max-width: 600px) {
  .pc-only {display: none;}
  .sp-only {display: block;}
}
@media screen and (min-width: 601px) {
  .br-pc {display: block;}
  .br-sp {display: none;}
}
@media screen and (max-width: 600px) {
  .br-pc {display: none;}
  .br-sp {display: block;}
}
.align-center {text-align: center;}
.align-left {text-align: left;}
.align-right {text-align: right;}

.align-item {align-items: center;}

.mb10 {margin-bottom: 1rem;}
.mb20 {margin-bottom: 2rem;}
.mb30 {margin-bottom: 3rem;}
.mb40 {margin-bottom: 4rem;}
.mb50 {margin-bottom: 5rem;}
.mb60 {margin-bottom: 6rem;}
.mb70 {margin-bottom: 7rem;}
.mb80 {margin-bottom: 8rem;}
.mb90 {margin-bottom: 9rem;}
.mb100 {margin-bottom: 10rem;}
.mb300 {margin-bottom: 30rem;}

.mt10 {margin-top: 1rem;}
.mt20 {margin-top: 2rem;}
.mt30 {margin-top: 3rem;}
.mt40 {margin-top: 4rem;}
.mt50 {margin-top: 5rem;}
.mt60 {margin-top: 6rem;}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mb20-40 { margin-bottom: clamp(2rem, 5.5vw, 4rem); }
.mb30-60 { margin-bottom: clamp(3rem, 7.75vw, 6rem); }
.mb40-50 {margin-bottom: clamp(4rem, 3.5vw, 5rem);}
.mb40-60 {margin-bottom: clamp(4rem, 10vw, 6rem);}
.mb40-150 {margin-bottom: clamp(4rem,11vw,15rem);}

.mt30-80 {margin-top: clamp(3rem,5.5vw,8rem);}
.mt30-100 {margin-top: clamp(3rem,10.5vw,10rem);}
.mt40-60 {margin-top: clamp(4rem, 10vw, 6rem);}

.pt20 {padding-top: 2rem;}

.px10 {padding-left: 1rem;padding-right: 1rem;}
.px20 {
	padding-left: 2rem;
	padding-right: 2rem;
}
.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}
.position {position: relative;}
.inner {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.box300 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 300px;
}
.box330 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 330px;
}
.box400 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 400px;
}
.box500 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 500px;
}
.box600 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 600px;
}
.box700 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 700px;
}
.box800 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 800px;
}
.box900 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 900px;
}
.box1000 {
	max-width: 100%;margin-left: auto;margin-right: auto;
	width: 1000px;
}

.w90{
  width: 90%;
  margin-left: auto;margin-right: auto;
}

.flexbox {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.inline-fl {display: inline-flex;}
.fl-nowrap {flex-wrap: nowrap;}
.fl-align-end {align-items: flex-end;}
.fl-align-center {align-items: center;}

.fl-con-bet {justify-content: space-between;}
.fl-con-center {justify-content: center;}

.fl-fill { flex: 1 1 auto; }

.item {
	width: 100%;
	padding: 0 1rem;
	margin-bottom: 2rem;
}
.col1{
	min-width: 0;
	flex-basis: calc(100% / 12);
}
.col2{
	min-width: 0;
	flex-basis: calc(100% / 6);
}
.col3{
	min-width: 0;
	flex-basis: 25%;
}
.col4{
	min-width: 0;
	flex-basis: calc(100% / 3);
}
.col5{
	min-width: 0;
	flex-basis: calc(100% * 5/12);
}
.col6{
	min-width: 0;
	flex-basis: 50%;
}
.col7{
	min-width: 0;
	flex-basis: calc(100% * 7/12);
}
.col8{
	min-width: 0;
	flex-basis: calc(100% * 2/3);
}
.col9{
	min-width: 0;
	flex-basis: 75%;
}
.col10{
	min-width: 0;
	flex-basis: calc(100% * 5/6);
}
.col11{
	min-width: 0;
	flex-basis: calc(100% * 11/12);
}
.col12{
	min-width: 0;
	flex-basis: 100%;
}

.blue-font {color: #004D9F;}
.light-blue-font {color: #0071BC;}
.yellow-font {color: #fff000;}

.line-h15 {line-height: 1.5em;}

.font-16-24 {font-size: clamp(16px, 2vw, 24px);}
.font-16-26 {font-size: clamp(16px, 2.25vw, 26px);}
.font-16-30 {font-size: clamp(16px, 3vw, 30px);}
.font-18-24 {font-size: clamp(18px, 2.5vw, 24px);}

.txt-nowrap {white-space: nowrap;}

.blue-bg{background-color: #004D9F;}
.gray-bg{background-color: #F6F7F7;}
.gray-bg2{background-color: #EEE;}

.shadow-black{filter: drop-shadow(0 0 6px #000);}


/*メインエリア*/
/*main {
	background-image: url("../images/bg.jpg");
	background-size: contain;
	background-repeat: repeat-y;
	background-position: center;
	padding-bottom: clamp(30px, 10vw, 400px);
}*/
/*main::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	background-image: url("../images/bg-img.png");
	background-size: cover;
}*/
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  /* padding: 0 2.0rem; */
  position: relative;
}
.main-img {
  padding-top: 50px;
  /* padding-bottom: calc(((100vw - 375px) / 51.5) + 20px); */
}

.main-img img{
	width: 100%;
	position: relative;
	z-index: -1;
}

.top-scroll {
	display: block;
	width: clamp(24px,4vw,44px);
	position: absolute;
	top: clamp(93.75%,34.5vw,97.5%);
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}


#food01 {
	padding-bottom: 0;
}

.cardboard-area {
	background: url("../images/bg-cardboard_inner.jpg") repeat-y top center / 100%;
	padding: clamp(4rem,12vw,20rem) 1rem clamp(4rem, 12vw, 8rem);
	/*margin-top: clamp(-36rem, calc(-12.5vw - 117px), -3rem);*/
	position: relative;
    z-index: 2;
}
.cardboard-top,.cardboard-foot {
	position: absolute;
	left: 50%;transform: translateX(-50%);
	z-index: -1;
}
.cardboard-top{bottom: 99.9%;}
.cardboard-foot{top: 96%;}

.link-range { position: relative }
.fix-btn {
	position: absolute;
	right: 26px;
    bottom: 93%;
    transform: translate3d(0,0,0);
	will-change: transform;
	display: inline-flex;
    flex-direction: column;
	gap: 2rem;
	z-index: 3;
}
.fix-btn > a {display: inline-block;position: relative;}
.fix-btn > a::before {
	content: "";
	position: absolute;
    z-index: -1;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: rgb(35 24 21 / .3);
    border-radius: 50%;
}
.fix-btn img {max-width: clamp(90px,10vw,180px);transition: all 0.3s ease-in-out;}
.fix-btn > a:hover {opacity: 1;}
.fix-btn > a:hover img {
	transform: translateY(4px);
    opacity: 1;
}

.icon-faq {max-width: clamp(40px,6vw,100px);}
.ttl-faq {
	font-size: clamp(20px,4vw,50px);
	line-height: 1.2em;
}

.next-arrow {
	position: absolute;
	left: 50%;
	top: clamp(98%,87vw,106%);
	transform: translateX(-50%);
	max-width: clamp(16px,2.5vw,32px);
	
}

.cardboard-under {
	background: url("../images/bg-answer_pc.jpg") no-repeat center top / 130%;
	position: relative;
    z-index: 0;
    margin-top: clamp(1rem, 4vw, 10rem);
    color: #fff;
	padding: clamp(10rem,10vw,44rem) 1rem clamp(7rem,6vw,23rem);
	text-shadow: 0 0 10px #000;
}
.cardboard-under .inline-fl > .inline-fl > div:first-of-type {
	margin: 0 1rem;
}
.faq-logo {
	width: clamp(152px, 34.5vw, 424px);
    max-width: 100%;
	display: block;
}

/* YouTubeの埋め込み */
.youtube {
	max-width: 1000px;
   width: 100%;
   aspect-ratio: 16 / 9;
}

.youtube iframe {
   width: 100%;
   height: 100%;
}


#food02 {
	background: url("../images/bg-intro.jpg") repeat-y center / 100%;
	position: relative;
    z-index: 0;
}

#food02 h3 {
	display: inline-block;
	font-size: clamp(22px,3vw,45px);
	text-align: left;
	line-height: 1.5em;
}
#food02 h3 span {display: block;}

.intro-ttl {max-width: clamp(140px,20.5vw,316px);}

.line-btn {
	display: inline-flex;
    justify-content: space-between;
    align-items: center;
	border: 1px solid #000;
	border-radius: 200px;
	padding: .5rem 1rem;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: bold;
	min-width: clamp(236px,20vw,260px);
	transition: background-color .3s;
}
.link-btn__arrow {
	display: inline-block;
	width: 36px;
	height: 36px;
	aspect-ratio: 1 / 1;
	background-color: #000;
	border-radius: 50%;
}
.link-btn__arrow::before {
	content: "";
	display: block;
	width: 14px;
	height: 16px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: background-color .3s;
}
.line-btn:hover,
.line-btn:hover .link-btn__arrow::before {
	background-color: #fcee21;
}

.under-dot-line {
	background: url("../images/dot.svg") repeat-x center / contain;
	height: 2px;
}

.cehck {
	max-width: clamp(140px,20vw,184px);
	margin-left: -16px;
}


#food03 {background-color: #eee;}

#food03 h2 {
	font-size: clamp(22px, 4vw, 50px);
    line-height: 1.2em;
}

.under-black-line {
	border-bottom: 3px solid #231815;
	margin: 2rem auto clamp(2rem, 5.5vw, 4rem);
	max-width: clamp(286px,70vw,800px);
}

.push-btn {
	display: block;
	max-width: 700px;
	margin: 1rem auto 4rem;
}
.push-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: clamp(4px, 1vw, 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
	background: rgb(35 24 21 / .3);
	border-radius: 900px;
}
.push-btn img {transition: all 0.3s ease-in-out;}
.push-btn:hover {opacity: 1;}
.push-btn img:hover {
    transform: translateY(clamp(4px, 1vw, 8px)); 
	opacity: 1;
}

.foot-nikko-txt {
	max-width: 480px;
}
.foot-jp-txt {
	max-width: 600px;
}

.ttl-slash {
	position: relative;
	display: inline-block;
	padding: 0 clamp(16px, 3vw, 32px);
    line-height: 1.2em;
	text-align: center;
	font-size: clamp(16px,2vw,24px);
	color: #004d9f;
}
.ttl-slash::before,
.ttl-slash::after {
	content: "";
	position: absolute;
	bottom: -4px;
    height: clamp(20px,4vw,33px);
	width: clamp(7px,2vw,14px);  /* 線の太さ */
	background-color: #004d9f;
	clip-path: polygon(0 0, 0% 100%, 100% 30%);
}
.ttl-slash::before {
	left: 0;
	transform: rotate(-14deg) scale(-1, 1);
}
.ttl-slash::after {
	right: 0;
	transform: rotate(14deg);
}
.ttl-slash.font-orange {color: #e95514;}
.ttl-slash.font-orange::before,
.ttl-slash.font-orange::after {
	background-color: #e95514;
}



.font-sawarabi {font-family: "Sawarabi Gothic", sans-serif;}


/* footer */
footer {
  background-color: #fff;
  /* padding-top: 1em; */
  /*position: absolute;*/
  width: 100%;
  /*bottom: 0;*/
	position: relative;
}
.foot-top-img {
	display: block;
	position: absolute;
	left: 0;
	bottom: 100%;
}
.foot-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 1em 2.0rem;
  position: relative;
}
.footer-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-l {
  flex-basis: 73%;
}
.footer-r {
  flex-basis: 27%;
}
.footer-logo-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  margin: 0 auto 2em;
  text-align: center;
  max-width: 350px;
}
.footer-add {
  padding: 0 2rem;
}
.footer-add table {
  font-size: 12px;
  margin: 5px auto;
  line-height: normal;
}
.footer-add th, td {
  font-weight: normal;
  text-align: left;
  padding-right: 5px;
  vertical-align: top;
}
.footer-add td span {
  font-size: 90%;
  margin-right: 5px;
}
.copy {
  background-color: #024092;
  text-align: center;
  font-weight: normal;
  padding: 0.5em 0;
  font-size: 0.9em;
  color: white;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: calc(((100vw - 375px) / 44.1429) + 35px);
  right: calc(((100vw - 1200px) / 11.0769) + 5px);
  z-index: 99;
}
#pagetop a {
  display: block;
  width: calc(((100vw - 375px) / 40.6579) + 64px);
  padding: 10px 5px;
  text-align: center;
}
.foot-nav .f-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: calc(((100vw - 375px) / 772.5) + 12px);
  text-align: left;
}
.foot-nav .f-nav li {
  margin: 0;
  padding: 5px;
}
.foot-nav .f-nav li {
  width: 50%;
  box-sizing: border-box;
	text-indent: -.8em;
    padding-left: 1.1em;
	line-height: 1.2em;
}
.foot-nav .f-nav li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 18px;
  background: url("../images/foot-nav-line.png") no-repeat;
  background-size: contain;
  margin-right: 7px;
  vertical-align: middle;
}


@media screen and (max-width: 1200px) {
	/*.intro-area > div:nth-of-type(odd) .intro-bg > div {
		margin-left: calc(34vw / 7.68);
	}
	.intro-area > div:nth-of-type(even) .intro-bg > div {
		margin-right: calc(34vw / 7.68);
	}*/
	
	#intro-03 .flexbox {
	padding-top: 0;
}

	
  .footer-logo-outer {
    display: block;
  }
  #pagetop {
    right: 5px;
  }
}

@media screen and (min-width:601px) and (max-width:1050px) {
	.cardboard-under {
		background-size: 200%;
	}
}

@media screen and (max-width: 1050px) {
.sub-ttl-wb{
  font-size: 1.8vw;
}

.intro-01{
  background-image: url("../images/bk1-sp.png");
  background-size: 100%;
  /* min-height: 1020px; */
  background-position: top 8% right 0;
}

.intro-02{
  background-image: url("../images/bk2-sp.png");
  background-size: 100%;
  /* min-height: 1020px; */
  background-position: top 12% right 0;
}
}

@media screen and (max-width: 800px) {
	.intro-bg {
		margin-bottom: 3rem;
	}
	.intro-bg > div {
		max-width: clamp(350px, 39vw, 470px);
	}
	
  .footer-cont {
    display: block;
  }
}
@media (min-width: 601px) {
  .back-top {
    width: 70px;
    height: 70px;
  }
  .alig-r {
    display: inline-block;
    text-align: right;
  }
}
@media screen and (max-width: 600px) {	
	
	.flex600 {flex-direction: column;}
	.flex600.reverse {flex-direction: column-reverse;}
  /*.flexbox {
    display: -webkit-block;
    display: block;
    margin: 0 auto;
  }*/
  .item {
    width: 100%;
  }
		
	.cardboard-area {margin-top: -20px;}
	
	.cardboard-under {background-image: url("../images/bg-answer_sp.jpg");background-size: 100%;}
	
	.fix-btn {display: none;}
	
	#food02 h2{text-align: center;}
	
	.akecyao-logo {width: 74%;}
	.akecyao-img {width: 80%;}


  .footer-logo{
    max-width: 290px;
  }

	
	
}
@media screen and (max-width: 414px) {
  .inner {
    padding: 0 1rem;
  }
	.flex414{flex-direction: column;}
	.flex414.reverse {flex-direction: column-reverse;}
  /*.flexbox {
    display: -webkit-block;
    display: block;
    margin: 20px auto;
  }*/

  .footer-cont {
    display: block;
  }
  .foot-container {
    max-width: 85%;
  }
	
	.intro-bg > div {
		padding: clamp(1rem, 3vw, 4rem);
		max-width: clamp(180px, 39vw, 470px);
	}
	
}

@media screen and (min-width: 1401px) {
	.intro-bg {min-height: 350px;}
}

@media screen and (min-width: 1600px) {
	.cardboard-under {
		background-size: 100%;
	}
}

@media screen and (min-width: 1900px) {

  .header{
    height: 2.6em;
  }

  .header__inner{
    max-width: 60%;
  }

  .header__nav{
    width: 70%;
  }

  .nav-items__item a{
    font-size: 0.8em;
  }

  .container {
    width: 60%;
    max-width: initial;
  }
	
	.container.box1000 {
		width: 1000px;
	}

  .box900 {
    width: 90%;
    max-width: initial;
}

.box420 {
  width: 50%;
  max-width: initial;
}

.box330{
  width: 100%;
}
	
	.main-img {padding-top: 2.5em;}

  .intro-01{
    background-size: 100%;
  }
  
  .intro-02{
    background-size: 100%;
  }

  .intro-blue-box{
    box-shadow: 0.5em 0.5em 0.2em -0.2em rgba(0,0,0,0.2);
  }

  .foot-container{
    max-width: 70%;
  }

  .foot-nav .f-nav{
    font-size: 0.8em;
  }

  .footer-add table{
    font-size: 0.7em;
  }

  .footer-logo{
    width: 40%;
  }

  .footer-l{
    flex-basis: 70%;
  }

  .footer-r{
    flex-basis: 30%;
  }

}

@media screen and (min-width: 1921px) {
	
	.sub-ttl-blue, .sub-ttl-orange {
		font-size: 26px;
	}
	/*.intro-area > div:nth-of-type(odd) .intro-bg > div {
		margin-left: calc(460vw / 19.2);
	}
	
	.intro-area > div:nth-of-type(even) .intro-bg > div {
		margin-right: calc(460vw / 19.2);
	}*/
	
}
