@charset "UTF-8";

/*!
Theme Name: Arkhe Child
Description: Arkhe用子テーマ
Theme URI: 
Author: Drill
Author URI: https://wcf-drill.com
Template:   arkhe
Version:    1.0.0
*/

/************************************
** 子テーマ用スタイル
************************************/
:root {
  --main-color: #213A70;
  --linear-start: #8402AF;
  --linear-end: #213A70;
  --base-white: #fff;
  --base-gray: #777;
  --base-black: #393939;
  --line-bg-color: #06C755;
  --bg-split-start: #eaecf1;
  --bg-split-end: #f4f5f8;
  --why-title-color: #002142;
  --merit-bg-color: #f4f5f8;
  --merit-line-color: #d9d9d9;
  --merit-title-color: #36196B;
  --study-cap-color: #072159;
  --summary-bg-color: #f9f9f9;
  --table-border-color: #D0CFCF;
  --attention-small-color: #595959;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}
/* ヘッダー */
#header .l-container {
  max-width: 100%;
  padding: 0 60px;
}
.l-header__center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 24px;
}
.c-headLogo {
  display: flex;
  gap: 16px;
  align-items: center;
}
.c-headLogo .blogname {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0;
  color: #fff;
}
.l-header__center .l-header__navi {
  list-style-type: none;
}
.l-header__center .l-header__navi li {
  display: inline-block;
  margin-left: 25px;
}
.l-header__center .l-header__navi li a {
  border: 1px solid var(--base-white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.0;
  color: var(--base-white);
  text-decoration: none;
  padding: 14px 30px;
  margin: 0;
}
.l-header__drawerBtn {
  width: 60px;
}
.c-iconBtn__icon {
  position: relative;
  width: 50px;
  height: 20px;
  margin: 0 auto;
}
.c-iconBtn__icon span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--base-white);
  transition: all 0.5s ease;
}
.c-iconBtn__icon span:nth-child(1) {
  top: 0;
  left: 0;
}
.c-iconBtn__icon span:nth-child(2) {
  top: 50%;
  left: 0;
  opacity: 1;
}
.c-iconBtn__icon span:nth-child(3) {
  bottom: 0;
  left: 0;
}
[data-drawer="opened"] .c-iconBtn__icon span:nth-child(1) {
  top: 0;
  left: 0;
  transform: translateY(10px) rotate(-20deg);
}
[data-drawer="opened"] .c-iconBtn__icon span:nth-child(2) {
  top: 50%;
  left: 0;
  opacity: 0;
}
[data-drawer="opened"] .c-iconBtn__icon span:nth-child(3) {
  bottom: 0;
  left: 0;
  transform: translateY(-9px) rotate(20deg);
}
.c-iconBtn__label {
  font-size: 15px;
  line-height: 1.0;
  margin-top: 5px;
}

/* フッター */
.l-footer__foot {
  padding: 62px 0 48px;
}
.c-copyright {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0;
  color: #fff;
}
.c-copyright:before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 49px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/logo.png) center center no-repeat;
  background-size: contain;
  transform: translateY(30%);
  margin-right: 13px;
}
.l-footer__nav {
  margin-bottom: 18px;
  flex-direction: column;
  gap: 16px;
}
.l-footer__nav .menu-item a {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.0;
}
.l-footer__nav .menu-item a:hover {
  text-decoration: none;
}

/* メインコンテンツ */
#content .l-container {
  max-width: 100%;
  padding: 0;
}
.l-article {
  max-width: 100%;
}

