@charset "UTF-8";

:root {
  --font-family-gothic: 'Noto Sans JP', Meiryo, sans-serif;
  /* 300 600*/
  --font-family-gothic-en: 'Red Hat Display', 'Noto Sans JP', Hiragino Sans, Hiragino Kaku Gothic ProN, YuGothic, 'Yu Gothic', Meiryo, sans-serif;

  --fontSize-xxsmall: .75rem;
  --fontSize-xsmall: .8rem;
  --fontSize-small: .95rem;
  --fontSize-medium: 16px;
  --fontSize-large: 1.2rem;
  --fontSize-xlarge: 2rem;
  --fontSize-xxlarge: 2.3rem;

  --color-base: #fff;
  --color-main: #000;
  --color-main01: #0085ce;
  --color-main02: #cbe2ed;
  --color-highlight01: #fff200;
  --color-sub01: #e5e5e5;
  --color-sub02: #f4f4f4;
  --color-sub03: #333;
  --color-sub04: #ddd;

  --header-height: 80px;
}


@media screen and (max-width:1024px) {
  :root {
    --header-height: 76px;
  }
}

@media screen and (max-width:630px) {
  :root {
    --header-height: 56px;
  }

  .br-sp {
    display: none;
  }
}

input {
  border: solid 1px var(--color-sub03);
}


/* base */
html {
  font-size: var(--fontSize-medium);
}

body {
  height: 100%;
  min-height: 100%;
  font-size: var(--fontSize-medium);
  /* letter-spacing: 1rem; */
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-family-gothic);
  line-height: 2;
  color: var(--color-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

main {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
th,
em {
  font-weight: 700;
  font-style: normal;
}

strong {
  font-weight: 600;
}


@media screen and (max-width:834px) {
  html {
    /* font-size: .9em; */
    -webkit-tap-highlight-color: transparent;
  }

  :root {
    --fontSize-xxsmall: .75rem;
    --fontSize-xsmall: .8rem;
    --fontSize-small: .95rem;
    --fontSize-medium: clamp(14px, 1.9vw, 16px);
    --fontSize-large: clamp(14px, 3.6vw, 1.2rem);
    ;
    --fontSize-xlarge: clamp(1.2rem, 5.3vw, 2rem);
    --fontSize-xxlarge: clamp(1.3rem, 3.1vw, 2.3rem);
  }

  body {
    font-size: ;
  }
}

a {
  text-decoration: underline;
  transition: 0.2s;
  color: var(--color-primary01);
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.5;
  transition: 0.5s;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(0, 144, 202, 0.5);
  /* Safari */
}

::-moz-selection {
  background: rgba(0, 144, 202, 0.5);
  /* Firefox */
}

@media screen and (min-width:835px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/* common */
.u-textAlign-center {
  text-align: center !important;
}

.u-textAlign-right {
  text-align: right !important;
}

.u-textAlign-left {
  text-align: left !important;
}

.u-bottom-xxsmall {
  margin-bottom: 5px !important;
}

.u-bottom-xsmall {
  margin-bottom: 10px !important;
}

.u-bottom-small {
  margin-bottom: 15px !important;
}

.u-bottom {
  margin-bottom: 20px !important;
}

.u-bottom-0 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.u-bottom-large {
  margin-bottom: 30px !important;
}

.u-bottom-xlarge {
  margin-bottom: 50px !important;
}

.u-bottom-xxlarge {
  margin-bottom: 70px !important;
}

.u-top-xxsmall {
  margin-top: 5px !important;
}

.u-top-xsmall {
  margin-top: 10px !important;
}

.u-top-small {
  margin-top: 15px !important;
}

.u-top {
  margin-top: 20px !important;
}

.u-top-large {
  margin-top: 30px !important;
}

.u-top-xlarge {
  margin-top: 50px !important;
}

.u-top-xxlarge {
  margin-top: 70px !important;
}

.u-link {
  color: var(--color-main01);
  text-decoration: underline;
}

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

  .u-bottom-xxsmall {
    margin-bottom: 5px !important;
  }

  .u-bottom-xsmall {
    margin-bottom: 7px !important;
  }

  .u-bottom-small {
    margin-bottom: 10px !important;
  }

  .u-bottom {
    margin-bottom: 15px !important;
  }

  .u-bottom-large {
    margin-bottom: 20px !important;
  }

  .u-bottom-xlarge {
    margin-bottom: 30px !important;
  }

  .u-bottom-xxlarge {
    margin-bottom: 40px !important;
  }

  .u-top-xxsmall {
    margin-top: 5px !important;
  }

  .u-top-xsmall {
    margin-top: 7px !important;
  }

  .u-top-small {
    margin-top: 10px !important;
  }

  .u-top {
    margin-top: 15px !important;
  }

  .u-top-large {
    margin-top: 20px !important;
  }

  .u-top-xlarge {
    margin-top: 30px !important;
  }

  .u-top-xxlarge {
    margin-top: 40px !important;
  }

}



/* header */

.l-header {
  width: 100%;
  height: var(--header-height);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  left: 0;
  top: 0;
  z-index: 100;
  background: var(--color-base);
}

.l-header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.l-header-side {
  height: 100%;
  display: flex;
  align-items: center;
}

.l-header-logo {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 2rem;
}

.l-header-tel {
  padding-right: 1em;
  padding-left: 1em;
  text-align: center;
}

.l-header-tel-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 1.5rem;
  white-space: nowrap;
  line-height: 1.2;
}

.l-header-tel-text {
  font-size: .8rem;
}

.l-header-tel-num::before {
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  content: "\f590";
  margin-right: 0.2em;
}

.l-header-cv {
  height: 100%;
}

.l-header-cv a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-main01);
  color: var(--color-base);
  text-decoration: none;
  font-feature-settings: "palt";
  padding: 0.9em 1em 0.5em 1.2em;
  letter-spacing: 0;
  box-shadow: -1px 0 0 transparent inset;
}

