@charset "UTF-8";

/* ===============================================### 
可変設定
###=============================================== */
.lp_variable {
  /*デザインの値*/
  --pc-width: 1200;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 750;/*SP共通デザイン幅*/
  --sp-artboard-width: 750;/*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(var(--variable) * var(--ratio));/*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1);/*PCデザインの可変割合の計算式*/
}

/* PC画面幅 1201px以上 固定 */
@media (min-width: 1201px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: 1px; /* 固定値（可変しない） */
  }
}

/* PC画面幅 768～1200px 可変 */
@media (min-width: 768px) and (max-width: 1200px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}

/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .lp_variable {
  --ratio: 1; /* 比率は1（変わらない） */
  --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}


/* ===============================================### 
初期設定
###=============================================== */
.em250710AW1st{
  position: relative;
  /* --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif; */
  --font-ja: "a-otf-ryumin-pr6n", serif; /* fw300使う */
  --font-en: "times-new-roman", sans-serif; /* fw400使う */
  font-style: normal;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --color-white: #ffffff;
  /* --color-black: #112333; */
  --color-red: #A32B26;
  --color-red02: #AF2329;
  color: #AF2329;
  overflow: clip;
}

.em250710AW1st img,
.em250710AW1st svg{
  width: 100%;
  height: auto;
}

.main-area * {
  box-sizing: border-box;
}

body{
  overflow-x: visible;
}

.main-area{
  overflow-x: visible;
}


/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  /* .bredlist.lp{
    position: relative;
    z-index: 1;
  }

  #Foot{
    position: relative;
    z-index: 1;
  }

  #footer_emmi{
    margin-top: 0;
    background-color: #fff;
  } */

  .em250710AW1st .pc-visible{
    display: block;
  }

  .em250710AW1st .sp-visible{
    display: none;
  }

  .em250710AW1st .bg-image{
    background-color: #fff;
  }

  .em250710AW1st .bg-image a:hover{
    opacity: 0.7;
  }
}

/* ===========### SP用設定 ###=========== */
@media screen and (max-width: 767px) {
  /* #footer_emmi{
    padding-top: 0;
  } */

  .em250710AW1st{
    overflow: clip;
  }
  
  .em250710AW1st .pc-visible{
    display: none;
  }

  .em250710AW1st .sp-visible{
    display: block;
  }
}



/* ===============================================### 
center-area 設定
###=============================================== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .em250710AW1st .center-area {
    display: block;
    width: calc(750 * var(--formula));
    margin-inline: auto;
    background-color: var(--color-white);
    overflow: clip;
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .em250710AW1st .center-area {
    width: calc(750 * var(--formula));
  }
}



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.em250710AW1st .js-fade-in{
  opacity: 0;
}

.em250710AW1st .js-fade-in.show{
  opacity: 1;
  transition: opacity .05s ease 0s;
}

.em250710AW1st .js-fade-trigger .js-fade{
  opacity: 0;
  transition: opacity .1s cubic-bezier(.39,.575,.565,1);
}

.em250710AW1st .js-fade-trigger.show .js-fade{
  opacity: 1;
}

.em250710AW1st .js-fade-trigger .js-fade.js-delay01{
  transition-delay: 1s;
}

.em250710AW1st .js-fade-trigger .js-fade.js-delay02{
  transition-delay: 2s;
}

/************** slide **************/
.em250710AW1st .image-wrap{
  position: relative;
  width: 100%;
}

.em250710AW1st .image-wrap .image-area.image02{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: slide 4s linear 0s infinite;
}

.em250710AW1st .image-wrap .image-area.image03{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: slide 4s linear 0s infinite;
  animation-delay: 1s;
}

@keyframes slide { 
  0% { 
    opacity: 0; 
    z-index: -1;
  }
  49.5% { 
    opacity: 0;
    z-index: -1;
  }
  50% { 
    opacity: 1; 
    z-index: 1;
  }
  99.5% { 
    opacity: 1;
    z-index: 1;
  }
  100% { 
    opacity: 0;
    z-index: -1;
  } 
}


/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.em250710AW1st .content-common{
  background-color: var(--color-white);
}

.em250710AW1st .content-common .content-inner{
  position: relative;
}