/* 共通 */
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}
.container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.container .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.container .row .col-lg-6 {
  flex: 0 0 calc(50% - 15px);
  min-width: calc(50% - 15px);
}
.container .row .col-lg-4 {
  flex: 0 0 calc(34% - 30px);
  min-width: calc(34% - 30px);
}
.container .row .col-lg-8 {
  flex: 0 0 calc(66.666% - 15px);
  min-width: calc(66.666% - 15px);
}
.container .row .col-lg-12 {
  flex: 0 0 100%;
  min-width: 100%;
}
.caption {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.0;
  width: fit-content;
  background: linear-gradient(90deg, var(--linear-start), var(--linear-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto !important;
}
h2 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.0;
  font-style: italic;
  width: fit-content;
  background: linear-gradient(90deg, var(--linear-start), var(--linear-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 10px;
  margin: 16px auto 0;
}
p {
  margin: 0;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
section {
  margin: 0 !important;
}
.bg-split {
  background: linear-gradient(-45deg, var(--bg-split-start) 0, var(--bg-split-start) 50%, var(--bg-split-end) 50%, var(--bg-split-end) 100%);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s ease;
}
.fade-left.is-show {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s ease;
}
.fade-right.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* CTA */
section.cta {
  background: linear-gradient(90deg, var(--linear-start), var(--linear-end));
  padding: 140px 0;
  margin: 0;
}
section.cta .container {
  background-color: var(--base-white);
  padding: 73px 0 85px;
}
section.cta .desc {
  text-align: center;
  font-size: 24px;
  line-height: 1.9;
  font-weight: 600;
  color: var(--base-black);
}
section.cta .desc {
  text-align: center;
  font-size: 24px;
  line-height: 1.9;
  font-weight: 600;
  color: var(--base-black);
}
section.cta h3 {
  text-align: center;
  font-size: 48px;
  line-height: 1.5;
  font-weight: 900;
  background: linear-gradient(90deg, var(--linear-start), var(--linear-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.cta h3 small {
  font-size: 24px;
  font-weight: 600;
  -webkit-text-fill-color: var(--base-black);
  opacity: 1;
}
section.cta .linkbtn {
  text-align: center;
  margin-top: 49px;
}
section.cta .linkbtn a {
  position: relative;
  display: block;
  width: 557px;
  max-width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.0;
  color: var(--base-white);
  text-decoration: none;
  background: linear-gradient(90deg, var(--linear-start), var(--linear-end));
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 35px 0;
  margin: 0 auto;
  overflow: hidden;
}
section.cta .linkbtn a:before {
  content: "";
  position: absolute;
  top: 18px;
  left: -75px;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  animation: sizeup 4s ease infinite;
}
section.cta .linkbtn a:after {
  content: '';
  display: block;
  width: 16px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 73px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/arrow-wh.png) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
section.cta .linebtn {
  text-align: center;
  margin-top: 31px;
}
section.cta .linebtn a {
  position: relative;
  display: flex;
  gap: 15px;
  justify-content: left;
  align-items: center;
  width: 308px;
  max-width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.0;
  color: var(--base-white);
  text-decoration: none;
  background-color: var(--line-bg-color);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 25px 0 25px 35px;
  margin: 0 auto;
}
section.cta .linebtn a:before {
  content: '';
  display: inline-block;
  width: 38px;
  height: 35px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/line-icon.png) center center;
  background-size: contain;
}
section.cta .linebtn a:after {
  content: '';
  display: block;
  width: 12px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 31px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/arrow-wh.png) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
@keyframes sizeup {
  0% {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }
  20% {
    transform: scale(1.2) rotate(-20deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(250) rotate(-20deg);
    opacity: 0;
  }
}

/* HERO */
#hero img {
  width: 100%;
}
/* TRUBLE */
#trouble {
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/truble-bk-scaled.jpg) center center no-repeat;
  background-size: cover;
  padding: 77px 0 92px;
  margin: 0;
}
#trouble .container {
  padding: 42px 0;
}
#trouble .caption {
  margin-left: 0 !important;
}
#trouble h2 {
  padding-left: 0;
  margin-left: 0 !important;
}
#trouble ul {
  padding-bottom: 30px; 
  margin-top: 24px;
  position: relative;
  z-index: 10;
}
#trouble ul li {
  position: relative;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  padding: 15px 0 15px 45px;
  margin: 0;
}
#trouble ul li:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/list-icon.png) center center no-repeat;
  background-size: contain;
}
#trouble ul li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 740px;
  height: 1px;
  background-color: #777;
}
#trouble ul li:last-child:after {
  content: none;
}
#trouble ul li strong {
  color: #f00;
}
#trouble .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: fit-content;
  z-index: 0;
}
#trouble .bg-image img {
  position: relative;
  display: block;
  width: 219px;
  height: 312px;
}
#trouble .bg-image img:first-child {
  top: 0;
  right: 0;
  z-index: 1;
}
#trouble .bg-image img:last-child {
  top: -120px;
  right: 187px;
  z-index: 10;
}
/* WHY*/
#why {
  padding: 127px 0 140px;
  margin: 0;
}
#why.bg-split {
  background: linear-gradient(-40deg, var(--bg-split-start) 0, var(--bg-split-start) 50%, var(--bg-split-end) 50%, var(--bg-split-end) 100%);
}
#why .container {
  max-width: 900px;
  margin-top: 62px;
}
#why .container .row {
  gap: 40px 77px;
}
#why .container .row .col-lg-6:nth-child(2n + 1) {
  flex: 0 0 calc(100% - 445px);
  min-width: calc(100% - 445px);
}
#why .container .row .col-lg-6:nth-child(2n) {
  flex: 0 0 368px;
  min-width: 368px;
}
#why .header {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}
#why .header:after {
  content: '';
  display: block;
  width: 323px;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 14px;
  right: 0;
}
#why .header .point {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.0;
  font-style: italic;
  color: black;
}
#why .header .number {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.0;
  font-style: italic;
  color: black;
}
#why .title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--why-title-color);
  margin-top: 8px;
}
#why .desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--why-title-color);
  margin-top: 8px;
}

