/* 240922 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}

strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* 文字色
======================================================================= */

body {
  color: #0f2133;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

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

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 20px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 20px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }
  .l-margin {
    margin: 20px auto;
  }
  .l-padding {
    padding: 20px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  /* 画像の大きさ */

  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* =======================================================================

  ヘッダー

======================================================================= */

.header {
  line-height: 1;

  background: #fff url("img/header-bg.jpg") no-repeat center top;
  background-size: cover;
}

.header {
  padding: 140px 0;
}

.header__txt {
  filter: drop-shadow(0px 5px 5px rgba(18,42,77,0.7));
}

@media(max-width: 599px) {
  .header {
    padding: 0;
    background: none;
  }
}

/* =======================================================================

  メイン

======================================================================= */

.main {
  padding-bottom: 40px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 20px;
  }
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}

/* =======================================================================

  intro（導入）

======================================================================= */

.intro {
  display: flex;
  background-color: #005463;
  padding: 40px 0;
  color: #fff;
  gap: 30px;
  align-items: center;
}

.intro__ttl {
  padding-bottom: 10px;
}

.intro__txt {
  flex: 1;
}

.intro__img {
  max-width: 40%;
}

.intro-2 {
  display: flex;
  flex-direction: row-reverse;
  padding: 40px 0;
  gap: 40px;
  align-items: flex-start;
}

