/*
Theme Name: ppt_libefes2025
Description:
Theme URL:
Author:
Author URL:
Version:
License:
License URL:
*/

:root {
  --gray: #f2f2f2;
  --blue: #3483e3;
  --paleBlue: #46b1e1;
  --white: #fff;
  --navy: #156082;
  --bgBlue: #e0eff7;
  --lineGray: #ccc;
  --paleOrange: rgb(265, 228, 207);
  --orangeBg: #ED6C5B;
  --orange: #D35330;
  --classBg: linear-gradient(90deg, #ED6C45, rgba(252, 132, 114, 1), rgba(255, 153, 102, 1));
  --seminarBg: linear-gradient(90deg, #3CC79C 0%, #77AAE9 100%);
  --templateBg: linear-gradient(90deg, #7873F5 0%, #EC77AB 100%);
  --marketing: #1f8dda;
  --line: green;
  --youtube: #da1725;
  --snsBlack: #000;
  --instagram: linear-gradient(90deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
  --textBlack: #333;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #E4E4E4;
  /*
  background: linear-gradient(to right, #FF9966, #FC8472, #ED6C45);
  */
}

a {
  text-decoration: none;
}

/* ヘッダー */
header {
  background: transparent;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 45px;
  padding: 0 20px;
}

.header-buttons-wrapper {
  display: flex;
}

.header-buttons {
  display: flex;
  gap: 10px;
  padding: 0 10px;
}

.header-buttons a {
  background: linear-gradient(90deg, #ED6C45, rgba(252, 132, 114, 1), rgba(255, 153, 102, 1));
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s;
}

.header-buttons.seminar a {
  background: linear-gradient(90deg, #3CC79C 0%, #77AAE9 100%);
  color: #FFF;
}

.header-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

/* アイキャッチ */
.hero {
  /*      margin-top: 64px;*/
  position: relative;
  width: 100%;
  height: 500px;
  background: url('img/hero.png') bottom/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 左寄せに変更 */
  padding: 0;
}

.hero-text {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.hero-text::before {
  animation: bg 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: rgba(21, 96, 130, .8);
  border-radius: 0 10px 10px 0;
  padding-right: 10px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}

.hero-text .inn {
  color: #fff;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }

  30% {
    transform: scaleX(1) translateX(0);
  }

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

  30%,
  100% {
    opacity: 1;
  }
}

.hero-text .inn span {
  color: #f5f551;
}

.pc-mb {
  display: inline;
}

.sp,
.mb {
  display: none;
}

.red {
  color: red;
}

@media screen and (max-width: 768px) {

  /* 768px以下に適用されるCSS（タブレット用） */
  .hero {
    height: 400px;
  }

  .hero-text .inn {
    font-size: 24px;
    padding: 5px 15px;
  }

  .mb {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .hero {
    height: 300px;
  }

  .hero-text .inn {
    font-size: 20px;
    padding: 5px 10px;
  }

  .pc {
    display: none;
  }

  .sp,
  .mb {
    display: block;
  }

  .pc-mb {
    display: none;
  }

  .header-buttons {
    font-size: 10px;
    padding: 8px;
  }

  .header-buttons a {
    border-radius: 8px;
    padding: 8px;
  }
}

/* newsエリア */
.news-container {
  width: 100%;
  background: linear-gradient(90deg, #ED6C45, rgba(252, 132, 114, 1), rgba(255, 153, 102, 1));
}

.news li span {
  font-size: 0.8em;
  margin: 0 20px;
  color: rgba(255, 255, 255, .6);
  border-right: solid 3px rgba(255, 255, 255, .5);
  padding: 0 20px;
}

/* ulタグ */
.news {
  height: 57px;
  line-height: 57px;
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  margin: 0;
  gap: 0;
  overflow: hidden;
}

/* liタグ */
.news li {
  display: inline-block;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  padding: 0 70% 0 0;
  margin: 0;
  white-space: nowrap;
  animation: marquee-left 40s linear infinite;
}

/* アニメーション */
@keyframes marquee-left {
  0% {
    transform: translateX(50%)
  }

  100% {
    transform: translateX(-150%)
  }
}

@media screen and (max-width: 768px) {

  /* 768px以下に適用されるCSS（タブレット用） */
  /* ulタグ */
  .news {
    height: 48px;
    line-height: 48px;
  }

  .news li {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 500px) {
  .news {
    height: 40px;
    line-height: 40px;
  }

  .news li {
    font-size: 1.2em;
  }
}

/* お金の勉強フェス2025 */
.fes-container {
  display: flex;
  flex-wrap: wrap;
}

.fes-dates-box {
  min-width: 50%;
}

.fes-info-box {
  width: 50%;
}

.fes-dates {
  font-size: 3.2em;
  color: #156082;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.fes-dates span {
  font-weight: bold;
}

.fes-dates small {
  display: block;
  font-size: 0.3em;
  background: #d9eaf4;
  color: #156082;
  border-radius: 50%;
  padding-left: 12px;
  width: 28px;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  margin-right: 7px;
  font-weight: bold;
}

.fes-dates small.hol {
  padding-left: 5px;
  width: 35px;
  height: 40px;
}

.fes-info {
  display: flex;
  margin-bottom: 5px;
  gap: 10px;
}

.fes-info .tag {
  color: #6F95C0;
  border-radius: 5px;
  border: solid 1px #6F95C0;
  padding: 3px 10px;
  font-size: 0.9em;
  font-weight: bold;
}

.fes-info .text {
  padding-top: 2px;
  font-size: 1em;
  color: #333;
}

.fes-buttons {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 0;
  text-align: center;
  margin: 10px auto 20px;
}

.fes-buttons a {
  margin: 0 auto;
  background: linear-gradient(90deg, #3CC79C 0%, #77AAE9 100%);
  color: #FFF;
  font-size: 1.2em;
  line-height: 1.2em;
  padding: 10px 50px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s;
}

.fes-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.booth {
  color: #D35330;
  font-weight: bold;
  font-size: 2em;
}

.booth small {
  font-size: 0.6em;
}

.hide {
  display: none;
}

.map {
  text-align: center;
  padding: 20px 0;
}

.map div {
  background: #ccc;
  width: 600px;
  height: 300px;
  margin: auto;
}

/* コンテンツ */
.content {
  top: 200px;
  padding: 20px 50px;
  max-width: 900px;
  margin: 20px auto;
  background: #FFFFFF;
  border-radius: 20px;
}

.load-fade,
.scroll-up {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.content h2 {
  position: relative;
  padding-left: 1.3em;
  /*アイコン分のスペース*/
  line-height: 1.4;
  font-size: 28px;
  color: #156082;
  margin-bottom: 20px;
}

.content h2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;
  /*絶対位置*/
  font-size: 1em;
  /*サイズ*/
  left: 0;
  /*アイコンの位置*/
  top: 0;
  /*アイコンの位置*/
  color: #5ab9ff;
  /*アイコン色*/
  font-weight: 900;
}

.content p:not(.seminar-bold):not(.class-caption),
.content ul {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {

  /* 768px以下に適用されるCSS（タブレット用） */
  .content {
    padding: 20px 20px;
    margin: 20px 20px;
  }
}

@media screen and (max-width: 768px) {

  /* 768px以下に適用されるCSS（タブレット用） */
  .fes-dates-box,
  .fes-info-box {
    width: 100%;
  }

  .content h2 {
    font-size: 24px;
  }

  .content p,
  .content ul {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 500px) {
  .content {
    padding: 20px 15px;
    margin: 20px 10px;
  }

  .fes-dates {
    font-size: 1.8em;
  }

  .fes-dates small {
    padding-left: 8px;
    width: 18px;
    height: 28px;
    line-height: 28px;
  }

  .fes-dates small.hol {
    width: 24px;
    padding-left: 4px;
    height: 28px;
  }

  .fes-info {
    display: block;
  }

  .tag {
    width: 30px;
  }

  .content h2 {
    font-size: 22px;
  }

  .content p,
  .content ul {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* 金額表示 */
.cat-title {
  margin-bottom: 8px;
}

.cat-price {
  font-size: 1em;
  background: #FFF;
  border-radius: 3px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24.5px;
}

.cat-price.line {
  color: var(--line);
  width: fit-content;
}

.cat-price.marketing {
  color: var(--marketing);
  width: fit-content;
}

.cat-price small {
  font-size: 0.7em;
}

.seminar-item .cat-price {
  width: fit-content;
  margin-top: 4px;
  padding: 0 5px 0 11px;
  flex: 0 0 auto;
}

.seminar-item .cat-price.free {
  padding-right: 11px;
}

.title {
  background: #F2F2F2;
  font-weight: bold;
  color: #333;
  width: 250px;
  vertical-align: middle;
}

.title-indent {
  display: inline-block;
  padding-left: 2em;
}

.title-indent-1-5em {
  display: inline-block;
  padding-left: 1.5em;
}

.number {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  background: #156082;
  color: #e0eff7;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  line-height: 25px;
  margin-right: 8px;
  box-sizing: border-box;
}

.center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cat-title {
    margin: 0px 10px 0 0;
  }

  .cat-price {
    padding: 3px 5px;
    margin: 0;
  }
}

/* 予約ボタン 無効 */
.reservation-dis-button {
  width: auto;
  display: inline-block;
  color: #9F9F9F;
  font-size: 28px !important;
  font-weight: bold;
  line-height: 50px !important;
  padding: 10px 140px;
  margin-top: 10px;
  position: relative;
  z-index: 0;
  border-radius: 30px;
  background: #DFDFDF;
  margin: auto;
}

/* 予約ボタン */
.reservation-button {
  width: auto;
  display: inline-block;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 50px;
  padding: 10px 140px;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 0;
  border-radius: 30px;
  background: var(--classBg);
}

.reservation-button.seminar {
  background: var(--seminarBg);
}

.reservation-button.template {
  background: var(--templateBg);
}

.reservation-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

/* フッター */
footer {
  background: linear-gradient(90deg, #ED6C45, rgba(252, 132, 114, 1), rgba(255, 153, 102, 1));
  /*background:#D35330 ;*/
  color: #FFF;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
  font-size: 14px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

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

.btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  color: #000;
  transition: 0.3s;
}

/* youtube */
.youtube-caption {
  margin-bottom: 8px !important;
  color: var(--navy);
  font-weight: bold;
  font-size: 20px;
}

.youtube-block {
  margin: 0 auto;
}

.youtube-block iframe {
  aspect-ratio: 560 / 315;
  width: 560px;
}

@media screen and (max-width: 767px) {
  .youtube-block {
    width: 100%;
  }

  .youtube-block iframe {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .youtube-caption {
    font-size: 16px !important;
  }

  /* 予約ボタン 無効 */
  .reservation-dis-button {
    width: 70%;
    padding: 10px;
  }

  /* 予約ボタン */
  .reservation-button {
    width: 70%;
    padding: 10px;
  }
}

/* index */
.index {
  max-width: 900px;
  margin: 40px auto 20px;
}

.index-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
}

.index-item {
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-item:hover .index-text {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.index-item img {
  width: 200px;
}

.index-text {
  background: var(--classBg);
  color: var(--white);
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 220px;
  border-radius: 25px;
  margin: 0 10px 10px;
  transition: 0.3s;
}

.index-text.seminar {
  background: var(--seminarBg);
}

.index-text.template {
  background: var(--templateBg);
}

@media screen and (max-width: 768px) {
  .index-icons {
    /* grid-template-columns: 1fr; */
    gap: unset;

  }

  .index-item img {
    width: 100px;
  }

  .index-text {
    font-size: 14px;
    width: 150px;
    height: 48px;
    padding: 0;
    border-radius: 30px;

  }
}

@media screen and (max-width: 500px) {
  .index-text {
    font-size: 12px;
    width: 110px;
  }
}

/* アコーディオン */
.item-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-inline-start: 0;
  margin-block-start: 30px;
  list-style: none;
}

.item-list.class {
  margin-block-start: 10px;
}

.item-checkbox {
  display: none;
}

.item-title {
  display: flex;
  column-gap: 24px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  list-style-type: none;
  background-color: var(--gray);
  padding: 8px 70px 8px 24px;
  color: #156082;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid var(--lineGray);
}

.item-checkbox:checked+.item-title {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: none;
}

.item-checkbox:checked+.item-title.class {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.item-title::after {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  content: "\f107";
}

.item-checkbox:checked+.item-title::after {
  transform: translateY(-52%) rotate(180deg);
}

.item-title h3 {
  margin-block-start: 0;
  margin-block-end: 0;
  display: inline-block;
  flex: 1 1 auto;
  margin: auto 0;
  min-width: 0;
}

.item-checkbox:not(:checked)+.item-title+.item-underWrapper {
  border-radius: 100px;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
}

.item-checkbox:checked+.item-title+.item-underWrapper {
  visibility: visible;
  height: auto;
  max-height: 2000px;
  opacity: 1;
  display: block;
  border-right: 1px solid var(--lineGray);
  border-bottom: 1px solid var(--lineGray);
  border-left: 1px solid var(--lineGray);
  border-radius: 0 0 16px 16px;
}

@media screen and (max-width: 767px) {
  .item-title {
    padding-right: 48px;
    padding-left: 28px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .item-title::after {
    font-size: 18px;
    right: 19px;
  }
}

@media screen and (max-width: 500px) {
  .item-title {
    padding-left: 28px;
    font-size: 14px;
  }
}

/* クラス */
.class-category {
  background-color: var(--bgBlue);
  display: flex;
  max-width: 900px;
  align-items: center;
  color: var(--navy);
  font-weight: bold;
  padding: 12px;
}

.class-category-title {
  margin-right: 10px;
}

.class-list {
  list-style: none;
}

.class-caption {
  font-size: 18px;
  text-align: justify;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .class-caption {
    line-height: 1.7em;
  }
}

@media screen and (max-width: 500px) {
  .class-caption {
    font-size: 16px;
  }
}

/* セミナー */
.seminar-bold {
  font-weight: bold;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.seminar-price {
  background-color: #fff;
  border-radius: 12px;
  width: fit-content;
  padding: 4px 12px;
  text-align: center;
  font-size: 14px;
}

.seminar-price span {
  font-size: 12px;
}

.item-underWrapper {
  visibility: hidden;
  overflow: hidden;
  display: none;
  background-color: var(--white);
  padding: 16px 24px;
}

.seminar-body {
  display: flex;
  /* flex-wrap: wrap; */
  column-gap: 36px;
  row-gap: 0;
  margin-bottom: 24px;
}

.seminar-body ul {
  list-style: none !important;
  padding-inline-start: 0;
  margin-bottom: 0 !important;
}

.seminar-caption {
  font-size: 18px;
  text-align: justify;
}

.seminar-body-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(50% - 18px);
}

.seminar-left-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seminar-left-item {
  font-weight: bold;
  margin-left: 32px;
  position: relative;
  font-size: 18px;
}

.gift .seminar-left-item::after {
  position: absolute;
  top: 0;
  left: -30px;
  font-family: "Font Awesome 6 Free";
  content: "\f005";
  color: var(--orangeBg);
}

.seminar-body-item.teacher {
  width: calc(50% - 18px);
}

.seminar-body-title {
  color: var(--navy);
  font-size: 18px;
  border-top-left-radius: 50%;
  margin-block-end: 12px;
}

.seminar-body-title.date {
  padding: 12px 0;
}

.seminar-body-title i {
  margin-right: 12px;
  color: var(--paleBlue);
}

.seminar-body-title.date span {
  color: var(--textBlack);
  font-size: 16px;
  font-weight: normal;
}

.seminar-body-cont {
  background-color: var(--bgBlue);
  padding: 16px 24px;
  border-radius: 24px;
}

.gift .seminar-body-cont {
  /* background-color: #d1f0ed; */
  background-color: var(--paleOrange);
}

.recommendation .seminar-left-item::before {
  position: absolute;
  top: 0;
  left: -30px;
  font-family: "Font Awesome 6 Free";
  content: "\f005";
  color: var(--blue);
}

.teacher .seminar-body-cont {
  background-color: var(--gray);
  padding: 16px 24px;
  border-radius: 24px;
}

.seminar-teacher-name {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: bold;
}

.seminar-teacher-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.seminar-teacher-nickname {
  font-size: 18px;
}

.seminar-teacher-position {
  color: var(--navy);
  font-size: 14px;
}

.seminar-teacher-caption {
  text-align: justify;
  margin-bottom: 0 !important;
}

.seminar-bottom {
  position: relative;
  margin-top: 32px;
}

.seminar-bottom::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: '';
  height: 1px;
  background-color: var(--lineGray);
}

.seminar-date-list {
  list-style: none;
  display: flex;
  row-gap: 16px;
  column-gap: 24px;
  padding-inline-start: 0;
  margin-bottom: 16px !important;
  flex-wrap: wrap;

}

.seminar-date-item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 32px;
  border-radius: 24px;
  background-color: var(--bgBlue);
}

.seminar-date-item.narrow {
  padding: 8px 16px;
}

.seminar-date-item.gray {
  background: var(--gray);
}

@media screen and (max-width: 767px) {
  .seminar-body {
    flex-direction: column;
  }

  .seminar-caption {
    line-height: 1.7em;
  }

  .seminar-body-left {
    width: 100%;
  }

  .seminar-body-item.teacher {
    width: 100%;
  }

  .seminar-teacher-position {
    margin-top: 4px;
  }

  .seminar-date-list {
    flex-direction: column;
  }

}

@media screen and (max-width: 500px) {
  .seminar-caption {
    font-size: 16px;
    text-align: justify;
  }

  .seminar-left-item {
    font-size: 16px;
  }

  .seminar-teacher-caption {
    font-size: 16px !important;
  }
}

/* TOPに戻るボタン */
.fixed {
  position: fixed;
  bottom: 5%;
  right: 0;
}

.top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--orange);
  opacity: 0.7;
}

.top-btn:hover {
  opacity: 1;
}

.top-btn-text {
  margin-top: 10%;
  font-size: 14px;
  position: relative;
  font-weight: bold;
}

.top-btn-text::after {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  content: "\f106";
  font-weight: 700;
}

/* タイトル */
.sections-title {
  background: var(--navy);
  color: var(--white);
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  padding: 10px 50px;
  display: block;
  max-width: 900px;
  /* width: calc(100% + 40px); */
  margin: 48px auto 10px;
  border-radius: 15px;
  ;
}

@media screen and (max-width: 1000px) {
  .sections-title {
    margin: 48px 20px 10px;
    width: calc(100% -20px);
  }
}

@media screen and (max-width: 500px) {
  .sections-title {
    font-size: 24px;
  }

}

/* template */
.template-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-inline-start: 0;
}


.template-name {
  background-color: var(--bgBlue);
  color: var(--navy);
  text-align: center;
  font-weight: bold;
  margin-bottom: 18px;
  font-size: 18px;
  padding: 12px 0;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  row-gap: 12px;
}

.template-name.marketing {
  position: relative;
}


.template-img-wrapper {
  padding: 12px;
}

.template-name-text {
  margin-block-start: 0;
  margin-block-end: 0;
}

.template-img {
  width: 100%;
}

.template-budge {
  /* position: absolute;
  top: 0;
  right: 0;
  content: ""; */
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  background-color: var(--gray);
  text-align: center;
  justify-content: center;
}

.template-budge-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  text-align: left;
}

.template-budge-image {
  width: 52px;
}

@media screen and (max-width: 500px) {
  .template-name {
    flex-direction: column;
    column-gap: 12px;
    border-radius: 47px;
  }
}

/* snsLink */
.sns-links-wrapper {
  display: flex;
  gap: 36px;
  margin-bottom: 48px;
  justify-content: center;

}

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background-color: var(--white);
  border-radius: 50%;
  padding: 16px;
  width: 42px;
  height: 42px;
  transition: 0.3s;
}

.sns-link.instagram {
  background: var(--instagram);
}

.sns-link.x-twitter {
  background-color: var(--snsBlack);
}

.sns-link.youtube {
  background-color: var(--youtube);
}

.sns-link.tiktok {
  background-color: var(--snsBlack);
}

.sns-link:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

/* instagram埋め込み */
.insta-card {
  margin: 0 auto 32px;
  /* padding: 8px 16px; */
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  width: 100%;
  max-width: 550px;
}

#sb_instagram {
  margin: 0 24px;
}

#sb_instagram .sb_instagram_header,
.sb_instagram_header {
  padding: 12px !important;
}

#sb_instagram.sbi_col_3 #sbi_images {
  padding: 12px;
}

.twitter-tweet.twitter-tweet-rendered {
  margin: 24px auto;
}


/* iroha */
.iroha-wrapper {
  border-radius: 12px;
  margin: 0 auto;
  padding: 16px;
  background-color: var(--gray);
}

.iroha-text {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  padding: 16px 16px 32px;
  text-align: justify;
}

.iroha-icon {
  width: 40px;
  height: 40px;
  justify-content: center;
  display: flex;
}

.iroha-icon img {
  width: 100%;
}


.iroha-info {
  font-size: 16px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.iroha-name {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.fa-brands::before {
  font-size: 28px;
}

.fa-brands::before {
  color: var(--white);
}