@charset "UTF-8";
*,
*::before,
*::after {
  /* Box sizingの定義 */
  box-sizing: border-box;
}

ul,
ol {
  /* デフォルトのmargin, paddingを削除 */
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  /* デフォルトのmarginを削除 */
  margin: 0;
  padding: 0;
}

body {
  /* bodyのデフォルトを定義 */
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  /*iphoneの勝手に文字拡大を防ぐ*/
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
}

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

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

p,
li,
dt,
dd {
  line-height: 1.6;
  font-weight: 500;
}

ul,
ol {
  /* class属性を持つul、ol要素のリストスタイルを削除 */
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

a:not([class]) {
  /* classを持たない要素はデフォルトのスタイルを取得 */
  text-decoration-skip-ink: auto;
}

img {
  /* img要素の扱いを簡単にする */
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

input,
button,
textarea,
select {
  /* inputやbuttonなどのフォントは継承を定義 */
  font: inherit;
}

button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
}

sup {
  font-size: 11px;
  transform: translateY(3px);
  display: inline-block;
}

@keyframes megaMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
    border-top: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
}
@keyframes modalNavMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
/* header */
header {
  width: 100%;
  height: 100px;
  padding: 0 5.2083333333vw;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 1023px) {
  header {
    height: 60px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding: 20px;
  }
}
header .l-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .l-header__logo {
  z-index: 9999;
}
@media only screen and (max-width: 1023px) {
  header .l-header__logo img {
    width: 50%;
  }
}
header .l-header__logo a {
  transition: all 0.5s;
}
header .l-header__logo a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
header .l-header nav ul {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  header .l-header nav ul {
    flex-wrap: wrap;
  }
  header .l-header nav ul li {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: solid 1px #dfdfdf;
  }
}
header .l-header nav ul a {
  font-size: 14px;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  transition: all 0.5s;
}
@media only screen and (max-width: 1023px) {
  header .l-header nav ul a {
    display: inline-block;
    width: 100%;
    font-weight: 500;
    height: 100%;
  }
}
header .l-header nav ul a:hover {
  color: #D9381E;
  transition: all 0.5s;
}
header .l-header nav ul li:nth-child(n+2) {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  header .l-header nav ul li:nth-child(n+2) {
    margin-left: 0;
  }
}

.blank_link {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .blank_link {
    display: block;
  }
}

.sns {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .sns {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center;
    padding: 0 20px !important;
    margin: 24px 0 100px !important;
  }
  .sns li {
    width: 26px !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
  .sns li:nth-child(2) {
    width: 100px !important;
  }
  .sns li:nth-child(3) {
    width: 22px !important;
  }
  .sns li:nth-child(n+2) {
    margin-left: 30px !important;
  }
}

/* ハンバーガーメニュー */
@media only screen and (max-width: 1023px) {
  #spmenu-btn {
    z-index: 1000;
    cursor: pointer;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  #spmenu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.5s ease;
    transform-origin: center;
  }
  #sp_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    margin-top: 60px;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #sp_menu ul {
    list-style: none;
    padding: 20px 20px 0;
    margin: 0;
  }
  #sp_menu ul li {
    margin-bottom: 20px;
  }
  #sp_menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }
  /* メニュー開閉 */
  html.is-spmenu-open #sp_menu {
    transform: translateX(0);
  }
  html.is-spmenu-open #spmenu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 10px);
  }
  html.is-spmenu-open #spmenu-btn span:nth-child(2) {
    opacity: 0;
  }
  html.is-spmenu-open #spmenu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -10px);
  }
}
/* footer */
.l-footer {
  padding: 80px 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 20px 0;
  }
}
.l-footer__logo {
  width: 100%;
  position: relative;
}
.l-footer__logo a {
  transition: all 0.5s;
}
.l-footer__logo a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.l-footer__logo img {
  width: 272px;
  margin: 0 auto;
  transition: all 0.5s;
}
.l-footer__logo img:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 50%;
    margin: 0 auto;
  }
}
.l-footer__logo:before {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo:before {
    bottom: -20px;
  }
}
.l-footer nav {
  margin-top: 56px;
}
@media only screen and (max-width: 767px) {
  .l-footer nav {
    margin-top: 40px;
  }
}
.l-footer nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .l-footer nav ul {
    display: none;
  }
}
.l-footer nav ul a {
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .l-footer nav ul a {
    width: 100%;
  }
}
.l-footer nav ul a:hover {
  color: #D9381E;
  transition: all 0.5s;
}
.l-footer nav ul li:nth-child(n+2) {
  margin-left: 20px;
}
.l-footer nav ul:nth-child(2) {
  margin-top: 35px;
}
.l-footer nav ul:nth-child(2) li a {
  transition: all 0.5s;
}
.l-footer nav ul:nth-child(2) li a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.l-footer nav ul:nth-child(3) {
  margin-top: 25px;
}
.l-footer nav ul:nth-child(3) li a {
  transition: all 0.5s;
}
.l-footer nav ul:nth-child(3) li a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.l-footer__copy {
  font-size: 14px;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 30px;
  }
}

