@charset "utf-8";

/* --------------------------------------------------
initial settings
-------------------------------------------------- */
:root {
  --color-black: #303030;
  --color-yellow: #ffe600;
  --color-purple: #5e4fe7;

  --color-lightblue: #7bc6f1;
  --color-blue: #009bf2;
  --color-darkblue: #12284d;

  --color-lightblue-070: rgba(123, 198, 241, 0.7);
  --color-blue-070: rgba(0, 155, 242, 0.7);
  --color-darkblue-070: rgba(18, 40, 77,0.7);

  --color-blue-highlight: #e9f6ff;
  --color-blue-midlight: #d3efff;
  --color-blue-lowlight: #b5e4ff;

  --color-gray-normal: #DDDDDD;
  --color-gray-highlight: #F6F6F6;
  --color-gray-lowlight: #EDEDED;
  --color-gray-dark: #7b7b7b;

  --color-gray-005: rgba(40, 40, 40, 0.05);
  --color-gray-010: rgba(40, 40, 40, 0.1);
  --color-gray-020: rgba(40, 40, 40, 0.2);
  --color-gray-030: rgba(40, 40, 40, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: var(--color-black);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

ol, ul {
  list-style: none;
}

ol.need-list-style, ul.need-list-style {
  list-style-type: disc;
  padding-inline-start: 16px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s;
}

a:hover {
  color: var(--color-blue);
}

img {
  display: block;
  width: 100%;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}

input, textarea {
  font-size: 16px;
  font-family: inherit;
}

small {
  font-size: 12px;
}

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

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

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

@media screen and (min-width: 768px) {
  .md_text-left {
    text-align: left;
  }

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

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

@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 96px;
  }

  p {
    font-size: 18px;
  }

  small {
    font-size: 14px;
  }

  .lg_text-left {
    text-align: left;
  }

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

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


/* --------------------------------------------------
display hidden or block
-------------------------------------------------- */
.hidden {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .md_hidden {
    display: none !important;
  }

  .md_block {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .lg_hidden {
    display: none !important;
  }

  .lg_block {
    display: block !important;
  }
}

@media screen and (min-width: 1280px) {
  .xl_hidden {
    display: none !important;
  }

  .xl_block {
    display: block !important;
  }
}


/* --------------------------------------------------
button setting
-------------------------------------------------- */
.btn {
  display: block;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: bold;
  text-align: center;
}

.btn-thick {
  padding: 16px 24px;
}

.btn-thin {
  padding: 8px 24px;
}

.btn:hover {
  opacity: 0.9;
}

.btn.btn-white {
  background-color: white;
  color: var(--color-black);
}

.btn.btn-black {
  background-color: var(--color-black);
  color: white;
}

.btn.btn-blue {
  background-color: var(--color-blue);
  color: white;
}

.btn.btn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}


/* --------------------------------------------------
common
-------------------------------------------------- */
.marker-blue {
  display: inline;
  background: linear-gradient(transparent 60%, var(--color-blue-lowlight) 60%);
}

.marker-yellow {
  display: inline;
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
}

.marker-all-yellow {
  display: inline;
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 4px;
  margin: 0 2px;
}

.bg-colored {
  background-image: linear-gradient(
    285deg, 
    var(--color-lightblue) 20%,
    var(--color-blue) 80%
  );
  color: white;
}

.md_container {
  max-width: calc(768px - 48px);
  margin: 0 auto;
}

.lg_container {
  max-width: calc(1024px - 48px);
  margin: 0 auto;
}

.xl_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding-y {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading-title-text {
  text-align: center;
  font-size: 20px;
}

.section-heading-title-deco {
  border: 2px solid var(--color-blue);
  width: 80px;
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 12px;
}

.bg-colored .section-heading-title-deco {
  border: 2px solid var(--color-yellow);
}

.section-heading-desc {
  margin-top: 16px;
}

.box-padding-t {
  padding-top: 64px;
}

.box-heading-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {
  .section-padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading-title-text {
    font-size: 36px;
  }

  .section-heading-title-deco {
    margin-top: 18px;
  }
  
  .section-heading-desc {
    margin-top: 24px;
  }

  .box-padding-t {
    padding-top: 104px;
  }

  .box-heading-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}


/* --------------------------------------------------
header
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.header-outer {
  position: relative;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: height 1s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s, box-shadow 0.5s;
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  position: relative;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo a img {
  width: auto;
  height: 32px;
}

.header-logo-normal {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.header-logo-white {
  display: block;
  opacity: 1;
  transition: opacity 0.5s;
}

.header-btn a {
  padding: 6px 16px;
  background-color: var(--color-blue);
  color: white;
  font-size: 14px;
  display: none;
  opacity: 0;
}

.header-btn a:hover {
  opacity: 1.0;
  background-color: #16a5f8;
}

@media screen and (min-width: 1024px) {
  .header-inner {
    height: 96px;
  }

  .header-btn a {
    padding: 12px 24px;
    font-size: 16px;
  }
}


/* --------------------------------------------------
header - is-scroll
-------------------------------------------------- */
#header.is-scroll .header-bg {
  background-color: white;
  box-shadow: 0 0 4px var(--color-gray-030);
}

#header.is-scroll .header-logo-normal {
  display: block;
  opacity: 1;
}

#header.is-scroll .header-logo-white {
  display: none;
  opacity: 0;
}