.l-header-cv-box {
  text-align-last: left;
  padding-left: 2.2em;
  position: relative;
}

.l-header-cv-box::before {
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  display: inline-block;
  content: "\f0e0";
  position: absolute;
  left: 0;
  top: 15%;
  scale: 1.3;

}

.l-header-cv-text {
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.1;
}

.l-header-cv-title {
  font-size: 1.07rem;
  font-weight: 700;
}


/* PCでは非表示 */
.l-header-hamburger {
  display: none;
}

.u-show-sp {
  display: none;
}

@media screen and (max-width: 834px) {
  .l-header-logo {
    padding-left: 1em;
    width: 6em;
  }

  /* CVボタンを隠す */
  .l-header-cv {
    display: none;
  }

  /* ハンバーガーボタンの設置 */
  .l-header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 200;
    margin-right: 20px;
  }

  .l-header-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-main01);
    transition: all 0.3s;
  }

  /* クリック時の三本線アニメーション */
  .l-header-hamburger.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .l-header-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .l-header-hamburger.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* ナビゲーションメニューのコンテナ */
  .l-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-base);
    z-index: 150;
    transition: right 0.3s ease;
    padding-top: var(--header-height);
    overflow-y: auto;
  }

  /* 縦並びへの切り替え */
  .l-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }

  .l-nav-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .l-nav-list li a {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    color: var(--color-main01);
    text-decoration: none;
    width: 100%;
  }

  /* メニューが開いたとき */
  .l-header-nav.is-active {
    right: 0;
  }

  /* スマホ時のみ表示 */
  .u-show-sp {
    display: block;
    width: 100%;
  }

  /* メニュー内のお問い合わせボタン専用スタイル */
  .l-header-nav-cv {
    background-color: var(--color-main01) !important;
    color: var(--color-base) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .l-header-nav-cv-title {
    position: relative;
    padding-left: 1.8rem;
  }

  /* アイコン（メールマーク）の設定 */
  .l-header-nav-cv-title::before {
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    content: "\f0e0";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
  }
}

/* nav */
.l-nav-list {
  display: flex;
  justify-content: space-between;
  border-right: solid 1px var(--color-sub01);
  padding-right: 1em;
}

.l-nav-list>li {
  text-align: center;
}

.l-nav-list>li>a {
  font-size: .95rem;
  display: block;
  font-feature-settings: "palt";
  font-weight: 600;
  letter-spacing: 0.1em;
  color: inherit;
  text-decoration: none;
  padding: 1.2em .8em 1em;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .l-nav-list>li>a {
    padding-right: .5em;
    padding-left: .5em;
    font-size: .8em;
  }
}