/* KVエリア */
.p-kv {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
.p-kv__img {
  width: 75%;
  height: calc(var(--vh, 1vh) * 100 - 80px);
  margin-top: 100px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1023px) {
  .p-kv__img {
    width: 100%;
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}
.p-kv__img img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.p-kv__ttl {
  position: absolute;
  top: 50%;
  left: 5.2083333333vw;
  line-height: 1;
  transform: translate(0, -40%);
}
@media only screen and (max-width: 1023px) {
  .p-kv__ttl {
    width: calc(100% - 40px);
    top: 55%;
    left: 20px;
    transform: translate(0%, 0%);
  }
}
.p-kv__ttl--small {
  width: fit-content;
  display: block;
  color: #fff;
  padding: 1.0416666667vw;
  font-size: clamp(16px, 1.25vw, 24px);
  background-color: #D9381E;
}
.p-kv__ttl--small:nth-child(n+2) {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .p-kv__ttl--small {
    padding: 15px;
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
.p-kv__ttl--normal {
  width: fit-content;
  display: block;
  color: #fff;
  margin-top: 1.5625vw;
  padding: 1.3020833333vw 1.0416666667vw;
  font-size: clamp(36px, 2.5vw, 48px);
  background-color: #D9381E;
}
@media only screen and (max-width: 767px) {
  .p-kv__ttl--normal {
    padding: 15px;
    margin-top: 10px;
    font-size: clamp(16px, 6.4vw, 24px);
  }
}
.p-kv__ttl--mix {
  width: fit-content;
  display: block;
  color: #fff;
  margin-top: 1.5625vw;
  padding: 0.1041666667vw 1.0416666667vw 0.6770833333vw;
  font-size: clamp(36px, 2.5vw, 48px);
  background-color: #D9381E;
}
@media only screen and (max-width: 767px) {
  .p-kv__ttl--mix {
    padding: 15px;
    margin-top: 10px;
    font-size: clamp(16px, 6.4vw, 24px);
  }
}
.p-kv__small-font {
  font-size: clamp(24px, 2.0833333333vw, 40px);
}
@media only screen and (max-width: 767px) {
  .p-kv__small-font {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
.p-kv__big-font {
  font-size: clamp(60px, 4.375vw, 84px);
}
@media only screen and (max-width: 767px) {
  .p-kv__big-font {
    font-size: clamp(20px, 8vw, 30px);
  }
}

/* バナー */
.p-home-banner {
  width: 100%;
  margin-top: 2.8125vw;
  padding: 2.4479166667vw 0 3.0208333333vw;
  background-color: #fff;
  border: solid 3px #D9381E;
}
@media only screen and (max-width: 767px) {
  .p-home-banner {
    margin-top: 6.4vw;
    padding: 5.3333333333vw;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-home-banner__img img {
    width: 80%;
    border: solid 3px #D9381E;
    border-radius: 9999px;
    padding: 2.6666666667vw;
    text-align: center;
  }
}
.p-home-banner__ttl {
  font-size: clamp(24px, 1.875vw, 36px);
  margin-left: 1.5625vw;
}
@media only screen and (max-width: 767px) {
  .p-home-banner__ttl {
    font-size: clamp(20px, 5.3333333333vw, 24px);
  }
}
.p-home-banner__ttl--strong {
  font-size: clamp(36px, 2.5vw, 48px);
  color: #D9381E;
}
@media only screen and (max-width: 767px) {
  .p-home-banner__ttl--strong {
    font-size: clamp(24px, 8vw, 30px);
  }
}
.p-home-banner__sub-ttl {
  display: block;
  font-size: clamp(14px, 1.0416666667vw, 20px);
}
@media only screen and (max-width: 767px) {
  .p-home-banner__sub-ttl {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}

.p-home-worries__wrap {
  margin-top: 2.96875vw;
}
@media only screen and (max-width: 767px) {
  .p-home-worries__wrap {
    margin-top: 6.4vw;
  }
}
.p-home-worries__item {
  width: calc(33.3333333333% - 1.0416666667vw);
}
@media only screen and (max-width: 767px) {
  .p-home-worries__item {
    width: 100%;
  }
  .p-home-worries__item:nth-child(n+2) {
    margin-top: 6.4vw;
  }
}
.p-home-worries__item__img {
  width: auto;
  height: 8.3333333333vw;
  margin: 0 auto -1.0416666667vw;
}
@media only screen and (max-width: 767px) {
  .p-home-worries__item__img {
    height: 42.6666666667vw;
  }
}
.p-home-worries__item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-home-worries__txt {
  width: 100%;
  text-align: center;
  border: solid 1px #D9381E;
  border-radius: 20px;
  padding: 2.0833333333vw 0;
}
@media only screen and (max-width: 767px) {
  .p-home-worries__txt {
    font-size: clamp(14px, 4.2666666667vw, 16px);
    padding: 8vw 5.3333333333vw;
  }
}
.p-home-worries__txt p {
  font-size: clamp(14px, 1.0416666667vw, 20px);
  font-weight: 700;
}

.p-home-features__item {
  width: calc(33.3333333333% - 2px);
}
@media only screen and (max-width: 767px) {
  .p-home-features__item {
    width: 100%;
  }
  .p-home-features__item:nth-child(n+2) {
    margin-top: 6.4vw;
  }
}
.p-home-features__wrap {
  margin-top: 2.96875vw;
}
@media only screen and (max-width: 767px) {
  .p-home-features__wrap {
    margin-top: 6.4vw;
  }
}
.p-home-features__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 638/426;
  object-fit: cover;
}
.p-home-features__txt {
  margin-top: 1.875vw;
  padding: 0 2.0833333333vw;
}
@media only screen and (max-width: 767px) {
  .p-home-features__txt {
    padding: 0;
    margin-top: 4vw;
  }
}
.p-home-features__txt h3 {
  font-size: clamp(20px, 1.25vw, 24px);
}
@media only screen and (max-width: 767px) {
  .p-home-features__txt h3 {
    font-size: clamp(16px, 5.3333333333vw, 20px);
  }
}
.p-home-features__txt p {
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 767px) {
  .p-home-features__txt p {
    margin-top: 2.6666666667vw;
  }
}
.p-home-features__txt p:nth-child(n+3) {
  margin-top: 0.5208333333vw;
}

.p-home-plan__wrap {
  margin-top: 2.96875vw;
}
@media only screen and (max-width: 767px) {
  .p-home-plan__wrap {
    margin-top: 6.4vw;
  }
}
.p-home-plan__item {
  width: calc(25% - 1.3020833333vw);
  padding: 2.6041666667vw 1.0416666667vw 0;
  text-align: center;
  border: solid 1px #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .p-home-plan__item {
    width: 95%;
    padding: 8vw 5.3333333333vw 0;
  }
}
.p-home-plan__ttl h3 {
  font-size: clamp(20px, 1.25vw, 24px);
}
@media only screen and (max-width: 767px) {
  .p-home-plan__ttl h3 {
    font-size: clamp(16px, 5.3333333333vw, 20px);
  }
}
.p-home-plan__ttl p {
  font-size: clamp(14px, 1.0416666667vw, 20px);
}
@media only screen and (max-width: 767px) {
  .p-home-plan__ttl p {
    font-size: clamp(14px, 4.2666666667vw, 16px);
    margin-top: 1.8666666667vw;
  }
}
.p-home-plan__ttl--price {
  display: block;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 700;
  margin-top: 0.5208333333vw;
}
@media only screen and (max-width: 767px) {
  .p-home-plan__ttl--price {
    font-size: clamp(20px, 5.3333333333vw, 20px);
    margin-top: 3.2vw;
  }
}
.p-home-plan__ttl--strong {
  color: #D9381E;
  font-size: clamp(24px, 2.0833333333vw, 40px);
}
@media only screen and (max-width: 767px) {
  .p-home-plan__ttl--strong {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}
.p-home-plan__list {
  margin-top: 2.6041666667vw;
  border-top: solid 1px #dfdfdf;
  padding: 1.0416666667vw 0;
}
@media only screen and (max-width: 767px) {
  .p-home-plan__list {
    margin-top: 10.6666666667vw;
    padding: 8vw;
  }
}
.p-home-plan__list dt {
  font-weight: 700;
}
.p-home-plan__list dd {
  margin-top: 0.4166666667vw;
}
@media only screen and (max-width: 767px) {
  .p-home-plan__list dd {
    margin-top: 2.6666666667vw;
  }
}
.p-home-plan__list:nth-child(n+3) {
  margin-top: 0;
}
.p-home-plan__add-txt {
  text-align: right;
  font-size: 14px;
  margin-top: 0.78125vw;
}
@media only screen and (max-width: 767px) {
  .p-home-plan__add-txt {
    text-align: left;
    margin-top: 3.7333333333vw;
  }
}

.p-home-option__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2.96875vw;
}
@media only screen and (max-width: 767px) {
  .p-home-option__wrap {
    margin-top: 6.4vw;
  }
}
.p-home-option__wrap li {
  width: calc(50% - 10px);
  border-bottom: solid 1px #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .p-home-option__wrap li {
    width: 100%;
  }
}
.p-home-option__wrap li:nth-child(1) {
  border-top: solid 1px #dfdfdf;
}
.p-home-option__wrap li:nth-child(2) {
  border-top: solid 1px #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .p-home-option__wrap li:nth-child(2) {
    border-top: none;
  }
}
.p-home-option__wrap li dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1979166667vw 0;
}
@media only screen and (max-width: 767px) {
  .p-home-option__wrap li dl {
    padding: 6.1333333333vw 0;
  }
}
.p-home-option__wrap li dl dt {
  font-weight: 700;
}
.p-home-option__content {
  display: block !important;
}
.p-home-option__add-txt {
  text-align: right;
  font-size: 14px;
  margin-top: 0.78125vw;
}
@media only screen and (max-width: 767px) {
  .p-home-option__add-txt {
    text-align: left;
    margin-top: 3.7333333333vw;
  }
}

.p-home-flow__list {
  margin-top: 2.96875vw;
}
@media only screen and (max-width: 767px) {
  .p-home-flow__list {
    margin-top: 6.4vw;
  }
}
.p-home-flow__list--txt {
  width: 100%;
  padding: 2.6041666667vw;
  border: solid 1px #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .p-home-flow__list--txt {
    padding: 8vw;
  }
}
.p-home-flow__list--txt h3 {
  font-size: clamp(20px, 1.25vw, 24px);
}
@media only screen and (max-width: 767px) {
  .p-home-flow__list--txt h3 {
    font-size: clamp(16px, 5.3333333333vw, 20px);
  }
}
.p-home-flow__list--txt p {
  margin-top: 0.5208333333vw;
}
@media only screen and (max-width: 767px) {
  .p-home-flow__list--txt p {
    margin-top: 2.4vw;
  }
}
.p-home-flow__list--txt p a {
  color: #D9381E;
  transition: all 0.5s;
}
.p-home-flow__list--txt p a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.p-home-flow__list--triangle {
  display: block;
  width: 0;
  height: 0;
  margin: 1.0416666667vw auto;
  border-style: solid;
  border-right: 1.0416666667vw solid transparent;
  border-left: 1.0416666667vw solid transparent;
  border-top: 1.5625vw solid #d9381e;
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-home-flow__list--triangle {
    margin: 5.3333333333vw auto;
    border-right: 4vw solid transparent;
    border-left: 4vw solid transparent;
    border-top: 4vw solid #d9381e;
  }
}

.p-parallax {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-parallax {
    height: 40vh;
    display: none;
  }
}
.p-parallax__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url("../images/growth/parallax.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .p-parallax__bg {
    background-position: center;
  }
}
.p-parallax__bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url("../images/partner/parallax.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .p-parallax__bg2 {
    background-position: center;
  }
}

