@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
:root {
  --en:"Outfit", sans-serif;
  --btn:#333333;
  --orange-bg:#ffece0;
  --orange:#f99351;
  --cyan-bg:#ebf9fd;
  --yellow:#ffc663;
  --gray:#7f7f7f;
  --green-bg:#e1f7e9;
  background-color: #fff;
  --pink:#bd4562 ;
}

html {
  scroll-padding-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

.en {
  font-family: "Outfit", sans-serif;
}

.w1200 {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.w1400 {
  width: 1400px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.under400-only {
  display: none;
}

.under834-only {
  display: none;
}

.under1200-only {
  display: none;
}

.under834-none {
  display: inline-block;
}

.op0 {
  opacity: 0;
}

.js-op {
  opacity: 0;
  transition-duration: 1s;
}

.js-op.op1 {
  opacity: 1;
  transition-duration: 1s;
}

.animate__animated.animate__bounceIn {
  --animate-duration: 1s;
}

img {
  width: 100%;
  height: fit-content;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--black);
  opacity: 1;
  transition-duration: 0.3s;
  cursor: pointer;
}

a:hover {
  transition-duration: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  background-color: #fff;
  font-weight: 500;
  animation-name: bodyFade;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  letter-spacing: 1px;
  scroll-behavior: smooth;
  background-color: #fff;
  overflow-x: hidden;
  max-width: 2600px;
}

#loading_text {
  margin-top: -100px;
}

main {
  overflow: hidden;
}

@keyframes bodyFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* アニメーション */
/* --------------------フェードアップ------------------------ */
.fadeup {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeup {
  opacity: 0;
}

/* --------------------フェードイン------------------------ */
.fade {
  animation-name: fadeAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-fade {
  opacity: 0;
}

/* ロードで */
.js-load-fade {
  opacity: 0;
}

.js-load-fadeup {
  opacity: 0;
}

/* パララックス */
.simpleParallax.simple-parallax-initialized {
  overflow: inherit !important;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.mv__title .p1 {
  animation-name: bound;
  animation-duration: 0.5s;
  animation-delay: 3s;
  display: inline-block;
  color: var(--pink);
}
.mv__title .p2 {
  animation-name: bound;
  animation-duration: 0.5s;
  animation-delay: 3.2s;
  display: inline-block;
  color: var(--pink);
}
.mv__title .p3 {
  animation-name: bound;
  animation-duration: 0.5s;
  animation-delay: 3.4s;
  display: inline-block;
  color: var(--pink);
}
.mv__title .p4 {
  animation-name: bound;
  animation-duration: 0.5s;
  animation-delay: 3.6s;
  display: inline-block;
  color: var(--pink);
}

@keyframes bound {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes line {
  0% {
    width: 0;
  }
  50% {
    width: 30px;
  }
  100% {
    width: 0;
  }
}
@keyframes line2 {
  0% {
    width: 0;
  }
  50% {
    width: 35px;
  }
  100% {
    width: 0;
  }
}
/* ↑アニメーションここまで */
.logo {
  width: 70px;
  height: 100px;
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 100;
}

header {
  width: fit-content;
  display: flex;
  column-gap: 30px;
  position: fixed;
  top: 40px;
  right: 30px;
  width: 235px;
  z-index: 98;
}

.entry-swiper {
  width: 160px;
  height: 43px;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  overflow: hidden;
  display: block;
}
.entry-swiper .txt {
  font-family: var(--en);
  font-weight: 400;
  letter-spacing: 1px;
}

#ham {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.ham {
  position: relative;
}
.ham span {
  width: 100%;
  height: 5px;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  transition-duration: 0.5s;
}
.ham span:first-of-type {
  top: 0;
}
.ham span:nth-of-type(2) {
  top: 17.5px;
}
.ham span:last-of-type {
  top: 35px;
}

.entry-swiper .swiper-slide {
  height: fit-content;
  font-weight: bold;
  margin-top: 6px;
}

.nav-logo {
  width: 65px;
  margin: 0 auto 30px;
}

nav {
  width: 400px;
  max-width: 100%;
  top: 0;
  right: 0;
  transform: translate(-20px, -102%);
  transition-duration: 0.5s;
  position: fixed;
  z-index: 100;
}
nav.active {
  transform: translate(-20px, 20px);
  transition-duration: 0.5s;
}

.header__nav {
  margin-bottom: 60px;
}
.header__nav li {
  margin: 10px 0;
  text-align: center;
}
.header__nav li a {
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-family: var(--en);
  font-size: 16px;
}

.nav-contact {
  border-radius: 100px;
  background-color: #fff;
  width: 100%;
  height: 85px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.nav-contact i {
  font-size: 24px;
  margin-right: 15px;
}

.insta-link {
  color: #fff;
  font-size: 30px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.nav-wrapper {
  position: relative;
  background-color: #000;
  border-radius: 10px;
  padding: 35px 20px;
  width: 100%;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 19px;
  color: #fff;
  display: block;
  cursor: pointer;
}

#mv {
  position: relative;
}
#mv::before {
  position: absolute;
  top: 50vh;
  right: 2%;
  width: 55%;
  transform: translateY(-50%);
  height: auto;
  aspect-ratio: 3/2;
  background-image: url(../img/newgraduate/webp/mv-bg-main.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  z-index: -1;
}

.top__bl {
  height: 100vh;
  min-height: 700px;
  max-height: 1100px;
}
.top__bl .mv-img {
  width: auto;
  height: 100vh;
  min-height: 700px;
  max-height: 1100px;
  position: relative;
  z-index: 3;
}

.top__bl {
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mv__cont {
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(20%, -50%);
}

.mv__title-en {
  font-family: var(--en);
  font-size: 14px;
  margin-bottom: 20px;
}

.mv__title {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.4;
}

.mv__title-middle {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background-color: #ba253d;
  padding: 5px 10px;
  width: fit-content;
}

.mv__bg-txt {
  position: absolute;
  top: min(39vw, 50%);
  right: -2%;
  font-size: min(10.5vw, 300px);
  color: #000;
  opacity: 5%;
  z-index: 1;
  font-weight: bold;
  font-family: var(--en);
}

.second-bl {
  position: relative;
  padding: 80px 0 200px;
}
.second-bl::before {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 0;
  width: 23%;
  height: auto;
  aspect-ratio: 2/1.25;
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/mv-bg01.webp);
  background-size: contain;
  background-position: center center;
}
.second-bl::after {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 0;
  width: 23%;
  height: auto;
  aspect-ratio: 1/2;
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/mv-bg02.webp);
  background-size: contain;
  background-position: center center;
}
.second-bl .second-bl-bg {
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: 0;
  width: 23%;
  height: auto;
  aspect-ratio: 5/3.5;
  display: block;
  background-image: url(../img/newgraduate/webp/mv-bg03.webp);
  background-size: contain;
  background-position: center center;
  z-index: -1;
}
.second-bl .mv__img01 {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 1;
  width: 20%;
  max-width: 370px;
}
.second-bl .mv__img02 {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: 1;
  width: 20%;
}
.second-bl .mv__img03 {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 1;
  width: 17%;
}
.second-bl .cont .en {
  font-size: 14px;
  font-family: var(--en);
  text-align: center;
}
.second-bl .cont .title {
  font-weight: bold;
  font-size: 80px;
  text-align: center;
}
.second-bl .cont .marker {
  font-size: 32px;
  font-weight: bold;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  background: linear-gradient(transparent 60%, #e9b7c2 60%);
}
.second-bl .cont .txt {
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  line-height: 2.3;
  margin-bottom: 50px;
  margin-top: 60px;
}
.second-bl .btn__bl {
  display: flex;
  column-gap: 20px;
  margin: 0 auto;
  width: fit-content;
}
.second-bl .btn__bl .btn {
  width: 300px;
  height: 85px;
  border-radius: 100px;
  background-color: var(--btn);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
}
.second-bl .btn__bl .btn .small {
  font-size: 60%;
}

#num {
  background-color: #f1d6dc;
  position: relative;
  padding: 180px 0 0;
}
#num::before {
  position: absolute;
  background-image: url(../img/newgraduate/webp/about-bg.webp);
  background-size: contain;
  width: 26%;
  height: auto;
  aspect-ratio: 1/1.5;
  display: block;
  content: "";
  top: 0;
  right: 0;
  z-index: 0;
}

.num__title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-family: var(--en);
  font-size: 150px;
}
.num__title span {
  display: block;
  width: fit-content;
  position: relative;
}

.num__tag {
  width: 210px;
  position: absolute;
  top: -30px;
  left: calc(50% - 620px);
}

.num__cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
.num__cont img {
  padding: 0 30px;
}
.num__cont .txt {
  margin-bottom: 30px;
  font-weight: bold;
}

.num__title-small {
  font-size: 24px;
  font-weight: bold;
}

.num__title-middle {
  font-weight: bold;
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.num__title-middle .white-marker {
  background: linear-gradient(transparent 60%, #fff 60%);
}

.num__bl-title-middle {
  position: relative;
  margin-bottom: 80px;
}
.num__bl-title-middle::before {
  width: 100%;
  height: 3px;
  background-color: #000;
  top: 50%;
  left: 0;
  transform: translateY(-1.5px);
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
}
.num__bl-title-middle .ja {
  background-color: #f1d6dc;
  width: fit-content;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  font-size: 60px;
  font-weight: bold;
  padding: 0 10px;
}
.num__bl-title-middle .en {
  position: absolute;
  left: 50%;
  bottom: -15px;
  color: var(--pink);
  font-family: var(--en);
  font-size: 14px;
  font-weight: bold;
  transform: translateX(-50%);
  z-index: 2;
}

.num__list {
  display: grid;
  gap: 20px;
  grid-template-rows: 80px 80px 80px 80px 80px 80px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.num__list .item1 .txt {
  margin-top: 35px;
}
.num__list .p1 {
  width: 86px;
  margin: 10px auto;
  display: block;
}
.num__list .p2-1 {
  width: 64px;
  position: absolute;
  right: 9px;
  top: 101px;
}
.num__list .p3-1 {
  width: 29px;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 88px);
}
.num__list .p3-2 {
  width: 23px;
  position: absolute;
  bottom: 20px;
  right: calc(50% - 84px);
}
.num__list .p5 {
  width: 57px;
  position: absolute;
  bottom: 20px;
}
.num__list .p6-1 {
  width: 65px;
  height: 83px;
}
.num__list .p6-2 {
  width: 73px;
  height: 71px;
}
.num__list .p7 {
  width: 126px;
  margin: 15px auto 0;
  display: block;
}
.num__list .p8 {
  width: 187px;
}
.num__list .p9 {
  width: 66px;
}
.num__list > li {
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
.num__list > li .txt {
  font-weight: bold;
  line-height: 1;
  text-align: center;
  font-size: 20px;
}
.num__list > li .txt .num-txt {
  font-family: var(--en);
  font-size: 80px;
}
.num__list > li .orange-txt {
  display: block;
  text-align: center;
  color: var(--orange);
  font-size: 20px;
  margin-top: 5px;
}

.num__list-plus {
  margin-top: 15px;
}
.num__list-plus li {
  font-size: 16px;
  color: var(--pink);
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
  font-weight: bold;
}
.num__list-plus li::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e5e5e5;
  display: flex;
  justify-content: center;
  font-size: 18px;
  color: var(--pink);
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5;
}

.debue-bl {
  transform: translateX(20px);
  position: relative;
  display: block;
}

.gender-txt {
  display: flex;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  align-items: flex-end;
}
.gender-txt .bl {
  line-height: 1;
}
.gender-txt .bl .small {
  display: block;
  text-align: center;
  font-weight: bold;
}
.gender-txt .bl .big {
  display: block;
  text-align: center;
  font-size: 80px;
  font-family: var(--en);
}
.gender-txt .dot {
  font-size: 80px;
  display: block;
  font-family: var(--en);
  line-height: 1.1;
}

#item1 {
  grid-row: 1/4;
  grid-column: 1/2;
  background: #fff;
}

#item2 {
  grid-row: 4/7;
  grid-column: 1/2;
  background: #fff;
}
#item2 .txt {
  text-align: left;
}

#item3 {
  grid-row: 1/3;
  grid-column: 2/3;
  background: #fff;
}

