@charset "UTF-8";

@font-face {
  font-family: "NotoSans";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP/NotoSansJP-Regular.otf") format("truetype");
}

@font-face {
  font-family: "NotoSans";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP/NotoSansJP-Medium.otf") format("truetype");
}

@font-face {
  font-family: "NotoSans";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP/NotoSansJP-Bold.otf") format("truetype");
}

@font-face {
  font-family: "BwGradualDEMO";
  font-style: normal;
  font-weight: 500;
  src: url("../font/Bw-Gradual-DEMO/BwGradualDEMO-Medium.otf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("../font/Manrope/Manrope-Medium.otf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("../font/Manrope/Manrope-SemiBold.otf") format("truetype");
}

.u-desktop {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body {
  font-family: "Josefin Sans", sans-serif;
  color: #1e1e1e;
  font-weight: 600;
}


.sp-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

@media (max-width: 1249px) {
  html {
    font-size: 1.2810248199vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol,
ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 文字の上に点 */
.f-dots {
  background-image: radial-gradient(circle at center, #1DA1E2 20%, transparent 20%);
  /* 点の色とサイズ調整 */
  background-position: top right;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.6em;
  /* 縦方向の位置調整 */
}

.f-dots--y {
  background-image: radial-gradient(circle at center, #FFF61F 20%, transparent 20%);
  /* 点の色とサイズ調整 */
  background-position: top right;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.6em;
  /* 縦方向の位置調整 */
}

.f-3d {
  text-shadow: #F9FBFF 0.02em 0.02em 0, #F9FBFF -0.02em 0.02em 0, #F9FBFF 0.02em -0.02em 0, #F9FBFF -0.02em -0.02em 0, #F9FBFF 0.03em 0.03em 0, #F9FBFF 0.04em 0.04em 0, #F9FBFF 0.05em 0.05em 0, #1DA1E2 0.06em 0.06em 0, #1DA1E2 0.07em 0.07em 0, #1DA1E2 0.08em 0.08em 0;
}

.f-3d--white {
  text-shadow: #1DA1E2 0.02em 0.02em 0, #1DA1E2 -0.02em 0.02em 0, #1DA1E2 0.02em -0.02em 0, #1DA1E2 -0.02em -0.02em 0, #1DA1E2 0.03em 0.03em 0, #1DA1E2 0.04em 0.04em 0, #1DA1E2 0.05em 0.05em 0, #F9FBFF 0.06em 0.06em 0, #F9FBFF 0.07em 0.07em 0, #F9FBFF 0.08em 0.08em 0;
}

.f-underline {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.f-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.25em;
  background-color: #FFF61F;
  z-index: -1;
}

.j-fade-section {
  opacity: 0;
  transform: translateY(50px);
  /* 下からふわっと出る効果 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.j-fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* 共通ボタンスタイル */
.c-button {
  display: inline-block;
  color: #1DA1E2;
  background: #F9FBFF;
  width: 220px;
  height: 56px;
  font-size: 24px;
  font-weight: bold;
  line-height: 56px;
  text-align: center;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.145);
  border-radius: 22px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* 背景色とテキスト色の変化のみ */
}

.c-button::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 27px;
  background: url(../../assets/img/cta-img-mail.png);
  background-size: cover;
  background-position: center;
  position: relative;
  top: 7px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* c-button ホバー時の背景色変化のみ */
.c-button:hover {
  background-color: #1DA1E2;
  /* ホバー時の背景色を青に変更 */
  color: #ffffff;
  /* テキスト色を白に変更 */
}

.c-button:hover::after {
  background: url(../../assets/img/cta-img-mail-white.png);
  background-size: cover;
  background-position: center;
  transform: translateX(5px);
  /* アイコンを右にスライド */
}

/* レスポンシブ対応: 画面幅768px以下でのスタイル */
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 18px;
    width: 180px;
    height: 50px;
    line-height: 50px;
  }

  .c-button::after {
    width: 25px;
    height: 22px;
  }
}

/* c-button--second のスタイル */
.c-button--second {
  color: #F9FBFF;
  background: none;
  border: 2px solid #F9FBFF;
  width: 220px;
  height: 56px;
  font-size: 24px;
  font-weight: bold;
  line-height: 56px;
  text-align: center;
  border-radius: 22px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  /* 背景色とボーダー色の変化のみ */
}

.c-button--second::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 27px;
  background: url(../../assets/img/cta-img-headphone.png);
  background-size: cover;
  background-position: center;
  position: relative;
  top: 5px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* c-button--second ホバー時の背景色変化のみ */
.c-button--second:hover {
  background-color: #F9FBFF;
  /* 背景色を白に変更 */
  color: #1DA1E2;
  /* テキスト色を青に変更 */
  border-color: #1DA1E2;
  /* ボーダー色も青に変更 */
}

.c-button--second:hover::after {
  background: url(../../assets/img/cta-img-headphone-blue.png);
  background-size: cover;
  background-position: center;
  position: relative;
  transform: translateX(5px);
  /* アイコンを右にスライド */
}

/* c-button--second のレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .c-button--second {
    font-size: 18px;
    width: 180px;
    height: 50px;
    line-height: 50px;
  }

  .c-button--second::after {
    width: 22px;
    height: 22px;
  }
}

.c-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgb(29, 161, 226);
  background: linear-gradient(90deg, rgb(29, 161, 226) 0%, rgb(184, 202, 248) 100%);
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;
  /* Nav items */
}

.c-header__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-header__logo {
  width: 149px;
  height: 100%;
}

.c-header__logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-header__logo {
    width: 120px;
  }
}

.c-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .c-header__navItem a {
    font-size: 16px;
    width: 160px;
    height: 44px;
    line-height: 46px;
  }
}

.c-header .menu,
.c-header .menu-btn,
.c-header .menu-icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-header {
    /* Hamburger menu button */
    /* Hamburger menbu text */
    /* Hamburger Menu Animation Start */
    /* Hamburger Menu Animation End */
    /* Navbar Container */
    /* Navbar Text */
  }

  .c-header .menu,
  .c-header .menu-btn,
  .c-header .menu-icon {
    display: block;
  }

  .c-header .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 52px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
  }

  .c-header .menu-btn:checked~.menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .c-header .menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #ddd;
    opacity: 0;
    transition: 0.5s;
  }

  .c-header .menu li {
    border-top: 1px solid rgb(75, 75, 75);
    padding: 15px 0;
    margin: 0 54px;
    opacity: 0;
    transition: 0.5s;
  }

  .c-header .menu-btn:checked~.menu a,
  .c-header .menu-btn:checked~.menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }

  .c-header .menu-btn {
    display: none;
  }

  .c-header .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .c-header .navicon {
    background: #F9FBFF;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .c-header .navicon:before,
  .c-header .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #F9FBFF;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .c-header .navicon:before {
    top: 9px;
  }

  .c-header .navicon:after {
    bottom: 9px;
  }

  .c-header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .c-header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .c-header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
    top: 0;
  }

  .c-header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }

  .c-header .menu-btn:checked~.menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .c-header .navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c-header .navtext {
    position: absolute;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
  }
}