/* MERIT */
#merit {
  padding: 126px 0 140px;
  margin: 0;
}
#merit .container {
  background-color: var(--merit-bg-color);
  padding: 26px 0 61px;
  margin-top: 54px;
}
#merit .container .row {
  gap: 0;
}
#merit .container .row .col-lg-4 {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  border-right: 1px solid var(--merit-line-color);
  padding: 12px 30px 0;
}
#merit .container .row .col-lg-4:last-child {
  border-right: 0;
  padding: 0 30px;
}
#merit .icon {
  text-align: center;
  height: 198px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#merit .icon:before {
  content: '';
  display: block;
  width: 198px;
  height: 198px;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: var(--base-white);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#merit .icon img {
  max-width: 121px;
  position: relative;
  z-index: 1;
}
#merit .title {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--merit-title-color);
  margin-top: 22px;
}
#merit .desc {
  font-family: "Inter", sans-serif;
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--base-black);
  margin-top: 20px;
}

/* STUDY */
#study {
  padding: 127px 0 140px;
  margin: 0;
}
#study .desc {
  text-align: center;
  margin-top: 30px;
}
#study .container {
  max-width: 960px;
  margin-top: 29px;
}
#study .container .row {
  gap: 30px;
  justify-content: center;
}
#study .container .row:last-child {
  margin-top: 30px;
}
#study .container .row .col-lg-6 {
  flex: 0 0 300px;
  min-width: 300px;
  position: relative;
}
#study .container .row .col-lg-4 {
  flex: 0 0 300px;
  min-width: 300px;
  position: relative;
}
#study .cap {
  position: absolute;
  top: 7px;
  left: 7px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0;
  font-style: italic;
  color: var(--base-white);
  text-shadow: 1px 1px 0 var(--study-cap-color), -1px 1px 0 var(--study-cap-color), -1px -1px 0 var(--study-cap-color), 1px -1px 0 var(--study-cap-color);
  z-index: 10;
}
#study .cap small {
  display: block;
  font-size: 12px;
  opacity: 1;
}
#study .image {
  position: relative;
}
#study .image:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 59px;
  height: 64px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: var(--study-cap-color);
  z-index: 0;
}
#study .container .desc {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--base-black);
  margin-top: 13px;
  letter-spacing: -0.5px;
}
#summary {
  padding: 141px 0 142px;
  margin: 0;
}
#summary .bg-gray {
  background-color: var(--summary-bg-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  padding: 73px 0 84px;
}
#summary table {
  max-width: 642px;
  border: none;
  margin: 47px auto 0;
}
#summary table th {
  position: relative;
  background-color: transparent;
  text-align: center;
  border: none;
  padding: 0 23px;
  margin: 0;
  z-index: 10;
}
#summary table th strong {
  position: relative;
  z-index: 10;
}
#summary table th:before {
  content: '';
  position: absolute;
  display: block;
  width: 117px;
  height: 29px;
  background-color: var(--study-cap-color);
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}
#summary table td {
  border: none;
  border-bottom: 1px solid var(--table-border-color);
  text-align: center;
}
#summary table tr:last-child td {
  border: none;
}
#summary .attention {
  list-style-type: disc;
  width: fit-content;
  margin: 0 auto;
}
#summary .attention li {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--base-black);
  padding: 0;
  margin: 0;
}
#summary .attention li strong {
  color: var(--merit-title-color);
}
#summary .attention li small {
  font-size: 16px;
  color: var(--attention-small-color);
}
#summary .cta {
  text-align: center;
  margin-top: 14px;
}
#summary .cta:before {
  content: '';
  display: block;
  width: 3px;
  height: 31px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/arrow_bk_down.png) center center no-repeat;
  background-size: contain;
  margin: 0 auto;
}
#summary .cta img {
  display: block;
  width: 475px;
  margin: 16px auto 0;
}
#track {
  padding: 130px 0 140px;
  margin: 0;
}
#track .container {
  min-height: 1230px;
  margin-top: 56px;
}
#track img {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
#track .image1 {
  width: 454px;
  position: absolute;
  top: 0;
  left: 47px;
  z-index: 0;
}
#track .image2 {
  width: 610px;
  position: absolute;
  top: 40px;
  right: 14px;
  z-index: 10;
}
#track .image3 {
  width: 873px;
  position: absolute;
  bottom: 120px;
  right: 4px;
  z-index: 20;
}
#track .image4 {
  width: 618px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 30;
}

