@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


.grecaptcha-badge { visibility: hidden; }

p{
	line-height: 2.35;
    letter-spacing: 0.03em;
    font-size: 17px;
    color: #4D4D4D;
}

.top-josefin-title-fixedpage {
	font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    line-height: 1!important;
    letter-spacing: -0.05em!important;
    font-weight: 400!important;
    font-size: 45px!important;
    color: #42A995!important;
	margin:0!important;
}



.josefin-title-fixedpage {
	font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    line-height: 1!important;
    letter-spacing: -0.05em!important;
    font-weight: 300!important;
    font-size: 95px!important;
    color: #42A995!important;
	margin:0!important;
	margin-bottom: 15px !important;
}

.subtitle-fixedpage{
	line-height: 1.5;
    font-weight: 500;
    font-size: 22px;
    color: #434343;
}

.about-catchphrase {
    margin-bottom: 41px!important;
    line-height: 1.8!important;
    letter-spacing: 0.1em!important;
    font-size: 39px!important;
    font-weight: 600!important;
    color: #434343!important;
}

.about-heading{
	margin-bottom: 77px!important;
    font-weight: 500!important;
    font-size: 24px!important;
    color: #42A995!important;
}

/* トップページ */
/* メインビジュアル */
.top #content {
  padding-top: 1em;
}
.custom-visual {
  width: 100vw;
  height: 95vh;
  margin-left: calc(50% - 50vw);
  background-image: url('https://lp-agile.net/wp-content/uploads/2025/07/fs05-scaled.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  border-top-left-radius: 12vw;
  border-top-right-radius: 12vw;
  position: relative;
  overflow: hidden;
}
.custom-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(#333 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}
/* 左寄せテキスト */
.visual-text {
  position: absolute;
	z-index: 2; 
  bottom: 20%;
  left: 15%;
  text-align: left;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  max-width: 700px;
}

.visual-text h2 {
  font-size: 64px;
  font-weight: 700;
  margin: 0;
  font-family: 'Irish Grover', cursive;
  line-height: 1.2;
	background: none;
    padding: 0;
	color:#fff;
}
.visual-text h2::before{
	border:none;
}
.visual-text p {
  font-size: 20px;
  margin-top: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
	color:#fff;
}



@media screen and (max-width: 768px) {
  .custom-visual {
    height: 95vh;
    border-top-left-radius: 15vw;
    border-top-right-radius: 15vw;
	 background-position: left center;
	 background-image: url('https://lp-agile.net/wp-content/uploads/2025/07/fs-mb01.jpg');
  }

  .visual-text {
    left: 20px;
    right: 20px;
    bottom: 40px;
    max-width: none;
  }

  .visual-text h2 {
    font-size: 36px;
  }

  .visual-text p {
    font-size: 16px;
  }
}


/* ニュース記事のCSS */

/* === 全体リスト === */
.news_list {
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

.news_list_item {
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}

/* === リンク範囲 === */
.news_list_item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  color: #333;
  text-decoration: none;
  transition: background .25s;
}

.news_list_item:hover {
  background: #f9f9f9;
}

/* === 左側：日付 + バッジ === */
.news_left {
  display: flex;
  align-items: center;
  column-gap: 56px;
  min-width: 340px;
}

.news_list_date {
  font-size: 17px;
  font-weight: 400;
}

/* バッジ */
.news_item {
  background: #42A995;
  color: #fff;
  border-radius: 20px;
  padding: 4px 36px;
  font-size: 13px;
  white-space: nowrap;
}

/* === 中央：タイトル === */
.news_ttl {
  flex: 1;
  margin: 0;
  font-size: 16px;
}

/* === 右端：矢印 === */
.arrow {
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  background: #707070;
  position: relative;
  margin-left: 20px;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
}

/* === モバイル調整 === */
@media (max-width: 768px) {
  .news_list_item > a {
    flex-direction: column;
    align-items: flex-start;
  }
  .news_left {
    column-gap: 16px;
    min-width: auto;
    margin-bottom: 8px;
  }
  .arrow { display: none; }
}



/* 固定ページタイトル */
.c-pageTitle{
	display:none;
}
.main-title {
font-size: 56px!important;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #434343;
	margin-bottom:0;
}
.main-title-subtitle{
	margin-top: 0px;
    letter-spacing: -0.05em;
    font-size: 38px;
    font-weight: 300;
    color: #42A995;
	font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
}

/* 固定ページの写真に丸みを */
.rounded-photo img {
  border-radius: 12px !important;
  display: block;
}

/* 会社概要 */
.company-overview {
  border-top: 1px solid #ddd;
}

.company-overview .company-item {
  padding: 24px 10px;
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 560px) {
  .company-overview .company-item {
    display: grid;
    grid-template-columns: 1fr 5fr;
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
}

/* 会社概要テーブル */
.company-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.company-info-table th,
.company-info-table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}

.company-info-table th {
  text-align: left;
  background-color: #f5f5f5;
  white-space: nowrap;
  width: 30%;
  font-weight: bold;
  color: #333;
}

.company-info-table td {
  color: #555;
}

/* アジルについてページ */
/* アジルの特徴 */
.feature_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature_list li {
  border-top: 1px solid #DBDBDB;
  padding: 40px 0 20px;
}
.feature_list li:last-child {
  border-bottom: 1px solid #DBDBDB;
}

.feature_row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature_number {
  font-size: 43px;
  color: #42A995;
  font-weight: 300;
  min-width: 50px;
}

.feature_title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
	line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 30px;
    font-weight: 600;
}

.feature_desc {
  margin: 10px 0 0 70px;
  font-size: 18px;
  color: #434343;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .feature_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .feature_desc {
    margin-left: 0;
  }

  .feature_number {
    font-size: 30px;
  }

  .feature_title {
    font-size: 16px;
  }

  .feature_desc {
    font-size: 14px;
  }
}



