@charset "UTF-8";
/* ***************************************************************** 
*	New
* ***************************************************************** */
/* ***************************************************************** 
*	Media Query
* ***************************************************************** */
/* ***************************************************************** 
*	Common
* ***************************************************************** */
html {
  scroll-behavior: smooth; /* スムーススクロール */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  body {
    font-size: 12px;
  }
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

section {
  margin: 104px auto;
}
@media (max-width: 768px) {
  section {
    margin: 80px auto;
  }
}
@media (max-width: 460px) {
  section {
    margin: 56px auto;
  }
}
section.no-margin {
  margin: 0;
}

img, video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 460px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 460px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 460px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h5 {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 460px) {
  h5 {
    font-size: 14px;
    line-height: 1.5;
  }
}

h6 {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h6 {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  h6 {
    font-size: 12px;
  }
}

.p-01 {
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-01 {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  .p-01 {
    font-size: 16px;
  }
}

p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
}
@media (max-width: 460px) {
  p {
    font-size: 14px;
  }
}

.p-03 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-03 {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  .p-03 {
    font-size: 12px;
  }
}

.p-04 {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-04 {
    font-size: 12px;
  }
}
@media (max-width: 460px) {
  .p-04 {
    font-size: 10px;
  }
}

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

.obj__inner {
  position: relative;
}

.obj {
  position: absolute;
  z-index: -10;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  z-index: 100;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 6%;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.color-blue {
  color: #006ab6;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.btn-container {
  margin-top: 40px;
}
@media (max-width: 460px) {
  .btn-container {
    padding: 0 3%;
    margin-top: 32px;
  }
}

.cta-btn {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: linear-gradient(90deg, #ef858c, #e1374a);
  gap: 12px;
  border-radius: 100px;
  border: 2px solid #fff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.cta-btn:hover {
  opacity: 0.7;
}
@media (max-width: 460px) {
  .cta-btn {
    padding: 20px 16px;
  }
}
.cta-btn .btn-text {
  color: #fff;
  font-size: 22px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (max-width: 460px) {
  .cta-btn .btn-text {
    font-size: 16px;
  }
}
.cta-btn .arrow {
  position: absolute;
  right: 32px;
  width: 10px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (max-width: 460px) {
  .cta-btn .arrow {
    right: 16px;
  }
}

.last-cta-btn {
  background: linear-gradient(90deg, #d9e021, #39b54a);
  max-width: 620px;
}
.last-cta-btn .btn-text {
  color: #000;
}
.last-cta-btn .arrow {
  width: 12px;
}
@media (max-width: 460px) {
  .last-cta-btn .arrow {
    width: 8px;
  }
}

.btn-container .cta-btn {
  gap: 16px;
}
.btn-container .btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.btn-container .btn-text .small-text {
  font-size: 14px;
}
@media (max-width: 460px) {
  .btn-container .btn-text .small-text {
    font-size: 12px;
  }
}
.btn-container .btn-text .big-text {
  font-size: 28px;
}
@media (max-width: 460px) {
  .btn-container .btn-text .big-text {
    font-size: 18px;
  }
}
.btn-container .btn-text .has-obj {
  display: flex;
  gap: 16px;
}
@media (max-width: 460px) {
  .btn-container .btn-text .has-obj {
    gap: 8px;
  }
}
.btn-container .btn-text .has-obj span {
  width: 18px;
}
@media (max-width: 460px) {
  .btn-container .btn-text .has-obj span {
    width: 10px;
  }
}

.sec-title {
  position: relative;
}
.sec-title-en {
  height: 160px;
  text-align: center;
}
@media (max-width: 768px) {
  .sec-title-en {
    height: 136px;
  }
}
@media (max-width: 460px) {
  .sec-title-en {
    height: 72px;
  }
}
.sec-title-en img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec-title-jp {
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 460px) {
  .sec-title-jp {
    height: 20px;
  }
}
.sec-title-jp img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media (max-width: 460px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media (max-width: 768px) {
  .tab {
    display: block;
  }
}
@media (max-width: 460px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: none;
  }
}
@media (max-width: 460px) {
  .sp {
    display: block;
  }
}

/* ***************************************************************** 
*	Background image
* ***************************************************************** */
.background-img01 {
  background: url(../images/_new/background-img01.png);
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-img01 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-img01 {
    padding: 56px 0;
  }
}
.background-img01:has(#benefits) {
  background-color: #fff;
  margin-top: -144px;
}
@media (max-width: 768px) {
  .background-img01:has(#benefits) {
    margin-top: -104px;
  }
}
@media (max-width: 460px) {
  .background-img01:has(#benefits) {
    margin-top: -96px;
  }
}
.background-img01:has(#benefits) .instructor-obj {
  width: 80%;
  margin: 0 auto -1%;
}

.background-img02 {
  background: url(../images/_new/background-img02.png);
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-img02 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-img02 {
    padding: 56px 0;
  }
}

.background-img03 {
  background: url(../images/_new/background-img03.png);
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-img03 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-img03 {
    padding: 56px 0;
  }
}

.background-img04 {
  background: url(../images/_new/background-img04.png);
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-img04 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-img04 {
    padding: 56px 0;
  }
}

.background-img05 {
  background: url(../images/_new/background-img05.png);
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-img05 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-img05 {
    padding: 56px 0;
  }
}

.background-img06 {
  background: url(../images/_new/background-img06.png);
  background-color: #fff;
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-img06 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-img06 {
    padding: 56px 0;
  }
}

.background-black-100 {
  background: url(../images/_new/background-black.jpg);
  padding: 104px 0;
}
@media (max-width: 768px) {
  .background-black-100 {
    padding: 80px 0;
  }
}
@media (max-width: 460px) {
  .background-black-100 {
    padding: 56px 0;
  }
}

.fix-footer {
  position: relative;
  height: auto;
}

.fix-btn-container {
  position: fixed;
  z-index: 995;
  bottom: 4%;
  right: 144px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 460px) {
  .fix-btn-container {
    left: 2%;
    bottom: 2%;
  }
}
.fix-btn-container .cta-btn {
  padding: 24px 32px;
}
@media (max-width: 460px) {
  .fix-btn-container .cta-btn {
    padding: 12px 24px;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ***************************************************************** 
*	Header
* ***************************************************************** */
#header {
  background-color: #000;
  height: 80px;
  width: 100%;
}
@media (max-width: 460px) {
  #header {
    height: 64px;
  }
}
#header .header-inner {
  padding: 8px;
  height: 100%;
  display: flex;
  align-items: center;
}
#header .header-inner .header-campaign-img {
  width: 120px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #header .header-inner .header-campaign-img {
    width: 96px;
  }
}
@media (max-width: 460px) {
  #header .header-inner .header-campaign-img {
    width: 80px;
  }
}

/* ***************************************************************** 
*	Display flex
* ***************************************************************** */
.layout-flex {
  display: flex;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .layout-flex {
    gap: 32px;
  }
}
@media (max-width: 679px) {
  .layout-flex {
    flex-direction: column;
    gap: 32px;
  }
}
.layout-flex-left {
  width: 50%;
}
@media (max-width: 679px) {
  .layout-flex-left {
    width: 100%;
  }
}
.layout-flex-right {
  width: 50%;
}
@media (max-width: 679px) {
  .layout-flex-right {
    width: 100%;
  }
}

.background-black {
  position: absolute;
  background: url(../images/_new/background-black.jpg);
  width: 95%;
}
@media (max-width: 768px) {
  .background-black {
    width: 100%;
  }
}

/* ***************************************************************** 
*	FKV
* ***************************************************************** */
#fkv {
  width: 100%;
}
#fkv .fkv-video {
  width: 100%;
}

/* ***************************************************************** 
*	Nontitle Zone
* ***************************************************************** */
#nontitle {
  position: relative;
  margin-top: 0;
}
#nontitle .background-black {
  width: 98%;
  height: 60%;
  bottom: 2%;
  right: 0%;
}
@media (max-width: 768px) {
  #nontitle .background-black {
    width: 100%;
    height: 75%;
    bottom: 3%;
  }
}
#nontitle .nontitle-aicrew {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
#nontitle .nontitle-img {
  width: 100%;
  margin: 0 auto 56px;
}
@media (max-width: 460px) {
  #nontitle .nontitle-img {
    width: 100%;
    margin: 0 auto 32px;
  }
}
#nontitle .nontitle-work-content {
  color: #fff;
}
#nontitle .nontitle-aivideo {
  padding: 4px;
  border-radius: 16px;
  background-color: #fff;
}
#nontitle .nontitle-aivideo .inner-line {
  padding: 24px 16px;
  border-radius: 16px;
  border: 2px solid #000;
}
@media (max-width: 768px) {
  #nontitle .nontitle-aivideo .inner-line {
    padding: 24px 16px;
  }
}
@media (max-width: 460px) {
  #nontitle .nontitle-aivideo .inner-line {
    padding: 16px 12px;
  }
}
#nontitle .nontitle-aivideo .text {
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 460px) {
  #nontitle .nontitle-aivideo .text {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  #nontitle .nontitle-aivideo .text h2 {
    font-size: 18px;
  }
}
#nontitle .campaign-container {
  display: grid;
  gap: 32px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 460px) {
  #nontitle .campaign-container {
    gap: 16px;
    width: 100%;
  }
}
#nontitle .campaign-container .campaign-contents-top .campaign-subtitle {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #fff;
}
#nontitle .campaign-container .campaign-contents-top .campaign-title {
  line-height: 1.4;
}
@media (max-width: 768px) {
  #nontitle .campaign-container .campaign-contents-top .campaign-title h3 {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  #nontitle .campaign-container .campaign-contents-top .campaign-title h3 {
    font-size: 18px;
  }
}
#nontitle .campaign-container .campaign-contents-bottom .campaign-subtitle {
  color: #EEAA2F;
  margin-bottom: 16px;
}
@media (max-width: 460px) {
  #nontitle .campaign-container .campaign-contents-bottom .campaign-subtitle h5 {
    font-size: 15px;
  }
}
#nontitle .campaign-container .campaign-contents-bottom .text {
  line-height: 2;
}