#header.is-scroll .header-btn a {
  display: block;
  opacity: 1;
}


/* --------------------------------------------------
hero
-------------------------------------------------- */
.hero {
  position: relative;
  height: 700px;
}

.hero-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("../images/hero/hero_sp.jpg");
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    285deg, 
    var(--color-lightblue-070) 0%,
    var(--color-blue-070) 50%,
    var(--color-darkblue-070) 100%
  );
}

.hero-title-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-title {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-title-desc {
  color: white;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  line-height: 2;
}

.hero-title-deco {
  position: relative;
  display: inline-block;
  color: var(--color-blue);
  margin-right: 12px;
  line-height: 2;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.hero-title-deco::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -8px;
  right: -8px;
  bottom: 4px;
  background: white;
  transform: skewX(-20deg);
  z-index: -1;
}

.hero-title-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 16px 0 20px;
}

.hero-title-name img {
  width: 280px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.hero-title-name p {
  font-weight: bold;
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.hero-title-btn {
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .hero-img {
    background-image: url("../images/hero/hero_pc.jpg");
  }

  .hero-img::before {
    background-image: linear-gradient(
      285deg, 
      rgba(255, 255, 255, 0.1) 0% 40%,
      var(--color-lightblue) 53%,
      var(--color-blue) 75%,
      var(--color-darkblue) 110%
    );
  }

  .hero-title-desc {
    text-align: left;
    font-size: 24px;
  }

  .hero-title-name {
    align-items: flex-start;
    gap: 16px;
    margin: 24px 0;
  }
  
  .hero-title-name img {
    width: 400px;
  }

  .hero-title-name p {
    font-size: 28px;
  }

  .hero-title-btn {
    margin-left: 0;
  }
  
}

@media screen and (min-width: 1280px) {
  .hero-title-desc {
    font-size: 28px;
  }

  .hero-title-name img {
    width: 480px;
  }

  .hero-title-name p {
    font-size: 32px;
  }
}


/* --------------------------------------------------
cta
-------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("../images/cta/cta-image.jpg");
}

.cta-img:nth-of-type(2) {
  filter: blur(2px);
}

.cta-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    285deg, 
    var(--color-lightblue-070) 0%,
    var(--color-blue-070) 50%,
    var(--color-darkblue-070) 100%
  );
}

.cta-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.cta-text h2 {
  color: white;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.cta-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.cta-btns li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cta-box {
    gap: 32px;
  }

  .cta-btns {
    flex-direction: row;
    gap: 24px;
  }

  .cta-btns li {
    max-width: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .cta-text h2 {
    font-size: 24px;
  }
}

/* --------------------------------------------------
question
-------------------------------------------------- */
.question-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.question-list li img {
  width: 50%;
  margin: 0 auto 16px;
}

.question-list li h3 {
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .question-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .question-list {
    gap: 48px;
  }

  .question-list li img {
    width: 70%;
    margin: 0 auto 24px;
  }
  
  .question-list li h3 {
    font-size: 16px;
  }
}


/* --------------------------------------------------
merit
-------------------------------------------------- */
.merit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  color: var(--color-black);
}

.merit-list li {
  background-color: white;
  padding: 48px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--color-gray-005);
}