@media screen and (max-width: 834px) {
  .l-nav-list {
    padding-right: 0;
  }

  .l-nav-list>li>a {
    padding: 1.2em .8em;
    font-size: 1em;
  }
}

/* mv */
.top-title {
  font-size: var(--fontSize-xxlarge);
  line-height: 1.5;
  text-align: center;
}

.top-sub-title {
  color: var(--color-main01);
  padding-bottom: 2em;
  text-align: center;
}

.mv-box {
  height: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
  /* background-image: url(../img/top-press.jpg);
  background-repeat: no-repeat;
  background-size: cover; */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--color-base);
}

.mv-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -30;
}

.main-title {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: .5em;
  z-index: 50;
}

.large-main-title {
  font-size: 5rem;
  z-index: 50;
}

.large-main-title-sub {
  font-size: 3.7rem;
}

.sub-main-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 0.5em;
  padding: .5em;
  background: var(--color-main01);
}

@media screen and (max-width: 834px) {
  .mv-box {
    height: clamp(300px, 60vw, 600px);
  }

  .main-title {
    font-size: clamp(1rem, 4.7vw, 2.5rem);
  }

  .large-main-title {
    font-size: clamp(1rem, 9vw, 5rem);
  }

  .large-main-title-sub {
    font-size: clamp(1rem, 8vw, 4rem);
  }

  .sub-main-title {
    font-size: clamp(1rem, 4vw, 2rem);
  }
}

/* スライダーのラッパー */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -50;
}

/* スライダーのラッパー */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -50;
}

/* 個々のスライド画像 */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 初期状態 */
  opacity: 0;
  transform: scale(1.1);
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 1.0s linear,
    transform 5.0s ease-in-out,
    visibility 0s 5.0s;
}


/* 現在表示中のスライド */
.slide.active {
  opacity: 1;
  transform: scale(1.0);
  visibility: visible;

  /* active時は遅延なしで表示 */
  transition:
    opacity 1.0s linear,
    transform 5.0s ease-in-out,
    visibility 0s 0s;
}

@media only screen and (max-width: 886px) {
  .bl_mv {
    height: 380px;
  }
}

.top-btn-inner {
  text-align: center;
  z-index: 1;
  position: relative;
}

.top-btn {
  text-align: center;
  text-decoration: none;
  padding: 1em;
  background: var(--color-main01);
  color: var(--color-base);
  font-weight: 600;
  display: inline-block;
  position: relative;
  width: 300px;
}

.top-btn::before {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 1.6em;
  scale: .8;
  color: var(--color-sub04);
}

.l-top-reason {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-bottom: 4%;
}

.l-top-reason-list li {
  padding: 1.4em 3em 1em 2em;
  background: var(--color-base);
  font-size: var(--fontSize-large);
  font-weight: 600;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  z-index: 1;
  position: relative;
}

.l-top-reason-num {
  font-size: var(--fontSize-xlarge);
  color: var(--color-main01);
  margin-right: .6em;
  padding-bottom: .3em;
}

.l-top-reason-title span {
  display: block;
  color: var(--color-main01);
  font-size: var(--fontSize-small);
  line-height: 1;
  text-align-last: left;
}

.l-top-reason-image {
  position: absolute;
  right: -15%;
  top: 5%;
}

.l-top-hr {}

.l-top-hr {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.l-top-hr img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width:630px) {
  .l-top-hr {
    display: none;
  }

  .l-top-reason-list li {
    padding: 1.1em 1em .9em;
  }

  .l-top-reason-title {
    line-height: 1.3;
    text-align: left;
  }

  .l-top-reason-title span {
    padding-bottom: 10px;
  }

  .l-top-reason-image {
    display: none;
  }
}

/* 表示エリアの設定 */
.loop-slider {
  width: 100%;
  height: 15em;
  overflow: hidden;
  background: #000;
  /* 背景を黒にすると隙間が目立ちにくいです */
  margin-top: -2.5em;
  margin-bottom: 2em;
}

.loop-slider__content {
  display: flex;
  flex-direction: row;
  /* 明示的に横並びにする */
  width: max-content;
  /* fit-contentより強力に幅を確保します */
  animation: loop-animation 60s linear infinite;
}