/* ***************************************************************** 
*	Nontitle Zone
* ***************************************************************** */
#no1-skill {
  position: relative;
  padding: 144px 0 104px;
}
@media (max-width: 768px) {
  #no1-skill {
    padding: 124px 0 80px;
  }
}
@media (max-width: 460px) {
  #no1-skill {
    padding: 104px 0 56px;
  }
}
#no1-skill .no1-content {
  display: grid;
  gap: 4px;
}
@media (max-width: 460px) {
  #no1-skill .no1-content {
    gap: 32px;
  }
}
#no1-skill .no1-title {
  width: 100%;
}
#no1-skill .no1-text {
  color: #fff;
  margin-left: auto;
}
@media (max-width: 460px) {
  #no1-skill .no1-text {
    margin: 0 auto;
  }
}
#no1-skill .no1-text p {
  line-height: 2.4;
}
#no1-skill .vertical-line {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: 1px;
  height: 104px;
  background-color: #fff;
}
@media (max-width: 768px) {
  #no1-skill .vertical-line {
    height: 80px;
  }
}
@media (max-width: 460px) {
  #no1-skill .vertical-line {
    height: 56px;
  }
}
#no1-skill .background-black {
  height: 100%;
  top: 0%;
  left: 0%;
}

/* ***************************************************************** 
*	Client
* ***************************************************************** */
#client .client-container {
  display: grid;
  gap: 56px;
}
@media (max-width: 460px) {
  #client .client-container {
    gap: 32px;
  }
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  flex-wrap: nowrap; /* ← これ必須 */
  width: -moz-max-content;
  width: max-content; /* ← 中身の幅に合わせて自動拡張 */
  animation: slide 38s linear infinite;
}
@media (max-width: 768px) {
  .logo-track {
    animation: slide 44s linear infinite;
  }
}
@media (max-width: 460px) {
  .logo-track {
    animation: slide 48s linear infinite;
  }
}