.p-home-precautions__list {
  width: 100%;
  margin-top: 2.96875vw;
  padding: 3.125vw 1.5625vw 3.125vw 2.0833333333vw;
  background-color: #fff;
  list-style: inside;
  padding-left: 2em;
}
@media only screen and (max-width: 767px) {
  .p-home-precautions__list {
    margin-top: 6.4vw;
    padding: 8vw;
  }
}
.p-home-precautions__list li {
  font-size: 14px;
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.p-home-precautions__list li:nth-child(n+2) {
  margin-top: 0.5208333333vw;
}
@media only screen and (max-width: 767px) {
  .p-home-precautions__list li:nth-child(n+2) {
    margin-top: 2.6666666667vw;
  }
}

.c-accordion {
  border-top: solid 1px #dfdfdf;
  margin-top: 52px;
}
@media only screen and (max-width: 767px) {
  .c-accordion {
    margin-top: 22px;
  }
}
.c-accordion li {
  border-bottom: solid 1px #dfdfdf;
}
.c-accordion__ttl {
  padding: 27px 45px 27px 0;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
}
.c-accordion__ttl:before, .c-accordion__ttl:after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #333;
}
.c-accordion__ttl:after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.c-accordion__ttl span {
  padding-left: 30px;
  display: block;
  position: relative;
}
.c-accordion__ttl span:before {
  position: absolute;
  content: "Q";
  top: -6px;
  left: 0;
  color: #333;
  font-size: 20px;
}
.c-accordion__ttl:hover {
  color: #D9381E;
  transition: all 0.5s;
}
.c-accordion__data {
  display: none;
  font-size: 14px;
  margin-bottom: 27px;
  padding-right: 45px;
}
.c-accordion__data a {
  color: #D9381E;
  transition: all 0.5s;
}
.c-accordion__data a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.c-accordion__data span {
  padding-left: 30px;
  display: block;
  position: relative;
}
.c-accordion__data span:before {
  position: absolute;
  content: "A";
  top: -5px;
  left: 0;
  color: #D9381E;
  font-size: 20px;
}