.compareblock-content {
  overflow-x: auto;
  margin-top: 40px;
}

.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
}

.compare-label {
  border: none;
  font-size: 24px;
  vertical-align: bottom;
  padding: 20px 0 0;
}

@media screen and (max-width: 768px) {
  .compare-label {
    font-size: 18px;
  }
}

.compare-label.is-sticky {
  background-color: #fff;
  position: sticky;
  left: 0;
}

.compare-label.is-highlight {
  background-color: #1DA1E2;
  border-left: 4px solid #1DA1E2;
  border-right: 4px solid #1DA1E2;
  border-radius: 4px 4px 0 0;
  padding: 0;
}

.compare-label-jdo {
  color: #fff;
  background-color: #1DA1E2;
  padding: 12px 24px;
}

@media screen and (max-width: 768px) {
  .compare-label-jdo {
    padding: 8px;
  }
}

.compare-label-a {
  color: #fff;
  background-color: #686868;
  padding: 12px 24px;
}

@media screen and (max-width: 768px) {
  .compare-label-a {
    padding: 8px;
  }
}

.compare-label-b {
  color: #fff;
  background-color: #c4c4c4;
  padding: 12px 24px;
}

@media screen and (max-width: 768px) {
  .compare-label-b {
    padding: 8px;
  }
}

.compare-cell {
  background-color: #fff;
  border: none;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
  padding: 16px 24px;
  font-weight: normal;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .compare-cell {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.compare-cell.is-sticky {
  border-right: 1px solid #e4e4e4;
  text-align: left;
  white-space: nowrap;
  position: sticky;
  left: 0;
}

.compare-cell.is-highlight {
  border-left: 4px solid #1DA1E2;
  border-right: 4px solid #1DA1E2;
}

/*.compare-row:last-child .compare-cell.is-highlight {
  border-bottom: 4px solid #1DA1E2;
}*/

.compare-cell span {
  display: inline-block;
}

.compare-body>.compare-row:nth-child(odd)>.compare-cell {
  background-color: #cce9f9;
}

.compare .col-label {
  width: 240px;
  min-width: 200px;
}

@media screen and (max-width: 768px) {
  .compare .col-label {
    min-width: 116px;
  }
}

.compare .col-jdo {
  width: 320px;
  min-width: 256px;
}

.compare .col-jdo img {
  width: 142px;
}

@media screen and (max-width: 768px) {
  .compare .col-jdo {
    min-width: 220px;
  }
}

.compare .col-a,
.compare .col-b {
  width: 256px;
  min-width: 248px;
}

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

  .compare .col-a,
  .compare .col-b {
    min-width: 220px;
  }
}

.cell-strong {
  color: #1DA1E2;
  font-size: 36px;
  font-weight: 700;
}

.cell-mini {
  font-size: 12px;
}

.cell-small {
  font-size: 14px;
}

.l-sample {
  margin-top: 0;
}

.p-about {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .p-about {
    padding: 60px 0;
  }
}

.p-about__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-about__headingH2 {
  color: #1DA1E2;
  text-align: center;
  font-size: 24px;
}

.p-about__headingH2 span {
  font-size: 40px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-about__headingH2 {
    font-size: 16px;
  }

  .p-about__headingH2 span {
    font-size: 32px;
  }
}

.p-about__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-about__wrapper {
    flex-direction: column;
    margin-top: 24px;
  }
}