.merit-list li img {
  width: 30%;
  margin: 0 auto;
}

.merit-list li h3 {
  font-size: 18px;
  text-align: center;
  margin: 16px 0;
}

.merit-list li p {
  font-size: 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .merit-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .merit-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .merit-list li h3 {
    font-size: 18px;
    margin: 24px 0;
  }
}


/* --------------------------------------------------
service
-------------------------------------------------- */
.service-about {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-about img {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-features-list li {
  display: flex;
  flex-direction: column;
}

.service-features-list li h4 {
  font-size: 18px;
  margin: 20px 0 12px;
}

.service-features-list li img {
  box-shadow: 0 0 8px var(--color-gray-020);
}

@media screen and (min-width: 768px) {
  .service-features-list li {
    align-items: center;
    gap: 24px;
  }

  .service-features-list li:nth-of-type(1), .service-features-list li:nth-of-type(3) {
    flex-direction: row-reverse;
  }

  .service-features-list li:nth-of-type(2) {
    flex-direction: row;
  }

  .service-features-list li img, .service-features-list li div {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .service-about {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
  }

  .service-about p {
    width: calc(60% - 12px);
  }

  .service-about img {
    width: calc(40% - 12px);
  }

  .service-features-list li {
    gap: 48px;
  }

  .service-features-list li img, .service-features-list li div {
    width: calc((100% - 48px) / 2);
  }

  .service-features-list li h4 {
    font-size: 24px;
    margin: 0 0 16px;
  }
}


/* --------------------------------------------------
function
-------------------------------------------------- */
.function-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.function-list li h3 {
  background-color: var(--color-yellow);
  color: var(--color-black);
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 18px;
}

.function-list li p {
  margin: 12px 0;
  font-size: 16px;
}

.function-list li img {
  width: 50%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .function-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px 24px;
  }

  .function-list li {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .function-list {
    justify-content: center;
    gap: 64px 48px;
  }

  .function-list li {
    width: calc((100% - 96px) / 3);
  }

  .function-list li p {
    margin: 20px 0;
  }
}


/* --------------------------------------------------
situation
-------------------------------------------------- */
.situation-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.situation-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.situation-list > li h3 {
  font-size: 18px;
  text-align: center;
  margin: 20px auto 16px;
}

.situation-list > li > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.situation-list > li > ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.situation-list >li > ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/situation/check-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .situation-list {
    grid-template-columns: 1fr 1fr;
    gap: 48px 0;
  }
}

@media screen and (min-width: 1024px) {
  .situation-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
  }

  .situation-list > li h3 {
    font-size: 20px;
    margin: 24px auto 20px;
  }
}


/* --------------------------------------------------
plan
-------------------------------------------------- */
.plan-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.plan-list > li {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: white;
  padding: 48px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--color-gray-020);
  border: 4px solid var(--color-blue);
}

.plan-type {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.plan-title p {
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
}

.plan-title h3 {
  font-size: 24px;
}

.plan-desc {
  font-size: 14px;
  text-align: center;
}

.plan-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-detail li {
  font-size: 14px;
}

.plan-detail li i {
  width: 14px;
  text-align: center;
  margin-right: 12px;
}

.plan-list-note {
  margin-top: 16px;
}

.plan-flow-list-wrapper {
  position: relative;
}

.plan-flow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-flow-item {
  position: relative;
  background-image: linear-gradient(
    285deg, 
    var(--color-blue-midlight) 20%,
    var(--color-blue-lowlight) 80%
  );
  border-radius: 8px;
  padding: 80px 24px 48px;
  box-shadow: 0 4px 20px var(--color-gray-010);
  max-width: 400px;
  margin: 56px auto 0;
}

.plan-flow-step-number {
  font-family: "Rubik", sans-serif;
  position: absolute;
  top: calc(-48px);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--color-blue);
  color: white;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 0 4px var(--color-gray-020);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.plan-flow-step-number::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: white;
  border: 4px solid var(--color-blue);
  border-radius: 50%;
  z-index: -1;
}