.c-accordion__ttl.active::after {
  transform: rotate(0deg);
}

.c-blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, auto);
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  margin-top: 57px;
}
@media only screen and (max-width: 767px) {
  .c-blog-list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 30px;
    margin-top: 37px;
  }
}
.c-blog-list li {
  width: 100%;
}
.c-blog-list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.c-blog-list li a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.c-blog-list__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.c-blog-list__txt {
  margin-top: 23px;
}
@media only screen and (max-width: 767px) {
  .c-blog-list__txt {
    margin-top: 13px;
  }
}
.c-blog-list__txt span {
  font-size: 14px;
  font-weight: 500;
}
.c-blog-list__txt h3 {
  font-size: 16px;
  margin-top: 4px;
}

.c-button {
  width: 280px;
  height: 60px;
  text-align: center;
  background-color: #fff;
  border: solid 1px #D9381E;
  margin: 2.8645833333vw auto 0;
}
@media only screen and (max-width: 767px) {
  .c-button {
    margin-top: 24px;
    width: 80%;
    height: 50px;
  }
}
.c-button a {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: clamp(16px, 0.9375vw, 18px);
  color: #D9381E;
  font-weight: bold;
  text-align: center;
  line-height: 58px;
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .c-button a {
    line-height: 48px;
  }
}
.c-button a:hover {
  background-color: #D9381E;
  color: #fff;
  transition: all 0.5s;
}