.logo-track .logo-item {
  margin: 0 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .logo-track .logo-item {
    margin: 0 20px;
  }
}
@media (max-width: 460px) {
  .logo-track .logo-item {
    margin: 0 8px;
  }
}
.logo-track .logo-item img {
  height: 120px;
  width: auto;
  min-width: 1px; /* 画像幅が読み込み前でも collapse しないように */
  display: block;
}
@media (max-width: 768px) {
  .logo-track .logo-item img {
    height: 80px;
  }
}
@media (max-width: 460px) {
  .logo-track .logo-item img {
    height: 64px;
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ***************************************************************** 
*	Market
* ***************************************************************** */
#market .market-content {
  display: grid;
  gap: 56px;
}
@media (max-width: 768px) {
  #market .market-content {
    gap: 40px;
  }
}
@media (max-width: 460px) {
  #market .market-content {
    gap: 24px;
  }
}
#market .market-title {
  width: 320px;
}
@media (max-width: 768px) {
  #market .market-title {
    width: 50%;
    max-width: 256px;
  }
}
@media (max-width: 460px) {
  #market .market-title {
    width: 70%;
    max-width: 200px;
  }
}
#market .market-detail {
  display: grid;
  gap: 32px;
}
@media (max-width: 460px) {
  #market .market-detail {
    gap: 12px;
  }
}
#market .market-detail-flex {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 460px) {
  #market .market-detail-flex {
    display: flex;
    gap: 4px;
  }
}
#market .market-num.num953 {
  width: 104px;
}
@media (max-width: 460px) {
  #market .market-num.num953 {
    width: 72px;
  }
}
#market .market-num.num953 img {
  width: 100%;
}
#market .market-num.num4000 {
  width: 144px;
}
@media (max-width: 460px) {
  #market .market-num.num4000 {
    width: 104px;
  }
}
#market .market-num.num4000 img {
  width: 100%;
}
#market .market-img {
  display: grid;
  gap: 8px;
  width: 90%;
  margin: -280px auto 0;
}
@media (max-width: 980px) {
  #market .market-img {
    margin: -240px auto 0;
  }
}
@media (max-width: 880px) {
  #market .market-img {
    margin: -160px auto 0;
  }
}
@media (max-width: 768px) {
  #market .market-img {
    margin: -120px auto 0;
  }
}
@media (max-width: 679px) {
  #market .market-img {
    margin: -40px auto 0;
  }
}
@media (max-width: 460px) {
  #market .market-img {
    width: 100%;
    margin: 12px auto 0;
  }
}
@media (max-width: 460px) {
  #market .market-img .refer p {
    font-size: 10px;
  }
}

/* ***************************************************************** 
*	Time Line
* ***************************************************************** */
#timeline .timeline-container {
  display: flex;
  padding: 0 2%;
  padding-bottom: 40px;
  border-bottom: solid 1px #fff;
}
@media (max-width: 768px) {
  #timeline .timeline-container {
    flex-direction: column;
    padding-bottom: 24px;
    border-bottom: none;
    margin-left: 4%;
    padding-left: 4%;
    gap: 32px;
    border-left: solid 1px #fff;
  }
}
#timeline .timeline-container .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item {
    gap: 16px;
  }
}
@media (max-width: 460px) {
  #timeline .timeline-container .timeline-item {
    gap: 12px;
  }
}
#timeline .timeline-container .timeline-item.has-video {
  flex: 1;
}
#timeline .timeline-container .timeline-item.has-text {
  padding: 0 16px;
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item.has-text {
    padding: 0;
  }
}
#timeline .timeline-container .timeline-item.no-video {
  flex: 1;
  align-self: flex-end;
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item.no-video {
    align-self: center;
  }
}
#timeline .timeline-container .timeline-item .timeline-vertical-text {
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media (max-width: 980px) {
  #timeline .timeline-container .timeline-item .timeline-vertical-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item .timeline-vertical-text {
    writing-mode: unset;
    text-orientation: upright;
    text-align: center;
  }
}
#timeline .timeline-container .timeline-item .timeline-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 = 9/16 = 0.5625 */
  overflow: hidden;
}
#timeline .timeline-container .timeline-item .timeline-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 全体を埋める */
}
#timeline .timeline-container .timeline-item .timeline-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 16px;
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item .timeline-content {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    flex-direction: row;
    justify-content: center;
  }
}
#timeline .timeline-container .timeline-item .timeline-content .timeline-date {
  font-size: 22px;
  width: 100%;
}
@media (max-width: 980px) {
  #timeline .timeline-container .timeline-item .timeline-content .timeline-date {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item .timeline-content .timeline-date {
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 460px) {
  #timeline .timeline-container .timeline-item .timeline-content .timeline-date {
    font-size: 14px;
  }
}
#timeline .timeline-container .timeline-item .timeline-content .timeline-text {
  white-space: nowrap;
  font-size: 16px;
}
@media (max-width: 980px) {
  #timeline .timeline-container .timeline-item .timeline-content .timeline-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #timeline .timeline-container .timeline-item .timeline-content .timeline-text {
    font-size: 12px;
  }
}
#timeline .timeline-note {
  margin-top: 16px;
  margin-right: 2%;
  color: #fff;
}

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

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