#item4 {
  grid-row: 3/5;
  grid-column: 2/3;
  background: #fff;
}

#item5 {
  grid-row: 5/7;
  grid-column: 2/3;
  background: #fff;
}

#item6 {
  grid-row: 1/4;
  grid-column: 3/4;
  background: #fff;
}
#item6 .bl1 {
  display: flex;
  column-gap: 20px;
  width: fit-content;
  margin: 10px auto 10px;
}
#item6 .bl1 .txt1 {
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
#item6 .bl1-txt {
  line-height: 1;
}
#item6 .num-txt {
  font-size: 80px;
  font-weight: bold;
  font-family: var(--en);
}
#item6 .bl2 {
  display: flex;
  column-gap: 20px;
  flex-direction: row-reverse;
  width: fit-content;
  margin: 10px auto 10px;
}
#item6 .bl2 .txt1 {
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

#item7 {
  grid-row: 1/4;
  grid-column: 4/5;
  background: #fff;
}

#item8 {
  grid-row: 4/7;
  grid-column: 3/4;
  background: #fff;
}
#item8 .flex {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 20px;
}
#item8 .flex img {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
#item8 .flex .txt {
  padding-right: 10px;
  padding-top: 0;
  white-space: nowrap;
}

#item9 {
  grid-row: 4/7;
  grid-column: 4/5;
  background: #fff;
}
#item9 .flex {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
}
#item9 .flex img {
  position: absolute;
  top: 83px;
  right: 30px;
}
#item9 .flex .txt {
  padding-right: 5%;
  padding-top: 53px;
  text-align: left;
}
#item9 .flex .num-txt {
  font-size: 57px;
}
#item9 .flex .txt-small {
  font-size: 12px;
  margin-top: 8px;
}

.num__list-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--pink);
  padding: 6px 20px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 10px;
}

.num__slider-bl {
  position: relative;
  transform: translateY(100px);
  overflow: hidden;
}

#style {
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}
#style::before {
  width: 25%;
  height: auto;
  aspect-ratio: 2/1;
  display: block;
  position: absolute;
  left: 0;
  top: 200px;
  background-image: url(../img/newgraduate/webp/style-bg01.webp);
  background-size: contain;
  content: "";
  z-index: -1;
}
#style::after {
  width: 25%;
  height: auto;
  aspect-ratio: 2/1.5;
  display: block;
  position: absolute;
  right: 0;
  top: 170px;
  background-image: url(../img/newgraduate/webp/style-bg02.webp);
  background-size: contain;
  content: "";
  z-index: -1;
}

.style__title-bl {
  margin-bottom: 50px;
}

.style__title-main-en {
  text-align: center;
  color: #88c4da;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.style__title-main {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.style__main-txt {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 70px;
}

.style__main-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 100px;
}
.style__main-list li {
  border-radius: 20px;
  background-color: #c3dfea;
  padding: 25px;
  display: flex;
  column-gap: 20px;
  position: relative;
}
.style__main-list li .style__main-list-num {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-weight: bold;
  font-family: var(--en);
  font-size: 64px;
  line-height: 0.9;
}
.style__main-list li img {
  width: 120px;
  height: fit-content;
}
.style__main-list li .cont {
  width: calc(100% - 140px);
  position: relative;
  z-index: 2;
}
.style__main-list li .cont .txt {
  font-size: 15px;
}

.style__main-list-title {
  font-size: 24px;
  display: block;
}
.style__main-list-title .small {
  font-size: 18px;
  display: block;
}

.circle {
  width: 152px;
  height: 152px;
  animation: spin 20s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -76px;
  right: -76px;
  z-index: 0;
}

.style__bg {
  background-color: #c3dfea;
  position: relative;
  padding: 120px 0 60px;
}
.style__bg::before {
  position: absolute;
  background-image: url(../img/newgraduate/webp/about-bg.webp);
  background-size: contain;
  width: 26%;
  height: auto;
  aspect-ratio: 1/1.5;
  display: block;
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
}
.style__bg .item {
  position: relative;
  border-radius: 40px;
  background-color: #fff;
  padding: 80px 60px 100px;
  margin-bottom: 60px;
}
.style__bg .item .style__num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--en);
  font-weight: bold;
  font-size: 32px;
  position: absolute;
  transform: translate(-50%, -30%);
  left: 0;
  top: 0;
}
.style__bg .item .style__num:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 96px;
  height: 96px;
  background-image: url(../img/newgraduate/webp/style-circle-txt.webp);
  animation: spin 20s linear infinite;
  background-size: contain;
}
.style__bg .item.p2 .style__num {
  transform: translate(50%, -30%);
  left: auto;
  right: 0;
}
.style__bg .item.p4 .style__num {
  transform: translate(50%, -30%);
  left: auto;
  right: 0;
}
.style__bg .item .style__float-en {
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  right: -100px;
  top: 0;
  color: #fff;
  font-family: var(--en);
  font-weight: bold;
  font-size: 80px;
  line-height: 1;
  width: fit-content;
}
.style__bg .item.p2 .style__float-en {
  left: -100px;
}
.style__bg .item.p2 .style__item-bl {
  flex-direction: row-reverse;
}
.style__bg .item.p2 .style__item-bl .cont {
  padding-left: 0;
  padding-right: 40px;
}
.style__bg .item.p4 .style__float-en {
  left: -100px;
}
.style__bg .item.p4 .style__item-bl {
  flex-direction: row-reverse;
}
.style__bg .item.p4 .style__item-bl .cont {
  padding-left: 0;
  padding-right: 40px;
}

.style__item-bl {
  display: flex;
}
.style__item-bl img {
  width: 35%;
  height: fit-content;
}
.style__item-bl .cont {
  width: 65%;
  padding-left: 40px;
}
.style__item-bl .cont .txt {
  font-size: 17px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.style__item-title {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
.style__item-title .small {
  font-size: 24px;
  display: block;
  text-align: center;
  font-weight: bold;
}
.style__item-title::before {
  width: 30px;
  height: 80px;
  border-top: 5px solid #000;
  border-left: 5px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
}
.style__item-title::after {
  width: 30px;
  height: 80px;
  border-bottom: 5px solid #000;
  border-right: 5px solid #000;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
}

.point__bl {
  display: flex;
  margin-top: 50px;
}
.point__bl .style-swiper {
  width: 30%;
}
.point__bl .point__cont {
  width: 70%;
  padding-left: 30px;
}
.point__bl .point__title {
  position: relative;
  line-height: 1.6;
  margin-top: 30px;
  border-top: 1px solid #000;
  padding: 13px 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
.point__bl .point__title::after {
  width: 80px;
  height: 80px;
  background-size: contain;
  background-image: url(../img/newgraduate/webp/point-circle.webp);
  display: block;
  content: "";
  top: -30px;
  right: -7px;
  z-index: 1;
  position: absolute;
}
.point__bl .point__txt {
  font-size: 15px;
}

.point__bl > img {
  width: 30%;
}

.style__event-bl {
  margin-top: 100px;
  border-radius: 20px;
  border: 1px solid #000;
  position: relative;
  padding: 82px 55px 52px;
}
.style__event-bl::after {
  position: absolute;
  right: -50px;
  height: 290px;
  width: 90px;
  bottom: -80px;
  background-image: url(../img/newgraduate/webp/style01-event3.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  content: "";
}

.style__event-deco {
  position: absolute;
  width: 144px;
  top: 0;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1;
}

.style__event-cont {
  display: flex;
}
.style__event-cont .img {
  width: 40%;
  position: relative;
  aspect-ratio: 3/1;
}
.style__event-cont .img img:first-of-type {
  position: absolute;
  left: -80px;
  top: -100px;
  width: 116%;
}
.style__event-cont .img img:last-of-type {
  position: absolute;
  right: -22px;
  width: 57%;
  top: -50px;
}
.style__event-cont .txt-bl {
  width: 60%;
  padding-left: 40px;
}

.style-swiper img {
  width: 100%;
}

#style02 {
  padding-bottom: 60px;
}
#style02::after {
  z-index: 3;
  display: block;
  position: absolute;
  bottom: 25px;
  right: 0;
  width: 172px;
  height: 256px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  transform: translate(121px, 70px);
  background-image: url(../img/newgraduate/webp/style02-3.webp);
}

.holiday-swiper {
  position: relative;
  left: -60px;
  width: calc(100% + 120px);
  overflow: hidden;
  background-color: #a0c5d4;
  padding: 15px 0;
  margin-top: 50px;
}
.holiday-swiper .holiday-list {
  display: flex;
  column-gap: 30px;
}
.holiday-swiper .holiday-list li {
  color: #fff;
  font-size: 29.2px;
  font-weight: bold;
}
.holiday-swiper .holiday-list li::before {
  content: "#";
}

#style03::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 197px;
  height: 253px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  transform: translate(-148px, -40px);
  background-image: url(../img/newgraduate/webp/style03-5.webp);
}

#style04::after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 126px;
  height: 293px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  transform: translate(80px, 30px);
  background-image: url(../img/newgraduate/webp/style04-3.webp);
}