.p-about__content {
  width: 48%;
}

.p-about__content a {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-about__content {
    width: 100%;
  }
}

.p-about__headingH3 {
  font-size: 24px;
  color: #1DA1E2;
  text-align: center;
  margin-top: 64px;
  line-height: 1.5;
}

.p-about__headingH3 span {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .p-about__headingH3 {
    margin-top: 42px;
  }
}

.p-about__text {
  margin-top: 32px;
  line-height: 1.5;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .p-about__text {
    margin-top: 16px;
  }
}

.p-about__img {
  width: 48%;
  border-radius: 30px;
  overflow: hidden;
}

.p-about__img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-about__img {
    width: 100%;
  }
}

.p-about__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-about__itemImg {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.p-about__itemImg img {
  width: 100%;
}

.p-about__itemHeading {
  font-size: 18px;
  line-height: 1.5;
  color: #1DA1E2;
  margin-top: 8px;
  text-align: center;
}

.p-about__itemText {
  font-weight: normal;
  line-height: 1.5;
  margin-top: 12px;
}

.p-compare {
  font-weight: normal !important;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p-compare {
    padding-bottom: 60px;
  }
}

.p-compare__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-compare__headingH2 {
  color: #1DA1E2;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

.p-compare__headingH2 img {
  width: 180px;
  margin-top: 20px;
  position: relative;
  bottom: -22px;
}

@media screen and (max-width: 768px) {
  .p-compare__headingH2 {
    font-size: 16px;
  }

  .p-compare__headingH2 img {
    width: 110px;
  }
}

.p-compare__headingH2--small {
  font-size: 16px;
}

.p-compare__headingH2--big {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-compare__headingH2--big {
    font-size: 28px;
  }
}

.p-contact {
  background: #1DA1E2;
  padding: 80px 0;
}

.p-contact__inner {
  max-width: calc(1200px + 2.4rem);
  width: 100%;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  margin: 0 auto;
  text-align: center;
}

.p-contact__headingH2 {
  font-size: 24px;
  color: #F9FBFF;
}

.p-contact__headingH2 span {
  font-size: 40px;
  margin-top: 12px;
}

/* 全体のレイアウト */
.wpcf7 form>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .wpcf7 form>div {
    gap: 0;
  }
}

.wpcf7 form>div>div {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .wpcf7 form>div>div {
    width: 100%;
  }
}

.wpcf7 form>div>div>p {
  text-align: left;
  color: #F9FBFF;
  font-weight: normal;
  margin-bottom: 4px;
}

/* 左側の入力欄 */
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #333;
}

/* プレースホルダーの色 */
.wpcf7 input::-moz-placeholder,
.wpcf7 textarea::-moz-placeholder {
  color: #aaa;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #aaa;
}

/* テキストエリアのスタイル */
.wpcf7 textarea {
  height: 120px;
  resize: none;
}

/* ボタンのスタイル */
.wpcf7 input[type=submit] {
  background-color: #F9FBFF;
  width: 240px;
  color: #3498db;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
	margin: 0 auto;
}

.wpcf7 input[type=submit]:hover {
  background-color: #f1c40f;
}

/* 送信ボタン内のアイコン */
.wpcf7 input[type=submit]::after {
  content: "✈️";
  margin-left: 10px;
}

.wpcf7-spinner {
  display: none;
}

.p-course {
  padding: 80px 0;
  background: url(../../assets/img/course-img-bg.png);
  background-size: cover;
  background-position: center;
}

.p-course__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-course__headingH2 {
  font-size: 24px;
  text-align: center;
  color: #F9FBFF;
}

.p-course__headingH2 span {
  font-size: 40px;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .p-course__headingH2 {
    font-size: 16px;
  }

  .p-course__headingH2 span {
    font-size: 32px;
  }
}

.p-course__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .p-course__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-course__item {
  border-radius: 20px;
  overflow: hidden;
  background: #F9FBFF;
  padding: 4px;
}

.p-course__itemWrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;

}

@media screen and (max-width: 768px) {
  .p-course__itemWrapper {
    flex-direction: column;
  }
}

.p-course__itemImg {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .p-course__itemImg {
    width: 100%;
	  height: 160px;
  }
}

.p-course__itemImg img {
  width: 100%;
  height: -webkit-fill-available;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-course__itemContent {
  width: 55%;
  height: 200px;
  background: #1DA1E2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  color: #F9FBFF;
}

@media screen and (max-width: 768px) {
  .p-course__itemContent {
    width: 100%;
    gap: 0px;
    min-height: 160px;
    padding: 24px 12px;
  }
}

.p-course__headingH3 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p-course__headingH3 {
    font-size: 18px;
    margin: 4px 0;
  }
}

.p-course__subheading {
  color: #FFF61F;
}

.p-course__itemText {
  line-height: 1.5;
  font-weight: normal;
}

.p-cta {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .p-cta {
    padding: 20px 0 60px;
  }
}

.p-cta__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-cta__inner {
    flex-direction: column;
  }
}

.p-cta__img {
  width: 60%;
  margin-right: -3%;
}