/* コンタクトフォーム7 */
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 15px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: #BE1D1D;
}

.cf7__optional {
  background: #878D8E;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: #F4F4F4;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  padding-left: 72px;
  text-align: center;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #000;
  color: #fff;
  transition: opacity .6s;
}

input[type="submit"]:hover {
  opacity: .6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

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

  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }

}


/* Instagramアイコン付きメニューのカスタマイズ（クラス名ベース） */
.sns-instagram > a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('https://lp-agile.net/wp-content/uploads/2025/07/insta-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
  margin-top: 18px;
}

/* 下線を消す */
.c-gnav > .sns-instagram > a::before,
.c-gnav > .sns-instagram > a::after {
  content: none !important;
  display: none !important;
}

.icon-line-height{
	line-height: 1.8;
}

@media (max-width: 600px) {
	.top-message{
		font-size:16px!important;
	}
}


/* ==========================================
   960px 以上：メニュー間隔とボタン周りを調整
========================================== */
@media (min-width: 960px) {
  .c-gnav > .menu-item > a .ttl {
    display: block;
    font-size: 18px;
  }

  .c-gnav {
    gap: 2vw;
  }

  /* 「お問い合わせ」ボタン用スタイル（クラスで指定） */
  .c-gnav > .contact-menu-btn {
    display: flex;
    align-items: center;
  }

  .c-gnav > .contact-menu-btn > a {
    height: auto !important;
    line-height: 1;
    padding: 18px 60px;
    border-radius: 9999px;
    background: #42A995;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: background .3s ease;
    margin-left: 0;
  }

  .c-gnav > .contact-menu-btn > a:hover {
    background: #3b987f;
  }

  /* 下線を表示させない */
  .c-gnav > .contact-menu-btn > a::before,
  .c-gnav > .contact-menu-btn > a::after {
    content: none !important;
    display: none !important;
  }
}


/* ブログパーツボタン */
.is-style-more_btn a:hover {
    background-color: #f0f0f0;
	color: #666;
}

/* トップページaboutのdot */
.image-with-dots {
  position: relative;
  display: inline-block;
}

.image-dot {
  position: absolute;
  background-color: #42A995;
  border-radius: 50%;
}

/* 上部左3つ */
.image-dot.dot1 {
  width: 60px;
  height: 60px;
  top: -25px;
    left: 60px;
}

