@charset "utf-8";

/*スマホ(max-width:767px)*/
/*全体設定*/
html {
  font-size: 100%;
  height: 100%;
}

body {
  color: #fff;
  font-family: 'M PLUS 1p', 'Noto Sans JP', 'Audiowide', sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #555555;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/*セクションバー設定*/
#section-bar1,
#section-bar2,
#section-bar3,
#section-bar4,
#section-bar5 {
  height: 40px;
  background-color: #1c1c1c;
  font-size: 12px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.1em;
  padding: 8px 0 0 15px;
  border-left: 10px solid #2ECCA6;
}

/*PCセクションバー設定*/
@media screen and (min-width: 960px) {

  #section-bar1,
  #section-bar2,
  #section-bar3,
  #section-bar4,
  #section-bar5 {
    height: 60px;
    font-size: 14px;
    padding-top: 18px;
  }
}

/*▲TOP設定*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #B400EB;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.back-to-top:hover {
  opacity: 0.7;
}


/*ボタン設定*/
.btn-wrapper {
  text-align: center;
  padding: 10px 0 20px;
}

@media screen and (min-width: 960px) {
  .btn-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 20px;
  }
}

/*ここからヘッダー*/
#header {
  width: 100%;
  height: 60px;
  background-color: #1c1c1c;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}

#header .logo {
  max-width: 260px;
  padding-bottom: 10px;

}

/*ここからPCヘッダー*/
@media screen and (min-width: 960px) {
  #header {
    padding: 0 80px;
    height: 80px;
  }

  #header .logo {
    max-width: 350px;
  }

  #header .navi {
    position: static;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}

/*スマホヘッダーのハンバーガーメニュー*/

#header .hamburger {
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  position: fixed;
  top: 5px;
  right: 20px;
  z-index: 150;
}

#header .hamburger span {
  width: 30px;
  height: 3px;
  background-color: #2ECCA6;
  display: inline-block;
  position: absolute;
  left: 10px;
  transition: all 0.4s;
}

#header .hamburger span:nth-last-child(1) {
  top: 16px;
}

#header .hamburger span:nth-last-child(2) {
  top: 25px;
  background-color: #B400EB;
}

#header .hamburger span:nth-last-child(3) {
  top: 34px;
}

#header .navi {
  width: 60%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  right: -60%;
  z-index: 100;
  transition: all 0.6s;
}

#header .navi.active {
  right: 0;
}

#header .navi .menu {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  padding: 60px 20px;
  overflow: auto;
}

#header .navi .menu li {
  padding: 10px 0;
  margin-left: 0;
}

#header .hamburger.active span:nth-of-type(1) {
  top: 24px;
  transform: rotate(-45deg);
}

#header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

#header .hamburger.active span:nth-of-type(3) {
  top: 24px;
  transform: rotate(45deg);
}

/*----ここまでスマホヘッダーのハンバーガーメニュー*/

/*ここからPCヘッダーのメニュー*/
@media screen and (min-width: 960px) {
  #header .hamburger {
    display: none;
  }

  #header .navi {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    background-color: #1c1c1c;
    transition: none;
    display: flex;
    align-items: center;
  }

  #header .navi .menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 0;
    height: auto;
  }

  #header .navi .menu li {
    padding: 0;
  }

  #header .navi .menu li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}

/*----ここまでヘッダー*/

/*ここからメイン*/

/*FV*/
.mainvisual {
  position: relative;
  width: 100%;
  height: 700px;
  display: block;
  height: 700px !important;
  /* 強制的に高さを700pxに */
}