/* ***************************************************************** 
*	CTA
* ***************************************************************** */
#cta {
  background-color: #ffcdc8;
  padding: 80px 0;
  /* ***************************************************************** 
  *	Last CTA
  * ***************************************************************** */
}
@media (max-width: 768px) {
  #cta {
    padding: 64px 3%;
  }
}
@media (max-width: 460px) {
  #cta {
    padding: 40px 3%;
  }
}
#cta .cta-container {
  position: relative;
  border: 4px solid #000;
  border-radius: 1000px;
  padding: 32px 56px;
  background-color: #ffcdc8;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 460px) {
  #cta .cta-container {
    border-radius: 32px;
    padding: 24px 32px;
  }
}
#cta .cta-container .cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 460px) {
  #cta .cta-container .cta__inner {
    gap: 16px;
  }
}
@media (max-width: 460px) {
  #cta .cta-container .cta-title h4 {
    font-size: 16px;
  }
}
#cta .cta-container .cta-text {
  text-align: center;
}
#cta.background-cta {
  background: url(../images/_new/aicrew-cta-bg.jpg);
  background-position: bottom;
  background-size: cover;
}
#cta.background-cta .cta-title {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
#cta.background-cta .cta-title h4 {
  line-height: 1.6;
}

/* ***************************************************************** 
*	Attention
* ***************************************************************** */
#attention {
  margin: 0 auto;
}
#attention .attention-title {
  width: 90%;
  margin: 0 auto;
}
#attention .attention-title .text {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -16%;
  margin-left: auto;
}
@media (max-width: 460px) {
  #attention .attention-title .text {
    margin: -32px auto 0;
  }
}
@media (max-width: 460px) {
  #attention .attention-title {
    width: 100%;
  }
}
#attention .attention-img {
  margin: 80px auto;
}
@media (max-width: 768px) {
  #attention .attention-img {
    margin: 64px auto;
  }
}
@media (max-width: 460px) {
  #attention .attention-img {
    margin: 40px auto;
  }
}
#attention .attention-point ul {
  display: flex;
}
@media (max-width: 460px) {
  #attention .attention-point ul {
    flex-direction: column;
    gap: 24px;
  }
}
#attention .attention-point ul .attention-point-item {
  width: 33.3333333333%;
  border-right: solid 2px #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 0 8px;
}
@media (max-width: 768px) {
  #attention .attention-point ul .attention-point-item {
    gap: 16px;
  }
}
@media (max-width: 460px) {
  #attention .attention-point ul .attention-point-item {
    width: 100%;
    border-right: none;
    border-bottom: solid 2px #000;
    padding-bottom: 24px;
  }
}
#attention .attention-point ul .attention-point-item:last-child {
  border-right: none;
}
#attention .attention-point ul .attention-point-item .num {
  width: 40px;
}
@media (max-width: 768px) {
  #attention .attention-point ul .attention-point-item .num {
    width: 32px;
  }
}
#attention .attention-point ul .attention-point-item .title {
  line-height: 1.5;
}
@media (max-width: 768px) {
  #attention .attention-point ul .attention-point-item .title {
    font-size: 16px;
  }
}
#attention .attention-point ul .attention-point-item .text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