.em250710AW1st .content-common .content-inner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../img/content_border.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(750 * var(--formula));
  height: calc(45 * var(--formula));
  pointer-events: none;
}

.em250710AW1st .flex-wrap{
  display: flex;
}

.em250710AW1st .grid-wrap{
  display: grid;
}

.em250710AW1st .item-wrap{
  position: absolute;
  z-index: 1;
}

/************** sticky **************/
.em250710AW1st .content-sticky{
  position: sticky;
}

.em250710AW1st .info-area.content-sticky{
  top: calc(-100 * var(--formula));
}

.em250710AW1st .content01.content-sticky{
  top: calc(-3200 * var(--formula));
  background-color: var(--color-white);
}

.em250710AW1st .content02.content-sticky{
  top: calc(-5800 * var(--formula));
  background-color: var(--color-white);
}

.em250710AW1st .content03.content-sticky{
  top: calc(-2800 * var(--formula));
  background-color: var(--color-white);
}

.em250710AW1st .content04.content-sticky{
  top: calc(-2000 * var(--formula));
  background-color: var(--color-white);
}

.em250710AW1st .content05.content-sticky{
  top: calc(-13500 * var(--formula));
  background-color: var(--color-white);
}

/************** text **************/
.em250710AW1st .credit{
  font-family: var(--font-en);
  font-size: calc(16 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.5625;
  font-feature-settings: "palt";
  letter-spacing: 0;
  white-space: nowrap;
}

.em250710AW1st .credit a{
  display: inline-block;
}

.em250710AW1st .credit span{
  display: inline-block;
  margin-left: calc(5 * var(--formula));
  /* margin-inline: calc(10 * var(--formula)); */
}

/************** image **************/
.em250710AW1st .decoration__text,
.em250710AW1st .decoration__image{
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250710AW1st .info-area.content-sticky{
    top: calc(-100 * var(--formula));
  }
  
  .em250710AW1st .content01.content-sticky{
    top: calc(-3200 * var(--formula));
    background-color: var(--color-white);
  }
  
  .em250710AW1st .content02.content-sticky{
    top: calc(-5800 * var(--formula));
    background-color: var(--color-white);
  }
  
  .em250710AW1st .content03.content-sticky{
    top: calc(-2800 * var(--formula));
    background-color: var(--color-white);
  }
  
  .em250710AW1st .content04.content-sticky{
    top: calc(-2000 * var(--formula));
    background-color: var(--color-white);
  }
  
  .em250710AW1st .content05.content-sticky{
    top: calc(-13500 * var(--formula));
    background-color: var(--color-white);
  }
}



/* ===============================================### 
MV
###=============================================== */
.em250710AW1st .mv{
}

.em250710AW1st .mv .content-inner{
}

/************** image **************/
.em250710AW1st .mv__image{
  width: calc(750 * var(--formula));
}


/* ===============================================### 
info-area
###=============================================== */
.em250710AW1st .info-area{
  background-image: url('../img/info_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.em250710AW1st .info-area .content-inner{
  width: fit-content;
  margin-inline: auto;
  padding-top: calc(165 * var(--formula));
  padding-bottom: calc(219 * var(--formula));
}

/************** image **************/
.em250710AW1st .link__button{
  width: calc(384 * var(--formula));
  margin-left: calc(81 * var(--formula));
  margin-right: auto;
}

.em250710AW1st .info__text{
  width: calc(533 * var(--formula));
  margin-top: calc(182 * var(--formula));
  margin-inline: auto;
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.em250710AW1st .content01{
  padding-bottom: calc(145 * var(--formula));
}

.em250710AW1st .content01 .content-inner{
}

.em250710AW1st .content01 .content__item01{
}

.em250710AW1st .content01 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(126 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content01 .content__item03{
  width: fit-content;
  margin-top: calc(130 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content01 .flex-wrap{
  align-items: center;
  gap: calc(18 * var(--formula));
}

/************** slide **************/
.em250710AW1st .content01 .slide-wrap{
  position: relative;
  width: calc(750 * var(--formula));
}

.em250710AW1st .content01 .slide-wrap::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(73 * var(--formula));
  height: calc(1334 * var(--formula));
  background-image: url('../img/content01_decoration02.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

/************** text **************/

/************** image **************/
.em250710AW1st .content01 .decoration__text{
  bottom: calc(199 * var(--formula));
  right: calc(50 * var(--formula));
  width: calc(248 * var(--formula));
}

.em250710AW1st .content01 .decoration__image{
  top: calc(-14 * var(--formula));
  left: calc(43 * var(--formula));
  width: calc(76 * var(--formula));
}

.em250710AW1st .content01 .content__item01 .content__image{
}

.em250710AW1st .content01 .content__item01 .text__image{
  width: calc(503 * var(--formula));
  margin-top: calc(98 * var(--formula));
  margin-left: calc(73 * var(--formula));
  margin-right: auto;
}

.em250710AW1st .content01 .content__item02 .content__image{
  width: calc(630 * var(--formula));
}

.em250710AW1st .content01 .content__item03 .content__image{
  width: calc(307 * var(--formula));
}

.em250710AW1st .content01 .content__item03 .text__image{
  width: calc(254 * var(--formula));
  margin-top: calc(31 * var(--formula));
  margin-inline: auto;
}



/* ===============================================### 
コンテンツ02
###=============================================== */
.em250710AW1st .content02{
}

.em250710AW1st .content02 .content-inner{
}

.em250710AW1st .content02 .content__item01{
  position: relative;
  margin-left: calc(270 * var(--formula));
  padding-top: calc(147 * var(--formula));
}

.em250710AW1st .content02 .content__item02{
  margin-top: calc(160 * var(--formula));
}

.em250710AW1st .content02 .content__item03{
  position: relative;
  width: fit-content;
  margin-top: calc(188 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content02 .content__item04{
  width: fit-content;
  margin-top: calc(165 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content02 .content__item05{
  position: relative;
  width: fit-content;
  margin-top: calc(185 * var(--formula));
  margin-inline: auto;
  padding-top: calc(150 * var(--formula));
  padding-bottom: calc(80 * var(--formula));
}

.em250710AW1st .content02 .content__item05::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(569 * var(--formula));
  height: calc(838 * var(--formula));
  background-image: url('../img/content02_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.em250710AW1st .content02 .content__item06{
  position: relative;
  width: fit-content;
  margin-top: calc(189 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content02 .item-wrap{
  top: calc(325 * var(--formula));
  left: calc(-229 * var(--formula));
}

/************** slide **************/
.em250710AW1st .content02 .slide-wrap{
  width: calc(750 * var(--formula));
}

.em250710AW1st .content02 .slide-wrap .image-wrap .image-area{
  padding-top: calc(190 * var(--formula));
  padding-bottom: calc(190 * var(--formula));
  background-color: var(--color-red02);
}

/************** text **************/
.em250710AW1st .content02 .content__item01 .credit{
  margin-top: calc(263 * var(--formula));
  margin-left: calc(95 * var(--formula));
}

.em250710AW1st .content02 .content__item05 .credit{
  position: relative;
  z-index: 1;
  margin-top: calc(13 * var(--formula));
}

/************** image **************/
.em250710AW1st .content02 .decoration__text{
  top: calc(94 * var(--formula));
  left: calc(90 * var(--formula));
  width: calc(152 * var(--formula));
}

.em250710AW1st .content02 .decoration__image{
  top: calc(-50 * var(--formula));
  right: calc(-50 * var(--formula));
  width: calc(222 * var(--formula));
}

.em250710AW1st .content02 .content__item01 .content__image.image01{
  width: calc(460 * var(--formula));
}

.em250710AW1st .content02 .content__item01 .content__image.image02,
.em250710AW1st .content02 .content__item01 .content__image.image03{
  /* position: absolute; */
  width: calc(260 * var(--formula));
}

.em250710AW1st .content02 .content__item01 .content__image.image02{
  /* top: calc(324 * var(--formula));
  left: calc(-229 * var(--formula)); */
}

.em250710AW1st .content02 .content__item01 .content__image.image03{
  margin-top: calc(31 * var(--formula));
  /* top: calc(764 * var(--formula)); */
  /* left: calc(-229 * var(--formula)); */
}

.em250710AW1st .content02 .content__item02 .content__image{
  width: calc(630 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content02 .content__item03 .content__image{
  width: calc(490 * var(--formula));
}

.em250710AW1st .content02 .content__item03 .text__image{
  width: calc(230 * var(--formula));
  margin-top: calc(32 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content02 .content__item04 .content__image{
  width: calc(630 * var(--formula));
}

.em250710AW1st .content02 .content__item05 .content__image{
  position: relative;
  z-index: 1;
  width: calc(390 * var(--formula));
}

.em250710AW1st .content02 .content__item06 .content__image{
  width: calc(750 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250710AW1st .content02 .content__item01 .credit{
    margin-top: calc(265 * var(--formula));
  }

  .em250710AW1st .content02 .content__item04{
    margin-top: calc(164 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.em250710AW1st .content03{
  background-image: url('../img/content03_bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: calc(189 * var(--formula));
  padding-bottom: calc(190 * var(--formula));
}

.em250710AW1st .content03 .content-inner{
  width: fit-content;
  margin-inline: auto;
}

.em250710AW1st .content03 .content-inner::before{
  content: none;
}


.em250710AW1st .content03 .content__item01{
}

.em250710AW1st .content03 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(191 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content03 .content__item02::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(680 * var(--formula));
  height: calc(310 * var(--formula));
  background-image: url('../img/content03_decoration.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.em250710AW1st .content03 .content__item03{
  margin-top: calc(185 * var(--formula));
}

.em250710AW1st .content03 .grid-wrap{
  grid-template-columns: repeat(2, 1fr);
}

/************** slide **************/
.em250710AW1st .content03 .slide-wrap{
  width: calc(630 * var(--formula));
}

/************** text **************/

/************** image **************/
/* .em250710AW1st .content03 .decoration__text{
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(480 * var(--formula));
} */

.em250710AW1st .content03 .content__item01 .content__image{
}

.em250710AW1st .content03 .content__item02 .content__image{
  width: calc(315 * var(--formula));
}

.em250710AW1st .content03 .content__item03 .content__image{
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.em250710AW1st .content04{
  padding-bottom: calc(190 * var(--formula));
}

.em250710AW1st .content04 .content-inner{
}

.em250710AW1st .content04 .content-inner::before{
  content: none;
}

.em250710AW1st .content04 .content__item01{
  position: relative;
  width: fit-content;
}

.em250710AW1st .content04 .content__item01::after{
  content: '';
  position: absolute;
  top: 50%;
  left: calc(30 * var(--formula));
  transform: translateY(-50%);
  width: calc(11 * var(--formula));
  height: calc(1145 * var(--formula));
  background-image: url('../img/content04_decoration.svg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.em250710AW1st .content04 .content__item02{
  width: fit-content;
  margin-top: calc(185 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content04 .item-wrap{
  position: absolute;
  top: calc(178 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
}

/************** slide **************/
.em250710AW1st .content04 .slide-wrap{
  width: calc(630 * var(--formula));
}

/************** text **************/

/************** image **************/

.em250710AW1st .content04 .content__item01 .content__image.image01{
  width: calc(750 * var(--formula));
}

.em250710AW1st .content04 .content__item01 .content__image.image02,
.em250710AW1st .content04 .content__item01 .content__image.image03{
  /* position: absolute;
  left: 50%;
  transform: translateX(-50%); */
  width: calc(281 * var(--formula));
}

.em250710AW1st .content04 .content__item01 .content__image.image02{
  /* top: calc(178 * var(--formula)); */
}

.em250710AW1st .content04 .content__item01 .content__image.image03{
  /* top: calc(666 * var(--formula)); */
  margin-top: calc(46 * var(--formula));
}

.em250710AW1st .content04 .content__item02 .content__image{
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.em250710AW1st .content05{
  margin-bottom: calc(111 * var(--formula));
  padding-bottom: calc(177 * var(--formula));
}

.em250710AW1st .content05 .content-inner{
}

.em250710AW1st .content05 .content__item01{
  position: relative;
  margin-left: calc(20 * var(--formula));
  padding-top: calc(358 * var(--formula));
}

.em250710AW1st .content05 .content__item02{
  width: fit-content;
  margin-top: calc(190 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item03{
  position: relative;
  margin-top: calc(189 * var(--formula));
}

.em250710AW1st .content05 .content__item04{
  width: fit-content;
  margin-top: calc(190 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item05{
  width: fit-content;
  margin-top: calc(190 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item06{
  width: fit-content;
  margin-top: calc(157 * var(--formula));
  padding-top: calc(189 * var(--formula));
  padding-bottom: calc(191 * var(--formula));
  padding-left: calc(60 * var(--formula));
  padding-right: calc(60 * var(--formula));
  background-color: var(--color-red);
}

.em250710AW1st .content05 .content__item07{
  width: fit-content;
  margin-top: calc(189 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item08{
  width: fit-content;
  margin-top: calc(190 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item09{
  width: fit-content;
  margin-top: calc(157 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item10{
  position: relative;
  width: fit-content;
  margin-top: calc(192 * var(--formula));
  margin-inline: auto;
  padding-top: calc(150 * var(--formula));
  padding-bottom: calc(85 * var(--formula));
}

.em250710AW1st .content05 .content__item10::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(569 * var(--formula));
  height: calc(838 * var(--formula));
  background-image: url('../img/content02_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.em250710AW1st .content05 .content__item11{
  position: relative;
  width: fit-content;
  margin-top: calc(208 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .item-wrap{
  top: calc(147 * var(--formula));
  right: calc(40 * var(--formula));
}

/************** flex **************/
.em250710AW1st .content05 .content__item05 .flex-wrap{
  gap: calc(3 * var(--formula));
  margin-top: calc(190 * var(--formula));
}

.em250710AW1st .content05 .content__item08 .flex-wrap{
  gap: calc(6 * var(--formula));
  margin-top: calc(192 * var(--formula));
}

/************** slide **************/
.em250710AW1st .content05 .slide-wrap{
  width: calc(630 * var(--formula));
}

.em250710AW1st .content05 .content__item11 .slide-wrap{
  width: calc(600 * var(--formula));
}

/************** text **************/
.em250710AW1st .content05 .content__item01 .credit{
  margin-left: calc(16 * var(--formula));
}

.em250710AW1st .content05 .content__item05 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
}

.em250710AW1st .content05 .content__item08 .credit{
  margin-top: calc(33 * var(--formula));
  text-align: center;
}

.em250710AW1st .content05 .content__item10 .credit{
  position: relative;
  z-index: 1;
  margin-top: calc(12 * var(--formula));
}

/************** image **************/
.em250710AW1st .content05 .decoration__image{
  bottom: calc(-36 * var(--formula));
  right: calc(-23 * var(--formula));
  width: calc(222 * var(--formula));
}

.em250710AW1st .content05 .content__item03 .decoration__image{
  top: calc(-2 * var(--formula));
  left: calc(48 * var(--formula));
  width: calc(62 * var(--formula));
}

.em250710AW1st .content05 .content__item01 .content__image.image01{
  width: calc(461 * var(--formula));
  margin-top: calc(60 * var(--formula));
}

.em250710AW1st .content05 .content__item01 .content__image.image02,
.em250710AW1st .content05 .content__item01 .content__image.image03{
  /* position: absolute; */
  width: calc(260 * var(--formula));
}

.em250710AW1st .content05 .content__item01 .content__image.image02{
  /* top: calc(147 * var(--formula));
  right: calc(40 * var(--formula)); */
}

.em250710AW1st .content05 .content__item01 .content__image.image03{
  /* top: calc(588 * var(--formula));
  right: calc(40 * var(--formula)); */
  margin-top: calc(30 * var(--formula));
}

.em250710AW1st .content05 .content__item02 .content__image{
}

.em250710AW1st .content05 .content__item03 .content__image{
  width: calc(750 * var(--formula));
}

.em250710AW1st .content05 .content__item04 .content__image{
}

.em250710AW1st .content05 .content__item05 .content__image{
  width: calc(330 * var(--formula));
}

.em250710AW1st .content05 .content__item05 .text__image{
  width: calc(455 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item06 .content__image{
  width: calc(630 * var(--formula));
}

.em250710AW1st .content05 .content__item07 .content__image.image01{
  width: calc(630 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item07 .content__image.image02{
  width: calc(750 * var(--formula));
  margin-top: calc(190 * var(--formula));
}

.em250710AW1st .content05 .content__item08 .content__image{
  width: calc(631 * var(--formula));
  margin-inline: auto;
}

.em250710AW1st .content05 .content__item08 .flex-wrap .content__image{
  width: calc(330 * var(--formula));
}

.em250710AW1st .content05 .content__item09 .content__image{
}

.em250710AW1st .content05 .content__item10 .content__image{
  position: relative;
  z-index: 1;
  width: calc(390 * var(--formula));
}

.em250710AW1st .content05 .content__item11 .content__image{
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.em250710AW1st .content06{
  position: relative;
  background-color: var(--color-white);
}

.em250710AW1st .content06 .content-inner{
  position: relative;
}

.em250710AW1st .content06 .content-inner::after{
  content: '';
  position: absolute;
  top: calc(-2 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
  width: calc(750 * var(--formula));
  height: calc(1291 * var(--formula));
  background-image: url('../img/content06_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
}

/************** link-area **************/
.em250710AW1st .content06 .link-area{
}

.em250710AW1st .content06 .text-wrap{
  position: relative;
  z-index: 1;
  width: calc(505 * var(--formula));
  margin-inline: auto;
  padding-top: calc(110 * var(--formula));
  padding-bottom: calc(300 * var(--formula));
}

.em250710AW1st .content06 .link-area .grid-wrap{
  grid-template-columns: repeat(2, 1fr);
  column-gap: calc(80 * var(--formula));
  row-gap: calc(47 * var(--formula));
}

.em250710AW1st .content06 .link-area .link__list{
  margin-top: calc(52 * var(--formula));
}

.em250710AW1st .content06 .link-area .link__list li:nth-of-type(5){
  grid-column: 1/3;
  margin-top: calc(-3 * var(--formula));
}

.em250710AW1st .content06 .link-area .link__list li{
  position: relative;
  font-size: calc(31 * var(--formula));
  padding-left: calc(60 * var(--formula));
}

.em250710AW1st .content06 .link-area .link__list li:nth-of-type(2n){
  padding-left: calc(70 * var(--formula));
}

.em250710AW1st .content06 .link-area .link__list li::after{
  content: '';
  position: absolute;
  top: calc(-2 * var(--formula));
  left: calc(8 * var(--formula));
  width: calc(36 * var(--formula));
  height: calc(31 * var(--formula));
  background-image: url('../img/check.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.em250710AW1st .content06 .link-area .link__list li:nth-of-type(2n)::after{
  left: calc(20 * var(--formula));
}

/************** text **************/
.em250710AW1st .content06 .link-area .link__text,
.em250710AW1st .content06 .link-area .link__list li{
  font-family: var(--font-en);
  font-weight: var(--fw-regular);
  font-feature-settings: "palt";
  color: var(--color-red02);
}

.em250710AW1st .content06 .link-area .link__text.text01{
  font-size: calc(56 * var(--formula));
}

.em250710AW1st .content06 .link-area .link__text.text02{
  margin-top: calc(10 * var(--formula));
  margin-left: calc(10 * var(--formula));
  font-size: calc(31 * var(--formula));
  letter-spacing: -0.025em;
}

.em250710AW1st .content06 .staff__text{
  position: relative;
  margin-top: calc(164 * var(--formula));
  margin-left: calc(9 * var(--formula));
  font-family: var(--font-en);
  font-size: calc(22 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.52;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  color: var(--color-red02);
}

.em250710AW1st .content06 .staff__text span{
  font-size: calc(33 * var(--formula));
}

/************** image **************/
.em250710AW1st .content06 .instagram-icon{
  position: absolute;
  bottom: calc(30 * var(--formula));
  left: calc(243 * var(--formula));
  display: inline-block;
  width: calc(31 * var(--formula));
}


/************** instagram-area **************/
.em250710AW1st .instagram-area{
  position: relative;
  z-index: 1;
  width: calc(750 * var(--formula));
  margin-top: calc(-29 * var(--formula));
  margin-inline: auto;
  padding-top: calc(8 * var(--formula));
  background-color: var(--color-white);
}

.em250710AW1st .instagram-area iframe{
  max-width: none!important;
  width: calc(707 * var(--formula)) !important;
  margin-inline: auto!important;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250710AW1st .content06 .instagram-icon{
    bottom: calc(34 * var(--formula));
    left: calc(244 * var(--formula));
  }
}