.p-cta__img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-cta__img {
    width: 95%;
  }
}

.p-cta__content {
  background: rgb(29, 161, 226);
  background: linear-gradient(180deg, rgba(29, 161, 226, 0.9) 0%, rgba(184, 202, 248, 0.9) 100%);
  border-radius: 30px 0 0 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 48px 100px;
  width: 60%;
  min-height: 480px;
  height: -moz-fit-content;
  height: fit-content;
  color: #F9FBFF;
  box-sizing: border-box;
  margin-left: -3%;
  margin-top: 5%;
}

@media screen and (max-width: 768px) {
  .p-cta__content {
    min-height: 360px;
    width: 95%;
    margin: -5% 0 0 auto;
    padding: 24px;
  }
}

.p-cta__content>* {
  max-width: 540px;
}

.p-cta__headingH2 {
  font-size: 24px;
}

.p-cta__headingH2 span {
  font-size: 40px;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .p-cta__headingH2 {
    font-size: 16px;
  }

  .p-cta__headingH2 span {
    font-size: 32px;
  }
}

.p-cta__text {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-cta__text {
    font-size: 16px;
    margin-top: 24px;
  }
}

.p-cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-cta__button {
    flex-direction: column;
    gap: 24px;
  }
}

.p-faq {
  padding: 80px 0;
  /* V字型の矢印を作成 */
  /* アイコンがトグル時に回転するスタイル */
}

@media screen and (max-width: 768px) {
  .p-faq {
    padding: 60px 0;
  }
}

.p-faq__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-faq__headingH2 {
  font-size: 24px;
  color: #1DA1E2;
  text-align: center;
  line-height: 1.5;
}

.p-faq__headingH2 span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-faq__headingH2 {
    font-size: 16px;
  }

  .p-faq__headingH2 span {
    font-size: 32px;
  }
}

.p-faq__item {
  border: 1px solid #1DA1E2;
  /* 青い枠線を追加 */
  border-radius: 8px;
  /* 角丸にする */
  margin-bottom: 10px;
  padding: 10px;
  position: relative;
  /* アイコンを絶対位置に配置するため */
}

.p-faq__question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-weight: bold;
  /* 質問を太字にする */
}

.p-faq__question h3 {
  margin: 0;
  font-size: 16px;
}

.p-faq__icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  /* V字型にするために45度回転 */
  transition: transform 0.3s ease;
  /* アニメーションで回転をスムーズに */
}

.p-faq__answer {
  font-weight: normal;
  height: 0;
  /* 初期状態は非表示 */
  overflow: hidden;
  opacity: 0;
  padding: 0;
  line-height: 1.5;
  transition: none;
  /* アニメーションをオフ */
}

.p-faq__answer--open {
  height: auto;
  /* 開いたときにコンテンツの高さに自動調整 */
  opacity: 1;
  padding: 10px 0;
  transition: opacity 0.3s ease;
  /* 開いたときのみフェードイン */
}

.p-faq__question--open .p-faq__icon {
  transform: rotate(-135deg);
  /* クリック時に逆さまのV字に回転 */
}

.p-footer {
  background: #1DA1E2;
  padding: 8px 0;
}

.p-footer__copyright {
  text-align: center;
  color: #F9FBFF;
}

.p-footerCta {
  height: 430px;
  background: url(../../assets/img/footerCta-img-bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-footerCta {
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 1rem;
  }
}

.p-footerCta__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .p-footerCta__inner {
    flex-direction: column;
    gap: 32px;
  }
}

.p-footerCta__info>*+* {
  margin-top: 42px;
}

@media screen and (max-width: 768px) {
  .p-footerCta__info>*+* {
    margin-top: 24px;
  }
}



.p-footerCta__infoContent {
  font-size: 16px;
  color: #1DA1E2;
  line-height: 1.5;
}

.p-footerCta__infoContent a {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-footerCta__infoContent a {
    font-size: 20px;
  }
}

.p-footerCta__infoItem {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .p-footerCta__infoItem {
    gap: 16px;
  }
}

.p-footerCta__infoLogo--call {
  width: 50px;
}

.p-footerCta__infoLogo--call img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-footerCta__infoLogo--call {
    width: 40px;
  }
}

.p-footerCta__infoLogo--mail {
  width: 60px;
}

.p-footerCta__infoLogo--mail img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-footerCta__infoLogo--mail {
    width: 45px;
  }
}

.p-footerCta__headingH2 {
  font-size: 24px;
  color: #1DA1E2;
}

.p-footerCta__headingH2 span {
  font-size: 46px;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .p-footerCta__headingH2 {
    font-size: 18px;
  }

  .p-footerCta__headingH2 span {
    font-size: 24px;
  }
}

.p-footerCta__button {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  gap: 56px;
  margin-top: 40px;
}



.p-footerCta__button .c-button {
  color: #fff;
  border-color: #1DA1E2;
  background: #1DA1E2;
}

.p-footerCta__button .c-button--second {
  color: #1DA1E2;
  border-color: #1DA1E2;
  background: none;
}

.p-footerCta__button .c-button::after {
  background: url(../../assets/img/cta-img-mail-white.png);
  background-size: cover;
  background-position: center;
}