.mainvisual .text-wrapper {
  background-image: url(../img/top/firstview.jpg);
  background-size: cover;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  z-index: 40;
  padding: 10px;
  display: flex;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/*PCのFV*/
@media screen and (min-width: 960px) {
  .mainvisual {
    height: 700px;
    overflow: hidden;
    height: 700px !important;
    /* 強制的に高さを700pxに */
  }

  .mainvisual .text-wrapper {
    background-image: url(../img/top/firstview_pc.jpg);
    width: 100%;
    height: 700px;
  }
}

/*タブレットのFV*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainvisual {
    position: relative;
    width: 100%;
    height: 700PX;
  }

  .mainvisual .text-wrapper {
    background-image: url(../img/top/firstview_pc.jpg);

  }
}

/*ここからFVキャッチコピー*/

.mainvisual .text-wrapper .bold {
  font-weight: 900;
}

.mainvisual .text-wrapper .catchphrase1,
.mainvisual .text-wrapper .catchphrase2,
.mainvisual .text-wrapper .catchphrase3 {
  position: absolute;
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #1c1c1c;
  background-color: #fff;
  font-size: 22px;
  padding: 4px;
  animation: fadeUp 1.8s ease-out forwards;
  position: absolute;
}

.mainvisual .text-wrapper .catchphrase1 {
  animation-delay: 1s;
  right: 10px;
  padding-bottom: 30px;
}

.mainvisual .text-wrapper .catchphrase2 {
  animation-delay: 2s;
  right: 10px;
  top: 180px;
}

.mainvisual .text-wrapper .catchphrase3 {
  animation-delay: 3s;
  left: 10px;
  top: 2px;
  padding: 20px 5px;
}

/* ----PCのFVキャッチコピー */
@media screen and (min-width: 960px) {

  .mainvisual .text-wrapper .catchphrase1,
  .mainvisual .text-wrapper .catchphrase2,
  .mainvisual .text-wrapper .catchphrase3 {
    flex-direction: column;
    position: absolute;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #1c1c1c;
    background-color: #fff;
    font-size: 32px;
    margin-bottom: auto;
    animation: fadeUp 1.8s ease-out forwards;
    position: absolute;
  }

  .mainvisual .text-wrapper .catchphrase1 {
    animation-delay: 1s;
    right: 80px;
    padding-bottom: 40px;
    top: 30px;
  }

  .mainvisual .text-wrapper .catchphrase2 {
    animation-delay: 2s;
    right: 150px;
    top: 60px;
  }

  .mainvisual .text-wrapper .catchphrase3 {
    animation-delay: 3s;
    left: 150px;
    top: 30px;
    padding: 10px 5px;
  }
}

/* タブレットのFVキャッチコピー */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  .mainvisual .text-wrapper .catchphrase1,
  .mainvisual .text-wrapper .catchphrase2,
  .mainvisual .text-wrapper .catchphrase3 {
    flex-direction: column;
    position: absolute;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #1c1c1c;
    background-color: #fff;
    font-size: 28px;
    margin-bottom: auto;
    padding: 6px;
    animation: fadeUp 1.8s ease-out forwards;
    position: absolute;
  }

  .mainvisual .text-wrapper .catchphrase1 {
    animation-delay: 1s;
    right: 60px;
    padding-bottom: 40px;
    top: 30px;
  }

  .mainvisual .text-wrapper .catchphrase2 {
    animation-delay: 2s;
    right: 130px;
    top: 60px;
  }

  .mainvisual .text-wrapper .catchphrase3 {
    animation-delay: 3s;
    left: 80px;
    top: 80px;
    padding: 20px 5px;
  }

}

/* 共通FVキャッチコピーテキストアニメーション */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----ここまでFVキャッチコピー */

/* PCのみ流れるテキストを入れる？ */

.slider {
  display: none;
}

@media screen and (min-width: 960px) {
  .slider {
    display: block;
  }
}

/* ----ここまでPCのみ流れるテキストを入れる */

/* ここからFV流れるテキスト */
.slider {
  position: absolute;
  top: 120px;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.scroll-wrap span {
  color: #fff;
  font-weight: 500;
  font-family: "Audiowide", "Noto Sans JP", "M PLUS 1p";
  letter-spacing: 0.2em;
  mix-blend-mode: lighten;
}

/* 流れるテキスト上段 */
.line1 {
  position: absolute;
  top: 30%;
  left: -50%;
  transform: rotate(-8deg);
}

.line1 .scroll-wrap {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: scrollTextLeft 20s linear infinite;
  background-color: #1c1c1c;
}

@keyframes scrollTextLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 流れるテキスト下段 */
.line2 {
  position: absolute;
  top: 75%;
  left: -50%;
  transform: rotate(8deg);

}

.line2 .scroll-wrap {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: scrollTextRight 20s linear infinite;
  background-color: #1c1c1c;
  padding: 3px 0;
}

@keyframes scrollTextRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ----PCのFV流れるテキスト */
@media screen and (min-width: 960px) {
  .slider {
    top: 300px;
  }

  .scroll-wrap span {
    font-weight: 800;
    letter-spacing: 0.3em;
    padding: 6px;
  }

  .line1 {
    bottom: 80%;
    right: -20%;
    left: 20%;
    transform: rotate(-18deg);
  }

  .line2 {
    top: 55%;
    right: -60%;
    transform: rotate(13deg);
  }

}

/* ここからトピックス*/
.topics {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #dbdede 3px, transparent 3px), radial-gradient(circle, #dbdede 3px, transparent 3px);
  background-position: 0 0, 15px 28px;
  background-size: 34px 60px;
  background-repeat: repeat;
}

.topics-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 10px;
}