.c-contact__wrap {
  width: 100%;
  height: 100%;
  padding: 3.6979166667vw 0 4.1666666667vw;
  background-image: url(../images/growth/contact.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .c-contact__wrap {
    padding: 16vw 20px;
  }
}

.c-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .c-cta {
    width: 100%;
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .c-cta ul {
    display: flex;
    align-items: center;
  }
}
.c-cta ul li {
  width: fit-content;
  height: fit-content;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-cta ul li {
    width: 50%;
  }
}
.c-cta ul li a {
  display: inline-block;
  width: 100%;
  padding: 40px 10px 10px;
  color: #fff;
  transition: all 0.5s;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .c-cta ul li a {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    text-align: center;
    padding: 30px 0 10px;
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
.c-cta ul li a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.c-cta__contact {
  background-color: #D9381E;
}
.c-cta__contact:before {
  position: absolute;
  content: "";
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 20px;
  height: 20px;
  background-image: url(../images/common/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .c-cta__contact:before {
    top: 9px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.c-cta__line {
  margin-top: 30px;
  background-color: #06C755;
}
@media only screen and (max-width: 767px) {
  .c-cta__line {
    margin-top: 0;
  }
}
.c-cta__line:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  background-image: url(../images/common/line.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .c-cta__line:before {
    top: 5px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.c-cta.is-fixed {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 767px) {
  .c-cta.is-fixed {
    transform: translate(0, 0);
  }
}

.c-flex {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .c-flex {
    flex-wrap: wrap;
  }
}

.c-gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .c-gallery {
    margin-top: 22px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.c-gallery__item {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.c-gallery__item:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.c-gallery__item img {
  width: 100%;
  max-height: 570px;
  object-position: 0 0;
  object-fit: cover;
  box-shadow: 3px 3px 8px -5px #ddd;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .c-gallery__item img {
    max-height: 380px;
  }
}
@media only screen and (max-width: 767px) {
  .c-gallery__item img {
    aspect-ratio: 16/9;
  }
}
.c-gallery__item span {
  font-size: 14px;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  margin-top: 8px;
  color: #333;
  display: block;
}

/* =====================================================
コース画像拡大モーダル （ここから本PEN のコア）
===================================================== */
#grayDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow: scroll;
  z-index: 9999;
}

#grayDisplay img {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1000px;
  height: auto;
  object-position: 0 0;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  #grayDisplay img {
    max-width: 80%;
  }
}

body.modal-open {
  overflow: hidden;
}

.c-h2 {
  font-size: clamp(24px, 1.875vw, 36px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-h2 {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}
.c-h2__strong {
  color: #D9381E;
  font-size: clamp(36px, 2.5vw, 48px);
}
@media only screen and (max-width: 767px) {
  .c-h2__strong {
    font-size: clamp(24px, 8vw, 30px);
  }
}
.c-h2__txt {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-align: center;
  margin-top: 1.9791666667vw;
}
@media only screen and (max-width: 1023px) {
  .c-h2__txt {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .c-h2__txt {
    font-size: clamp(14px, 4.2666666667vw, 16px);
    text-align: left;
    margin-top: 3.4666666667vw;
  }
}

.c-list {
  width: 100%;
  margin-top: 32px;
  border-top: solid 1px #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .c-list {
    margin-top: 22px;
  }
}
.c-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  border-bottom: solid 1px #dfdfdf;
}
.c-list__item--ttl, .c-list__item--data {
  font-size: 14px;
}
.c-list__txt {
  margin-top: 17px;
}
.c-list__txt p {
  font-size: 14px;
}
.c-list__txt p a {
  color: #D9381E;
  transition: all 0.5s;
}
.c-list__txt p a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}

/* 幅の制御 */
.l-wrap-1000 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  .l-wrap-1000 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .l-wrap-1000 {
    padding: 0 20px;
  }
}

.l-wrap-1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  .l-wrap-1200 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .l-wrap-1200 {
    padding: 0 20px;
  }
}

.l-wrap-1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  .l-wrap-1440 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .l-wrap-1440 {
    padding: 0 20px;
  }
}

.l-wrap-full {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-wrap-full {
    padding: 0 20px;
  }
}

.l-wrap-red {
  width: 100%;
  padding: 4.4791666667vw 0 5.2083333333vw;
  background-color: #FEF7F1;
}
@media only screen and (max-width: 767px) {
  .l-wrap-red {
    padding: 60px 0;
  }
}

.l-wrap-gray {
  width: 100%;
  background-color: #F8F8F8;
  padding: 140px 0;
}
@media only screen and (max-width: 767px) {
  .l-wrap-gray {
    padding: 60px 0;
  }
}

#worries,
#features,
#plan,
#option,
#works,
#flow,
#contact1,
#parallax,
#blog,
#qa,
#precautions {
  margin-top: 7.65625vw;
}
@media only screen and (max-width: 767px) {
  #worries,
  #features,
  #plan,
  #option,
  #works,
  #flow,
  #contact1,
  #parallax,
  #blog,
  #qa,
  #precautions {
    margin-top: 16vw;
  }
}

/* スマホでの非表示 */
.pc_none {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .pc_none {
    display: block !important;
  }
}

.sp_none {
  display: block !important;
}
@media only screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

/* ふわっと表示 */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

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

.u-align-center {
  align-items: center;
}

.u-flex-start {
  align-items: flex-start;
}

.u-flex-end {
  align-items: flex-end;
}

.u-space-between {
  justify-content: space-between;
}

.u-jus-center {
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .u-nowrap {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}

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

.u-yellow {
  color: #FFFF01;
}