/* VOICE */
#voice {
  padding: 127px 0 140px
}
#voice .container {
  padding-top: 30px;
  margin-top: 85px;
}
#voice .container .row .col-lg-4 {
  background-color: var(--bg-split-end);
}
#voice .thumb {
  position: relative;
  background-color: var(--study-cap-color);
  text-align: center;
  padding: 0 0 32px;
}
#voice .thumb:before {
  content: '';
  display: block;
  width: 178px;
  height: 178px;
  position: absolute;
  top: -29px;
  left: 50%;
  border: 4px solid var(--study-cap-color);
  border-radius: 50%;
  background-color: var(--base-white);
  transform: translateX(-50%);
  z-index: 0;
}
#voice .thumb img {
  position: relative;
  top: -12px;
  z-index: 10;
}
#voice .thumb .caption {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--base-white);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  margin-top: 33px !important;
}
#voice h4 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--study-cap-color);
  padding: 30px 37px 0;
}
#voice .desc {
  text-align: justify;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--base-black);
  padding: 30px 37px 40px;
}

/* PROFILE */
#profile {
  padding: 127px 0 140px;
  margin: 0;
}
#profile.bg-split {
  background: linear-gradient(-46.5deg, var(--bg-split-start) 0, var(--bg-split-start) 50%, var(--bg-split-end) 50%, var(--bg-split-end) 100%);
}
#profile .container {
  max-width: 1000px;
  margin-top: 80px;
}
#profile .container .row {
  gap: 47px;
}
#profile .container .row .col-lg-4 img {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
#profile .container .row .col-lg-8 {
  flex: 0 0 calc(66% - 17px);
  min-width: calc(66% - 17px);
}
#profile .job {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--merit-title-color);
}
#profile .name {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--merit-title-color);
  margin-top: 34px;
}
#profile .yomi {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--merit-title-color);
  margin-top: 5px;
}
#profile .desc {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 30px;
}
#profile .desc strong {
  font-size: 28px;
  font-weight: 600;
  color: var(--merit-title-color);
}
#profile .col-lg-12 {
  text-align: center;
  padding-top: 78px;
}
#profile .container2 {
  max-width: 793px;
}
#profile .container2 .row {
  gap: 20px;
}
#profile .container2 .row .col-lg-6 {
  flex: 0 0 calc(50% - 10px);
  min-width: calc(50% - 10px);
  font-size: 0;
}

/* GIFT */
#gift {
  padding: 127px 0 140px;
  margin: 0;
}
#gift .container {
  padding: 20px 15px;
  margin-top: 56px; 
}
#gift .container .row {
  gap: 70px 30px;
}
#gift .gift {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  height: 172px;
  position: relative;
  background-color: var(--bg-split-end);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 23px;
  margin: 0 auto;
}
#gift .row .col-lg-6:nth-child(2) .gift {
  margin-right: 0;
}
#gift .row .col-lg-6:nth-child(3) .gift {
  margin-left: 0;
}
#gift .num {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 58px;
  height: 75px;
  position: absolute;
  top: -17px;
  left: -15px;
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/tag.png) center center no-repeat;
  background-size: contain;
  padding-top: 10px;
}
#gift .num small {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--study-cap-color);
}
#gift .num span {
  display: block;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--study-cap-color);
}
#gift p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.9;
  color: black;
}