.image-dot.dot2 {
  width: 50px;
  height: 50px;
  top: 60px;
  left: -20px;
}

.image-dot.dot3 {
  width: 40px;
    height: 40px;
    top: 150px;
    left: 0px;
}

/* 下部右2つ */
.image-dot.dot4 {
  width: 60px;
  height: 60px;
  bottom: 52px;
    right: -18px;
}

.image-dot.dot5 {
  width: 40px;
  height: 40px;
  bottom: -10px;
    right: 64px;
}

/* 固定ページのタイトル下の写真 */
.custom-full-width-image {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  text-align: right;
}

.custom-full-width-image img {
  display: inline-block;
  width: auto;
  max-width: none;
  height: auto;
  border-top-left-radius: 50px;
  width: 85vw;
}

@media screen and (max-width: 768px) {
  .custom-full-width-image img {
    width: 100vw;
  }
}

/* 記事ページのページネーション */
.news_pagination {
  margin-top: 40px;
  text-align: center;
  background: none;
}

.news_pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  background: none !important;
  box-shadow: none !important;
}

.news_pagination li {
  display: inline;
  background: none !important;
  box-shadow: none !important;
}

.news_pagination li a,
.news_pagination li span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #42A995;
  background: #fff;
  color: #42A995;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: none;
}

.news_pagination li a:hover {
  background-color: #42A995;
  color: #fff;
}

.news_pagination .current {
  background-color: #42A995;
  color: #fff;
  border-color: #42A995;
}

/* トップページ横スクロールアニメーション */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 14px;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s linear infinite;
}

.scroll-infinity__item {
  flex: 0 0 auto;
  aspect-ratio: 6 / 5;
  width: calc(100vw / 5.2);
  overflow: hidden;
  border-radius: 8px;
}

.scroll-infinity__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 767px) {
  .scroll-infinity__item {
    width: calc(100vw / 1.5);
  }

  .scroll-infinity__list {
    gap: 8px;
  }
}

/* お問い合わせプライバシーポリシー */
.privacy-policy {
    height: 350px;
    padding: 2em;
    border: 2px solid #111;
    overflow-y: scroll;
	margin: 50px 0;
	background-color: #F4F4F4;
}
.privacy-policy__box{
	margin-top:15px;
}
.privacy-list {
  margin-left: 1.5em;
  padding-left: 1em;
}

.privacy-list.level-1 {
  list-style-type: decimal;
}

.privacy-list.level-2 {
  list-style-type: decimal;
  margin-top: 0.5em;
  margin-left: 2em;
}
.privacy-policy-consent{
	text-align:center;
	margin: 25px 0;
}

/* フッター */
/* ==== PC/共通 ==== */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

/* 左側：会社情報 */
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.8;
  flex: 1 1 50%;
}

.footer-logo {
  width: 350px;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer-address p {
  margin: 0;
  padding: 2px 0;
  color: #222;
  font-weight: 400;
}

/* 右側：メニュー */
.footer-menu-area {
  flex: 1 1 40%;
  margin-top: 40px;
  text-align: right;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-menu li {
  margin: 0;
  line-height: 1.8;
}

.footer-menu a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 0.7;
}

/* ==== スマホ対応 ==== */
@media screen and (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-menu-area {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }

  .footer-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

/* モバイルフォントサイズ調整 */
.page-font-size{
font-size:20px;	
}
@media screen and (max-width: 767px) {
.main-title {
    font-size: 42px !important;
}
.josefin-title-fixedpage {
font-size: 50px !important;
}
.about-catchphrase {
font-size: 24px !important;
}
.page-font-size{
font-size: 16px !important;
}

}

/* 下部のコンタクトボタン */
.contact-custom-btn a{
	padding: 18px 60px;
}
@media (max-width: 781px) {
 .contact-custom-btn {
    width: 260px;
    max-width: 90vw;
  }
  .contact-custom-btn a {
    width: 100% !important;
    min-width: unset !important;
  }
}

/* デフォルトは非表示（PC・タブレット） */
.sp-only {
  display: none;
}

/* スマホ（SP）だけ表示 */
@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}