.topics-img {
  max-width: 170px;
}

.news-label {
  font-family: Noto Sans JP;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2;
  font-size: 16px;
  color: #B400EB;
}

.news-text {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
  display: block;
}

/* ここからPCのトピックス*/
@media screen and (min-width: 960px) {
  .topics {
    height: 580px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .topics-wrapper {
    max-width: 600px;
    flex-direction: column;
    width: 32%;
    height: 400px;
    box-sizing: border-box;
    padding: 0 10px 80px 10px;
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .topics-img {
    max-width: 400px;
    height: 100%;
  }

  .news-label {
    font-size: 20px;
  }

  .news-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    display: block;
  }

}

/* ここからタブレットのトピックス */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .topics {
    height: 550px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }

  .topics-wrapper {
    flex-direction: column;
    width: 32%;
    height: 400px;
    box-sizing: border-box;
    padding: 10px 20px 50px 20px;
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .topics-img {
    max-width: 400px;
    height: 100%;
  }

  .news-label {
    font-size: 18px;
  }

  .news-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    display: block;
  }

  .topics .btn-wrapper {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    padding-top: 30px;
  }

}

/*----ここまでトピックス*/

/*ここからビジョン*/
.vision.vision-img {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-wrapper {
  width: 100%;
  height: auto;
  background-image: url("../img/top/vision_back.jpg");
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
}

.idea {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px 20px;
  border-radius: 12px;
  line-height: 1.6;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
}

.idea-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
}

.idea-title span {
  font-size: 20px;
  color: #B400EB;
  font-weight: bold;
  font-family: "Noto Sans JP";
  line-height: 1.2;
}

.idea-title .idea-number {
  font-size: 28px;
  letter-spacing: 2px;
  border-left: 6px solid #2ECCA6;
  padding-left: 8px;

}

.idea-title .idea-label {
  position: relative;
  padding-left: 16px;
  padding-bottom: 8px;
  display: inline-block;
  font-size: 20px;
  color: #B400EB;
  font-weight: bold;
  font-family: "Noto Sans JP";
  margin-bottom: 10px;
}

/* ----ここからPCのビジョン*/
@media screen and (min-width: 960px) {
  .vision-wrapper {
    display: flex;
  }

  .idea {
    margin: 0 auto;
    border-radius: 12px;
    line-height: 1.6;
    margin: 20px;
  }

  .idea-title {
    font-size: 20px;
    line-height: 1.5em;
  }

  .idea-title .idea-number {
    font-size: 30px;
    letter-spacing: 3px;
    border-left: 8px solid #2ECCA6;
    padding-left: 10px;

  }

  .idea-title .idea-label {
    padding-left: 20px;
    padding-bottom: 8px;
    font-size: 24px;
  }
}

/* ここからタブレットのビジョン */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .idea-title {
    font-size: 18px;
  }

  .idea-title span {
    font-size: 24px;
  }

  .idea-title .idea-number {
    font-size: 28px;
  }

  .idea-title .idea-label {
    font-size: 22px;
  }
}

/*----ここまでビジョン*/

/*----ここからコース*/

/*----ここからコーストップ*/
.course-top {
  width: 100%;
  height: 200px;
  background-image: url("../img/top/course_top.jpg");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: darken;
  background-position: center top;
  background-size: cover;
  padding: 20px 20px;
}

.course-top .course-title {
  font-size: 24px;
  font-weight: bold;
  color: #B400EB;
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px dotted #2ECCA6;
}

.course-top .course-title span {
  font-size: 18px;
  font-style: italic;
  margin-right: 6px;
}

.course-top p {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  font-family: "m-plus-1p";
}

/*----ここからPCコーストップ*/
@media screen and (min-width: 960px) {
  .course-top {
    height: 350px;
    padding: 50px;
    text-align: center;
  }

  .course-top .course-title {
    font-size: 36px;
    margin: 30px auto;
    margin-bottom: 40px;
    border-bottom: 5px dotted #2ECCA6;
  }

  .course-top .course-title span {
    font-size: 24px;
  }

  .course-top p {
    font-size: 20px;
    font-weight: 600;
    line-height: 2.5;
  }

}