.p-footerCta__button .c-button--second::after {
  background: url(../../assets/img/cta-img-headphone-blue.png);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .p-footerCta__button {
	  display:none;
    flex-direction: column;
    gap: 24px;
  }

}

.p-free {
  background: #1DA1E2;
  padding: 80px 0;
}

.p-free__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-free__headingH2 {
  color: #F9FBFF;
  font-size: 16px;
  text-align: center;
}

.p-free__headingH2 span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-free__headingH2 {
    font-feature-settings: "palt";
  }

  .p-free__headingH2 span {
    font-size: 32px;
  }
}

.p-free__flow {
  width: 100%;
  margin-top: 36px;
}

.p-free__flow img {
  width: 100%;
}

.p-free__cta {
  color: #F9FBFF;
  font-weight: normal;
  margin-top: 40px;
}

.p-free__ctaText {
  text-align: center;
  max-width: 600px;
  width: 100%;
  line-height: 1.5;
  margin: 0 auto;
}

.p-free__ctaWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-free__ctaWrapper {
    gap: 24px;
  }
}

.p-fv {
	padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.p-fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.p-fv video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
	height: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-fv__inner {
    height: -moz-fit-content;
    height: fit-content;
  }
}

.p-fv__subtitle {
  max-width: 632px;
  width: 100%;
  margin-top: 24px;
}

.p-fv__subtitle img {
  width: 100%;
}

/* .p-fv__headingH1 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  text-align: center;
  background: rgba(249, 251, 255, 0.9);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #1DA1E2;
  color: #F9FBFF;
  font-size: 64px;
  font-weight: 1000;
  padding: 20px 55px;
  position: relative;
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 90%, 0% 90%);
  clip-path: polygon(3% 0%, 100% 0%, 97% 90%, 0% 90%);
} */
/* 
.p-fv__headingH1 span {
  color: #1DA1E2;
  -webkit-text-stroke-width: 0;
} */

/* Styles for the heading */
    .p-fv__headingH1 {
      display: block;
      /* to make wrapper fit content width */
      width: 100%;
      max-width: 900px;
      background-color: #fff;
      padding: 20px 80px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
      font-size: 0;
      line-height: 0;
		margin: 0 auto;
    }

    .p-fv__headingH1 img {
      width: 100%;
      height: auto;
      vertical-align: middle;
    }

    .p-fv__heading-visual--mobile {
      display: none;
    }



@media screen and (max-width: 768px) {
/*   .p-fv__headingH1 {
    font-size: 32px;
    line-height: 1.2;
    font-feature-settings: "palt";
    padding: 20px 24px;
  } */
	.p-fv__headingH1 {
        width: fit-content;
        padding: 2vw 10vw;
        clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
      }

      .p-fv__headingH1 img {
        max-width: 400px;
        width: 100%;
      }

      .p-fv__heading-visual--desktop {
        display: none;
      }

      .p-fv__heading-visual--mobile {
        display: block;
      }
}

.p-fv__point {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-fv__point {
    grid-template-columns: repeat(1, 354px);
    justify-content: center;
  }
}

.p-fv__pointItem {
  background: #1da0e2c5;
  border-radius: 20px;
  border: 5px solid #F9FBFF;
  color: #F9FBFF;
  padding: 24px 16px 16px;
}

.p-fv__pointSubtitle {
  font-size: 24px;
  text-align: center;
  border-bottom: 4px double #ffffff;
  margin-bottom: 20px;
  padding-bottom: 8px;

}

@media screen and (max-width: 768px) {
  .p-fv__pointSubtitle {
    font-size: 24px;
  }
}

.p-fv__headingH3 {
  font-size: 16px;
  margin-top: 16px;
}

.p-fv__headingH3 span {
  color: #FFF61F;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p-fv__headingH3 span {
    font-size: 19px;
  }
}

.p-fv__pointText {
  font-weight: normal;
  line-height: 1.5;
  margin-top: 16px;
}

.p-fv__cta {
  height: 120px;
  background: #1DA1E2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin-top: 24px;
}

.p-fv__cta .c-button {
  width: 314px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}

.p-fv__cta .c-button::after {
  width: 36px;
  height: 32px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-fv__cta .c-button {
    width: 240px;
    height: 56px;
    line-height: 56px;
    font-size: 24px;
  }

  .p-fv__cta .c-button::after {
    width: 34px;
    height: 30px;
    margin-top: 8px;
  }
}

.p-fv__cta .c-button--second::after {
  width: 35px;
  height: 38px;
  top: 8px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .p-fv__cta .c-button--second::after {
    width: 30px;
    height: 34px;
  }
}

@media screen and (max-width: 768px) {
  .p-fv__cta {
    padding: 20px 0;
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    gap: 16px;
  }
}

.p-performance {
  padding: 80px 0;
  background: #1DA1E2;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-performance {
    padding: 60px 0 80px;
  }
}

.p-performance__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
  overflow: visible;
}

.p-performance__headingH2 {
  color: #F9FBFF;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
}

.p-performance__headingH2 span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-performance__headingH2 {
    font-size: 16px;
  }

  .p-performance__headingH2 span {
    font-size: 32px;
  }
}