.creative__title-main {
  margin-top: 40px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid #000;
}
.creative__title-main img {
  width: 368px;
}

.creative__bl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}

.creative__item {
  display: flex;
}
.creative__item img {
  width: 35%;
}
.creative__item .cont {
  width: 65%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.creative__item .cont .creative__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.creative__item .cont .txt {
  font-size: 15px;
}

.join {
  padding: 120px 0;
}

.join__bl {
  border: 5px solid #000;
  border-radius: 30px;
  padding: 60px 40px;
  display: flex;
  column-gap: 30px;
  position: relative;
}
.join__bl img {
  width: 30%;
}
.join__bl .cont {
  width: calc(70% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join__message {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}
.join__message .small {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.join__btn-bl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
.join__btn-bl .btn {
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  position: relative;
  text-align: center;
  font-size: 20px;
  border-radius: 100px;
  flex-direction: column;
  line-height: 1.3;
}
.join__btn-bl .btn i {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.join__btn-bl .btn .small {
  display: block;
  text-align: center;
  font-size: 17px;
}
.join__btn-bl .btn.insta {
  font-family: var(--en);
  font-size: 24px;
}

.join__title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: bold;
  font-family: var(--en);
  width: fit-content;
  background-color: #fff;
  padding: 0 10px;
  font-weight: bold;
}
.join__title .txt {
  position: relative;
  display: block;
}

#env {
  background-color: #a9576e;
  position: relative;
  padding: 120px 0;
}
#env::before {
  position: absolute;
  background-image: url(../img/newgraduate/webp/about-bg.webp);
  background-size: contain;
  width: 26%;
  height: auto;
  aspect-ratio: 1/1.5;
  display: block;
  content: "";
  top: 0;
  right: 0;
  z-index: 0;
}

.env__main-bl {
  margin-bottom: 70px;
}
.env__main-bl .txt {
  font-weight: bold;
  font-size: 17px;
  text-align: center;
  color: #fff;
}

.env__main-en {
  font-weight: bold;
  font-family: var(--en);
  font-size: 14px;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}

.env__main-title {
  font-weight: bold;
  font-size: 42px;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.env__item {
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  padding: 100px 50px;
  margin-bottom: 60px;
}

.env__num {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #111010;
  width: 125px;
  height: 63px;
  border-radius: 0 0 100px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--en);
  font-weight: bold;
  font-size: 34px;
}

.env__title-bl {
  width: 615px;
  height: 125px;
  max-width: 100%;
  margin: 0 auto 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.env__title-bl::before {
  width: 25px;
  height: 125px;
  border: 1px solid #000;
  border-right: none;
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
}
.env__title-bl::after {
  width: 25px;
  height: 125px;
  border: 1px solid #000;
  border-left: none;
  display: block;
  top: 0;
  right: 0;
  position: absolute;
  content: "";
}

.env__title-en {
  color: #f4f4f4;
  font-weight: bold;
  font-size: 80px;
  font-family: var(--en);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  display: block;
  z-index: 0;
}

.env__title {
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.env__title .small {
  font-size: 24px;
  display: block;
  text-align: center;
}

.env__item-txt {
  text-align: center;
  font-size: 17px;
}

.basic-bl {
  margin-top: 100px;
}

.edu__title {
  position: relative;
  margin-bottom: 40px;
}
.edu__title::before {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  z-index: 0;
  top: 20px;
  display: block;
  content: "";
}
.edu__title .img {
  position: relative;
  z-index: 1;
  height: 32px;
  width: fit-content;
  background-color: #fff7ea;
  padding: 0 10px;
  margin: 0 auto;
  display: block;
  margin-bottom: 5px;
}
.edu__title .img img {
  height: 100%;
  width: auto;
}
.edu__title .txt {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  display: block;
}

.edu__basic-flex {
  display: flex;
  margin-bottom: 50px;
}
.edu__basic-flex img {
  width: 35%;
}
.edu__basic-flex .cont {
  width: 65%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.edu__basic-flex .cont .txt {
  font-size: 17px;
}

.edu__basic-flex-title-bl {
  display: flex;
  column-gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}
.edu__basic-flex-title-bl .tag {
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}
.edu__basic-flex-title-bl .title {
  font-size: 24px;
  width: calc(100% - 120px);
  line-height: 1.6;
}

.edu__basic-point-bl {
  background-color: #fff;
  padding: 50px;
  position: relative;
}

.edu__basic-point-title-main {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
}
.edu__basic-point-title-main::before {
  background-image: linear-gradient(to right, #000, #000 3px, transparent 3px);
  background-size: 8px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  display: block;
  content: "";
  width: 76px;
  position: absolute;
  height: 2px;
  transform: rotate(57deg);
  top: 39px;
  left: -74px;
}
.edu__basic-point-title-main::after {
  background-image: linear-gradient(to right, #000, #000 3px, transparent 3px);
  background-size: 8px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  display: block;
  content: "";
  width: 76px;
  position: absolute;
  height: 2px;
  transform: rotate(-57deg);
  top: 39px;
  right: -74px;
}
.edu__basic-point-title-main .small {
  font-size: 18px;
  display: block;
  text-align: center;
}

.edu__basic-point-flex {
  display: flex;
  display: grid;
  column-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
}
.edu__basic-point-flex .item img {
  height: 170px;
  width: auto;
  margin: 0 auto 10px;
  display: block;
}
.edu__basic-point-flex .item .txt {
  font-size: 15px;
}

.edu__basic-point-title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.6;
}
.edu__basic-point-title .orange-txt {
  display: block;
  text-align: center;
  color: #aa956b;
  font-size: 21px;
}

.levelup-bl {
  margin-top: 60px;
}

.levelup__flex {
  display: grid;
  column-gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.levelup__flex .item .levelup__title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 5px;
}
.levelup__flex .item .img {
  position: relative;
  margin-bottom: 15px;
}
.levelup__flex .item .img .tag {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #000;
  border-radius: 50%;
  z-index: 1;
  left: -20px;
  top: -20px;
  color: #fff;
  line-height: 1.5;
}
.levelup__flex .item .txt {
  font-size: 17px;
}

.benefit__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.benefit__list li {
  border-radius: 10px;
  background-color: #f7f7f7;
  padding: 20px;
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.benefit__list li img {
  width: 110px;
}
.benefit__list li .cont {
  width: calc(100% - 130px);
}
.benefit__list li .cont .bene__title {
  font-weight: bold;
  color: #ad3758;
  font-size: 18px;
  margin-bottom: 10px;
}
.benefit__list li .cont .txt {
  font-size: 15px;
}

.career__table {
  margin-top: 60px;
}

.slide-txt {
  font-size: 14px;
  display: none;
}

.interview-slide-txt {
  font-size: 14px;
  margin-top: 7px;
}

.career__bl {
  display: flex;
  margin-top: 100px;
  position: relative;
  padding-bottom: 60px;
}
.career__bl .img-bl {
  width: 30%;
}
.career__bl .img-bl img {
  display: block;
  width: 215px;
  max-width: 24%;
  margin: 0;
  transform: translate(15%, -70px);
  position: absolute;
}
.career__bl .cont {
  width: 70%;
}
.career__bl .cont .career__title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}
.career__bl .cont .career__title .small {
  font-size: 16px;
  display: block;
}
.career__bl .cont .txt {
  font-size: 17px;
  margin-bottom: 25px;
}

.career__list {
  display: flex;
  gap: 5px;
}
.career__list li {
  background-color: #ad3758;
  font-weight: bold;
  color: #fff;
  padding: 5px 20px 3px;
  border-radius: 3px;
  font-size: 16px;
}
.career__list .fa-check {
  margin-right: 6px;
}

#env02::before {
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/env-illu.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 200px;
  height: 187px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30px, -110px);
  z-index: 1;
}
#env02::after {
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/bene-illu.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 109px;
  height: 339px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50px, -30px);
  z-index: 1;
}

#env03 {
  padding: 100px 50px 0;
  margin-bottom: 0;
}

#interview {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
#interview::before {
  position: absolute;
  left: 0;
  top: 30px;
  width: 15%;
  aspect-ratio: 1/3;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/interview-bg1.webp);
}
#interview::after {
  position: absolute;
  right: 0;
  top: 24px;
  width: 14%;
  aspect-ratio: 1/1.4;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/interview-bg2.webp);
}

.interview__title-bl {
  margin-bottom: 85px;
  width: fit-content;
}

.interview__title-en {
  font-family: var(--en);
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  width: fit-content;
}

.interview__title-caution {
  font-size: 17px;
  font-weight: bold;
  width: fit-content;
  width: 95%;
}

.interview-box {
  width: calc(50% + 600px);
  max-width: 90%;
  margin: 0 0 0 auto;
}