/* MESSAGE */
#message {
  background: url(https://sub.sample-free.icu/wp-content/uploads/2026/03/message-bk-scaled.jpg) center center no-repeat;
  background-size: cover;
  padding: 143px 0 133px;
  margin: 0;
}
#message .container {
  position: relative;
}
#message .container .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 459px;
}
#message .message {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.9;
  color: var(--base-black);
}
#message .message strong {
  font-size: 85px;
  color: var(--merit-title-color);
}
#message .message em {
  font-size: 64px;
  font-style: normal;
  color: var(--merit-title-color);
}
#message .message .sign {
  position: relative;
  text-align: right;
}
#message .message .sign .company {
  width: fit-content;
  margin-right: 140px;
  margin-left: auto;
}
#message .message .sign .name {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 31px;
  margin-top: 43px;
}
#message .message .sign .name .job {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--base-black);
}
#message .message .sign .name .name-image {
  width: 390px;
  font-size: 0;
}

/* contact */
.page-id-795 #top_title_area {
	display: none;
}
.page-id-795 #breadcrumb {
	display: none;
}
.page-id-795 .c-postContent>* {
	margin-top: 16px;
}
.page-id-795 #wpcf7-f719-p795-o1 {
	max-width: 600px;
    margin: 60px auto 30px;
}
.page-id-795 #wpcf7-f719-p795-o1 p {
	margin-top: 16px;
}
.page-id-795 button, .page-id-795 input, .page-id-795 select, .page-id-795 textarea {
	width: 100%;
}
.page-id-795 input[type="submit"] {
	background-color: var(--base-white);
	border: 1px solid var(--main-color);
	color: var(--main-color);
	transition: all 0.5s ease;
}
.page-id-795 input[type="submit"]:hover {
	background-color: var(--main-color);
	color: var(--base-white);
}
.page-id-795 label {
	font-weight: 700;
}