.loop-slider__img {
  height: 15em;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* 画像を切り取らず、全体が収まるように調整 */
  background: #000;
  /* 隙間ができる場合に備えて背景色を設定 */
}

@keyframes loop-animation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* page heading */

.p-page-heading {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em 0;
  background-image: url(../img/plant.jpg);
  background-size: cover;
}

.p-page-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
}

.p-page-heading-title {
  font-size: var(--fontSize-xxlarge);
  color: var(--color-base);
  z-index: 10;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  line-height: 1.5;
}


/* breadcrumb */
.breadcrumb {
  padding: 1em 0;
}

.breadcrumb-list {
  display: flex;
}

.breadcrumb-list li {
  font-size: var(--fontSize-xsmall);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-sub03);
  border-right: 1px solid var(--color-sub03);
  transform: rotate(45deg) translateY(-2px);
  margin: 0 14px 0 6px;
}

/*  */
.p-block {
  width: auto;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw, 30px);
  padding-right: min(3vw, 30px);
}

.top-block {
  padding-top: 4em;
  padding-bottom: 4em;
  position: relative;
}

.p-block-narrow {
  width: auto;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw, 30px);
  padding-right: min(3vw, 30px);
  text-align: center;
}

.bg-gray {
  background: var(--color-sub02);
  position: relative;
}

@media screen and (max-width:834px) {
  .top-block {
    padding-top: min(7vw, 4em);
    padding-bottom: min(7vw, 4em);
    overflow: hidden;
  }

  .top-sub-title {
    padding-bottom: min(3.5vw, 2em);
  }

  .loop-slider {
    height: min(28vw, 15em);
    margin-top: 0;
  }

  .loop-slider__img {
    height: min(28vw, 15em);
  }

  .p-block-narrow {
    text-align: left;
  }
}

/* case study */
.l-column {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding-bottom: 100px;
}

.l-column-contents {
  flex: 1;
  padding-right: 3%;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
}

.card-list li {
  width: 47.5%;
  margin-right: 2.5%;
  margin-bottom: 4%;
  /* box-shadow: 0 4px 8px #e6e7eb;; */
}

.top-card-list li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 4%;
}

.top-block .l-column-contents {
  padding-right: 0;
}

.top-card-list li:last-child {
  margin-right: 0%;
}

.solution-card-list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
}

.solution-card-list li:nth-child(2n) {
  margin-right: 0;
}

.solution-card-list-title {
  line-height: 1.6;
  font-size: 1.5em;
  margin-bottom: .3em;
}

.card-list li a {
  height: 100%;
  display: block;
  background-color: var(--color-base);
  color: inherit;
  text-decoration: none;
  position: relative;
}

.card-list li a:hover {
  opacity: 1;
}

.card-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 19 / 11;
}

a .card-list-img img:hover {
  opacity: 0.6;
  transition: 0.5s;
}

.card-list-block {
  padding: 6% 5%;
}

.solution-card-list-block {
  padding: 3% 0 0;
  text-align: left;
}

.solution-card-list-block .card-list-title {
  font-weight: 600;
  padding-bottom: .5em;
}

.card-list-inner {}

.card-list-title {
  font-size: var(--fontSize-large);
  line-height: 1.6;
}

a .card-list-title:hover {
  text-decoration: underline;
}

.card-list-tags {
  font-size: var(--fontSize-xxsmall);
  font-weight: 500;
  padding-top: 1.2em;
  display: flex;
  flex-wrap: wrap;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

.card-list-tags span {
  /* background-color: var(--color-sub01); */
  color: inherit;
  text-decoration: none;
  padding: 0.1em 1em 0.2em;
  margin: 0 0.2em 0.4em;
  border-radius: .5em;
  /* cursor: pointer; */
  transition: 0.3s;
  font-weight: 600;
  color: var(--color-main01);
  border: solid 1px var(--color-main01);
}

/* .card-list-tags span:hover {
  background: var(--color-main01);
  color: var(--color-base);
  transition: 0.5s;
} */

@media screen and (max-width:630px) {
  .l-column-contents {
    padding-right: 0;
  }

  .l-column {
    display: block;
  }

  .card-list {
    display: block;
  }

  .top-card-list li {
    width: 100%;
    margin-right: 0;
  }

  .card-list-block {
    padding: 3%;
  }

  .card-list li {
    width: 100%;
    margin-right: 0;
  }
}

/* page navi */
.page-navi-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 150px;
}