.plan-flow-step, .plan-flow-number {
  line-height: 1;
}

.plan-flow-step {
  margin-top: 8px;
  font-size: 16px;
}

.plan-flow-number {
  font-size: 32px;
}

.plan-flow-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-flow-desc-img {
  font-size: 48px;
  text-align: center;
}

.plan-flow-desc-text h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.plan-flow-desc-text p {
  font-size: 16px;
}

.plan-flow-arrow {
  text-align: center;
  font-size: 32px;
}

.plan-flow-arrow .fa-arrow-right {
  display: none;
}

@media screen and (min-width: 768px) {
  .plan-list {
    grid-template-columns: 1fr 1fr;
  }

  .plan-list-note {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .plan-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .plan-list-note {
    margin-top: 24px;
  }

  .plan-flow-list {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .plan-flow-item {
    width: calc((100% - 24px) / 3);
  }

  .plan-flow-arrow {
    margin-top: 56px;
  }

  .plan-flow-arrow .fa-arrow-down {
    display: none;
  }

  .plan-flow-arrow .fa-arrow-right {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .plan-list {
    gap: 48px;
  }
}


/* --------------------------------------------------
creation
-------------------------------------------------- */
.creation-case {
  box-shadow: 0 4px 20px var(--color-gray-005);
}

.creation-case h3 {
  font-size: 18px;
  text-align: center;
  background-color: var(--color-black);
  padding: 16px 24px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.creation-case-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: var(--color-black);
  background-color: white;
  padding: 24px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.creation-case-program img {
  box-shadow: 0 0 8px var(--color-gray-030);
}

.creation-case-program h4 {
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
}

.creation-flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.creation-step-heading {
  display: flex;
}

.creation-step-number {
  line-height: 1;
  font-size: 32px;
  padding: 16px;
  font-family: "Rubik", sans-serif;
  font-style: italic;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.creation-flow-item:nth-of-type(odd) .creation-step-number {
  background-color: var(--color-black);
  color: var(--color-yellow);
}

.creation-flow-item:nth-of-type(even) .creation-step-number {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.creation-step-title {
  line-height: 1;
  background-color: white;
  color: var(--color-black);
  font-size: 18px;
  padding: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.creation-step-img {
  font-size: 24px;
}

.creation-step-desc {
  background-color: white;
  color: var(--color-black);
  font-size: 16px;
  border-radius: 8px;
  padding: 16px;
}

.creation-step-connect {
  display: flex;
}

.creation-step-connect span {
  display: block;
  background-color: white;
  width: 4px;
  height: 20px;
  margin: -2px auto;
}

.creation-cta-text {
  margin-top: 48px;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .creation-case-program {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .creation-flow-list {
    gap: 32px 24px;
  }

  .creation-flow-item {
    width: calc((100% - 24px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .creation-step-desc {
    flex-grow: 1;
  }
}

@media screen and (min-width: 1024px) {
  .creation-case-program {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .creation-flow-item {
    width: calc((100% - 48px) / 3);
  }

  .creation-cta-text {
    margin-top: 64px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .creation-flow-item {
    width: calc((100% - 96px) / 5);
  }

  .creation-step-heading {
    flex-direction: column;
  }

  .creation-step-number {
    text-align: center;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
  }

  .creation-step-title {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    padding: 16px;
  }
}


/* --------------------------------------------------
faq
-------------------------------------------------- */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.faq-box {
  background-color: var(--color-blue-midlight);
  padding: 24px;
  border-radius: 8px;
}

.faq-box dt {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 4px;
}

@media screen and (min-width: 1024px) {
  .faq-box {
    padding: 32px;
  }

  .faq-box dt {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .faq-box dd {
    font-size: 18px;
  }
}


/* --------------------------------------------------
contact (HubSpot)
-------------------------------------------------- */
/* フォーム全体 */
.hs-form {
  width: 100%;
}

/* ラベル */
.hs-form .hs-form-field > label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
  font-size: 16px;
}

/* 入力フィールド */
.hs-form fieldset {
  width: 100%;
  max-width: calc(768px - 48px) !important;
  margin: 0 auto !important;
}

.hs-form fieldset +  fieldset {
  padding-top: 24px;
}

.hs-form .input {
  margin: 0 !important;
}

.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea,
.hs-form select {
  width: 100% !important;
  padding: 8px 12px;
  border: 2px solid var(--color-black);
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

.hs-form textarea {
  height: 240px;
}

.hs-form .form-columns-2 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hs-form .hs-kinds .input .hs-form-radio {
  margin-top: 8px;
}

.hs-form .hs-kinds .input .hs-form-radio label, .hs-form .hs-kinds .input .hs-form-radio input {
  cursor: pointer;
}

.hs-form .hs-kinds .input .hs-form-radio span {
  margin-left: 8px;
}

/* 同意 */
.hs-form .hs-agree {
  text-align: center;
  font-size: 16px;
}

.hs-form .hs-agree label, .hs-form .hs-agree input {
  cursor: pointer;
}

.hs-form .hs-agree span {
  margin-left: 8px;
}

.hs-form .hs-agree a {
  text-decoration: underline;
}

/* エラー */
.hs-form .hs-error-msg, .hs-form .hs-error-msgs {
  font-size: 12px;
  margin-top: 8px;
  display: block;
}

.hs-form .hs_error_rollup {
  width: 100%;
  max-width: calc(768px - 48px);
  margin: 0 auto;
  text-align: center;
}

/* ボタン */
.hs-form .actions {
  width: 100%;
  max-width: calc(768px - 48px);
  margin: 24px auto 0;
}

.hs-form .actions input[type="submit"] {
  width: 100%;
  background-color: var(--color-yellow);
  padding: 16px 24px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

.hs-form .actions input[type="submit"]:hover {
  opacity: 0.9;
}


/* --------------------------------------------------
footer
-------------------------------------------------- */
.footer {
  background-color: var(--color-blue);
  border-top: 1px solid white;
}

.footer-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo a {
  display: flex;
  align-items: center;
}

.footer-logo a img {
  width: auto;
  height: 32px;
}

.footer-text {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  color: white;
}

.footer-small {
  font-size: 12px;
}

.footer-links {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: var(--color-orange);
}


.footer-links a + a {
  border-left: 1px solid white;
  padding-left: 16px;
}

@media screen and (min-width: 768px) {
  .footer-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}


/* --------------------------------------------------
fade-up setting
-------------------------------------------------- */
.fade-up-item {
  transition: opacity 0.7s, transform 0.7s ease;
  transform: translateY(50px);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-04, .fade-up-item-grid-04_lg-same {
    transform: translateY(150px);
  }

  .fade-up-item-grid-05, .fade-up-item-grid-04_lg-same {
    transform: translateY(50px);
  }
}

@media screen and (min-width: 1024px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(250px);
  }

  .fade-up-item-grid-04, .fade-up-item-grid-04_lg-same {
    transform: translateY(50px);
  }

  .fade-up-item-grid-05, .fade-up-item-grid-05_lg-same {
    transform: translateY(150px);
  }

  .fade-up-item.lg_no-fade-up-item {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (min-width: 1024px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(100px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-04 {
    transform: translateY(200px);
  }

  .fade-up-item-grid-05 {
    transform: translateY(250px);
  }
}

.is-fade-up {
  transform: translateY(0);
  opacity: 1;
}