/* ここからタブレットのコーストップ */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .course-top {
    height: 250px;
    padding: 50px;
  }

  .course-top .course-title {
    font-size: 32px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .course-top .course-title span {
    font-size: 22px;
  }

  .course-top p {
    font-size: 20px;
  }

}

/*----ここからコースの中身*/
.course-background {
  width: 100%;
  height: auto;
  background-image: url("../img/top/course_background.jpg");
  background-position: center top;
  background-size: cover;
  padding: 20px 20px;
}

.course-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.mask {
  display: block;
  position: relative;
}

.shine .mask img {
  width: auto;
  height: auto;
}

.course-list {
  flex: 200px;
  color: #333;
}

.course-list h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(to right, #f8c1ff, #B400EB, #f8cbff);

}

.course-list ul {
  line-height: 1.8;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Suns JP";
}

.course-list .career {
  font-weight: bold;
  color: #B400EB;
  margin-top: 6px;
  line-height: 1.8rem;
}

/*----ここからPCコースの中身*/
@media screen and (min-width: 960px) {
  .course-background {
    padding: 40px 80px;
  }

  .course-wrapper {
    gap: 30px;
    padding: 40px 40px;
    border-radius: 14px;
    margin-bottom: 40px;
  }

  .shine .mask img {
    max-width: 600px;
  }

  .course-list {
    flex: 150px;
  }

  .course-list h3 {
    font-size: 26px;
    padding: 10px;
    line-height: 1.8;
  }

  .course-list ul {
    line-height: 1.8;
    font-size: 18px;
    padding-bottom: 30px;
  }

  .course-list p {
    font-weight: 500;
    font-size: 20px;
    margin-top: 8px;
  }

  .course-list .career {
    font-size: 22px;
    margin-top: 8px;
  }

}

/* ここからタブレットのコースの中身 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .course-background {
    padding: 40px 40px;
  }

  .course-wrapper {
    display: flex;
    gap: 30px;
    padding: 40px 60px;
    background-color: #f4f9f6;
    border-radius: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .course-list h3 {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .course-list ul {
    font-size: 18px;
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .course-list p {
    font-size: 18px;
    margin-top: 10px;
  }

  .course-list .career {
    font-size: 20px;
    font-weight: 600;
  }
}

/*----ここまでコース*/

/*ここからギャラリー*/
.gallery {
  background: linear-gradient(to bottom, #fdf7ff, #f0e6ff);
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.zoomIn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* スマホ2カラム */
  gap: 12px;
  padding: 10px;
}

.zoomIn img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

/*----ここからPCギャラリー*/
@media screen and (min-width: 960px) {
  .zoomIn {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    /* PC 3カラム */
    gap: 20px;
    padding: 40px;
  }

  .zoomIn img {
    height: 300px;
    border-radius: 10px;
  }
}

/* ここからタブレットギャラリー*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .zoomIn {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .gallery {
    background: linear-gradient(to bottom, #fdf7ff, #f0e6ff);
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .zoomIn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* スマホ2カラム */
    gap: 12px;
    padding: 10px;
  }

  .zoomIn img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
  }

  /*----ここからPCギャラリー*/
  @media screen and (min-width: 960px) {
    .zoomIn {
      display: grid;
      grid-template-columns: repeat(3, 1fr) !important;
      /* PC 3カラム */
      gap: 20px;
      padding: 40px;
    }

    .zoomIn img {
      height: 350px;
      border-radius: 10px;
    }
  }

  /* ここからタブレットギャラリー*/
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .zoomIn {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      padding: 20px;
    }

    .zoomIn img {
      height: 250px;
      border-radius: 10px;
    }
  }

}

/*----ここまでギャラリー*/

/*ここからアバウト*/
#about {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #dbdede 3px, transparent 3px), radial-gradient(circle, #dbdede 3px, transparent 3px);
  background-position: 0 0, 15px 28px;
  background-size: 34px 60px;
  background-repeat: repeat;
  text-align: center;
}

/*ここからアバウトの上部パンフ*/
.pamphlet-title h4 {
  padding-top: 40px;
  font-weight: bold;
  color: #B400EB;
}