.page-navi-list li {
  margin-right: 1em;
}

.page-navi-list li:last-child {
  margin-right: 0;
}

.page-navi-list li a {
  padding: .6em .5em .8em 0;
  background: var(--color-sub01);
  border-radius: 30px;
  text-decoration: none;
  width: 15em;
  display: inline-block;
  position: relative;
  font-size: var(--fontSize-small);
  line-height: 1.2;
}

.page-navi-list li a::after {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f358";
  position: absolute;
  right: 1em;
  top: .85em;
  scale: .9;
  color: #000;
}

@media screen and (max-width:834px) {
  .page-navi-list {
    display: none;
  }
}

/* solution method */
.solution-sub-title {
  color: var(--color-main01);
  text-align: center;
  font-weight: 600;
  margin-bottom: 2em;
  font-size: var(--fontSize-large);
}

.l-method {
  /* display: flex;
  justify-content: space-between; */
}

.l-method-title {
  font-weight: 600;
  font-size: 1.5em;
}

.l-method-text {
  /* flex: 1;
  padding-right: 4%; */
  width: auto;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(3vw, 30px);
  padding-right: min(3vw, 30px);
  margin-bottom: 2em;
}

.l-method-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.l-method-list li {
  width: 19%;
  margin: 0 .5% 3%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.l-method-list-title {
  font-size: var(--fontSize-small);
  font-weight: 600;
}

.l-method-list-text {
  padding: 1em 1em 1.5em;
  font-size: var(--fontSize-xsmall);
  line-height: 1.8;
}

.l-method-list-text span {
  display: inline-block;
  width: 6em;
  padding-left: .3em;
  font-size: var(--fontSize-xxsmall);
  color: #595959;
}

.l-method-list-text a {
  text-decoration: none;
  background: var(--color-main01);
  padding: .1em 1em;
  color: var(--color-base);
  border-radius: 15px;
  font-weight: 600;
  display: block;
  margin-top: 0.7em;
  text-align: center;
}

/* side */
.l-column-side {
  width: 25%;
  min-width: 220px;
  position: sticky;
  top: 5em;
}

.side {
  background: var(--color-base);
}

.side+.side {
  margin-top: 2em;
}

.side-title {
  font-weight: 600;
  padding: 0.8em 1em;
  border-bottom: 1px solid var(--color-sub04);
  background: #0085ce;
  color: var(--color-base);
}

.side-title i {
  vertical-align: baseline;
  margin-right: 0.8em;
  scale: 1.15;
  color: var(--color-base);
}

.side-cat li:not(:last-child) {
  border-bottom: 1px solid var(--color-sub04);
}

.side-cat li:last-child {
  padding-bottom: .1em;
}

.side-cat a {
  display: block;
  padding: .8em 1em .8em 1.5em;
  font-size: var(--fontSize-small);
  color: inherit;
  text-decoration: none;
  line-height: 1.35;
  position: relative;
}

.side-cat a:hover {
  background: var(--color-main02);
  opacity: 1;
  transition: 0.3s;
}

.side-cat a::before {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 1.1em;
  scale: .9;
  color: var(--color-sub04);
}

.side-cv {
  background: var(--color-main01);
  padding: 2em;
  text-align: center;
  background-image: url(../img/bg05.jpg);
  background-size: cover;
}

.side-cv-title {
  color: var(--color-base);
  font-size: var(--fontSize-small);
  font-weight: 600;
}

.side-cv-link {
  margin-top: .3em;
}

.side-cv-link a {
  display: inline-block;
  margin: 0 auto;
  padding: .2em 2em;
  text-decoration: none;
  background: var(--color-sub03);
  color: var(--color-base);
  font-weight: 700;
}

@media screen and (max-width:630px) {
  .l-column-side {
    width: 100%;
    position: relative;
    bottom: 2em;
  }
}


/* article */

.article-inner {
  padding: 4% 5% 5%;
  background: var(--color-base);
}

:target {
  scroll-margin-top: var(--header-height);
}

.article-post p {
  line-height: 2;
  font-size: 1.05rem;
}

.article-post p+p {
  padding-bottom: 1.5em;
}

.article-post strong {
  background: var(--color-highlight01);
}

.article-post h2 {
  font-size: var(--fontSize-xlarge);
  margin: 2.5em 0 .3em;
  letter-spacing: .03em;
  scroll-margin-top: var(--header-height);
  line-height: 1.5;
}

.article-post img {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.article-post .block {
  background-color: var(--color-sub02);
  padding: 1.5em 2em;
  margin: 1em 0;
  border-radius: 10px;
}

.article-post a {
  color: var(--color-main01);
}

.article-title {
  font-size: var(--fontSize-xxlarge);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .03em;
  padding-top: .3em;
  padding-bottom: 1em;
}

.article-thumb {
  padding-bottom: 1em;
}


.p-table01 {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}

.p-table01 th,
.p-table01 td {
  border: 2px solid var(--color-base);
  background-color: var(--color-sub02);
  padding: .5em 1.5em;
  font-size: var(--fontSize-small);
}

.p-table01 th {
  background-color: var(--color-main01);
  color: var(--color-base);
  text-align: center;
  width: 15em;
  font-weight: 600;
  font-size: var(--fontSize-small);
}

.p-table02 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.p-table02 th,
.p-table02 td {
  border: 2px solid var(--color-base);
  background-color: var(--color-sub02);
  padding: .5em 1.5em;
  font-size: var(--fontSize-small);
}

.p-table02 thead th {
  background-color: var(--color-base);
  text-align: center;
}

.p-table02 tbody th {
  font-weight: 600;
  text-align: center;
  background: var(--color-main01);
  color: var(--color-base);
  min-width: 8em;
}


/* table of contents */
.p-toc {
  margin-top: 5em;
  margin-bottom: 5em;
  border: 2px solid var(--color-sub04);
  border-radius: 3px;
}

.p-toc div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 1em 0;
  background-color: var(--color-sub01);
  font-weight: 600;
  font-size: 1.1em;
}

.p-toc ol {
  list-style-type: disc;
  margin: 0;
  overflow: hidden;
  letter-spacing: .03em;
}

.p-toc i {
  vertical-align: baseline;
  margin-right: 0.8em;
  scale: 1;
}

.p-toc>ol {
  padding: 1em 1.5em 1.5em 3.5em;
  font-size: var(--fontSize-large);
}

.p-toc ol ol {
  margin-top: .5em;
  padding-left: 2em;
  font-size: var(--fontSize-medium);
}

.p-toc li {
  padding: .3em 0;
  font-weight: 600;
}

.p-toc ol ol li {
  font-weight: 500;
}

.p-toc a {
  text-decoration: none;
  color: var(--color-main);
}

.p-toc a:hover {
  text-decoration: underline;
  transition: 0.5s;
}

/* faq */
.faq-container {
  width: 100%;
  margin: 2em auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

/* 質問部分 */
.faq-question {
  position: relative;
  padding: 20px 50px 20px 60px; /* 左側にアイコン分の余白を作る */
  font-weight: bold;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s;
  font-size: 1.1em;
}

.faq-question:hover {
  background-color: #fafafa;
}

/* Qアイコンの作成 */
.faq-question::before {
  content: "Q";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #007bff; /* 青色 */
  color: #fff;
  border-radius: 50%; /* 正円にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* 右側の矢印アイコン */
.faq-question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-sub03);
  border-right: 2px solid var(--color-sub03);
  transform: translateY(-50%) rotate(135deg); /* 下矢印 */
  transition: transform 0.3s;
}

/* 開いている時の矢印 */
.faq-question.is-active::after {
  transform: translateY(-20%) rotate(-45deg); /* 上矢印 */
}

/* 回答部分 */
.faq-answer {
  display: none;
  padding: 20px 50px 20px 60px; /* 左側をQに合わせる */
  position: relative;
  line-height: 1.6;
  background-color: #fcfcfc;
}

/* Aアイコンの作成 */
.faq-answer::before {
  content: "A";
  position: absolute;
  left: 15px;
  top: 20px; /* 回答は1行目横に配置 */
  width: 30px;
  height: 30px;
  background-color: #ff5722; /* オレンジ色 */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* banner */
/***********
banner
************/

.l-banner {
  display: flex;
  flex-wrap: wrap;
}

.l-banner li {
  width: 48.5%;
  margin-right: 3%;
  margin-top: 3%;
  margin-bottom: 3%;
}

.l-banner li:last-child {
  margin-right: 0;
}

.l-banner li a {
  display: block;
  min-height: 10.5em;
  position: relative;
  color: var(--color-base);
  text-decoration: none;
  overflow: hidden;
}

.l-banner-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: min(4em, 5.5vw);
  padding-right: 1em;
}

.l-banner-title {
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  position: relative;
  line-height: 1.5;
}

.l-banner-title::before {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f192";
  position: absolute;
  left: -1.4em;
  top: .4em;
  scale: .7;
  color: var(--color-base);
}


.l-banner-subTitle {
  font-size: var(--fontSize-small);
}

.l-bg05 {
  background: url(../img/bg05.jpg);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* related contents */
.related-contents {
  display: flex;
  flex-wrap: wrap;
}

.related-contents li {
  width: 32%;
  margin-right: 2%;
  /* box-shadow: 0 4px 8px #e6e7eb;; */
}

.related-contents li:last-child {
  margin-right: 0;
}

.related-contents li a {
  height: 100%;
  display: block;
  background-color: var(--color-base);
  color: inherit;
  text-decoration: none;
  position: relative;
}

.related-contents li a:hover {
  opacity: 1;
}

.related-contents-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 19 / 11;
}

a .related-contents-img img:hover {
  opacity: 0.6;
  transition: 0.5s;
}

.related-contents-block {
  padding: 6% 5%;
}

.related-contents-title1 {
  margin: 1em 0 .5em;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.related-contents-title {
  font-size: var(--fontSize-small);
  line-height: 1.6;
  font-weight: 600;
}

.related-contents-title:hover {
  text-decoration: underline;
  transition: 0.5s;
}

.related-contents-tags {
  font-size: var(--fontSize-xxsmall);
  font-weight: 500;
  padding-top: 1.2em;
  display: flex;
  flex-wrap: wrap;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

.related-contents-tags span {
  /* background-color: var(--color-sub01); */
  color: inherit;
  text-decoration: none;
  padding: 0.1em 1em 0.2em;
  margin: 0 0.2em 0.4em;
  border-radius: .5em;
  /* cursor: pointer; */
  transition: 0.3s;
  font-weight: 600;
  color: var(--color-main01);
  border: solid 1px var(--color-main01);
}



@media screen and (max-width: 630px) {
  .p-table01 {}

  .p-table01 thead {
    display: none;
  }

  .p-table01 th,
  .p-table01 td {
    display: block;
    border: none;
    text-align: center;
    padding: .2em 0;
  }

  .p-table01 tbody th {
    background: #cdcdcd;
    color: var(--color-main);
    width: 100%;
  }

  .article-post p {
    font-size: var(--fontSize-medium);
  }

  .l-banner {
    display: block;
  }

  .l-banner li {
    width: 100%;
    margin-right: 0;
  }

  .l-banner-title {
    font-size: ;
  }

  .l-banner li a {
    min-height: 9em;
  }

  .l-banner-block {
    padding-left: min(4em, 9vw);
  }
}

/* flow */
.l-flow {
  padding: 4em 0 4em;
}

.l-flow-list li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-top: solid 1px var(--color-sub04);
  padding: 3.5em 2em;
}

.l-flow-list-num {
  max-width: 100px;
  margin-right: 3em;
}

.l-flow-list-content {
  flex: 1;
}

.l-flow-list-content-title {
  font-size: var(--fontSize-xlarge);
}

.l-flow-list-content-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.l-flow-list-content-text {
  flex: 1;
}

.l-flow-list-content-text h3 {
  font-size: var(--fontSize-large);
}

.l-flow-list-content-image {
  max-width: 350px;
  margin-left: 2em;
}

.after-support {
  padding: 2em 3em;
  text-align: left;
  border-radius: .3em;
  border: solid 1px var(--color-main01);
  margin-bottom: 8em;
}

.after-support-title {
  font-size: var(--fontSize-xlarge);
  color: var(--color-main01);
}

.after-support i {
  margin-right: .3em;
}

@media screen and (max-width:834px) {
  .l-flow-list li {
    display: block;
    padding: 1.5em 0 2em;
  }

  .l-flow-list-num {
    max-width: 50px;
    margin: 0 auto;
  }

  .l-flow-list-content-title {
    text-align: center;
  }

  .l-flow-list-content-inner {
    display: block;
  }

  .l-flow-list-content-image {
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
  }

  .after-support {
    padding: 1.5em 2em;
  }
}

/* reason */

.l-reason {
  margin-bottom: 7em;
}

.l-reason-inner {
  display: flex;
  justify-content: space-between;
}

.l-reason-text {
  flex: 1;
}

.l-reason-image {
  min-width: 350px;
  width: 40%;
  margin-right: 2em;
  margin-top: .7em;
  position: relative;
}

.l-reason-num {
  color: var(--color-main01);
  font-weight: 700;
  position: absolute;
  top: -1em;
  left: .5em;
  background: var(--color-main01);
  width: 5em;
  height: 5em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-reason-num p {
  color: var(--color-base);
  font-size: var(--fontSize-xlarge);
  line-height: 1;
  text-align: center;
}

.l-reason-num span {
  display: block;
  color: var(--color-base);
  font-size: var(--fontSize-xsmall);
  line-height: 1;
  text-align: center;
}

.l-reason h2 {
  font-size: var(--fontSize-xlarge);
  margin-bottom: .5em;
  line-height: 1.5;
}

.l-reason-sub-title {
  color: var(--color-main01);
  font-size: var(--fontSize-large);
  font-weight: 700;
  margin-bottom: .2em;
}

.l-reason-sub-title2 {
  font-size: var(--fontSize-large);
  margin-top: .8em;
  position: relative;
  padding-left: 1.5em;
}

.l-reason-sub-title2::before {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f192";
  position: absolute;
  left: 0;
  top: .55em;
  scale: .7;
  color: var(--color-main01);
}

.l-reason-wrapper {
  margin-bottom: 100px;
}

@media screen and (max-width:834px) {
  .l-reason-inner {
    display: block;
  }

  .l-reason-image {
    width: 100%;
  }

  .l-reason-sub-title {
    margin-bottom: 0;
    margin-top: 1em;
  }
}

/* cta */
.l-cta {
  background: var(--color-main01);
  padding: 5em 0;
  text-align: center;
  background-image: url(../img/bg05.jpg);
  background-size: cover;
}

.l-cta-text {
  font-size: var(--fontSize-large);
  color: var(--color-base);
  font-weight: 600;
  margin-bottom: 1em;
}

.l-cta-btn a {
  text-decoration: none;
  background: var(--color-base);
  padding: .5em 1em;
  font-size: var(--fontSize-xlarge);
  color: var(--color-main01);
  font-weight: 700;
}

.l-cta-btn a i {
  vertical-align: baseline;
  margin-right: 0.8em;
  scale: 1.15;
  color: var(--color-main01);
}

/* footer */
.l-footer {
  background: var(--color-sub03);
  padding: 3em 0 0;
}

.l-footer-inner {
  display: flex;
  justify-content: space-between;
}

.l-footer-sitemap {
  display: flex;
  justify-content: flex-end;
}

.l-footer-copy {
  color: var(--color-base);
  text-align: right;
  font-size: var(--fontSize-xxsmall);
  padding-top: 4em;
  padding-bottom: 3em;
  letter-spacing: 0.1em;
}

.l-footer-list {
  margin-left: 3em;
}

.l-footer-list li {
  padding-bottom: .5em;
  padding-left: 1em;
}

.l-footer-list a {
  text-decoration: none;
  color: var(--color-base);
  font-size: var(--fontSize-small);
  position: relative;
}

.l-footer-list a::before {
  font-family: 'Font Awesome 7 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  left: 0;
  top: .7em;
  scale: .7;
  color: var(--color-sub04);
}

@media screen and (max-width:630px) {
  .l-cta-text {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .l-cta-btn a {
    font-size: clamp(1.1rem, 4.4vw, 1.7rem);
  }

  .l-footer-inner {
    display: block;
  }

  .l-footer-info {
    display: flex;
    justify-content: center;
  }

  .l-footer-sitemap {
    display: none;
  }

  .l-footer-copy {
    text-align: center;
  }
}