/* ***************************************************************** 
*	SNS WebCM "ちょっとしたSNS用動画から本格的なWebCMまで"
* ***************************************************************** */
#sns-webcm .container {
  display: grid;
  gap: 32px;
}
#sns-webcm .sns-webcm-title {
  color: #fff;
  text-align: center;
}
#sns-webcm .sns-webcm-content {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 768px) {
  #sns-webcm .sns-webcm-content {
    width: 100%;
  }
}
@media (max-width: 460px) {
  #sns-webcm .sns-webcm-content {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#sns-webcm .sns-webcm-item {
  position: relative;
  max-width: 440px;
}
#sns-webcm .sns-webcm-item .sns-webcm-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
  border-radius: 40px;
  background-color: #fff;
  z-index: 10;
}
@media (max-width: 768px) {
  #sns-webcm .sns-webcm-item .sns-webcm-item__inner {
    gap: 16px;
    padding: 32px 20px;
  }
}
@media (max-width: 460px) {
  #sns-webcm .sns-webcm-item .sns-webcm-item__inner {
    padding: 24px 32px;
  }
}
#sns-webcm .sns-webcm-item::before {
  content: "";
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 101%;
  height: 104%;
  border-radius: 40px;
  background: linear-gradient(90deg, #fadbda, #e19797);
  z-index: -1;
}
#sns-webcm .sns-webcm-item .arrow {
  width: 32px;
}
@media (max-width: 460px) {
  #sns-webcm .sns-webcm-item .arrow {
    width: 24px;
  }
}
#sns-webcm .sns-webcm-item .text-bottom {
  display: grid;
  gap: 12px;
  margin-top: -8px;
}
#sns-webcm .sns-webcm-item .text-bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ef858c, #e1374a);
}
#sns-webcm .sns-webcm-img {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 460px) {
  #sns-webcm .sns-webcm-img {
    width: 100%;
  }
}

/* ***************************************************************** 
*	Into AI
* ***************************************************************** */
#intoAI {
  margin-bottom: -208px;
}
@media (max-width: 460px) {
  #intoAI {
    margin-bottom: -120px;
  }
}
#intoAI .intoAI-title {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 460px) {
  #intoAI .intoAI-title {
    width: 100%;
  }
}
#intoAI .intoAI-content {
  margin-top: -104px;
}
@media (max-width: 768px) {
  #intoAI .intoAI-content {
    margin-top: -40px;
  }
}
@media (max-width: 460px) {
  #intoAI .intoAI-content {
    margin-top: -16px;
  }
}
#intoAI ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 460px) {
  #intoAI ul {
    flex-direction: column;
    gap: 32px;
  }
}
#intoAI .intoAI-item {
  position: relative;
}
#intoAI .intoAI-item .title-container .hash {
  font-weight: 700;
}
#intoAI .intoAI-item .text-container .text li {
  margin-bottom: 8px;
}
#intoAI .intoAI-item .text-container .text li p {
  line-height: 1.5;
}
#intoAI .intoAI-item.half-width {
  width: calc(50% - 20px);
}
@media (max-width: 460px) {
  #intoAI .intoAI-item.half-width {
    width: 100%;
  }
}
#intoAI .intoAI-item.full-width {
  width: 100%;
}
#intoAI .intoAI-item.full-width .intoAI-item__inner .text-container {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  #intoAI .intoAI-item.full-width .intoAI-item__inner .text-container {
    flex-direction: column;
    gap: 4px;
  }
}
#intoAI .intoAI-item .intoAI-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 56px 40px;
  border-radius: 40px;
  border: 4px solid #000;
  background-color: #fff;
  height: 100%;
}
@media (max-width: 768px) {
  #intoAI .intoAI-item .intoAI-item__inner {
    padding: 28px 16px;
    gap: 16px;
  }
}
#intoAI .intoAI-item .intoAI-item__inner .title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
}
@media (max-width: 460px) {
  #intoAI .intoAI-item .intoAI-item__inner .title-container {
    padding-bottom: 16px;
  }
}
#intoAI .intoAI-item .intoAI-item__inner .text ul {
  display: block;
  list-style: disc;
  margin-left: 24px;
}
#intoAI .intoAI-item::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 101%;
  height: 101%;
  border-radius: 40px;
  background: #000;
  z-index: -1;
}

/* ***************************************************************** 
*	Work
* ***************************************************************** */
#works {
  margin-bottom: 0;
}
#works .sec-title-jp {
  height: 96px;
}
@media (max-width: 768px) {
  #works .sec-title-jp {
    height: 80px;
  }
}
@media (max-width: 460px) {
  #works .sec-title-jp {
    height: auto;
    width: 90%;
  }
}
#works .title-arrow {
  width: 800px;
  margin: 24px auto 0;
}
@media (max-width: 768px) {
  #works .title-arrow {
    width: 80%;
  }
}
#works .works-container {
  margin: 64px auto 104px;
}
@media (max-width: 768px) {
  #works .works-container {
    margin: 48px auto 64px;
  }
}
@media (max-width: 460px) {
  #works .works-container {
    margin: 40px auto 64px;
  }
}
#works .works-main {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  #works .works-main {
    margin-bottom: 48px;
  }
}
@media (max-width: 460px) {
  #works .works-main {
    margin-bottom: 40px;
  }
}
#works .works-item {
  color: #fff;
  align-items: flex-end;
}
#works .works-item .works-video {
  display: grid;
  gap: 8px;
}
#works .works-item .works-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
#works .works-item .works-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#works .works-item .works-text h4 {
  line-height: 1.4;
}
@media (max-width: 460px) {
  #works .works-item .works-text h4 {
    font-size: 16px;
  }
}
#works .works-item .works-text .works-desc .p-03 {
  line-height: 2;
}
#works .works-sub .works-item {
  gap: 24px;
}
@media (max-width: 460px) {
  #works .works-sub .works-item {
    gap: 8px;
  }
}
#works .works-sub .works-item .works-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 85/151;
}
#works .works-sub .layout-flex {
  flex-direction: row;
  align-items: flex-start;
}
#works .works-sub .layout-flex .layout-flex-left .layout-flex {
  align-items: flex-end;
}
@media (max-width: 460px) {
  #works .works-sub .layout-flex .layout-flex-left .layout-flex {
    flex-direction: column;
  }
}
#works .works-sub .layout-flex .layout-flex-right .layout-flex {
  align-items: flex-end;
}
@media (max-width: 460px) {
  #works .works-sub .layout-flex .layout-flex-right .layout-flex {
    flex-direction: column;
  }
}
#works .works-message {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
#works .works-message .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(90deg, #fadbda, #e19797);
  margin-top: -4px;
}
@media (max-width: 460px) {
  #works .works-message .title::after {
    margin-top: 8px;
  }
}
#works .works-message .title h2 {
  text-align: center;
}
#works .works-message .text {
  text-align: center;
}