.pamphlet-title p {
  padding-top: 10px;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.pamphlet {
  text-align: center;
}

.pamphlet-img img {
  width: 200px;
  padding: 20px;
  border: 1px solid #e5d4f3;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

}

.pamphlet-pdf {
  padding-bottom: 35px;
  display: inline-block;
}

.pamphlet-pdf .pdf-button img {
  width: 15%;
}

.pamphlet-pdf .pdf-button {
  display: flex;
  padding: 10px 10px;
  margin: 10px;
  align-items: center;
  gap: 15px;
  border: 1.5px solid #B400EB;
  border-radius: 8px;
  background-color: #fff;
}

.pamphlet-pdf .pamphlet-dl {
  font-weight: bold;
  color: #B400EB;
}

/*ここからPCのアバウトの上部パンフ*/
@media screen and (min-width: 960px) {
  #about {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .pamphlet-title h4 {
    font-size: 26px;
  }

  .pamphlet-title p {
    font-size: 16px;
    margin: 0;
  }

  .pamphlet {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    max-width: 800px;
    margin: 0 auto;
  }

  .pamphlet-img img {
    width: 300px;
    margin: 30px;
  }

}

/* ここからタブレットアバウトの上部パンフ*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #about {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .pamphlet-title h4 {
    font-size: 22px;
  }

  .pamphlet-title p {
    font-size: 16px;
    margin: 0;
  }

  .pamphlet {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    max-width: 800px;
    margin: 0 auto;
  }

  .pamphlet-img img {
    width: 250px;
    margin: 30px;
  }

}

/*----ここまでアバウトの上部パンフ*/

/*ここからアバウトの下部アクセス*/
.access {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background: linear-gradient(to bottom, #afe9db, #fdf7ff, #afe9db, #fdf7ff, #afe9db);
}

.access-wapper {
  width: 360px;
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px 20px;
  display: block;
  margin-bottom: 20px;
}

.access-img {
  width: 320px;
}

.access-img img {
  width: 300px;
}

.access-notes {
  width: 100%;
}

.access-notes p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6rem;
  margin: 10px 20px;
  font-weight: 500;
  font-family: "Noto Suns JP";
  text-align: left;
}


/*ここからPCアバウトの下部アクセス*/
@media screen and (min-width: 960px) {
  .access {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .access-wapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 700px;
    height: 220px;
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto;
    gap: 20px;
  }

  .access-img {
    width: 400px;
  }

  .access-img img {
    width: 100%;
  }

}

/* ここからタブレットアバウトの下部アクセス*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .access {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .access-wapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 600px;
    height: 220px;
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto;
    gap: 20px;
  }

  .access-img {
    width: 400px;
  }

  .access-img img {
    width: 100%;
  }
}

/*----ここまでPCアバウトの下部アクセス*/

/*----ここまでアバウト*/

/*ここからフッター*/
#footer {
  background-color: #1c1c1c;
  padding: 30px;
  color: #fff;
  text-align: center;
}

#footer .inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#footer .icon img {
  width: 200px;
  height: auto;
}

#footer .icon img,
#footer .sns ul :hover {
  opacity: 0.6;
}

#footer .sns ul {
  display: flex;
  gap: 25px;
  justify-content: center;
}


#footer .sns img {
  width: 30px;
  height: auto;
}

#footer p {
  font-size: 0.6em;
  line-height: 1.6;
  margin: 15px;
}

/*ここからPCフッター*/
@media screen and (min-width: 960px) {
  #footer .inner-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
  }

  #footer .icon img {
    width: 180px;
  }

  #footer .sns ul {
    gap: 40px;
  }
}

/*ここからPCフッター*/
@media screen and (min-width: 960px) {
  #footer .inner-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
  }

  #footer .icon img {
    width: 180px;
  }

  #footer .sns ul {
    gap: 40px;
  }
}

/*ここからタブレットフッター*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .inner-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
  }

  #footer .icon img {
    width: 160px;
  }

  #footer .sns ul {
    gap: 30px;
  }
}

/*----ここまでPCフッター*/

/*----ここまでフッター*/


/*使用フォント*/
/*
＜Noto Sans JP: 可変スタイルのCSSクラス＞
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
＜M PLUS 1p: CSSクラス＞
  .m-plus-1p-thin {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.m-plus-1p-light {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-1p-medium {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-1p-bold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-plus-1p-extrabold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.m-plus-1p-black {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-style: normal;
}
＜Audiowide: CSS クラス＞
.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}
*/