/************************************
** レスポンシブデザイン用
************************************/
@media screen and (max-width: 1000px){
  [data-btns=r-l] .l-header__body {
    grid-template-areas: "center left menu right";
    grid-template-columns: 85% calc(15% - 40px) 40px;
  }
  #header .l-header__navi {
    display: none;
  }
  #trouble .bg-image {
    display: none;
  }
}
/*834px以下*/
@media screen and (max-width: 787px){
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 0 25px;
    margin: 0 auto;
  }
  .container .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .container .row .col-lg-6 {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .container .row .col-lg-4 {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .container .row .col-lg-8 {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .caption {
    font-size: 32px;
  }
  h2 {
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    padding: 0 25px;
  }
  #why .container .row .col-lg-6 {
    flex: 0 0 100%;
    min-width: 100%;
  }
  #why .container .row .col-lg-6 .image {
    text-align: center;
  }
  /* ヘッダー */
  #header .l-container {
    padding: 0 25px;
  }
  #header .l-header__navi {
    display: none;
  }
  #header .l-header__center {
    width: 100%;
  }
  [data-btns=r-l] .l-header__body {
    grid-template-areas: "center left menu right";
    grid-template-columns: 85% calc(15% - 40px) 40px;
  }
  #header .l-header__center .blogname {
    font-size: 18px;
  }
  .l-header__drawerBtn {
    width: 40px;
  }
  .l-header__drawerBtn .c-iconBtn__label {
    font-size: 10px;
  }
  /* CTA */
  section.cta {
    padding: 30px 25px;
  }
  section.cta .container {
    padding:  32px 25px;
  }
  section.cta .desc {
    font-size: 18px;
  }
  section.cta h3 {
    font-size: 34px;
  }
  section.cta .linkbtn a {
    font-size: 26px;
    padding: 28px 0;
  }
  section.cta .linkbtn a:after {
    right: 12px;
  }
  section.cta .linebtn a:before {
	  position: absolute;
	  top: 5px;
	  left: 6%;
  }
  section.cta .linebtn a {
    font-size: 14px;
    justify-content: center;
    max-width: 80%;
    padding: 15px 0 15px 15px;
  }
  section.cta .linebtn a:after {
    right: 12px;
  }

  /* TROUBLE */
  #trouble .bg-image {
    display: none;
  }
  #trouble .container {
    padding: 42px 25px;
  }
  #trouble ul li {
    white-space: wrap;
  }
  #trouble ul li:after {
    max-width: 100%;
  }

  /* WHY */
  #why.bg-split {
    background: linear-gradient(-80.5deg, var(--bg-split-start) 0, var(--bg-split-start) 50%, var(--bg-split-end) 50%, var(--bg-split-end) 100%);
  }
  #why .container .row .col-lg-6:nth-child(2n + 1) {
    flex: 0 0 100%;
    min-width: 100%;
  }
  #why .container .row .col-lg-6:nth-child(2n) {
    flex: 0 0 100%;
    min-width: 100%;
  }
  #why .header:after {
    width: 65%;
  }
  #why .title {
    font-size: 26px;
  }

  /* MERIT */
  #merit .container {
    margin: 54px 25px 0;
  }
  #merit .container .row .col-lg-4 {
    flex: 0 0 100%;
    min-width: 100%;
    border-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
    position: relative;
  }
  #merit .container .row .col-lg-4:after {
    content: '';
    display: block;
    width: 90%;
    height: 1px;
    background-color: var(--merit-line-color);
    position: absolute;
    bottom: 0;
    left: 5%;
  }
  #merit .container .row .col-lg-4:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #merit .container .row .col-lg-4:last-child:after {
    content: none;
  }
  #merit .title {
    font-size: 28px;
  }

  /* TRACK */
  #track .image1 {
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  #track .image2 {
    max-width: 100%;
    position: relative;
    top: 0;
    right: 0;
    margin-top: 32px;
  }
  #track .image3 {
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 32px;
  }
  #track .image4 {
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 32px;
  }

  /* VOICE */
  #voice .container .row {
    gap: 60px;
  }

  /* PROFILE */
  #profile .container .row .col-lg-8 {
    flex: 0 0 100%;
    min-width: 100%;
  }
  #profile .job {
    font-size: 20px;
  }
  #profile .name {
    margin-top: 24px;
  }
  #profile .desc {
    font-size: 16px;
  }
  #profile .desc strong {
    font-size: 24px;
  }
  #profile .container2 .row .col-lg-6 {
    flex: 0 0 100%;
    min-width: 100%;
  }

  /* GIFT */
  #gift .gift {
    max-width: 90%;
  }
  #gift p {
    font-size: 18px;
  }
  #gift .container {
    padding: 20px 15px 10px;
  }
  #gift .row .col-lg-6:nth-child(2) .gift,
  #gift .row .col-lg-6:nth-child(3) .gift {
    margin: 0 auto;
  }

  /* MESSAGE */
  #message .container .image {
    position: relative;
    max-width: 100%;
  }
  #message .message {
    font-size: 32px;
    margin-top: 32px;
  }
  #message .message strong {
    font-size: 40px;
  }
  #message .message em {
    font-size: 40px;
  }
  #message .message .sign {
    text-align: left;
  }
  #message .message .sign .company {
    font-size: 24px;
    margin: 0;
  }
  #message .message .sign .name {
    margin-top: 20px;
  }
  #message .message .sign .name .job {
    font-size: 20px;
    white-space: nowrap;
  }
  #message .message .sign .name .name-image {
  }

  /* SUMMARY */
  #summary .attention {
    list-style-position: inside;
    margin-top: 32px;
  }
  #summary .attention li {
    font-size: 16px;
  }
  #summary .bg-gray {
    padding: 73px 25px 84px;
    margin: 0 25px;
  }
  #summary .cta a {
    max-width: 100%;
  }
  #summary table {
    width: 642px;
  }

  /* フッター */
  .u-flex--c {
    flex-direction: column;
  }
  .l-footer__nav .menu-item a {
    line-height: 1.9;
  }

	/* contact */
	.page-id-795 #wpcf7-f719-p795-o1 {
		max-width: 100%;
		padding: 0 25px;
	    margin: 60px auto 30px;
	}
}
