@charset "UTF-8";
/*====================================================================
*    common all
/*==================================================================*/
/*
 * htmlのフォントサイズ
 * @args ベースの画面幅
 */
/*
   * ルートのフォントサイズを基準にフォントサイズを可変にする
   * @args 最大値（デザイン上の数値）
   */
/*
 * スマホの時のfz設定（XDアートボードサイズで引用）
 */
/*
   * get_vwの設定
   */
/*
   * breakpointの設定
   */
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
@font-face {
  font-family: "Avenir";
  src: url("../../../assets/fonts/Avenir.eot");
  src: url("../../../assets/fonts/Avenir.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/Avenir.woff") format("woff"), url("../../../assets/fonts/Avenir.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Antro Vectra Bolder";
  src: url("../../../assets/fonts/Antro_Vectra_Bolder.otf");
}
@font-face {
  font-family: "Antro Vectra";
  src: url("../../../assets/fonts/Antro_Vectra.otf");
}
@font-face {
  font-family: "Butler Bold";
  src: url("../../../assets/fonts/Butler_Bold.ttf");
}
@font-face {
  font-family: "Butler";
  src: url("../../../assets/fonts/Butler_Medium.otf");
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

p {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #bfbfbf;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* form clear */
  -webkit-appearance: none !important;
  min-height: 0;
  min-width: 0;
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*====================================================================
*    mixin
/*==================================================================*/
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
/*====================================================================
*    Responsive
/*==================================================================*/
.pc_contents {
  display: block !important;
}
@media (max-width: 768px) {
  .pc_contents {
    display: none !important;
  }
}

.sp_contents {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_contents {
    display: block !important;
  }
}

.pc_ib {
  display: inline-block !important;
}
@media (max-width: 768px) {
  .pc_ib {
    display: none !important;
  }
}

.sp_ib {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_ib {
    display: inline-block !important;
  }
}

.pc_inline {
  display: inline !important;
}
@media (max-width: 768px) {
  .pc_inline {
    display: none !important;
  }
}

.sp_inline {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_inline {
    display: inline !important;
  }
}

.pc_flex {
  display: flex !important;
}
@media (max-width: 768px) {
  .pc_flex {
    display: none !important;
  }
}

.sp_flex {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_flex {
    display: flex !important;
  }
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*====================================================================
*    All
/*==================================================================*/
/*::selection {
    background: #e2d7c5;
}

//Firefox
::-moz-selection {
    background: #e2d7c5;
}*/
body {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
body a {
  display: block;
}
body img,
body svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .newans {
    padding: 0;
  }
}

#aw2024_LP {
  position: relative;
  width: 100%;
  color: #222;
  box-sizing: border-box;
  overflow-x: hidden;
  background: #ffffff;
  /* ===リードエリア=== */
  /* ===アンカーエリア=== */
  /* ===アンカーエリア=== */
  /* ===コンセプト=== */
  /* ===about=== */
  /* メインコンテンツ部分 */
  /*====================================================================
  *    scedule
  /*==================================================================*/
}
#aw2024_LP a, #aw2024_LP p {
  color: #170d0b;
}
@media (max-width: 768px) {
  #aw2024_LP {
    margin: 0 auto;
  }
}
#aw2024_LP .mainArea {
  width: 100%;
  position: relative;
  /*　top関連 */
}
@media screen and (max-width: 767px) {
  #aw2024_LP .mainArea {
    padding-top: 21.0666666667vw;
  }
}
#aw2024_LP .mainArea .mainArea_pic {
  background-color: #F8F8F7;
}
#aw2024_LP .mainArea .white {
  background-color: #fff;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: height 1s cubic-bezier(0.41, 0.01, 0, 1);
}
#aw2024_LP .mainArea_txt {
  opacity: 0;
  transition: transform 1s ease 1s, opacity 1s linear 1s;
  transform: translate3d(0, 20px, 0);
  position: absolute;
  top: 57%;
  right: 37%;
  z-index: 2;
}
@media (max-width: 768px) {
  #aw2024_LP .mainArea_txt {
    width: 73.8666666667vw;
    top: auto;
    right: 6.4vw;
    bottom: 11.7333333333vw;
  }
}
#aw2024_LP .mainArea_txt::before {
  content: "";
  width: 6.171875vw;
  height: 6.5625vw;
  position: absolute;
  top: 1vw;
  left: -8vw;
  background-color: #fff;
  background: url("../images/hashtag_img.webp") center/contain no-repeat;
}
@media (max-width: 768px) {
  #aw2024_LP .mainArea_txt::before {
    width: 9.8666666667vw;
    height: 10.6666666667vw;
    left: -18%;
    top: 5%;
  }
}
#aw2024_LP .mainArea_txt.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#aw2024_LP .mainArea_txt img {
  width: 100%;
  margin: 0 auto 15px;
}
@media (max-width: 768px) {
  #aw2024_LP .mainArea_txt img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
#aw2024_LP .mainArea_txt p {
  /*         font-size: calcFz(16); */
  font-size: 1.25vw;
  font-weight: 300;
  line-height: 1.667;
  color: #000;
}
@media (max-width: 768px) {
  #aw2024_LP .mainArea_txt p {
    font-size: 4.2666666667vw;
    letter-spacing: 0.012rem;
  }
}
#aw2024_LP .mainArea.on .white {
  height: 0;
}
@media (max-width: 768px) {
  #aw2024_LP .mainArea.on::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
#aw2024_LP .leadArea {
  background: #F8F8F7;
  padding-top: 9.6875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .leadArea {
    padding-top: 17.0666666667vw;
  }
}
#aw2024_LP .leadArea__inner .leadArea__ttl {
  font-size: 3.75vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: -0.02em;
  font-weight: normal;
  text-align: center;
  line-height: normal;
  margin-bottom: 0.625vw;
}
@media (max-width: 768px) {
  #aw2024_LP .leadArea__inner .leadArea__ttl {
    font-size: 6.4vw;
    position: relative;
    margin-bottom: 2.4vw;
  }
}
#aw2024_LP .leadArea__inner .leadArea__text {
  width: fit-content;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5625vw;
  line-height: 1.6;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 auto 1.875vw;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #aw2024_LP .leadArea__inner .leadArea__text {
    width: 87.2vw;
    font-size: 3.2vw;
    line-height: 1.3;
    margin: 0 auto 4.2666666667vw;
  }
}
#aw2024_LP .leadArea__inner .leadArea__img {
  width: 5.78125vw;
  margin: 0 auto 1.71875vw;
}
@media (max-width: 768px) {
  #aw2024_LP .leadArea__inner .leadArea__img {
    width: 9.8666666667vw;
    margin: 0 auto 3.2vw;
  }
}
#aw2024_LP .leadArea__inner .leadArea__text2 {
  font-size: 1.09375vw;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: center;
  padding-left: 1.5625vw;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .leadArea__inner .leadArea__text2 {
    width: 87.2vw;
    margin: 0 auto;
    font-size: 3.7333333333vw;
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    text-align: left;
  }
}
#aw2024_LP .anchors {
  background: #F8F8F7;
  padding: 5.9375vw 0 9.375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .anchors {
    padding: 9.6vw 0 20.2666666667vw;
  }
}
#aw2024_LP .anchors .anchors__inner {
  display: flex;
  justify-content: center;
  gap: 3.125vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .anchors .anchors__inner {
    gap: 6.4vw;
  }
}
#aw2024_LP .anchors .anchors__inner .anchors__btn {
  display: flex;
  align-items: center;
  gap: 2.34375vw;
  box-sizing: border-box;
  width: 16.25vw;
  height: 3.28125vw;
  font-size: 1.5625vw;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  letter-spacing: 0.07em;
  border: #170d0b 1px solid;
  border-radius: 1.640625vw;
  padding-left: 1.640625vw;
}
@media (max-width: 768px) {
  #aw2024_LP .anchors .anchors__inner .anchors__btn {
    gap: 4vw;
    width: 36vw;
    height: 6.9333333333vw;
    font-size: 3.2vw;
    border-radius: 5.6vw;
    padding-left: 5.3333333333vw;
  }
}
#aw2024_LP .anchors .anchors__inner .anchors__btn img {
  width: 0.9375vw;
}
@media (max-width: 768px) {
  #aw2024_LP .anchors .anchors__inner .anchors__btn img {
    width: 2.1333333333vw;
  }
}
#aw2024_LP .anchors .anchors__inner .anchors__btn.anchors__btn--2 {
  display: flex;
  align-items: center;
  gap: 3.046875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .anchors .anchors__inner .anchors__btn.anchors__btn--2 {
    gap: 4vw;
  }
}
#aw2024_LP .sec_slider .slick-slide .slickimg_01 {
  width: 23.4375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_slider .slick-slide .slickimg_01 {
    width: 53.3333333333vw;
  }
}
#aw2024_LP .sec_slider .slick-slide .slickimg_02 {
  width: 22.1875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_slider .slick-slide .slickimg_02 {
    width: 53.3333333333vw;
  }
}
#aw2024_LP .sec_slider .slick-slide .slickimg_03 {
  width: 23.4375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_slider .slick-slide .slickimg_03 {
    width: 53.3333333333vw;
  }
}
#aw2024_LP .sec_slider .slick-slide .slickimg_04 {
  width: 24.765625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_slider .slick-slide .slickimg_04 {
    width: 53.3333333333vw;
  }
}
#aw2024_LP .sec_slider .slick-slide .slickimg_05 {
  width: 23.4375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_slider .slick-slide .slickimg_05 {
    width: 53.3333333333vw;
  }
}
#aw2024_LP .sec_slider .slick-slide .slickimg_06 {
  width: 23.4375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_slider .slick-slide .slickimg_06 {
    width: 53.3333333333vw;
  }
}
#aw2024_LP .sec_concept {
  padding: 6.25vw 0;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_concept {
    padding: 13.3333333333vw 0 14.9333333333vw;
  }
}
#aw2024_LP .sec_concept .concept__inner {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 6.25vw;
  width: 75vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_concept .concept__inner {
    flex-direction: column;
    width: 86.6666666667vw;
    margin: 0 auto;
    gap: 0;
  }
}
#aw2024_LP .sec_concept .concept__inner .concept__left {
  width: 25.390625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_concept .concept__inner .concept__left {
    width: 100%;
  }
}
#aw2024_LP .sec_concept .concept__inner .concept__left .concept__ttl {
  font-size: 1.875vw;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.07em;
  margin-bottom: 1.40625vw;
}
@media (max-width: 768px) {
  #aw2024_LP .sec_concept .concept__inner .concept__left .concept__ttl {
    font-size: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
#aw2024_LP .sec_concept .concept__inner .concept__left .concept__text {
  font-size: 1.09375vw;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_concept .concept__inner .concept__left .concept__text {
    font-size: 3.7333333333vw;
    line-height: 2;
    margin-bottom: 5.8666666667vw;
  }
}
#aw2024_LP .sec_concept .concept__inner .concept__right {
  width: 37.734375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_concept .concept__inner .concept__right {
    width: 78.4vw;
  }
}
#aw2024_LP .sec_about {
  padding: 9.375vw 0 18.90625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about {
    padding: 13.3333333333vw 0 36.8vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner {
  width: 75vw;
  margin: 0 auto;
  padding: 9.375vw 0;
  background: #F8F8F7;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner {
    width: 87.2vw;
    padding: 13.8666666667vw 0 20.8vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__ttl {
  font-size: 3.125vw;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 6.71875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__ttl {
    font-size: 6.4vw;
    line-height: 1.5;
    margin-bottom: 12.8vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box {
  width: 50vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box {
    width: 78.6666666667vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box .sec_about__box_text {
  font-size: 1.25vw;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: left;
  margin-bottom: 3.125vw;
}
@media (max-width: 768px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box .sec_about__box_text {
    font-size: 3.7333333333vw;
    line-height: 2;
    margin-bottom: 5.3333333333vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 {
  margin-bottom: 7.65625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 {
    margin-bottom: 14.9333333333vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 .sec_about__box_ttl {
  width: 15.46875vw;
  margin-bottom: 0.625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 .sec_about__box_ttl {
    width: 32vw;
    margin-bottom: 1.6vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 .sec_about__box_img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 .sec_about__box_img {
    flex-wrap: wrap;
    gap: 5.0666666667vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 .sec_about__box_img img {
  display: block;
  width: 24.0625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--01 .sec_about__box_img img {
    width: 79.4666666667vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--02 .sec_about__box_ttl {
  width: 36.09375vw;
  margin-bottom: 0.9375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box.sec_about__box--02 .sec_about__box_ttl {
    width: 74.6666666667vw;
    margin-bottom: 0.8vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box_img img {
  display: block;
  width: 37.109375vw;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box_img img {
    width: 100%;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box_img .sec_about__img1 {
  margin-bottom: 1.875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box_img .sec_about__img1 {
    margin-bottom: 4vw;
  }
}
#aw2024_LP .sec_about .sec_about__inner .sec_about__box_img .sec_about__img2 {
  width: 24.609375vw;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_about .sec_about__inner .sec_about__box_img .sec_about__img2 {
    width: 52vw;
  }
}
#aw2024_LP .sec_main {
  background: #F8F8F7;
  padding-top: 10.46875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main {
    padding-top: 13.8666666667vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner {
  width: 75vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner {
    width: 87.2vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__ttl {
  width: 75vw;
  margin-bottom: 4.0625vw;
  display: flex;
  align-items: center;
  gap: 0.625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__ttl {
    width: fit-content;
    gap: 1.8666666667vw;
    margin-bottom: 7.4666666667vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__ttl img {
  width: 4.375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__ttl img {
    width: 13.3333333333vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__ttl p {
  font-size: 1.640625vw;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.07em;
  position: relative;
  top: 0.625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__ttl p {
    font-size: 5.6vw;
    top: 2.1333333333vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__ttl p span {
  font-size: 0.9375vw;
  font-weight: normal;
  letter-spacing: 0.07em;
  padding-left: 0.625vw;
  position: relative;
  bottom: 0.15625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__ttl p span {
    font-size: 3.2vw;
    padding-left: 1.8666666667vw;
    bottom: 0.5333333333vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__ttl2 {
  font-size: 2.1875vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: normal;
  margin-bottom: 1.875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__ttl2 {
    font-size: 5.3333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__voice {
  display: block;
  width: 62.578125vw;
  margin-bottom: 0.625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__voice {
    width: 87.2vw;
    margin-bottom: 4.2666666667vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom {
    flex-direction: column;
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__left_inner {
    display: flex;
    align-items: center;
    gap: 2.1333333333vw;
    margin-bottom: 2.4vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__left_inner .sec_main__bottom_ttl {
  font-size: 1.25vw;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.02em;
  margin-bottom: 0.15625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__left_inner .sec_main__bottom_ttl {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__left_inner .sec_main__bottom_name {
  font-size: 1.015625vw;
  line-height: normal;
  letter-spacing: 0.02em;
  margin-bottom: 0.625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__left_inner .sec_main__bottom_name {
    font-size: 3.4666666667vw;
    margin-bottom: 0;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__bottom_link {
  display: flex;
  align-items: center;
  gap: 0.3125vw;
  font-size: 1.09375vw;
  font-family: "Lato", sans-serif;
  line-height: normal;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__bottom_link {
    width: fit-content;
    font-size: 3.7333333333vw;
    gap: 1.0666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__bottom_link img {
  width: 1.40625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_left .sec_main__bottom_link img {
    width: 4.8vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right {
  border-left: 1px solid #000;
  padding-left: 1.40625vw;
  width: 53.046875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right {
    width: 100%;
    padding: 0;
    border: none;
    border-bottom: 1px solid #170d0b;
    padding-bottom: 2.1333333333vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 83.2vw;
  }
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_btn p {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    font-size: 3.7333333333vw;
    letter-spacing: 0.07em;
    text-align: left;
    color: #000;
  }
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_btn button {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    outline: none;
    border: none;
    background-image: url("../images/more_btn.png");
    background-size: contain;
    background-color: transparent;
    background-repeat: no-repeat;
  }
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_btn button.active {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    outline: none;
    border: none;
    background-image: url("../images/more_btn_active.png");
    background-size: contain;
    background-color: transparent;
    background-repeat: no-repeat;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_text {
  font-size: 1.09375vw;
  line-height: normal;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__bottom .sec_main__bottom_right .sec_main__bottom_text {
    display: none;
    font-size: 4.2666666667vw;
    line-height: 1.75;
    padding-top: 4.2666666667vw;
    padding-bottom: 4.5333333333vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__sale {
  margin: 0 auto;
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__sale .sec_main__sale_text {
  font-size: 1.25vw;
  letter-spacing: 0.03em;
  line-height: normal;
  margin-bottom: 0.625vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__sale .sec_main__sale_text {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__sale .sec_main__sale_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25vw;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.02em;
  width: 25vw;
  height: 3.75vw;
  margin: 0 auto;
  background: #A7A7A5;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .sec_main__inner .sec_main__sale .sec_main__sale_btn {
    font-size: 4.2666666667vw;
    font-weight: 500;
    width: 87.2vw;
    height: 10.6666666667vw;
  }
}
#aw2024_LP .sec_main .sec_main__inner .sec_main__sale .sec_main__sale_btn.active {
  background: #170d0b;
  color: #fff;
}
#aw2024_LP .sec_main .items__slide {
  margin-bottom: 1.5625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .items__slide {
    margin-bottom: 4.1333333333vw;
  }
}
#aw2024_LP .sec_main .items__slide .slickimg {
  width: 100%;
}
#aw2024_LP .sec_main .items__slide .slick-slide {
  width: 21.640625vw !important;
  margin: 0 0.15625vw !important;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main .items__slide .slick-slide {
    width: 64vw !important;
    margin: 0 0.5333333333vw !important;
  }
}
#aw2024_LP .sec_main--1 {
  padding-top: 4.53125vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--1 {
    padding-top: 0;
  }
}
#aw2024_LP .sec_main--1 .sec_main__lineup_img {
  display: block;
  width: 56.328125vw;
  margin-left: 12.5vw;
  position: relative;
  bottom: 11.71875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--1 .sec_main__lineup_img {
    width: 72.5333333333vw;
    bottom: 13.8666666667vw;
    margin-left: 6.4vw;
  }
}
#aw2024_LP .sec_main--1 .sec_main__lineup_img img {
  width: 100%;
}
#aw2024_LP .sec_main--2 .sec_main__inner .sec_main__bottom {
  margin-bottom: 2.34375vw !important;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--2 .sec_main__inner .sec_main__bottom {
    margin-bottom: 8.5333333333vw !important;
  }
}
#aw2024_LP .sec_main--2 .sec_main__inner .sec_main__bottom_text {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
#aw2024_LP .sec_main--2 .sec_main__inner .sec_main__voice {
  display: block;
  width: 66.953125vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--2 .sec_main__inner .sec_main__voice {
    width: 87.2vw;
  }
}
#aw2024_LP .sec_main--2 .sec_main__inner .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main--3 .sec_main__inner .sec_main__bottom_text {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
#aw2024_LP .sec_main--3 .sec_main__inner .sec_main__voice {
  display: block;
  width: 61.09375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--3 .sec_main__inner .sec_main__voice {
    width: 87.2vw;
  }
}
#aw2024_LP .sec_main--3 .sec_main__inner .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main--4 .sec_main__inner .sec_main__bottom_text {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
#aw2024_LP .sec_main--4 .sec_main__inner .sec_main__voice {
  display: block;
  width: 60.078125vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--4 .sec_main__inner .sec_main__voice {
    width: 87.2vw;
  }
}
#aw2024_LP .sec_main--4 .sec_main__inner .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main--5 {
  padding-bottom: 10.46875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--5 {
    padding-bottom: 0;
  }
}
#aw2024_LP .sec_main--5 .sec_main__inner .sec_main__voice {
  display: block;
  width: 77.96875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--5 .sec_main__inner .sec_main__voice {
    width: 87.2vw;
  }
}
#aw2024_LP .sec_main--5 .sec_main__inner .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main--6 {
  padding-bottom: 10.46875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--6 {
    padding-bottom: 0;
  }
}
#aw2024_LP .sec_main--6 .sec_main__inner .sec_main__bottom_text {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
#aw2024_LP .sec_main--6 .sec_main__inner .sec_main__voice {
  display: block;
  width: 64.453125vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main--6 .sec_main__inner .sec_main__voice {
    width: 87.2vw;
  }
}
#aw2024_LP .sec_main--6 .sec_main__inner .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main.sec_main--7 {
  background: #fff;
  padding-bottom: 9.375vw;
  padding-top: 9.375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 {
    padding-top: 15.2vw;
    padding-bottom: 40vw;
    background: #F8F8F7;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__voice {
  display: block;
  width: 69.453125vw !important;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main__voice {
    width: 87.2vw !important;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__voice img {
  width: 100%;
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__ttl {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 5.15625vw;
  display: flex;
  align-items: center;
  gap: 1.25vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main__ttl {
    width: 87.2vw;
    margin-bottom: 8.5333333333vw;
    gap: 4.2666666667vw;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__ttl img {
  width: 3.671875vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main__ttl img {
    width: 12.2666666667vw;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__ttl p {
  font-size: 3.125vw;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.02em;
  font-weight: normal;
  line-height: 1;
  position: relative;
  top: 0;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main__ttl p {
    font-size: 6.4vw;
    line-height: 1.5;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__ttl p span {
  font-size: 0.9375vw;
  font-weight: normal;
  letter-spacing: 0.07em;
  padding-left: 0.625vw;
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main__ttl p span {
    font-size: 3.2vw;
    padding-left: 1.8666666667vw;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.265625vw;
  margin-bottom: 6.25vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 {
    gap: 1.3333333333vw;
    flex-direction: column;
    margin-bottom: 8vw;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 img {
  width: 11.015625vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 img {
    width: 37.6vw;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 .ttl2_box {
  padding: 1.2109375vw 1.25vw 1.2109375vw 2.5vw;
  background-image: url("../images/ttl_fukidashi.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 .ttl2_box {
    width: 87.2vw;
    height: 53.3333333333vw;
    padding: 0;
    background-image: url("../images/ttl_fukidashi_sp.svg");
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 p {
  width: 40.703125vw;
  position: relative;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 1.09375vw;
  letter-spacing: 0.02em;
  line-height: 1.71;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .sec_main--7__ttl2 p {
    width: 78.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}
#aw2024_LP .sec_main.sec_main--7 .items__slide {
  margin-bottom: 4.375vw;
}
@media screen and (max-width: 767px) {
  #aw2024_LP .sec_main.sec_main--7 .items__slide {
    margin-bottom: 10.6666666667vw;
  }
}
#aw2024_LP .sec_main.sec_main--7 .sec_main__sale .sec_main__sale_btn {
  background: #170d0b;
  color: #fff;
}
#aw2024_LP .scedule {
  padding-top: 11.953125vw;
  padding-bottom: 11.953125vw;
}
@media (max-width: 768px) {
  #aw2024_LP .scedule {
    padding-top: 26.6666666667vw;
    padding-bottom: 26.6666666667vw;
  }
}
@media (max-width: 768px) {
  #aw2024_LP .scedule .scedule_area_img {
    width: 87.2vw;
    display: block;
    margin: 0 auto;
  }
}
#aw2024_LP .scedule .scedule_ttl {
  font-size: clamp(10px, 2.4rem, 24px);
  font-weight: bold;
  margin-bottom: 5vw;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #aw2024_LP .scedule .scedule_ttl {
    margin-bottom: 6.4vw;
  }
}
#aw2024_LP .scedule .scedule_area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #aw2024_LP .scedule .scedule_area {
    display: none;
  }
}
#aw2024_LP .scedule .scedule_area .scedule_area_left p {
  font-size: clamp(10px, 1.5rem, 15px);
  margin-bottom: 1.875vw;
  line-height: 1.28;
  height: 1.640625vw;
}
#aw2024_LP .scedule .scedule_area .scedule_area_center {
  margin: 0 2.1875vw 0 2.890625vw;
  position: relative;
}
#aw2024_LP .scedule .scedule_area .scedule_area_center .scedule_dot_outline {
  margin-bottom: 1.875vw;
  height: 1.640625vw;
  width: 0.625vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
#aw2024_LP .scedule .scedule_area .scedule_area_center .scedule_dot_outline .scedule_dot {
  width: 0.625vw;
  height: 0.625vw;
  border-radius: 50%;
  background-color: #404040;
}
#aw2024_LP .scedule .scedule_area .scedule_area_center::before {
  content: "";
  display: block;
  width: 1px;
  height: 28.75vw;
  background: #000;
  position: absolute;
  top: 1.5%;
  right: 0.2734375vw;
}
#aw2024_LP .scedule .scedule_area .scedule_area_right p {
  font-size: clamp(10px, 1.5rem, 15px);
  margin-bottom: 1.875vw;
  line-height: 1.28;
  height: 1.640625vw;
}
#aw2024_LP .fade {
  opacity: 0;
  transition: transform 1s ease 0.2s, opacity 1s linear 0.2s;
  transform: translate3d(0, 20px, 0);
}
@media (max-width: 768px) {
  #aw2024_LP .fade {
    transition: transform 1s ease 0.4s, opacity 1s linear 0.4s;
  }
}
#aw2024_LP .fade.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.header ul li.on::after {
  background: #000;
}
@media (max-width: 768px) {
  .header ul li.on::after {
    background: #fff !important;
  }
}
.header ul li a {
  color: #000;
}

.header {
  background: #fff;
}
.header p, .header a {
  color: #000 !important;
}
.header h1 img {
  filter: invert(100%);
}

.mainArea_sub p {
  color: #000 !important;
}
@media (max-width: 768px) {
  .mainArea_sub p {
    color: #fff !important;
  }
}