.interview__item {
  border: 2px solid #000;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  column-gap: 20px;
  align-items: flex-end;
  background-color: #fff;
  height: 310px;
}
.interview__item .imgb-bl {
  width: 270px;
  position: relative;
  height: 100%;
}
.interview__item .imgb-bl img {
  position: absolute;
  top: auto;
  bottom: -30px;
  left: -30px;
  width: 323px;
  height: auto;
}
.interview__item .imgb-bl .name {
  position: absolute;
  bottom: 25px;
  left: -30px;
}
.interview__item .imgb-bl .name .small {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px 0;
  margin-bottom: 10px;
  display: block;
  width: fit-content;
  white-space: nowrap;
}
.interview__item .imgb-bl .name .big {
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  padding: 2px 10px 0;
  display: block;
  width: fit-content;
  background-color: #000;
}
.interview__item .cont {
  width: calc(100% - 135px);
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.interview__item .cont .interview__title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.interview__item .cont .interview__title::before {
  content: "“";
  font-size: 120px;
  opacity: 0.1;
  position: absolute;
  line-height: 1;
  top: -37px;
  left: -45px;
  z-index: -1;
  font-family: var(--en);
}
.interview__item .cont .txt {
  font-size: 15px;
  line-height: 1.5;
}

.interview-swiper {
  position: relative;
  z-index: 5;
  padding-right: 4%;
}
.interview-swiper .swiper-button-next, .interview-swiper .swiper-button-prev {
  top: -130px;
  background: #000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
}
.interview-swiper .swiper-button-next:after, .interview-swiper .swiper-button-prev:after {
  font-family: var(--en);
}
.interview-swiper .swiper-button-next:after {
  content: "NEXT";
  font-size: 14px;
}
.interview-swiper .swiper-button-prev:after {
  content: "PREV";
  font-size: 14px;
}

.swiper-button-prev {
  left: 1030px;
}

.swiper-button-next {
  left: 1120px;
}

#message {
  background-color: #efd6db;
  padding: 100px 0 120px;
}

.message__title-bl {
  margin-bottom: 60px;
}
.message__title-bl .message__title {
  font-size: 80px;
  text-align: center;
  font-weight: bold;
  font-family: var(--en);
  line-height: 1;
  margin-bottom: 40px;
}
.message__title-bl .message__txt {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
}

.message__cont {
  display: flex;
  column-gap: 4%;
}
.message__cont img {
  width: 36%;
  height: fit-content;
}
.message__cont img #env02::after {
  display: block;
  content: "";
  background-image: url(../img/newgraduate/webp/bene-illu.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 79px;
  height: 236px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-41px, 26px);
  z-index: 1;
}
.message__cont .cont {
  width: 60%;
}
.message__cont .cont .txt {
  margin-bottom: 30px;
  font-size: 17px;
}
.message__cont .cont .message__name {
  text-align: right;
  font-weight: bold;
  font-size: 21px;
}
.message__cont .cont .message__name .small {
  font-size: 14px;
}

.join__message-main {
  width: 1200px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  text-align: center;
  font-weight: bold;
  font-size: 42px;
  margin-bottom: 100px;
  position: relative;
}
.join__message-main::before {
  position: absolute;
  width: 25%;
  aspect-ratio: 2/1.3;
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  top: -40px;
  left: -20px;
  background-image: url(../img/newgraduate/webp/join-bg01.webp);
}
.join__message-main::after {
  position: absolute;
  width: 25%;
  aspect-ratio: 2/1.3;
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  top: -40px;
  right: -70px;
  background-image: url(../img/newgraduate/webp/join-bg02.webp);
}

#rec {
  background-color: #f6f6f6;
  padding: 100px 0;
}