/* ***************************************************************** 
*	Strong Point
* ***************************************************************** */
#strong-point {
  margin-bottom: 320px;
}
@media (max-width: 768px) {
  #strong-point {
    margin-bottom: 240px;
  }
}
@media (max-width: 460px) {
  #strong-point {
    margin-bottom: 80px;
  }
}
#strong-point .container {
  display: grid;
  gap: 40px;
}
#strong-point .conversation {
  width: 100%;
  max-width: 880px;
  margin: -136px auto 64px;
}
@media (max-width: 768px) {
  #strong-point .conversation {
    width: 98%;
    margin: -104px auto 64px;
  }
}
@media (max-width: 460px) {
  #strong-point .conversation {
    max-width: 296px;
    margin: -80px auto 40px;
  }
}
#strong-point .strong-point-subtitle {
  text-align: center;
}
#strong-point .strong-point-subtitle h3 {
  line-height: 1.6;
}
#strong-point .strong-point-container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
#strong-point .strong-point-container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  #strong-point .strong-point-container ul {
    gap: 28px;
  }
}
@media (max-width: 460px) {
  #strong-point .strong-point-container ul {
    flex-direction: column;
    gap: 24px;
  }
}
#strong-point .strong-point-container ul .strong-point-item {
  width: calc(50% - 20px);
  padding: 24px 8px 12px;
  background: linear-gradient(90deg, #fadbda, #e19797);
  border-radius: 16px;
}
@media (max-width: 768px) {
  #strong-point .strong-point-container ul .strong-point-item {
    width: calc(50% - 14px);
  }
}
@media (max-width: 460px) {
  #strong-point .strong-point-container ul .strong-point-item {
    width: 100%;
    padding: 16px 8px 12px;
  }
}
#strong-point .strong-point-container ul .strong-point-item .strong-point-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  height: 100%;
}
@media (max-width: 460px) {
  #strong-point .strong-point-container ul .strong-point-item .strong-point-item__inner {
    gap: 16px;
  }
}
#strong-point .strong-point-container ul .strong-point-item .point {
  width: 104px;
}
@media (max-width: 768px) {
  #strong-point .strong-point-container ul .strong-point-item .point {
    width: 96px;
  }
}
@media (max-width: 460px) {
  #strong-point .strong-point-container ul .strong-point-item .point {
    width: 80px;
  }
}
#strong-point .strong-point-container ul .strong-point-item .strong-point-content {
  width: 100%;
  background-color: #fff;
  padding: 56px 32px;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  flex-grow: 1;
}
@media (max-width: 768px) {
  #strong-point .strong-point-container ul .strong-point-item .strong-point-content {
    padding: 24px 16px;
    gap: 16px;
  }
}
@media (max-width: 460px) {
  #strong-point .strong-point-container ul .strong-point-item .strong-point-content {
    padding: 24px 20px;
    gap: 16px;
  }
}
#strong-point .strong-point-container ul .strong-point-item .strong-point-content .title h4 {
  line-height: 1.6;
}
@media (max-width: 768px) {
  #strong-point .strong-point-container ul .strong-point-item .strong-point-content .title h4 {
    font-size: 18px;
  }
}
#strong-point .strong-point-container ul .strong-point-item .strong-point-content .line {
  width: 80%;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, #ef858c, #e1374a);
  border-radius: 100px;
}
@media (max-width: 460px) {
  #strong-point .strong-point-container ul .strong-point-item .strong-point-content .text p {
    font-size: 13px;
  }
}