.p-performance__swiper {
  margin-top: 32px;
  overflow: visible;
}

.p-performance__wrapper {
  position: relative;
}

.p-performance__slide {
  border-radius: 20px;
  overflow: hidden;
}

.p-performance__slideImg {
  width: 100%;
  aspect-ratio: 4/3;
}

.p-performance__slideImg img {
  width: 100%;
  height: 100%;
}

.p-performance__slideContent {
  background: #F9FBFF;
  padding: 32px 16px 16px;
  min-height: 260px;
}



.p-performance__headingH3 {
  font-size: 24px;
  line-height: 1.5;
}

.p-performance__slideText {
  font-weight: normal;
  line-height: 1.5;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-performance__slideContent {
    min-height: 250px;
  }

  .p-performance__headingH3 {
    font-size: 20px;

  }
}

.p-performance__button--prev::after {
  font-size: 24px;
  color: #ffffff;
}

.p-performance__button--next::after {
  font-size: 24px;
  color: #ffffff;
}

.p-performance__pagination {
  color: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -32px;
}

.p-performance__pagination .swiper-pagination-current {
  color: #F9FBFF;
}

.p-performance__pagination .swiper-pagination-current::after {
  content: "/";
}

.p-performance__pagination .swiper-pagination-total {
  position: absolute;
  color: #F9FBFF;
}

.p-plan {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .p-plan {
    padding: 60px 0;
  }
}

.p-plan__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-plan__headingH2 {
  font-size: 16px;
  color: #1DA1E2;
  text-align: center;
}

.p-plan__headingH2--dot {
  font-size: 24px;
  margin-right: 8px;
}

.p-plan__headingH2--big {
  font-size: 40px;
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .p-plan__headingH2--big {
    font-size: 32px;
    margin-top: 12px;
  }
}

.p-plan .compare-label {
  padding-top: 72px;
}

.p-plan .compare-label--recommend {
  position: relative;
}

.p-plan .compare-label--recommend::after {
  content: "";
  background: url(../../assets/img/plan-img01.png);
  width: 180px;
  height: 79px;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .p-plan .compare-label--recommend::after {
    width: 170px;
  }
}

.p-plan .compare-label-a {
  background: #1DA1E2;
}

.p-plan .compare-label-b {
  background: #80A0F1;
}

.p-plan .cell-mini {
  margin-bottom: 8px;
  font-size: 14px;
}

.p-plan .compare-cell {
  border-right: 1px solid #1DA1E2;
  border-left: 1px solid #1DA1E2;
}

.p-plan .is-sticky {
  border-left: 0;
  z-index: 2;
  text-align: center;
}

.p-plan .compare-cell--last {
  border-right: 2px solid #1DA1E2;
}

.p-reason {
  position: relative;
  padding: 120px 0 150px;
  background: rgb(29, 161, 226);
  background: linear-gradient(180deg, rgb(29, 161, 226) 0%, rgb(184, 202, 248) 100%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .p-reason {
    padding: 80px 0;
  }
}

.p-reason__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-reason__headingH2 {
  color: #F9FBFF;
  font-size: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-reason__headingH2 {
    font-size: 32px;
  }
}

.p-reason__headingLogo {
  display: block;
  width: 460px;
  margin: 0 auto;
}

.p-reason__headingLogo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-reason__headingLogo {
    width: 240px;
  }
}

.p-reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .p-reason__list {
    margin-top: 42px;
  }
}

.p-reason__item {
  border-radius: 20px;
  overflow: hidden;
  background: rgb(184, 202, 248);
  background: linear-gradient(90deg, rgb(184, 202, 248) 0%, rgb(29, 161, 226) 100%);
  padding: 4px;
}

.p-reason__item>div {
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-reason__item>div {
    flex-direction: column;
  }
}

.p-reason__itemWrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.p-reason__itemImg {
  width: 45%;
}

.p-reason__itemImg img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-reason__itemImg {
    width: 100%;
  }
}

.p-reason__itemContent {
  width: 55%;
  background: #1DA1E2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  color: #F9FBFF;
}

@media screen and (max-width: 768px) {
  .p-reason__itemContent {
    width: 100%;
    padding: 30px 12px;
    min-height: 262px;
	  justify-content: flex-start;
  }
}

.p-reason__headingH3 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p-reason__headingH3 {
    font-size: 18px;
  }
}

.p-reason__itemText {
  font-weight: normal;
  line-height: 1.5;
}

.custom-shape-divider-bottom-1725444403 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .custom-shape-divider-bottom-1725444403 {
    bottom: -1px;
  }
}

.custom-shape-divider-bottom-1725444403 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

@media screen and (max-width: 768px) {
  .custom-shape-divider-bottom-1725444403 svg {
    height: 50px;
  }
}

.custom-shape-divider-bottom-1725444403 .shape-fill {
  fill: #FFFFFF;
}

.p-recommend {
  position: relative;
  padding: 80px 0 40px;
}

.p-recommend__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-recommend__headingH2 {
  font-size: 24px;
  text-align: center;
}

.p-recommend__headingH2 span {
  display: inline-block;
  color: #1DA1E2;
  font-size: 64px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-recommend__headingH2 {
    font-size: 16px;
  }

  .p-recommend__headingH2 span {
    font-size: 32px;
  }
}