.rec__bl {
  display: flex;
  margin-bottom: 100px;
}
.rec__bl:last-of-type {
  margin-bottom: 0;
}
.rec__bl .rec__title {
  width: 270px;
  font-size: 32px;
  font-weight: bold;
  height: fit-content;
  display: flex;
  align-items: center;
}
.rec__bl .rec__title::before {
  width: 28px;
  height: 38px;
  background-image: url(../img/newgraduate/webp/rec-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: inline-block;
  margin-right: 20px;
}
.rec__bl .rec__list {
  width: calc(100% - 270px);
  border-left: 1px solid #000;
  padding-left: 80px;
}
.rec__bl .rec__list > li {
  border-bottom: 1px dashed #d1d1d1;
  display: flex;
  width: 100%;
  padding: 0 0 15px 15px;
  margin-bottom: 15px;
}
.rec__bl .rec__list > li .rec__title-small {
  width: 140px;
  font-size: 16px;
  font-weight: bold;
}
.rec__bl .rec__list > li .txt {
  width: calc(100% - 140px);
  font-size: 16px;
  width: fit-content;
  padding-right: 15px;
}
.rec__bl .rec__list > li .rec__list-small {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.rec__bl .rec__list > li .rec__list-small > li {
  background-color: #e6e6e6;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  padding: 2px 10px 0;
}

.rec__cont {
  width: calc(100% - 270px);
  padding-left: 80px;
}
.rec__cont.p2 {
  display: block;
  border-left: 1px solid #000;
}

.rec__txt {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 50px;
}

.rec__flow-list {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
}
.rec__flow-list::before {
  border-bottom: 5px dotted #e1e1e1;
  position: absolute;
  z-index: 0;
  content: "";
  width: 100%;
  height: 5px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.rec__flow-list li {
  width: 140px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ba253d;
}

.rec__entry-bl {
  position: relative;
  padding: 60px;
  background-color: #fff;
}
.rec__entry-bl .rec__entry-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -37%);
  width: fit-content;
}
.rec__entry-bl .rec__entry-title .img {
  width: 203px;
  display: block;
}
.rec__entry-bl .rec__entry-title .txt {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  display: block;
}

.rec__entry-txt {
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 30px;
}

.rec__entry-btn-bl {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  margin-bottom: 50px;
}

.rec__entry-btn {
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #333333;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rec__entry-btn i {
  font-size: 32px;
  margin-bottom: 11px;
}

.rec__entry-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.rec__entry-cont dt {
  background-color: #333;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  width: 100px;
  padding: 15px 10px;
}
.rec__entry-cont dd {
  font-size: 16px;
  width: calc(100% - 120px);
}

.rec__entry-wear {
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.rec__entry-wear dt {
  font-size: 18px;
  font-weight: bold;
}
.rec__entry-wear dd {
  font-size: 15px;
}

#salon {
  padding-top: 100px;
}

.salon__title-main {
  text-align: center;
  font-family: var(--en);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 60px;
}

.salon__title {
  position: relative;
  margin-bottom: 60px;
  margin-top: 60px;
}
.salon__title::after {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  content: "";
  z-index: 0;
}
.salon__title .img {
  width: fit-content;
  display: block;
  margin: 0 auto;
  padding: 0 20px 10px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.salon__title .img img {
  width: 136px;
}

.salon__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}
.salon__list li {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.salon__list li img {
  width: 200px;
}
.salon__list li .cont {
  width: calc(100% - 220px);
}
.salon__list li .cont .address {
  font-size: 14px;
}
.salon__list li .cont .map-link {
  text-decoration: underline;
  font-size: 14px;
  color: #999999;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}
.salon__list li .cont .tel-link {
  font-weight: 500;
  font-family: var(--en);
  font-size: 16px;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}
.salon__list li .cont .more-link {
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  display: block;
  width: fit-content;
  padding: 2px 18px 0;
  font-family: var(--en);
  font-size: 12px;
}

.salon__list-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 21px;
}

.footer__logo {
  width: 93px;
  margin: 0 auto 40px;
}

footer {
  margin-bottom: 120px;
}
footer small {
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  font-family: var(--en);
  display: block;
}

.rec__entry-wear i {
  margin-right: 4px;
}

.bnr {
  width: 620px;
  max-width: 90%;
  margin: 0 auto 70px;
  display: block;
}
.bnr img {
  height: auto;
}
.bnr picture {
  height: auto;
}

.float-txt {
  font-size: 12px;
  font-weight: 500;
}

.entry-btn-sp {
  display: none;
}

@media screen and (max-width: 1500px) {
  .mv__bg-txt {
    top: min(39vw, 63%);
    font-size: min(10vw, 300px);
  }
  .second-bl .cont .title {
    font-size: 65px;
  }
  .second-bl .cont .marker {
    font-size: 28px;
    line-height: 1.2;
  }
  .second-bl .cont .txt {
    font-size: 18px;
  }
  .second-bl .mv__img03 {
    bottom: 316px;
  }
  .num__title {
    font-size: 130px;
  }
  .num__tag {
    left: calc(50% - 530px);
  }
  .num__title-middle {
    font-size: 38px;
  }
  .num__bl-title-middle .ja {
    font-size: 50px;
  }
  .num__list-title {
    font-size: 14px;
  }
  .num__list li .txt .num-txt {
    font-size: 65px;
  }
  .gender-txt .bl .big {
    font-size: 65px;
  }
  .num__list li .txt {
    font-size: 18px;
  }
  .circle {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -47px;
  }
  .style__bg .item .style__num {
    transform: translate(13%, -30%);
  }
  .style__bg .item .style__float-en {
    right: -65px;
    font-size: 65px;
  }
  .style__bg .item.p2 .style__num {
    transform: translate(15%, -30%);
  }
  .style__bg .item.p2 .style__float-en {
    left: -65px;
  }
  .style__bg .item.p4 .style__num {
    transform: translate(15%, -30%);
  }
  .style__bg .item.p4 .style__float-en {
    left: -65px;
  }
  #style02::after {
    width: 112px;
    height: 164px;
    transform: translate(60px, 63px);
  }
  .point__bl .point__title {
    font-size: 21px;
  }
  .point__bl .point__title::after {
    right: -33px;
  }
  #style03::after {
    width: 141px;
    height: 184px;
    transform: translate(-52px, 9px);
  }
  #style04::after {
    widtz: 76px;
    height: 181px;
    transform: translate(48px, 30px);
  }
  #env02::before {
    width: 141px;
    height: 140px;
    transform: translate(30px, -72px);
  }
  #env02::after {
    width: 79px;
    height: 236px;
    transform: translate(-41px, 26px);
  }
  #item1 .txt {
    margin-top: 25px;
  }
  #item2 .txt {
    margin-top: 20px;
  }
  .num__list-title {
    font-size: 13px;
  }
  .num__list-plus li::before {
    width: 20px;
    height: 20px;
    font-size: 13px;
    top: 1px;
  }
  .num__list-plus li {
    font-size: 14px;
    padding-left: 27px;
    margin-bottom: 5px;
  }
  #item9 .flex .num-txt {
    font-size: 52px;
  }
  #item9 .flex img {
    top: 67px;
  }
  .num__list .p9 {
    width: 58px;
  }
  #item8 .flex .txt {
    padding-right: 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #item9 .flex .txt {
    padding-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 1370px) {
  .holiday-swiper .holiday-list li {
    font-size: 2.1vw;
  }
  .swiper-button-next {
    left: auto;
    right: 40px;
  }
  .swiper-button-prev {
    left: auto;
    right: 130px;
  }
}
@media screen and (max-width: 1200px) {
  #mv::before {
    top: min(50vh, 330px);
  }
  .under1200-only {
    display: inline-block;
  }
  .mv__cont {
    left: 41%;
    top: 45%;
  }
  .mv__title {
    font-size: 50px;
  }
  .mv__title-middle {
    font-size: 21px;
  }
  .top__bl .mv-img {
    min-height: 400px;
    max-height: 600px;
  }
  .second-bl .cont .title {
    font-size: 50px;
  }
  .second-bl .cont .marker {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .second-bl .cont .txt {
    font-size: 16px;
  }
  .num__title {
    font-size: 100px;
  }
  .num__tag {
    left: 5vw;
    width: 17%;
  }
  .num__title-middle {
    font-size: 26px;
  }
  .num__title-small {
    font-size: 19px;
  }
  .num__cont .txt {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .num__list {
    gap: 15px;
    grid-template-rows: 50px 50px 50px 50px 50px 50px;
  }
  .num__list > li {
    padding: 15px 10px;
  }
  .num__list-title {
    padding: 4px 11px;
    letter-spacing: 0.5px;
  }
  .num__list li .txt {
    font-size: 13px;
  }
  .num__list li .txt .num-txt {
    font-size: 48px;
  }
  .num__list .p1 {
    width: 62px;
  }
  .num__list li .orange-txt {
    font-size: 13px;
    margin-top: 5px;
  }
  .num__list .p2-1 {
    width: 33px;
    top: 48px;
  }
  .num__list .p2-2 {
    width: 58px;
    right: 15px;
    bottom: 14px;
  }
  .gender-txt .bl .big {
    font-size: 48px;
  }
  .gender-txt .dot {
    font-size: 48px;
  }
  .gender-txt .bl .small {
    font-size: 12px;
  }
  .num__list .p3-1 {
    width: 19px;
    bottom: 14px;
    left: 20px;
  }
  .num__list .p3-2 {
    width: 15px;
    bottom: 14px;
    right: 20px;
  }
  .num__list .p5 {
    width: 27px;
    bottom: 14px;
  }
  #item6 .bl1 {
    display: flex;
    column-gap: 18px;
    margin: -1px auto 7px;
  }
  #item6 .num-txt {
    font-size: 48px;
  }
  .num__list .p6-1 {
    width: 39px;
    height: 43px;
  }
  .num__list .p6-2 {
    width: 36px;
    height: 38px;
  }
  .num__list .p7 {
    width: 69px;
  }
  .num__list .p8 {
    width: 161px;
  }
  .num__list-title {
    font-size: 10px;
    margin: 0 auto 8px;
  }
  .num__list > li {
    padding: 10px 10px;
    border-radius: 10px;
  }
  #item6 .bl2 .txt1 {
    font-size: 12px;
  }
  #item6 .bl1 .txt1 {
    font-size: 12px;
  }
  #item6 .bl2 {
    margin: 2px auto 0;
  }
  .style__title-main {
    font-size: 36px;
  }
  .style__title-bl {
    margin-bottom: 35px;
  }
  .style__main-txt {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .style__main-list li {
    border-radius: 10px;
    padding: 20px 14px;
    column-gap: 10px;
  }
  .style__main-list li img {
    width: 70px;
  }
  .style__main-list-title .small {
    font-size: 15px;
  }
  .style__main-list-title {
    font-size: 21px;
    line-height: 1.5;
  }
  .style__main-list li .cont .txt {
    font-size: 14px;
  }
  .style__main-list li .cont {
    width: calc(100% - 90px);
  }
  .style__main-list li .style__main-list-num {
    top: 9px;
    right: 14px;
    font-size: 43px;
  }
  .circle {
    width: 95px;
    height: 95px;
    top: -36px;
    right: -28px;
  }
  .style__bg .item .style__float-en {
    font-size: 48px;
    left: 50%;
    top: -41px;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
  }
  .style__item-title::after {
    width: 18px;
    height: 56px;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
  }
  .style__item-title::before {
    width: 18px;
    height: 56px;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
  }
  .style__item-title .small {
    font-size: 18px;
  }
  .style__item-title {
    font-size: 24px;
    line-height: 1.5;
    padding: 10px 0 5px;
  }
  .style__item-bl .cont .txt {
    font-size: 15px;
  }
  .style__bg .item {
    border-radius: 20px;
    padding: 60px 40px 70px;
  }
  .point__bl .point__title {
    font-size: 17px;
    padding: 10px 0;
    margin-bottom: 8px;
    margin-top: 20px;
  }
  .point__bl .point__title::after {
    right: -20px;
    width: 65px;
    height: 65px;
  }
  .style__item-bl .cont {
    padding-left: 30px;
  }
  .point__bl {
    margin-top: 35px;
  }
  .style__event-bl {
    margin-top: 75px;
    border-radius: 10px;
    padding: 49px 38px 32px;
  }
  .style__event-cont .img img:first-of-type {
    left: -80px;
    top: -63px;
    width: 121%;
  }
  .style__event-cont .img img:last-of-type {
    right: -22px;
    width: 51%;
    top: 13px;
  }
  .style__event-cont .txt-bl .txt {
    font-size: 15px;
  }
  .style__event-bl::after {
    right: -34px;
    height: 200px;
    width: 61px;
    bottom: -60px;
  }
  .style__bg .item.p2 .style__float-en {
    left: 50%;
  }
  .style__bg .item.p4 .style__float-en {
    left: 50%;
  }
  .style__bg .item {
    margin-bottom: 80px;
  }
  #style02 {
    padding-bottom: 50px;
  }
  .holiday-swiper {
    left: -40px;
    width: calc(100% + 80px);
  }
  .holiday-swiper .holiday-list li {
    font-size: 2vw;
  }
  .holiday-swiper .holiday-list {
    column-gap: 20px;
  }
  .join__title {
    font-size: 65px;
    white-space: nowrap;
  }
  .join__message .small {
    font-size: 16px;
  }
  .join__message {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .join__btn-bl {
    column-gap: 10px;
  }
  .join__btn-bl .btn {
    height: 65px;
    font-size: 15px;
  }
  .join__btn-bl .btn i {
    left: 14px;
  }
  .join__btn-bl .btn .small {
    font-size: 11px;
  }
  .join__btn-bl .btn.insta {
    font-size: 19px;
  }
  .env__title-bl {
    width: 540px;
    height: 100px;
  }
  .env__title-en {
    font-size: 60px;
  }
  .env__title .small {
    font-size: 20px;
  }
  .env__title {
    font-size: 28px;
  }
  .env__title-bl::after {
    height: 100px;
  }
  .env__title-bl::before {
    height: 100px;
  }
  .env__main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .basic-bl {
    margin-top: 60px;
  }
  .edu__title {
    margin-bottom: 25px;
  }
  .edu__basic-flex-title-bl .tag {
    width: 85px;
    height: 85px;
    font-size: 12px;
  }
  .edu__basic-flex-title-bl .title {
    font-size: 18px;
    width: calc(100% - 95px);
  }
  .edu__basic-flex .cont .txt {
    font-size: 15px;
  }
  .edu__basic-point-flex .item img {
    height: 14vw;
  }
  .edu__basic-point-title {
    font-size: 12px;
  }
  .edu__basic-point-title .orange-txt {
    font-size: 18px;
  }
  .edu__basic-point-flex .item .txt {
    font-size: 15px;
  }
  .edu__basic-point-flex {
    column-gap: 3%;
  }
  .levelup__flex .item .levelup__title {
    font-size: min(2vw, 21px);
  }
  .levelup__flex .item .img .tag {
    width: 65px;
    height: 65px;
    font-size: 12px;
    left: -15px;
    top: -9px;
  }
  .levelup__flex .item .txt {
    font-size: 15px;
  }
  .levelup__flex {
    column-gap: 4%;
  }
  .benefit__list li .cont {
    width: calc(100% - 105px);
  }
  .benefit__list li img {
    width: 85px;
  }
  .benefit__list li {
    border-radius: 10px;
    padding: 15px;
  }
  .benefit__list li .cont .bene__title {
    margin-bottom: 5px;
  }
  .career__bl {
    margin-top: 60px;
    padding-bottom: 80px;
  }
  .career__bl .img-bl img {
    width: 193px;
    transform: translate(15%, -17px);
  }
  .career__bl .cont .career__title {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .career__bl .cont .txt {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .career__list li {
    padding: 5px 10px 3px;
    font-size: 13px;
  }
  #env {
    padding: 80px 0;
  }
  .interview__item .cont .txt {
    font-size: 14px;
  }
  .interview__item .cont .interview__title {
    font-size: 18px;
    margin-bottom: 13px;
  }
  .interview__title-caution {
    font-size: 15px;
  }
  .message__title-bl .message__txt {
    font-size: 24px;
  }
  .message__cont .cont .txt {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .join__message-main {
    font-size: 36px;
    margin-bottom: 70px;
  }
  .join__bl {
    padding: 60px 25px 40px;
  }
  .rec__bl .rec__title::before {
    width: 18px;
    height: 26px;
    margin-right: 14px;
  }
  .rec__bl .rec__title {
    width: 180px;
    font-size: 22px;
  }
  .rec__bl .rec__list {
    width: calc(100% - 180px);
    padding-left: 50px;
  }
  .rec__list .flex {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 110px);
  }
  .rec__bl .rec__list > li .flex .txt {
    width: 100%;
  }
  .rec__bl .rec__list > li .txt {
    width: calc(100% - 110px);
  }
  .rec__bl .rec__list > li .rec__title-small {
    width: 110px;
  }
  .rec__cont {
    width: calc(100% - 180px);
    padding-left: 50px;
  }
  .rec__txt {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .rec__flow-list li {
    width: 100px;
    font-size: 15px;
  }
  .rec__entry-bl {
    padding: 60px 30px;
  }
  .rec__entry-txt {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .rec__entry-btn {
    width: 180px;
    font-size: 13px;
  }
  .rec__entry-btn-bl {
    column-gap: 15px;
  }
  .rec__entry-wear {
    display: block;
  }
  .rec__entry-wear {
    padding: 20px;
  }
  .rec__entry-wear dt {
    font-size: 17px;
  }
  .salon__list li .cont {
    width: calc(100% - 155px);
  }
  .salon__list li img {
    width: 135px;
  }
  .salon__list-title {
    margin-bottom: 4px;
    font-size: 17px;
  }
  #style04::after {
    transform: translate(37px, 30px);
  }
  #style02::after {
    width: 87px;
    height: 135px;
    transform: translate(39px, 76px);
  }
  #style03::after {
    transform: translate(-29px, 9px);
  }
  #num {
    padding: 140px 0 0;
  }
  .num__cont {
    margin-bottom: 40px;
  }
  .num__bl-title-middle .ja {
    font-size: 38px;
  }
  #env02::before {
    width: 126px;
    height: 118px;
    transform: translate(22px, -44px);
  }
  #env02::after {
    width: 59px;
    height: 180px;
    transform: translate(-25px, 26px);
  }
  .interview__title-en {
    font-size: 60px;
  }
  .swiper-button-prev {
    right: 110px;
  }
  .interview-swiper .swiper-button-next, .interview-swiper .swiper-button-prev {
    top: -85px;
    width: 60px;
    height: 60px;
  }
  .interview__item .cont {
    width: calc(100% + 160px);
  }
  .interview__item .imgb-bl img {
    left: -49px;
    width: 270px;
  }
  .interview__item .imgb-bl .name .small {
    font-size: 10px;
  }
  .interview__item .imgb-bl .name .big {
    font-size: 15px;
  }
  .interview__item .cont {
    width: calc(100% + 15px);
  }
  .interview__item {
    height: 345px;
  }
  .style__item-bl img {
    width: 30%;
  }
  .style__item-bl .cont {
    width: 70%;
  }
  .point__bl .point__cont {
    padding-left: 20px;
  }
  .edu__basic-flex-title-bl .title {
    font-size: 17px;
  }
  .style__item-bl .swiper-fade .swiper-slide img {
    width: 100%;
    max-width: 100%;
  }
  #item1 .txt {
    margin-top: 10px;
  }
  #item2 .txt {
    margin-top: 10px;
  }
  #item8 .flex .txt {
    padding-right: 5%;
    padding-top: 0;
  }
  .interview__item .cont .interview__title::before {
    font-size: 97px;
    top: -22px;
    left: -34px;
  }
  .second-bl .mv__img03 {
    bottom: 756px;
    right: 79px;
    width: 16%;
  }
  #item8 .flex img {
    bottom: 25px;
  }
  .num__list .p8 {
    width: 120px;
  }
  #item9 .flex img {
    top: 45px;
    right: 9px;
  }
  .num__list .p9 {
    width: 30px;
  }
  #item9 .flex .num-txt {
    font-size: 35px;
  }
  #item9 .flex .txt-small {
    font-size: 10px;
  }
  #item9 .flex .txt {
    padding-top: 10px;
  }
  #item2 .txt {
    text-align: center;
  }
  .num__list-plus {
    margin-top: 6px;
  }
  .num__list-plus li {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .num__list-plus li::before {
    width: 15px;
    height: 15px;
    font-size: 10px;
    top: 1px;
    left: -9px;
  }
  .num__list-plus li {
    font-size: 10px;
    padding-left: 8px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 834px) {
  .under834-only {
    display: inline-block;
  }
  .top__bl .mv-img {
    min-height: 300px;
    max-height: 400px;
  }
  .mv__title-en {
    margin-bottom: 10px;
  }
  .mv__title {
    font-size: 39px;
  }
  .mv__title-middle {
    font-size: 16px;
  }
  .mv__cont {
    left: 39%;
    top: 43%;
  }
  .top__bl {
    min-height: 500px;
    max-height: 600px;
  }
  .mv__bg-txt {
    top: min(42vw, 63%);
  }
  .second-bl {
    padding: 0px 0 120px;
  }
  .second-bl .cont {
    position: relative;
    z-index: 2;
  }
  .second-bl .cont .title {
    font-size: 38px;
  }
  .second-bl .cont .marker {
    font-size: 18px;
  }
  .second-bl .cont .txt {
    font-size: 15px;
    margin-bottom: 37px;
  }
  .second-bl .btn__bl {
    row-gap: 20px;
    flex-direction: column;
  }
  .second-bl .btn__bl .btn {
    width: 250px;
    height: 65px;
    font-size: 18px;
  }
  .num__cont {
    display: block;
  }
  .num__cont img {
    padding: 0;
    width: 400px;
    max-width: 90%;
    margin: 0 auto 20px;
    display: block;
  }
  .num__title-middle {
    margin-bottom: 20px;
  }
  .num__tag {
    left: 5vw;
    width: 130px;
    top: 3.8vw;
  }
  .num__title {
    font-size: 80px;
    white-space: nowrap;
  }
  .num__bl-title-middle .en {
    font-size: 12px;
  }
  .num__bl-title-middle .ja {
    font-size: 30px;
  }
  .num__bl-title-middle {
    margin-bottom: 50px;
  }
  .num__list {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    grid-template-rows: 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px;
    grid-template-columns: 1fr 1fr;
  }
  #item6 {
    grid-row: 7/10;
    grid-column: 1/2;
  }
  #item7 {
    grid-row: 7/10;
    grid-column: 2/3;
  }
  #item8 {
    grid-row: 10/13;
    grid-column: 1/2;
  }
  #item9 {
    grid-row: 10/13;
    grid-column: 2/3;
  }
  .num__slider-bl {
    transform: translateY(60px);
  }
  .style__title-main {
    font-size: 26px;
  }
  .style__title-bl {
    margin-bottom: 20px;
  }
  #style {
    padding-top: 110px;
  }
  .style__main-txt {
    font-size: 15px;
  }
  .style__main-list {
    grid-template-columns: 1fr;
    width: 500px;
    max-width: 100%;
    margin: 0 auto 60px;
  }
  .style__event-bl {
    margin-top: 60px;
    padding: 64px 25px 32px;
  }
  .style__bg {
    padding: 80px 0 60px;
  }
  .style__bg {
    background-color: var(--cyan-bg);
    position: relative;
    padding: 80px 0 60px;
  }
  .style__item-bl img {
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
  }
  .style__item-title {
    font-size: 21px;
    width: 360px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .style__item-title .small {
    font-size: 16px;
  }
  .style__item-bl {
    flex-direction: column;
    row-gap: 20px;
  }
  .point__bl {
    flex-direction: column;
  }
  .point__bl .style-swiper {
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .point__bl .point__title::after {
    right: 0;
  }
  .point__bl .point__title {
    margin-bottom: 0;
  }
  .style__bg .item {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 80px;
    padding: 40px 25px 60px;
  }
  .style__event-cont .img {
    width: 80%;
    aspect-ratio: 3/1.9;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .style__event-cont {
    flex-direction: column;
  }
  .style__event-cont {
    display: flex;
    flex-direction: column;
  }
  .style__event-cont .img img:first-of-type {
    left: -37px;
    top: -29px;
    width: 91%;
  }
  .style__event-cont .img img:last-of-type {
    right: -30px;
    width: 44%;
    top: 13px;
  }
  .style__event-cont .txt-bl {
    width: 100%;
    padding-left: 0;
  }
  .style__bg .item.p2 .style__item-bl {
    flex-direction: column;
  }
  .style__bg .item.p4 .style__item-bl {
    flex-direction: column;
  }
  .point__bl img {
    width: 200px;
    max-width: 100%;
  }
  .style__item-bl .cont {
    width: 100%;
    padding-left: 0;
  }
  .point__bl .point__cont {
    width: 100%;
    padding-left: 0;
  }
  .style__bg .item.p2 .style__item-bl .cont {
    padding-right: 0;
  }
  .style__bg .item.p4 .style__item-bl .cont {
    padding-right: 0;
  }
  .holiday-swiper {
    left: -25px;
    width: calc(100% + 50px);
  }
  .holiday-swiper .holiday-list li {
    font-size: 15px;
  }
  .creative__title-main img {
    width: 250px;
  }
  .style__event-deco {
    width: 112px;
  }
  .creative__bl {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  #style03::after {
    transform: translate(-57px, 27px);
    width: 98px;
    height: 122px;
  }
  #style04::after {
    transform: translate(18px, 21px);
    width: 55px;
    height: 123px;
  }
  .style__bg .item:last-of-type {
    margin: 0 auto;
  }
  .join {
    padding: 60px 0;
  }
  .join__bl img {
    width: 340px;
    max-width: 90%;
    margin: 0 auto 20px;
  }
  .join__bl .cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .join__bl {
    flex-direction: column;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
  .join__message {
    margin-bottom: 20px;
    font-size: 21px;
  }
  .join__btn-bl {
    grid-template-columns: 1fr;
    width: 250px;
    row-gap: 20px;
    margin: 0 auto;
  }
  .join__btn-bl .btn i {
    left: 20px;
  }
  #env {
    padding: 60px 0 1px;
  }
  .env__item {
    border-radius: 20px;
    padding: 60px 25px 40px;
    width: 500px;
    max-width: 100%;
    margin: 0 auto 40px;
  }
  #env {
    padding: 60px 0;
  }
  .env__main-en {
    margin-bottom: 15px;
  }
  .env__main-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .env__main-bl .txt {
    font-size: 15px;
    text-align: left;
  }
  .env__main-bl {
    margin-bottom: 40px;
  }
  .env__num {
    width: 80px;
    height: 40px;
    font-size: 24px;
  }
  .env__title-bl {
    padding-bottom: 18px;
    margin: 0 auto 30px;
  }
  .env__title-en {
    font-size: 50px;
  }
  .env__title {
    font-size: 21px;
  }
  .env__title {
    font-size: 21px;
  }
  .env__item-txt {
    text-align: left;
    font-size: 15px;
  }
  .basic-bl {
    margin-top: 35px;
  }
  .edu__title {
    margin-bottom: 25px;
  }
  .edu__basic-flex img {
    width: 340px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .edu__basic-flex {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .edu__basic-flex .cont {
    width: 100%;
    padding-left: 0;
    flex-direction: column;
  }
  .edu__basic-flex-title-bl {
    margin-bottom: 13px;
  }
  .edu__basic-flex .cont .txt {
    font-size: 15px;
  }
  .edu__basic-point-bl {
    padding: 40px 25px;
  }
  .edu__basic-point-title-main {
    font-size: 19px;
  }
  .edu__basic-point-title-main .small {
    font-size: 14px;
  }
  .edu__basic-point-flex {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .levelup-bl {
    margin-top: 40px;
  }
  .levelup__flex .item .levelup__title {
    font-size: 19px;
  }
  .levelup__flex {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .benefit__list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  .benefit__list li .cont .bene__title {
    font-size: 16px;
  }
  .benefit__list li .cont .txt {
    font-size: 14px;
  }
  #env02::before {
    width: 103px;
    height: 97px;
    transform: translate(16px, -45px);
  }
  #env02::after {
    width: 50px;
    height: 154px;
    transform: translate(-20px, 26px);
  }
  #env02::after {
    width: 50px;
    height: 154px;
    transform: translate(-20px, 26px);
  }
  .career__table {
    margin-top: 30px;
    overflow-x: scroll;
  }
  .career__table img {
    width: 800px;
    margin-bottom: 15px;
  }
  .career__bl {
    margin-top: 30px;
    padding-bottom: 0;
  }
  .career__bl .img-bl {
    width: 71px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .career__bl .img-bl img {
    transform: translate(0, -70px);
    width: 100%;
    max-width: initial;
  }
  .career__bl .cont {
    width: 100%;
  }
  #env03 {
    padding: 40px 25px 40px;
  }
  .slide-txt {
    display: block;
    margin-top: 10px;
    font-size: 60%;
  }
  .interview-swiper .swiper-button-next, .interview-swiper .swiper-button-prev {
    top: -55px;
  }
  #interview {
    padding: 60px 0;
  }
  .interview__title-en {
    font-size: 42px;
  }
  .interview__item .imgb-bl {
    width: 100%;
    position: relative;
    height: 130px;
    display: flex;
  }
  .interview__item {
    border-radius: 20px;
    padding: 20px;
    align-items: flex-start;
    height: 310px;
    flex-direction: column;
  }
  .interview__item .imgb-bl {
    width: 100%;
    position: relative;
    height: 130px;
    display: flex;
  }
  .interview__item .imgb-bl img {
    left: 0;
    width: auto;
    height: 100%;
    top: auto;
    bottom: 0;
    position: relative;
  }
  .interview__item .cont .interview__title {
    font-size: 17px;
    margin-bottom: 13px;
    position: absolute;
    top: -119px;
    left: 100px;
  }
  .interview__item .imgb-bl .name .small {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .interview__item .imgb-bl .name .big {
    font-size: 13px;
  }
  .interview__item .cont {
    width: 100%;
    position: relative;
    padding-top: 10px;
  }
  .interview__item .imgb-bl .name {
    position: relative;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #message {
    padding: 60px 0;
  }
  .message__title-bl .message__txt {
    font-size: 18px;
  }
  .message__title-bl .message__title {
    font-size: 60px;
    margin-bottom: 20px;
  }
  .message__title-bl {
    margin-bottom: 30px;
  }
  .message__cont img {
    width: 250px;
    max-width: 80%;
  }
  .message__cont {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .message__cont .cont {
    width: 100%;
  }
  .message__cont .cont .message__name {
    font-size: 18px;
  }
  .join__message-main {
    font-size: 24px;
    margin-bottom: 50px;
  }
  #rec {
    padding: 60px 0;
  }
  .rec__bl .rec__list {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #000;
    padding-top: 15px;
    margin-top: 7px;
  }
  .rec__bl {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .rec__bl .rec__title {
    width: 100%;
    font-size: 18px;
  }
  .rec__bl .rec__list > li .rec__title-small {
    font-size: 15px;
  }
  .rec__bl .rec__list > li .txt {
    font-size: 15px;
  }
  .rec__cont.p2 {
    width: 100%;
    border-top: 1px solid #000;
    padding-left: 0;
    padding-top: 15px;
    margin-top: 7px;
    border-left: none;
  }
  .rec__txt {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .rec__entry-cont {
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .rec__entry-cont dt {
    justify-content: center;
    font-size: 14px;
    width: fit-content;
    padding: 7px 20px;
  }
  .rec__entry-cont dd {
    font-size: 14px;
    width: 100%;
    padding-bottom: 10px;
  }
  .rec__entry-bl {
    padding: 60px 25px 40px;
  }
  .salon__title-main {
    font-size: 42px;
  }
  .salon__title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .salon__title .img img {
    width: 116px;
  }
  .salon__list {
    grid-template-columns: 1fr;
  }
  #salon {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .footer__logo {
    width: 48px;
    margin: 0 auto 30px;
  }
  footer small {
    font-size: 10px;
  }
  footer {
    margin-bottom: 60px;
  }
  .logo {
    width: 40px;
    height: 57px;
    top: 20px;
    left: 30px;
  }
  .entry-swiper .txt {
    font-size: 13px;
  }
  .entry-swiper {
    width: 140px;
    height: 40px;
  }
  #ham {
    width: 30px;
    height: 30px;
    top: 3px;
  }
  .entry-swiper {
    width: 140px;
    height: 35px;
    display: none;
  }
  .entry-btn-sp {
    display: flex;
    width: 80px;
    height: 32px;
    color: #fff;
    font-family: var(--en);
    background-color: #000;
    border-radius: 80px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
  }
  header {
    top: 20px;
    right: 30px;
    width: 125px;
  }
  .ham span {
    height: 3px;
  }
  .ham span:nth-of-type(2) {
    top: 12px;
  }
  .ham span:last-of-type {
    top: 24px;
  }
  .salon__title-main {
    margin-bottom: 30px;
  }
  .nav-wrapper {
    padding: 26px 15px;
  }
  nav {
    transform: translate(-10px, -102%);
  }
  nav.active {
    transform: translate(-10px, 10px);
  }
  nav {
    width: 300px;
    max-width: calc(100% - 20px);
  }
  .nav-logo {
    width: 45px;
    margin: 0 auto 20px;
  }
  .header__nav {
    margin-bottom: 35px;
  }
  .header__nav li {
    margin: 7px 0;
  }
  .header__nav li a {
    font-size: 14px;
  }
  .nav-contact {
    height: 65px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .insta-link {
    font-size: 21px;
  }
  .nav-contact i {
    font-size: 19px;
    margin-right: 15px;
  }
  #item8 .flex .txt {
    transform: translateY(-14px);
  }
  #style02 {
    padding-bottom: 40px;
  }
  .interview__item .cont .interview__title::before {
    font-size: 70px;
    top: -17px;
    left: -24px;
  }
  .under834-none {
    display: none;
  }
  .edu__basic-point-flex .item img {
    height: 110px;
  }
  .second-bl .mv__img03 {
    bottom: 182px;
    right: 24px;
    width: 19%;
  }
  #mv::before {
    top: min(50vh, 220px);
  }
  .num__list > li {
    padding: 10px 5px;
  }
  .num__list-title {
    padding: 4px 6px;
  }
  .num__list-plus li {
    padding-left: 23px;
    line-height: 1.2;
  }
  .num__list-plus li::before {
    left: 0;
  }
  #item9 .flex .txt-small {
    line-height: 1.2;
  }
  #item9 .flex .num-txt {
    font-size: 32px;
  }
  .num__list .p9 {
    width: 28px;
  }
  #item9 .flex img {
    top: 38px;
  }
  #item8 .flex .txt {
    padding-right: 0%;
    margin-top: 15px;
  }
  #item9 .flex .txt {
    padding-top: 16px;
  }
}
@media screen and (max-width: 640px) {
  .top__bl .mv-img {
    min-height: 55vw;
    max-height: 55vw;
  }
  .mv__title {
    font-size: max(6vw, 32px);
    margin-bottom: 20px;
  }
  .mv__title-middle {
    font-size: max(2.5vw, 12px);
  }
  .top__bl {
    min-height: 100vw;
    max-height: 100vw;
  }
  .mv__bg-txt {
    top: 62vw;
  }
  .second-bl .mv__img01 {
    top: -61px;
  }
  .second-bl .cont .title {
    font-size: 30px;
  }
  .second-bl .cont .marker {
    font-size: 16px;
  }
  .second-bl .cont .txt {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .second-bl .mv__img03 {
    bottom: 48px;
    right: 15px;
    width: 21%;
  }
  #num {
    padding: 150px 0 0;
  }
  .num__title {
    font-size: 60px;
  }
  .circle {
    width: 76px;
    height: 76px;
    top: -47px;
    right: -15px;
  }
  .style__item-bl img {
    max-width: 60%;
  }
  .style__bg .item .style__num {
    font-size: 27px;
    transform: translate(-50%, -30%);
    transform: translate(28%, -30%);
  }
  .style__bg .item .style__float-en {
    font-size: 32px;
    left: 50%;
    top: -27px;
    transform: translateX(-50%);
  }
  .style__bg .item {
    margin: 0 auto 60px;
  }
  #style02::after {
    width: 71px;
    height: 97px;
    transform: translate(16px, 51px);
  }
  .creative__item .cont .creative__title {
    font-size: 17px;
    margin-bottom: 2px;
  }
  #style03::after {
    transform: translate(-17px, 27px);
  }
  .join__title {
    font-size: 42px;
  }
  .join__bl {
    max-width: 90%;
    border-radius: 20px;
  }
  .join__message .small {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  .join__message {
    font-size: 19px;
    line-height: 1.6;
  }
  .env__main-title {
    font-size: 24px;
  }
  .env__title-en {
    font-size: 33px;
  }
  .env__title .small {
    font-size: 16px;
  }
  .env__title {
    font-size: 17px;
  }
  .edu__basic-flex .cont {
    width: 100%;
    padding-left: 0;
    flex-direction: column;
    padding-top: 5px;
  }
  .edu__basic-flex-title-bl {
    margin-bottom: 13px;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .edu__basic-flex-title-bl .title {
    font-size: 17px;
    width: 100%;
  }
  .edu__basic-flex-title-bl .tag {
    width: 80px;
    height: 80px;
    font-size: 10px;
    position: absolute;
    top: -86px;
    left: -17px;
  }
  .edu__basic-point-title-main {
    font-size: 18px;
  }
  .edu__basic-point-title-main .small {
    font-size: 13px;
  }
  .edu__basic-point-title-main::after {
    right: -63px;
    width: 67px;
  }
  .edu__basic-point-title-main::before {
    left: -63px;
    width: 67px;
  }
  .levelup__flex .item .levelup__title {
    font-size: 17px;
  }
  #env02::before {
    width: 73px;
    height: 63px;
    transform: translate(11px, -29px);
  }
  #env02::after {
    width: 41px;
    height: 126px;
    transform: translate(2px, 26px);
  }
  .benefit__list li .cont {
    width: calc(100% - 85px);
  }
  .benefit__list li img {
    width: 70px;
  }
  .career__bl .cont .career__title {
    font-size: 18px;
  }
  .career__bl .cont .career__title .small {
    font-size: 14px;
  }
  .career__list {
    flex-wrap: wrap;
  }
  .career__bl .img-bl {
    right: -15px;
    bottom: -27px;
  }
  .under640-none {
    display: none;
  }
  .interview__item .cont .interview__title {
    font-size: 14px;
    left: 85px;
  }
  .interview__item .imgb-bl .name {
    left: -19px;
  }
  .interview__item {
    border-radius: 10px;
    padding: 15px;
    height: auto;
  }
  .interview__item .imgb-bl .name .small {
    font-size: 10px;
  }
  #message {
    padding: 50px 0;
  }
  .message__title-bl .message__title {
    font-size: 42px;
    margin-bottom: 15px;
  }
  .message__title-bl .message__txt {
    font-size: 16px;
  }
  .join__message-main {
    font-size: 21px;
  }
  .rec__entry-btn i {
    font-size: 20px;
    margin-bottom: 11px;
  }
  .rec__entry-btn-bl {
    justify-content: center;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }
  .rec__entry-btn {
    width: 150px;
    font-size: 12px;
  }
  .rec__entry-wear dt {
    font-size: 15px;
  }
  .mv__cont {
    left: 20%;
  }
  .num__tag {
    left: 50%;
    width: 130px;
    top: 45px;
    transform: translateX(-50%);
  }
  .style__bg .item .style__num:before {
    width: 75px;
    height: 75px;
  }
  .style__bg .item .style__num {
    z-index: 3;
  }
  .rec__flow-list li {
    width: 20%;
    font-size: 2.6vw;
  }
  .interview-box {
    max-width: 95%;
  }
  .bnr {
    margin: 0 auto 40px;
  }
  #mv::before {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  .mv__cont {
    left: auto;
    top: 64vw;
    right: 8%;
    transform: translate(0, -50%);
  }
  .mv__bg-txt {
    top: 82vw;
  }
  .top__bl {
    min-height: 120vw;
    max-height: 120vw;
  }
  .top__bl .mv-img {
    min-height: 61vw;
    max-height: 61vw;
  }
  .second-bl .cont .title {
    font-size: 26px;
  }
  .second-bl .cont .marker {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .num__title-small {
    font-size: 15px;
  }
  .num__title-middle {
    font-size: 21px;
  }
  .num__bl-title-middle .ja {
    font-size: 24px;
  }
  .num__list-title {
    font-size: 10px;
    margin: 0 auto 8px;
  }
  .num__list li .txt {
    font-size: 10px;
  }
  .num__list li .txt .num-txt {
    font-size: 42px;
  }
  .gender-txt .bl .big {
    font-size: 42px;
  }
  .gender-txt .dot {
    font-size: 42px;
  }
  #item6 .bl1 .txt1 {
    font-size: 10px;
  }
  #item6 .bl1, #item6 .bl2 {
    column-gap: 13px;
  }
  #item6 .bl2 .txt1 {
    font-size: 10px;
  }
  .style__title-main {
    font-size: 21px;
  }
  .style__main-txt {
    font-size: 15px;
    text-align: left;
  }
  .style__main-list-title {
    font-size: 17px;
  }
  .style__main-list-title .small {
    font-size: 13px;
  }
  .style__item-title .small {
    font-size: 12px;
  }
  .style__item-title {
    font-size: 19px;
    margin-bottom: 15px;
  }
  .style__event-cont .img img:first-of-type {
    width: 100%;
  }
  .style__event {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  .style__event-bl::after {
    right: -23px;
    height: 142px;
    width: 39px;
    bottom: -48px;
  }
  .style__bg .item.p2 .style__num {
    transform: translate(-18%, -30%);
  }
  .style__bg .item.p4 .style__num {
    transform: translate(-18%, -30%);
  }
  .point__bl .point__title {
    font-size: 15px;
  }
  .env__main-title {
    font-size: 21px;
  }
  .levelup__flex .item .levelup__title {
    font-size: 16px;
  }
  .join__message .small {
    font-size: 12px;
  }
  .salon__list {
    gap: 25px 30px;
  }
  .salon__list li {
    column-gap: 15px;
    align-items: flex-start;
  }
  .salon__list-title {
    font-size: 16px;
  }
  .salon__list li .cont .address {
    font-size: 13px;
  }
  .salon__list li .cont .map-link {
    font-size: 13px;
  }
  .salon__list li .cont .tel-link {
    font-size: 14px;
  }
  .salon__list li .cont .more-link {
    font-size: 11px;
  }
  .interview__item .imgb-bl img {
    left: -15px;
  }
  .interview__item .cont .interview__title {
    left: 70px;
  }
  .interview__item .imgb-bl .name {
    left: -33px;
  }
  .interview__item .imgb-bl .name .small {
    font-size: 10px;
    padding: 2px 2px 0;
  }
  .salon__list li .cont {
    width: calc(100% - 125px);
  }
  .salon__list li img {
    width: 100px;
  }
  .num__list .p2-1 {
    bottom: -8px;
  }
  #item8 .flex .txt {
    padding-right: 0%;
  }
  #mv::before {
    top: min(50vh, 208px);
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .under400-only {
    display: inline-block;
  }
  #item8 .flex img {
    padding-right: 15px;
  }
}
/*////////////////////////

250403 Add

////////////////////////*/
.interview__item {
  height: 376px;
}