/* ***************************************************************** 
*	Mentor
* ***************************************************************** */
#instructor .container {
  display: grid;
  gap: 64px;
}
@media (max-width: 768px) {
  #instructor .container {
    gap: 56px;
  }
}
@media (max-width: 460px) {
  #instructor .container {
    gap: 40px;
  }
}
#instructor .instructor-container {
  margin-top: -480px;
}
@media (max-width: 768px) {
  #instructor .instructor-container {
    margin-top: -320px;
  }
}
@media (max-width: 460px) {
  #instructor .instructor-container {
    margin-top: -144px;
  }
}
#instructor .instructor-container .instructor-obj {
  width: 80%;
  margin: 0 auto -1%;
}
#instructor .instructor-content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 1000px;
  gap: 40px;
}
#instructor .instructor-content::before {
  content: "";
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 102%;
  height: 106%;
  border-radius: 1000px;
  background: linear-gradient(90deg, #bbc4e4, #491c86);
  z-index: -1;
}
@media (max-width: 880px) {
  #instructor .instructor-content {
    flex-direction: column;
    padding: 80px;
    border-radius: 32px;
  }
  #instructor .instructor-content::before {
    border-radius: 32px;
  }
}
@media (max-width: 768px) {
  #instructor .instructor-content {
    padding: 32px 56px;
    gap: 32px;
  }
}
@media (max-width: 460px) {
  #instructor .instructor-content {
    padding: 32px 24px;
    gap: 24px;
  }
  #instructor .instructor-content::before {
    top: -1%;
    width: 104%;
    height: 103%;
    border-radius: 32px;
  }
}
#instructor .instructor-content .instructor-img {
  width: 420px;
  height: 420px;
  border-radius: 1000px;
  overflow: hidden;
}
@media (max-width: 880px) {
  #instructor .instructor-content .instructor-img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #instructor .instructor-content .instructor-img {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 460px) {
  #instructor .instructor-content .instructor-img {
    width: 220px;
    height: 220px;
  }
}
#instructor .instructor-content .instructor-text {
  width: 60%;
  padding-right: 104px;
  color: #000;
}
@media (max-width: 880px) {
  #instructor .instructor-content .instructor-text {
    width: 100%;
    padding-right: 0;
  }
}
#instructor .instructor-content .instructor-text .name {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}
#instructor .instructor-content .instructor-text .name .line {
  height: 2px;
  background-color: #000;
  flex: 1;
}
#instructor .instructor-content .instructor-text .sub-title {
  margin-bottom: 24px;
}
#instructor .instructor-content .instructor-text .sub-title h4 {
  line-height: 1.4;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  #instructor .instructor-content .instructor-text .sub-title {
    margin-bottom: 16px;
  }
}
#instructor .instructor-content .instructor-text .desc p {
  line-height: 2;
}
#instructor .instructor-work .video {
  padding: 8px;
  border: 1px solid white;
  border-radius: 8px;
}
#instructor .instructor-work .video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
}
#instructor .instructor-point ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 460px) {
  #instructor .instructor-point ul {
    gap: 16px;
  }
}
#instructor .instructor-point ul .instructor-point-content {
  width: 100%;
}
#instructor .instructor-point ul .instructor-point-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: linear-gradient(90deg, #fadbda, #e19797);
  margin-top: 24px;
}
@media (max-width: 460px) {
  #instructor .instructor-point ul .instructor-point-content::after {
    margin-top: 16px;
  }
}
#instructor .instructor-point ul .instructor-point-item {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 8px;
}
#instructor .instructor-point ul .instructor-point-item .instructor-point-item-text {
  width: calc(100% - 40px);
}
@media (max-width: 460px) {
  #instructor .instructor-point ul .instructor-point-item .instructor-point-item-text {
    font-size: 14px;
    line-height: 1.5;
    width: calc(100% - 32px);
  }
}
#instructor .instructor-point ul .instructor-point-item .check {
  width: 32px;
}
#instructor .instructor-point ul .instructor-point-item .check img {
  width: 100%;
  height: 100%;
}
@media (max-width: 460px) {
  #instructor .instructor-point ul .instructor-point-item .check {
    width: 24px;
  }
}

/* ***************************************************************** 
*	Step
* ***************************************************************** */
#step .container {
  display: grid;
  gap: 56px;
}
@media (max-width: 460px) {
  #step .container {
    gap: 32px;
  }
}
#step .step-container {
  display: grid;
  gap: 40px;
}
@media (max-width: 460px) {
  #step .step-container {
    gap: 24px;
  }
}
#step .step-container .step-item {
  width: 100%;
}
#step .step-container .step-arrow {
  width: 100%;
}
#step .step-container .step-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 460px) {
  #step .step-container .step-desc {
    gap: 8px;
  }
}
#step .step-container .step-desc .step-subtitle::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ef858c, #e1374a);
  margin-top: 8px;
}

/* ***************************************************************** 
*	Price
* ***************************************************************** */
#price .container {
  display: grid;
  gap: 56px;
}
@media (max-width: 460px) {
  #price .container {
    gap: 32px;
  }
}
#price .price-container {
  width: 80%;
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
@media (max-width: 460px) {
  #price .price-container {
    width: 100%;
    gap: 24px;
  }
}
#price .price-container .price-text-inportant {
  padding: 16px;
  border: 2px solid #fff;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
#price .price-container .price-text-inportant p {
  line-height: 2.2;
}
#price .price-container .price-text {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#price .price-container .price-text .emphasize {
  padding-bottom: 8px;
  border-bottom: 2px dashed #fff;
  margin-bottom: 12px;
}
#price .price-container .price-text p {
  line-height: 1.6;
}
#price .price-container .price-text a {
  text-decoration: underline;
}

/* ***************************************************************** 
*	Support
* ***************************************************************** */
#support {
  margin-top: 64px;
}
@media (max-width: 768px) {
  #support {
    margin-top: 56px;
  }
}
@media (max-width: 460px) {
  #support {
    margin-top: 40px;
  }
}
#support .support-title {
  width: 90%;
  margin: 0 auto;
}
#support .support-title .text {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -18%;
  margin-left: auto;
}
@media (max-width: 768px) {
  #support .support-title .text {
    margin: -48px auto 0;
  }
}
@media (max-width: 460px) {
  #support .support-title .text {
    width: 90%;
    margin: -32px auto 0;
  }
}
@media (max-width: 460px) {
  #support .support-title {
    width: 100%;
  }
}
#support .support-list {
  width: 90%;
  margin: 104px auto 64px;
}
@media (max-width: 768px) {
  #support .support-list {
    width: 100%;
    margin: 64px auto 48px;
  }
}
@media (max-width: 768px) {
  #support .support-list {
    margin: 32px auto 32px;
  }
}
#support .support-list ul {
  display: grid;
  gap: 16px;
}
#support .support-list ul .support-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px solid #ea616f;
}
#support .support-list ul .support-item .check {
  width: 40px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #support .support-list ul .support-item .check {
    width: 28px;
  }
}
@media (max-width: 460px) {
  #support .support-list ul .support-item .check {
    width: 20px;
  }
}
#support .support-list ul .support-item .support-text p {
  font-size: 22px;
}
@media (max-width: 768px) {
  #support .support-list ul .support-item .support-text p {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  #support .support-list ul .support-item .support-text p {
    font-size: 14px;
  }
}
#support .support-plans {
  width: 90%;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