.p-recommend__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 82px;
}

@media screen and (max-width: 768px) {
  .p-recommend__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

.p-recommend__itemImg {
  width: 100%;
}

.p-recommend__itemImg img {
  width: 100%;
}

.p-recommend__itemText {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .p-recommend__itemText {
    font-size: 16px;
  }
}

.p-recommend__message {
  font-size: 40px;
  text-align: center;
  margin-top: 94px;
}

@media screen and (max-width: 768px) {
  .p-recommend__message {
    font-size: 22px;
    margin-top: 64px;
  }
}

.p-recommend__message--small {
  display: inline-block;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p-recommend__message--small {
    font-size: 16px;
  }
}

.custom-shape-divider-top-1725444122 {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .custom-shape-divider-top-1725444122 {
    bottom: -49px;
  }
}

.custom-shape-divider-top-1725444122 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

@media screen and (max-width: 768px) {
  .custom-shape-divider-top-1725444122 svg {
    height: 50px;
  }
}

.custom-shape-divider-top-1725444122 .shape-fill {
  fill: #FFFFFF;
}

.p-service {
  background: #1DA1E2;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .p-service {
    padding: 60px 0;
  }
}

.p-service__inner {
  max-width: calc(1200px + 2rem);
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
}

.p-service__headingH2 {
  font-size: 24px;
  color: #F9FBFF;
  text-align: center;
}

.p-service__headingH2 img {
  width: 180px;
  margin-top: -40px;
}

.p-service__headingH2 span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-service__headingH2 {
    font-size: 16px;
  }

  .p-service__headingH2 img {
    width: 110px;
  }

  .p-service__headingH2 span {
    font-size: 32px;
    line-height: 1.5;
  }
}

.p-service__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-service__wrapper {
    flex-direction: column-reverse;
    margin-top: 24px;
  }
}

.p-service__content {
  width: 48%;
  color: #F9FBFF;
}

@media screen and (max-width: 768px) {
  .p-service__content {
    width: 100%;
    margin-top: 24px;
  }
}

.p-service__headingH3 {
  font-size: 24px;
}

.p-service__text {
  margin-top: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.p-service__img {
  width: 48%;
  border-radius: 30px;
  overflow: hidden;
}

.p-service__img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-service__img {
    width: 100%;
  }
}

.p-service__feature {
  margin-top: 64px;
}

.p-service__featureText {
  font-size: 24px;
  color: #F9FBFF;
  text-align: center;
}

.p-service__featureList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .p-service__featureList {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-service__featureItem {
  border-radius: 20px;
  overflow: hidden;
  background: rgb(184, 202, 248);
  background: linear-gradient(90deg, rgb(184, 202, 248) 0%, rgb(29, 161, 226) 100%);
  padding: 4px;
}

.p-service__itemWrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
}

.p-service__itemImg {
  width: 45%;
  height: 175px;
}

.p-service__itemImg img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-service__itemImg img {
    height: -webkit-fill-available;
    object-fit: cover;
  }
}

.p-service__itemContent {
  width: 55%;
  height: 175px;
  background: #F9FBFF;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  color: #1DA1E2;
}

@media screen and (max-width: 768px) {
  .p-service__itemContent {
    gap: 2px;
    padding: 20px 16px;
  }
}

.p-service__headingH3 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p-service__headingH3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-service__itemText {
    font-weight: normal;
    line-height: 1.5;
  }
}

.p-support {
  padding: 80px 0;
  background: url(../../assets/img/support-img-bg.png);
  background-position: top;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .p-support {
    padding: 60px 0;
  }
}

.p-support__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.p-support__headingH2 {
  font-size: 24px;
  color: #1DA1E2;
  text-align: center;
}

.p-support__headingH2 span {
  font-size: 40px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-support__headingH2 {
    font-size: 16px;
  }

  .p-support__headingH2 span {
    font-size: 32px;
  }
}

.p-support__list>*+* {
  margin-top: 50px;
}

.p-support__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