@media screen and (max-width: 1200px) {
  .interview__item {
    height: auto;
  }
}
/*////////////////////////

251201 Add

////////////////////////*/
@media screen and (min-width: 1201px) {
  .num__list > li#item5 .txt .num-txt {
    font-size: 60px;
  }
}
/*////////////////////////

251204 Add

////////////////////////*/
.add__modal-btn {
  width: fit-content;
  margin-top: 20px;
  padding: 17.5px 30px;
  color: #fff;
  font-size: 15px;
  background-color: #333;
  border-radius: 100vmax;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  .add__modal-btn {
    padding: 15px;
    font-size: 14px;
  }
}

.add__modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1011;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
}
.add__modal-wrap.open {
  opacity: 1;
  pointer-events: all;
}

.add__modal-batsu {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  max-width: 12px;
  aspect-ratio: 1;
}

.add__modal-batsu img {
  vertical-align: top;
}

.add__modal-cont {
  max-width: 750px;
  width: 86%;
  max-height: 90vh;
  padding-bottom: 70px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .add__modal-cont {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .add__modal-cont {
    width: 94%;
  }
}

.add__modal-ttl {
  width: 100%;
  height: auto;
}
.add__modal-ttl img {
  vertical-align: top;
  aspect-ratio: 750/437;
}

.add__modal-list__inner {
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 834px) {
  .add__modal-list__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.add__modal-list {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 834px) {
  .add__modal-list {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.add__modal-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 20px;
  display: flex;
  justify-content: start;
  align-items: end;
  background-color: #f1f1f1;
  background-image: url(../img/newgraduate/add-modal_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% auto;
  border-radius: 10px;
}
@media screen and (max-width: 500px) {
  .add__modal-item {
    aspect-ratio: unset;
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.add__modal-num {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-family: "Courgette", cursive;
  background-color: #b40000;
  border-radius: 100vmax;
}
@media screen and (max-width: 500px) {
  .add__modal-num {
    width: 25px;
    font-size: 12px;
  }
}

.add__modal-txt {
  font-size: 13px;
}
@media screen and (max-width: 500px) {
  .add__modal-txt br {
    display: none;
  }
}

.add__modal-close {
  margin: 60px auto 0;
  max-width: 250px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background-color: #333;
  border-radius: 100vmax;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .add__modal-close {
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .add__modal-close {
    max-width: 200px;
    line-height: 40px;
    font-size: 16px;
  }
}