@media(max-width: 599px) {
  .intro {
    display: block;
    padding: 40px 0;
    color: #fff;
    gap: 30px;
    align-items: center;
  }
  
  .intro__ttl {
    padding-bottom: 15px;
    margin-top: -20px;
    font-size: 1.4em;
  }
  
  .intro__txt {
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .intro__img {
    max-width: 100%;
    text-align: center;
    margin-bottom: -20px;
  }
  
  .intro-2 {
    display: block;
    margin-top: -20px;
  }
}


/* =======================================================================
  CTA
======================================================================= */

.cta__txt {
  padding-bottom: 10px;
}

.cta__btn {
  filter: drop-shadow(0px 5px 5px rgba(160,160,160,0.7));
}

@media(max-width: 599px) {
  .cta__txt {
    padding-bottom: 0;
  }
}

/* =======================================================================
  共通のタイトル
======================================================================= */

.h3__ttl {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

@media(max-width: 599px) {
  .h3__ttl {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}

/* =======================================================================

  problem（こんなことでお困りではありませんか？）

======================================================================= */

.problem {
  background: #d9ebee url(img/problem-bg.jpg) no-repeat center top;
  background-size: 100vw;
}

.problem__list {
  background-color: #fff;
  filter: drop-shadow(0px 5px 5px rgba(160,160,160,0.3));
}

.problem__item {
  margin-bottom: 20px;
}

.problem__item:last-child {
  margin-bottom: 0;
}

.problem__item p {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.problem__head {
  font-size: 22px;
  margin-bottom: .8em;
}

/* チェックアイコン */

.problem__head {
  position: relative; /* 追加: ::beforeの位置指定のため */
  padding-left: 35px; /* アイコンの分だけテキストをずらす */
}

.problem__head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width:25px;
  height: 25px;
}

.problem__head::before {
  background: url('img/problem__icon.png') no-repeat center center;
  background-size: contain; 
}

/* 三角 */

.sankaku {
  background-color: #d9ebee;
  width: 100px;
  height: 35px;
  clip-path: polygon(0 0, 100% 0%,50% 100%);

  margin: 0 auto;
  margin-top: -40px;
  margin-bottom: 40px;
}

@media(max-width: 599px) {
  .sankaku {
    width: 80px;
    height: 25px;

    margin-top: -20px;
    margin-bottom: 20px;
  }

  .problem__head {
    font-size: 20px;
    margin-bottom: .5em;
  }
}

/* =======================================================================

  solution（お悩み解決します）

======================================================================= */

.solution__item {
  display: flex;
  background-color: #f7f5f0;
}

.solution__txt {
  flex: 1;
}

.solution__head {
  font-size: 24px;
  margin-bottom: .8em;
}

.solution__img img{
  flex-shrink: 0; 
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 599px) {
  .solution__ttl {
    width: 300px;
    margin: 0 auto; 
  }

  .solution__item {
    flex-direction: column;
  }

  .solution__img img {
    width: 100%;  /* 画像の幅を小さくする */
    height: auto; /* アスペクト比を維持 */
  }

  .solution__img {
    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center;     /* 垂直方向の中央揃え */
    padding: 20px;
    padding-top: 0;
  }

  .solution__head {
    margin-bottom: .6em;
    font-size: 21px;
  }

  .solution__txt {
    text-align: justify;
  }
}

/* =======================================================================

  benefit（メリット）

======================================================================= */

.benefit {
  background: #ceedfe url(img/benefit-bg.jpg) no-repeat center bottom;
  background-size: 100vw;
}

.benefit__item {
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

.benefit__ttl {
  background-color: #005463;
  color: #fff;
  font-size: 24px;
  padding: 30px 40px;
}

.benefit__icon {
  text-align: end;
  margin-top: -110px;
  margin-right: 30px;
}

.benefit__icon img {
  width: 95px;
  height: auto;
}

.benefit__txt {
  margin-top: 30px;
  font-size: 1.1em;
}

.benefit__inner {
  margin-top: 15px;
}

@media(max-width: 599px) {
  .benefit__ttl {
    font-size: 21px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .benefit__icon {
    text-align: end;
    margin-top: -100px;
    margin-right: 20px;
  }

  .benefit__icon img{
    width: 65px;
  }

  .benefit__inner {
    margin-top: 15px;
  }

  .benefit__txt {
    margin-top: 20px;
  }
}

/* =======================================================================

  flow（ご利用の流れ）

======================================================================= */

.flow {
  margin-top: -40px;
}

.flow__item {
  display: flex;
}

.flow__num {
  background-color: #005463;
  align-items: center;
  display: flex;
  border-radius: 5px 0 0 5px;
}

.flow__head {
  font-size: 24px;
  color: #005463;
  padding-bottom: 10px;
}

.flow__inner {
  padding: 35px;
  background-color: #d9ebee;
  border-radius: 0 5px 5px 0;
  width: 100%;
  font-size: 1.1em;
}

/* 三角-2 */

.sankaku-2 {
  background-color: #005463;
  width: 28px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0%,50% 100%);

  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media(max-width: 599px) {
  .flow__item {
    flex-direction: column;
    text-align: center;
  }

  .flow__num {
    width: auto;
    border-radius: 5px 5px 0 0;
    display: inline-block;
  }

  .flow__num img {
    width: 40px;
    height: auto;
  }
  
  .flow__head {
    font-size: 22px;
    padding-bottom: 10px;
  }
  
  .flow__inner {
    padding: 20px;
    border-radius: 0 5px 5px 0;
    width: 100%;
    font-size: 1.1em;
  }

  .flow {
    padding-top: 20px;
  }

  .flow__num {
    padding: 15px;
  }
}

/* =======================================================================
  プロフィール
======================================================================= */

.profile {
  background: #f7f5f0;
}

.profile__ttl {
  font-size: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.profile__inner {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.profile__txt {
  flex: 1;
  font-size: 1.1em;
}


@media(max-width: 599px) {
  .profile__ttl {
    font-size: 1.5em;
    }
  
  .profile__ttl {
  }

  .profile__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .profile__txt {
    flex: 1;
    font-size: 1em;
    text-align: justify;
  }

  .profile {
    padding-bottom: 0;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 30px 0;
  font-size: .8em;
  text-align: center;
  background-color: #005463;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
  color: #fff;
}

@media(max-width: 599px) {
  .footer {
    padding: 20px 0;
  }
  .footer__inner {
    flex-direction: column;
  }

  .footer__logo {
    margin-bottom: 5px;
  }
  .footer__logo img {
    max-width: 80%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.c,
p.a-center {
  text-align: center;
}

.a-red,
p.a-red {
  color: #d93a00;
}
/* =========================================
   追記ここから：tenken LP 強め上書き
========================================= */

/* アクセシビリティ */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 文字組みを少し強化 */
.main p,
.problem__item p,
.solution__txt p,
.benefit__txt,
.flow__inner p,
.profile__txt,
.achievement__inner p,
.faq__item p {
  line-height: 1.95;
  color: #333;
}

.problem__head,
.solution__head,
.benefit__ttl,
.flow__head,
.profile__ttl,
.faq__item h3,
.faq__item h4,
.achievement .h3__ttl {
  line-height: 1.5;
  color: #222;
}

/* 追加セクションの余白 */
.achievement,
.faq {
  margin-top: 90px;
  margin-bottom: 90px;
}

@media screen and (max-width: 599px) {
  .achievement,
  .faq {
    margin-top: 52px;
    margin-bottom: 52px;
  }
}

/* 対応実績 */
.achievement {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  border: 2px solid #d8e3ef;
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.achievement .h3__ttl {
  margin-bottom: 28px;
}

.achievement__inner {
  max-width: 980px;
  margin: 0 auto;
}

.achievement__inner p {
  margin: 0 0 1.5em;
  font-size: 16px;
}

.achievement__inner p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .achievement {
    padding: 28px 18px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .achievement .h3__ttl {
    margin-bottom: 20px;
  }

  .achievement__inner p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* FAQ */
.faq {
  max-width: 960px;
  margin-top: 90px;
  margin-bottom: 90px;
  margin-left: auto;
  margin-right: auto;
}

.faq .h3__ttl {
  margin-bottom: 36px;
  text-align: center;
  line-height: 1.4;
}

.faq__item {
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 18px;
  padding: 28px 28px 24px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(15, 33, 51, 0.08);
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__item h3,
.faq__item h4 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 52px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  color: #0b2c4d;
}

.faq__item h3::before,
.faq__item h4::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: #005463;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 84, 99, 0.22);
}

.faq__item p {
  position: relative;
  margin: 0;
  padding-left: 52px;
  font-size: 24px;
  line-height: 1.9;
  color: #243b53;
}

.faq__item p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 1px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: #d93a00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(217, 58, 0, 0.2);
}

@media screen and (max-width: 599px) {
  .faq {
    margin-top: 52px;
    margin-bottom: 52px;
  }

  .faq .h3__ttl {
    margin-bottom: 24px;
  }

  .faq__item {
    padding: 18px 16px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(15, 33, 51, 0.06);
  }

  .faq__item h3,
  .faq__item h4 {
    margin-bottom: 10px;
    padding-left: 40px;
    font-size: 21px;
    line-height: 1.6;
  }

  .faq__item h3::before,
  .faq__item h4::before,
  .faq__item p::before {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
  }

  .faq__item p {
    padding-left: 40px;
    font-size: 17px;
    line-height: 1.8;
  }
}

/* CTAを少し分かりやすく */
.cta__btn a {
  display: inline-block;
}

.cta__btn a img {
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.cta__btn a:hover img {
  transform: translateY(-4px);
  opacity: 0.92;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* Flowの読みやすさ */
.flow__inner p {
  line-height: 1.8;
}

/* 会社案内だけ少し箱感を追加 */
.profile {
  border-radius: 20px;
}

@media screen and (max-width: 599px) {
  .profile {
    border-radius: 14px;
  }
}

/* フッターの見え方を安定化 */
.footer__inner {
  gap: 20px;
}

.footer__logo img {
  display: block;
}

/* =========================================
   追記ここまで
========================================= */