@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
*/

.post_content h2 {
	font-size: 2em;
	margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
	.post_content h2 {
		font-size: 1.5em;
	}
	
	.p-mainVisual__slideTitle {
		font-size: 30px;
		font-weight: 700;
	}
	
	.p-mainVisual__slideText {
		font-size: 18px;
		font-weight: 700;
	}
}

@media (min-width: 600px) {
    .p-mainVisual__slideTitle {
        font-size: 40px;
    }
}

.cta-buttons .swell-block-columns__inner {
	justify-content: center;
/* 	column-gap: 30px; */
}

.cta-buttons.swell-block-columns .swell-block-column {
	width: 300px;
}

/* モーダル全体のコンテナ */
#appeal-link-scroll-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow-y: auto; /* モーダルが画面からはみ出る場合にスクロール可能にする */
    padding: 20px; /* 小さな画面でコンテンツが端に寄りすぎるのを防ぐ */
    box-sizing: border-box;
}

/* モーダルコンテンツのラッパー */
.appeal-link-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* レスポンシブ対応 */
    max-width: 600px; /* 最大幅を調整 */
    background-color: #fff; /* 背景色を追加 */
    border-radius: 8px; /* 角丸にする */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 20px; /* コンテンツ内の余白 */
    box-sizing: border-box;
	max-height: 70vh;
	overflow: scroll;
}

@media screen and (max-width: 767px) {
    .appeal-link-modal-content {
        width: 90%;
    }
}

/* 固定ページの内容を囲む要素のスタイル */
.appeal-link-modal-content .modal-content-inner {
    padding: 10px;
    color: #333; /* テキストの色を設定 */
    text-align: left; /* テキストの配置を左寄せに戻す */
}

.modal-content-inner * {
	margin-bottom: 2em;
}

/* 固定ページ内の画像スタイル */
.appeal-link-modal-content img {
    max-width: 100%; /* 画像が親要素からはみ出ないようにする */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 閉じるボタン */
#appeal-link-close-modal {
    position: absolute;
    top: 10px; /* コンテンツの上部に移動 */
    right: 10px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333; /* ボタンの色を調整 */
	padding: 0;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    #appeal-link-close-modal {
        top: 5px;
        right: 5px;
    }
}

/* 紹介 */
.page-introduce-campaign #content {
	background: linear-gradient(180deg, #EEF1F4, transparent);
	max-width: unset;
}

.page-introduce-campaign .post_content {
	margin-top: 30px;
}

.page-introduce-campaign .c-pageTitle {
	display: none;
}

.intro-fv .swell-block-columns__inner {
	align-items: center;
}

.page-introduce-campaign .present-card .swell-block-column {
	border-radius: 5px;
}

.page-introduce-campaign .present-card h2 {
	font-size: 1.4em;
}

.page-introduce-campaign .snow-monkey-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.page-introduce-campaign .post_content h2 {
	margin: 2.5em 0 2em;
}

/* PCのステップを横並びに */
@media (min-width: 960px) {
    .page-introduce-campaign .swell-block-step.is-style-big {
        display: flex;
    }
}

/* ステップの三角の色 */
.page-introduce-campaign .is-style-big > .swell-block-step__item {
    --swl-step_arrow_color: #2d3748; 
}

/* PCの三角の装飾の位置 */
@media (min-width: 960px) {
    .page-introduce-campaign .is-style-big > .swell-block-step__item:before {
        left: 100%;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
    }
}

/* 枠の点線 */
.page-introduce-campaign .is-style-big>.swell-block-step__item {
    border-top: 1px dashed #2d3748;
}


/* note */
.note-blog-list {
  max-width: 100%;
  margin: 20px 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .note-blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.note-blog-item {
  border: 1px solid #fefefe;
  border-radius: 5px;
  /* padding: 20px; */
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.note-blog-item:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.note-blog-thumbnail {
  line-height: 0;
  /* border-radius: 8px; */
}

.note-blog-thumbnail img {
  border-radius: 5px 5px 0 0;
}

.note-blog-content {
  padding: 12px;
}

.note-blog-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #001E50;
  font-weight: 700;
}

.note-blog-title a {
  color: #333;
  text-decoration: none;
}

.note-blog-title a:hover {
  color: #007cba;
  text-decoration: underline;
}

.note-blog-date {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.note-blog-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.note-blog-read-more {
  display: inline-block;
  background: #007cba;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.note-blog-read-more:hover {
  background: #005a87;
  color: #fff;
  text-decoration: none;
}

.note-blog-error {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 15px;
  color: #721c24;
}

@media (max-width: 768px) {
  .note-blog-item {
      padding: 15px;
  }
  
  .note-blog-title {
      font-size: 16px;
  }
}