@media screen and (max-width: 768px) {
  .p-support__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-support__item--reverse {
  flex-direction: row-reverse;
}

.p-support__item--reverse .p-support__itemContentWrapper {
  margin-left: auto;
  padding-left: 1.2rem;
  padding-right: 0;
}

.p-support__item--reverse .p-support__itemImg {
  border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 768px) {
  .p-support__item--reverse {
    flex-direction: column;
    align-items: flex-end;
  }

  .p-support__item--reverse .p-support__itemContentWrapper {
    padding-left: 0;
  }
}

.p-support__itemImg {
  width: 50%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.p-support__itemImg img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-support__itemImg {
    width: 95%;
  }
}

.p-support__itemContent {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .p-support__itemContent {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.p-support__itemContentWrapper {
  max-width: 540px;
  width: 100%;
  padding-right: 1.2rem;
}

@media screen and (max-width: 768px) {
  .p-support__itemContentWrapper {
    padding-right: 0;
  }
}

.p-support__headingH3 {
  font-size: 24px;
  line-height: 1.5;
  color: #1DA1E2;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .p-support__headingH3 .p-support__span {
    font-size: 14px;
    display: inline-block;
  }
}


.p-support__headingH3 img {
  height: 96px;
  margin-bottom: -8px;
}

@media screen and (max-width: 768px) {
  .p-support__headingH3 {
    font-size: 20px;
  }

  .p-support__headingH3 img {
    height: 70px;
  }
}

@media screen and (max-width: 768px) {
  .p-support__headingH3 img {
    margin-top: 16px;
  }
}

.p-support__headingH3::after {
  content: "";
  position: absolute;
  width: 93%;
  height: 5px;
  background: #1DA1E2;
  border-radius: 10vh;
  left: 34px;
  bottom: -8px;
}

@media screen and (max-width: 768px) {
  .p-support__headingH3::after {
    width: 90%;
    height: 3px;
  }
}

.p-support__itemText {
  line-height: 1.5;
  font-weight: normal;
  margin-top: 24px;
}

.p-voice {
  position: relative;
  padding: 80px 0;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-voice {
    padding: 60px 0;
  }
}

.p-voice__headingH2 {
  color: #1DA1E2;
  font-size: 24px;
  text-align: center;
}

.p-voice__headingH2 span {
  font-size: 40px;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .p-voice__headingH2 {
    font-size: 16px;
  }

  .p-voice__headingH2 span {
    font-size: 32px;
  }
}

.p-voice__slide {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  padding: 40px;
  margin-top: 32px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .p-voice__slide {
    padding: 20px;
  }
}

.p-voice__slide--1 {
  background: url(../../assets/img/voice-img01.png);
}

.p-voice__slide--2 {
  background: url(../../assets/img/voice-img02.png);
}

.p-voice__slide--3 {
  background: url(../../assets/img/voice-img03.png);
}

.p-voice__slide--4 {
  background: url(../../assets/img/voice-img04.png);
}

.p-voice__headingH3 {
  display: inline;
  font-size: 24px;
  padding: 2px 4px;
  color: #F9FBFF;
  background: #1DA1E2;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.p-voice__slideContent {
  width: 60%;
  text-align: left;
  background: rgba(255, 255, 255, 0.5019607843);
  padding: 24px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

@media screen and (max-width: 768px) {
  .p-voice__headingH3 {
    font-size: 20px;
  }

  .p-voice__slideContent {
    width: 80%;
  }
}

.p-voice__slideText {
  font-weight: normal;
  line-height: 1.5;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .p-voice__slideText {
    font-size: 13px;
  }
}

.p-voice__button {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  color: #1DA1E2;
  z-index: 10;
  display: none;
}

.p-voice__button--prev {
  left: 10px;
  transform: translateY(-50%);
}

.p-voice__button--next {
  right: 10px;
  transform: translateY(-50%);
}

.p-voice__pagination {
  text-align: center;
  bottom: 40px !important;
}


.g-recaptcha div {
	margin: 0 auto 40px;
	
}


.swiper-pagination-bullet-active{
background: #007AFF;
}



.p-contents { padding: clamp(40px, 6vw, 80px) 0; }
.p-contents__inner { width: min(1100px, 92%); margin: 0 auto; }
.p-contents__headingH2 {
  font-size: 24px;
  color: #1DA1E2;
  text-align: center;
  line-height: 1.5;
}

.p-contents__headingH2 span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .p-contents__headingH2 {
    font-size: 16px;
  }

  .p-contents__headingH2 span {
    font-size: 32px;
  }
}
.p-contents__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px){ .p-contents__list { grid-template-columns: 1fr; } }
.p-contents__item { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,.06); }
.p-contents__link { display: grid; grid-template-rows: auto 1fr; height: 100%; text-decoration: none; color: inherit; }
.p-contents__thumb { aspect-ratio: 16/9; overflow: hidden; }
.p-contents__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-contents__meta { padding: 16px; }
.p-contents__date { display: block; font-size: .875rem; opacity: .7; margin-bottom: 8px; }
.p-contents__title { font-size: 1.05rem; line-height: 1.5; margin: 0 0 8px; }
.p-contents__excerpt { font-size: .95rem; line-height: 1.7; margin: 0; }
.p-contents__more { text-align: center; margin-top: 28px; }
/* セクション共通見出し */
.c-secTitle {
  text-align: center;
  color: #1DA1E2;
  line-height: 1.2;
}
.c-secTitle__ja {
  display: block;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: .08em;
}
.c-secTitle__en {
  display: block;
  margin-top: 6px;
  font-family: "BwGradualDEMO","Manrope","NotoSans",sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1;
  /* 立体っぽいブルー（画像に寄せた簡易版） */
  color: #1DA1E2;
  text-shadow:
    #F9FBFF 0.02em 0.02em 0,
    #F9FBFF -0.02em 0.02em 0,
    #F9FBFF 0.02em -0.02em 0,
    #F9FBFF -0.02em -0.02em 0,
    #F9FBFF 0.04em 0.04em 0,
    #1DA1E2 0.07em 0.07em 0,
    #1DA1E2 0.09em 0.09em 0;
}
/* もっと見る専用（メールアイコンを出さない） */
.c-button--more a{
 line-height: 64px;
}
.c-button--more::after { content: none; }  /* ← これでアイコンを消す */