@media (max-width: 768px) {
  #support .support-plans {
    gap: 32px;
  }
}
@media (max-width: 460px) {
  #support .support-plans {
    gap: 24px;
  }
}
#support .support-plans .support-plan {
  width: 100%;
}

/* ***************************************************************** 
*	Flow
* ***************************************************************** */
#flow .container {
  display: grid;
  gap: 40px;
}
#flow .flow-container {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

/* ***************************************************************** 
*	Footer
* ***************************************************************** */
#footer .footer-container {
  background-color: #fff;
  padding: 64px 0;
}
@media (max-width: 768px) {
  #footer .footer-container {
    padding: 48px 0;
  }
}
@media (max-width: 460px) {
  #footer .footer-container {
    padding: 32px 0;
  }
}
#footer .footer-container .footer-logo {
  width: 120px;
  margin: 24px auto 0;
}
@media (max-width: 768px) {
  #footer .footer-container .footer-logo {
    width: 104px;
  }
}
@media (max-width: 460px) {
  #footer .footer-container .footer-logo {
    width: 80px;
  }
}
#footer .footer-container .contact-mail {
  margin-top: 32px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .footer-container .contact-mail a {
  text-decoration: underline;
}
@media (max-width: 460px) {
  #footer .footer-container .contact-mail {
    margin-top: 24px;
  }
}
#footer .footer-container .sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 460px) {
  #footer .footer-container .sns-icon {
    gap: 12px;
  }
}
#footer .footer-container .sns-icon .sns-item {
  width: 32px;
}
@media (max-width: 768px) {
  #footer .footer-container .sns-icon .sns-item {
    width: 28px;
  }
}
@media (max-width: 460px) {
  #footer .footer-container .sns-icon .sns-item {
    width: 24px;
  }
}
#footer .copyright-belt {
  background: #000;
  text-align: center;
  padding: 32px 0;
}

/* ***************************************************************** 
*	20251116 追加分 Voice
* ***************************************************************** */
#voice .container {
  display: grid;
  gap: 64px;
}
@media (max-width: 768px) {
  #voice .container {
    gap: 56px;
  }
}
@media (max-width: 460px) {
  #voice .container {
    gap: 40px;
  }
}
#voice .voice-desc {
  text-align: center;
}
#voice .voice-container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
#voice .voice-container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  #voice .voice-container ul {
    gap: 28px;
  }
}
@media (max-width: 460px) {
  #voice .voice-container ul {
    flex-direction: column;
    gap: 24px;
  }
}
#voice .voice-container ul .voice-item {
  width: calc(50% - 20px);
  padding: 24px 8px 12px;
  background: linear-gradient(90deg, #d9e021, #39b54a);
  border-radius: 16px;
}
@media (max-width: 768px) {
  #voice .voice-container ul .voice-item {
    width: calc(50% - 14px);
  }
}
@media (max-width: 460px) {
  #voice .voice-container ul .voice-item {
    width: 100%;
    padding: 16px 8px 12px;
  }
}
#voice .voice-container ul .voice-item .voice-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  height: 100%;
}
@media (max-width: 460px) {
  #voice .voice-container ul .voice-item .voice-item__inner {
    gap: 16px;
  }
}
#voice .voice-container ul .voice-item .voice {
  width: 104px;
}
@media (max-width: 768px) {
  #voice .voice-container ul .voice-item .voice {
    width: 96px;
  }
}
@media (max-width: 460px) {
  #voice .voice-container ul .voice-item .voice {
    width: 80px;
  }
}
#voice .voice-container ul .voice-item .voice-content {
  width: 100%;
  background-color: #fff;
  padding: 56px 32px;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  #voice .voice-container ul .voice-item .voice-content {
    padding: 24px 16px;
  }
}
@media (max-width: 460px) {
  #voice .voice-container ul .voice-item .voice-content {
    padding: 24px 20px;
    gap: 8px;
  }
}
#voice .voice-container ul .voice-item .voice-content .text {
  text-align: left;
}
@media (max-width: 460px) {
  #voice .voice-container ul .voice-item .voice-content .text p {
    font-size: 13px;
  }
}
#voice .voice-container ul .voice-item .voice-content .name {
  text-align: right;
}
#voice .voice-container ul .voice-item .voice-content .name p {
  font-size: 16px;
}
@media (max-width: 768px) {
  #voice .voice-container ul .voice-item .voice-content .name p {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  #voice .voice-container ul .voice-item .voice-content .name p {
    font-size: 12px;
  }
}

/* ***************************************************************** 
*	Benefits_old
* ***************************************************************** *//*# sourceMappingURL=style_new.css.map */