﻿@charset "utf-8";
/*
Theme Name:  Original-template
Theme URI:
Description: 
Version: 1.02
Author: Wordpressマスター
Author URI: https://coconala.com/users/15338
Tags:
*/

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	list-style: none;
}

img {
max-width: 100%;
height: auto;
width /***/:auto;
	display: block;
}

p {margin-bottom: 20px;}

a {text-decoration: none;}

body{
	font: 100%/1.4 "メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	background: #ffffff;
	color:#333333;
	line-height: 180%;
}

@media (max-width: 768px) {
.o_order1 {order:1;}
.o_order2 {order:2;}
}

/** ヘッダー **/
.header {
    background-color: hsla(0,0%,100%,.9);
    height: 78px;
    position: relative;
    transition: all .3s;
    width: 100%;
    z-index: 1000;
box-shadow: 0 4px 3px -3px rgb(0 0 0 / 60%);
    -webkit-box-shadow: 0 4px 3px -3px rgb(0 0 0 / 60%);
    -moz-box-shadow: 0 4px 3px -3px rgba(0,0,0,.6);
    margin-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header_in {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
    width: 100%;
}
.header_logo {
	margin: 0;
}
.header_logo a {
	display:flex;
    align-items: center;
}
.header_logo-img {
    width: 70px;
}
.header_logo-title-img {
    width: 120px;
    margin-left: 15px;
}

@media (min-width: 1024px) {
  .show_sp { display: none; }
}

@media (max-width: 1024px) {
  .show_pc { display: none !important; }

  .header {
    height: 50px;
    padding: 8px 16px;
    position: fixed;
    top: 0;
  }

  .header_in {
    width: 100%;
  }
  .header_logo-img {
    width: 50px;
  }
  .header_logo-title-img {
    width: 80px;
    margin-left: 15px;
  }

}

/** メニュー **/
/* ===== 共通リセット ===== */
#main_menu,
#main_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== 1階層目 ===== */
#main_menu {
    display: flex;
}

#main_menu > li {
    position: relative;
}

#main_menu > li > a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
    color: #333;
    font-weight: 600;
}
#main_menu > li > a:hover {
    color: #0082C9;
}

/* ===== 2階層目 ===== */
#main_menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
    background: #fff;
    z-index: 1000;
}

#main_menu > li:hover > .sub-menu {
    display: block;
}

#main_menu .sub-menu > li {
    position: relative;
}

#main_menu .sub-menu > li > a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
#main_menu .sub-menu > li > a:hover {
    color: #0082C9;
}

/* ===== 3階層目 ===== */
#main_menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

#main_menu .sub-menu > li:hover > .sub-menu {
    display: block;
}



#header_pc {transition: top 0.3s ease;}


/* ===== SPメニュー（初期状態） ===== */
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    transform 0.4s ease,
    opacity 0.3s ease,
    visibility 0.4s;
}

/* 表示時 */
.sp-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 上部エリア */
.sp-menu__top {
  position: relative;
  padding: 8px 16px;
}

/* ロゴ */
.sp-menu__logo {
margin-bottom: 50px;
}
.sp-menu__logo img {
max-width: 75px;
}

/* 閉じるボタン */
.sp-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/** スマホメニュー **/
#sp_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sp_menu li {
    position: relative;
    list-style: none;
}

#sp_menu li a {
    display: block;
    padding: 15px 50px 15px 15px; /* 右側にボタン用の余白を確保 */
    border-bottom: 1px dotted #ccc;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* 下層メニューは最初は非表示 */
#sp_menu .sub-menu {
    display: none;
    margin: 0;
    padding: 0;
}

#sp_menu .sub-menu li a {
    padding-left: 30px; /* 子メニューのインデント */
}

#sp_menu .sub-menu .sub-menu li a {
    padding-left: 45px; /* 孫メニューのインデント */
}

/* 開閉ボタン（＋）の作成 */
.menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px; /* aタグの高さに合わせる */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    background-color: #333;
    transition: transform 0.3s;
}

/* 横棒 */
.menu-toggle::before {
    width: 12px;
    height: 2px;
}

/* 縦棒（＋にする） */
.menu-toggle::after {
    width: 2px;
    height: 12px;
}

/* 開いている時は縦棒を回転させて横棒に重ねる（ーにする） */
.is-open > .menu-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}




/** パンくずナビ **/
.pan {
margin-top: 78px;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
background: #E5F2F9;
}
.pan ol {
	width: 100%;
	max-width: 1200px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0 auto;
  padding: 10px;
  white-space: nowrap;
}
.pan li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.pan li a {
  color: #333;
  text-decoration: none;
}
.pan li a:hover {
  text-decoration: underline;
}
.pan li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #999;
  font-size: 16px;
}
.pan .fa-home {
  margin-right: 4px;
}
@media (max-width: 1024px) {
	.pan {margin-top: 50px;}
}
@media (max-width: 560px) {
.pan li {font-size: 12px;}
}


/** メインビジュアル（トップページ） **/
.main_v {
    background-color: #fff;
    margin: 0 0 0 0;
    position: relative;
    width: 100%;	
	text-align: center;
}

/** メインビジュアル（下部ページ） **/
.under_eyecatch {
	background: #f2f2f2;
	    box-shadow: 0 4px 3px -3px rgb(0 0 0 / 60%);
    -webkit-box-shadow: 0 4px 3px -3px rgb(0 0 0 / 60%);
    -moz-box-shadow: 0 4px 3px -3px rgba(0,0,0,.6);
	padding: 50px 0;
}
.under_eyecatch_in {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.under_eyecatch_thumbnail {}
@media (max-width: 1024px) {
.under_eyecatch {padding: 50px 20px;}
}


/** 固定ページ **/
.o_page {
    margin: 80px auto 80px;
    max-width: 1080px;
    padding: 0 20px;
    width: 100%;
}
.o_page h1 {
color: #183028;
    font-family: inherit;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 50px;
}
.o_page {}
.o_page h2 {
    margin: 50px 0 20px;
}
.o_page h2:after {
    content: "";
    display: block;
    height: 2px;
    background: #0082C9;
    margin-top: 10px;
}
.o_page h2.top_title {
    text-align: left;
}
.o_page h2.top_title:after {
	display: none;
}
.o_page h2.top_title span {
    color: #0082C9;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 10px;
}

.o_page h3 {
  padding: 0.5em;
  color: #494949;
  background: #e5f2f9;
  border-left: solid 5px #0082C9;
  border-bottom: solid 1px #0082C9;
  border-top: solid 1px #0082C9;
  border-right: solid 1px #0082C9;
  border-radius: 10px;
  margin: 30px 0 20px;
}

.o_page h4 {
  font-size: 1.16em;
  color: #0082C9;
  border-bottom: solid 2px #0082C9;
  margin: 30px 0 20px;
}

.page_content ul,
.page_content ol {margin: 0 0 20px 20px;}
.page_content ul li {list-style: disc;}
.page_content ol li {list-style: ldecimal;}
@media (max-width: 1024px) {
  .o_page h1 {margin-bottom: 30px; font-size: 24px;}
  .o_page h2.top_title span {font-size: 14px;}
}

@media (max-width: 560px) {
.page_content {font-size: 90%;}
}



/** 固定ページ（横幅100%）**/
.page_one {}
.page_one_content {}
@media (max-width: 1024px) {

}


/** 投稿ページ **/
.o_single {
    margin: 80px auto 80px;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}
.o_single h1 {
color: #183028;
    font-family: inherit;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 50px;
}
.single_data {
display: flex;
flex-wrap: wrap;
	margin-bottom: 10px;
}
.single_time {
	width: 100%;
	margin-bottom: 10px;
	text-align: right;
}
.single_cat {
	width: 100%;
}
.single_cat_list {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
	margin-bottom: 30px;
}
.single_cat_list li {margin: 0 10px 10px 0;}
.single_cat_list li:last-child {margin-right: 0;}

.single_cat_list a {
	padding: 5px 10px;
	background: #333;
	color: #fff;
	text-decoration: none;
	font-size: 90%;
 border-radius: 10px;
}

.single_content_out {
	border: 1px solid #cccccc;
}
.single_content_out .wp-post-image {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.single_content {
	width: 100%;
	max-width: 800px;
	margin: 80px auto;

}
.single_content h2 {
  margin: 50px 0 20px;
  position: relative;
  line-height: 120%;
}
.single_content h2:after {
  content: "";
  display: block;
  height: 4px;
  background: #0082C9;
    margin-top: 10px;
}
.single_content h3 {
  padding: 0.5em;
  color: #494949;
  background: #e5f2f9;
  border-left: solid 5px #0082C9;
  border-bottom: solid 1px #0082C9;
  border-top: solid 1px #0082C9;
  border-right: solid 1px #0082C9;
  border-radius: 10px;
  margin: 30px 0 20px;
}
.single_content ul,
.single_content ol {margin: 0 0 20px 20px;}
.single_content ul li {list-style: disc;}
.single_content ol li {list-style: ldecimal;}

.single_content .page-overview {
  background-color: #E5F2F9;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 50px;
  margin-top: 50px;
  font-size: 14px;
}

.single_content .page-table-of-contents {
	
}
.single_content .page-table-of-contents .lwptoc_i {
  border-radius: 10px;
}
.single_content .text-contents {
  margin: 15px 20px;
}
.single_content .img-contents {
  margin: 15px 20px;
}

@media (max-width: 1024px) {
  .o_single h1 {font-size: 24px;}
}
@media (max-width: 560px) {
  .o_single {padding: 0 10px;}
  .single_content_out {border: none;}
  .single_cat_list {justify-content: flex-start;}
  .single_content {font-size: 90%;}
}


/** カテゴリーページ **/
.category_loop {
	width: 100%;
	max-width: 1200px;
	margin: 50px auto;
}
.category_loop h1.category_title {font-size: 30px; margin-bottom: 20px;}
.category_loop h1.category_title span {
    color: #0082C9;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 10px;
}
.category_loop h2.category_name {
    padding: 5px 10px;
    background: #0082C9;
    color: #fff;
    text-decoration: none;
    font-size: 90%;
    border-radius: 10px;
    width: 250px;
    margin-bottom: 30px;
}
@media (max-width: 1230px) {
  .category_loop {width: auto; margin: 30px 10px;}
}

@media (max-width: 560px) {
  .category_loop {width: auto; margin: 30px 5px;}
  .category_loop h1.category_title {font-size: 25px;}
  .category_loop h1.category_title span {font-size: 14px;}
  .category_loop h2.category_name {width: 200px;}
}

/** ページネーション **/
#pagination {
    display: flex;
    gap: 8px;
margin-top: 50px;
}
#pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    line-height: 1;
}
#pagination .page-numbers.current {
    background-color: #e0e0e0;
    cursor: default;
}
#pagination a.page-numbers:hover {
    background-color: #e0e0e0;
}



/** ブロックエディター **/
.o_title_h2 {
font-size: 40px;
    color: #183028;
    font-family: inherit;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 50px !important;
    text-align: center;
}
.o_title_h2:after {display: none !important;}
.o_title_h2 span {
    color: #0082C9;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 20px;
}

.block_001 {
	background: #fff;
	padding: 100px 0;
	width: 100%;
}
.block_001_in {
    margin: auto;
    max-width: 1200px;
    width: 100%;
}
.block_001_in_in {width: 45%;}

.block_001_in .is-layout-flex {justify-content: space-between;}
.wp-block-column.block_001_in_in {
    flex-grow: 0 !important;  /* flex-grow: 1 を上書き */
    width: 45% !important;    /* カラムの幅を40%に設定 */
}
@media (max-width: 1024px) {
.o_title_h2 {font-size: 24px;}
.o_title_h2 span {font-size: 14px;}
.block_001_in {padding: 0 20px;}
}
@media (min-width: 768px){
.wp-block-columns.is-layout-flex:not(.is-not-stacked-on-mobile) > .wp-block-column.block_001_in_in {
    flex-basis: auto !important; /* flex-basis: 0; を上書き */
    width: 45% !important;       /* 幅を40%に設定 */
    flex-grow: 0 !important;     /* flex-grow を 0 に設定 */
}
}


.block_last {margin-bottom: -50px;}

.block_002 {
    background-color: #f2f2f2;
    padding: 100px 0;
    width: 100%;
}
.block_002_in {
    margin: auto;
    max-width: 1200px;
    width: 100%;
}
.block_002_in_in {width: 45%;}

.block_002_in .is-layout-flex {justify-content: space-between;}
.wp-block-column.block_002_in_in {
    flex-grow: 0 !important;  /* flex-grow: 1 を上書き */
    width: 45% !important;    /* カラムの幅を40%に設定 */
}
@media (min-width: 768px){
.wp-block-columns.is-layout-flex:not(.is-not-stacked-on-mobile) > .wp-block-column.block_002_in_in {
    flex-basis: auto !important; /* flex-basis: 0; を上書き */
    width: 45% !important;       /* 幅を40%に設定 */
    flex-grow: 0 !important;     /* flex-grow を 0 に設定 */

}
}




@media (max-width: 1024px) {
.block_002_in {padding: 0 20px;}

}


/************ ここから各ページ ************/

/** トップページ **/

.top_title {
	font-size: 40px;
	color: #183028;
    font-family: inherit;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
	margin-bottom: 50px;
    text-align: center;
}
.top_title span {
color: #0082C9;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 20px;
}
.top_block {
	background: #fff;
	border-bottom: 1px solid #E5F2F9;
	padding: 80px 0;
	width: 100%;
}
.top_block_in {
    margin: auto;
    max-width: 1200px;
    width: 100%;
}
.block_001_in_in {width: 45%;}

.top_block_gray {
    background-color: #E5F2F9;
    padding: 80px 0;
    width: 100%;
}
@media (max-width: 1024px) {
	.top_title {font-size: 24px;}
	.top_title span {font-size: 14px;}
}
@media (max-width: 768px) {
.top_block_in {padding: 0 20px;}
}


/** トップページ（サービス） **/
.diagonal_list_1 {
max-width: 900px;
margin: 0 auto 20px;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
gap: 20px; 
}

.wp-block-column .service-list-img {
    margin-bottom: 0px;
    border: 1px solid #0082C9;
    background-color: #FFF;	
    border-radius: 10px 10px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 190px;
}
.wp-block-column .service-list-img-only {
    margin-bottom: 0px;
    border: 2px solid #0082C9;
    background-color: #FFF;	
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
}

.service-list-info {
    background: #0082C9;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 10px 10px;
}


.diagonal_list_2 {
max-width: 1200px;
margin: 0 auto;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
gap: 20px; 
}
@media (max-width: 768px) {
.diagonal_list_1 {flex-direction: column;}
.diagonal_list_1 > div {width: 100%;}
.diagonal_list_2 {flex-wrap: wrap; justify-content: space-between; gap: 10px;}
.diagonal_list_2 > div {width: calc(50% - 5px);}
.wp-block-columns.is-not-stacked-on-mobile.diagonal_list_2 {flex-wrap: wrap !important;}
.wp-block-columns.is-not-stacked-on-mobile.diagonal_list_2 > div {flex-basis: auto;}
}

@media (max-width: 560px) {}





/** ABOUT **/
.top_about {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.top_about_in {width: 45%;}
.top_about_in img {margin: 0 auto;}
.top_about_btn {text-align: center; margin-top: 50px;}
@media (max-width: 768px) {
.top_about_in {width: 100%; margin-bottom: 50px;}
	.top_about_in:first-child {margin: 0;}
}





/** 運営者情報 **/
.page-company h1 {
	display:none;
}

.page-company .fp_eyecatch .fp_eyecatch-inner {
    margin-top: -60px;
}
.page-company .fp_eyecatch h2.fp_eyecatch-title:after {
	display:none;
}

@media (max-width: 1024px) {
  .page-company .fp_eyecatch .fp_eyecatch-inner {
    padding-top: 0px;
  }
  .page-company .fp_eyecatch .fp_eyecatch-inner .fp_eyecatch-title {
    padding: 0px 0px; top:0px;
  }
}
@media (max-width: 768px) {
.top_block_in {padding: 0 20px;}
}


/** プライバシーポリシー **/
.page-privacy-policy h1 {
	display:none;
}
/** 利用規約 **/
.page-terms h1 {
	display:none;
}



/** トップページ（アピールポイント） **/

/* コンテナを主役カードに */
.rewards__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0;

  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.08);

  overflow: hidden;
}

/* 各アイテム */
.rewards__item {
  text-align: center;
  flex: 1 1 0;
  padding: 50px 20px;
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rewards__item:hover {
  transform: translateY(-6px);
}

/* 立体的な区切り線（白ベース） */
.rewards__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    #dcdcdc,
    transparent
  );
}

/* アイコン周り */
.rewards__icon-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  max-width: 100px;
}

.rewards__point {
  display: block;
  width: 80px;
  height: auto;
}

/* テキスト */
.rewards__text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 3;
}

/* 数字を主役に */
.rewards__emphasis {
  display: inline-block;
  font-weight: 700;
  color: #f15a24;
  font-size: 2.8em;
  line-height: 1;
  letter-spacing: 0.03em;
}

.rewards__emphasis--small {
    font-weight: 700;
    font-size: 1.8em;
    line-height: 2;
    vertical-align: top;
    color: #f15a24;
}

.rewards__note {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    text-align: left;
    margin-left: 10px;
    line-height: 1.5;
}

/* ==========================
   スマホ対応
   ========================== */
@media screen and (max-width: 768px) {
  .rewards__container {
    flex-direction: column;
  }

  .rewards__item {
    padding: 30px 20px;
  }

  .rewards__item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    width: auto;
    background: linear-gradient(
      to right,
      transparent,
      #dcdcdc,
      transparent
    );
  }
}


/** LP **/
.lp_link > div > ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px; /* アイテム間の余白（PC） */
    padding: 0;
}

.lp_link li {
    /* PC: 4カラム (隙間20pxを考慮) */
    flex: 0 0 calc(25% - 15px); 
    border: 1px solid #0082C9;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 10px
}

.lp_link li img {
    display: block;
    margin: 0 auto 15px;
    max-width: 100%;
    height: auto;
}

.lp_link li span {
    background: #0082C9;
    padding: 10px 10px;
    font-size: 15px;
    font-weight: bold;
    color: #FFF;
    border-radius: 0px 0px 10px 10px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp_link a {
    display: block;
    padding-top: 15px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* 光の演出 */
.lp_link a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.lp_link a:hover::before {
    animation: shine 0.7s;
}

@keyframes shine {
    100% { left: 150%; }
}

/* ★レスポンシブ設定：タブレット・スマホ */
@media (max-width: 768px) {
    .lp_link > div > ul {
        gap: 8px; /* 隙間を狭く */
    }
    .lp_link li {
        /* スマホ（中）: 3カラム */
        flex: 0 0 calc(33.333% - 5.4px); 
        margin-bottom: 10px;
    }
    .lp_link a {
        padding-top: 15px;
    }
    .lp_link li img {
        margin-bottom: 10px;
        width: 50px;
    }
    .lp_link li span {
        padding: 8px 4px;
        font-size: 11px;
        line-height: 1.2;
    }
}

/* ★追加：小さなスマホ用の設定 */
@media (max-width: 560px) {
    .lp_link li {
        /* スマホ（小）: 2カラム */
        flex: 0 0 calc(50% - 4px); 
    }
    .lp_link li span {
        font-size: 12px; /* 2列になると幅に余裕ができるので、少し文字を大きく */
        padding: 10px 5px;
    }
    .lp_link li img {
        width: 60px; /* 画像も少し戻す */
    }
}



/** トップページ（記事一覧A） **/

.top_blog_list {margin-bottom: 100px;}

.post_list_a {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
    margin-bottom: 30px;
}
.post_list_a::after{
  content:"";
  display: block;
  width: 32%;
}

.post_list_a article {
width: 32%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 20px;
	border: 1px solid #ccc;
}
.post_list_a article:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.post_list_a a {text-decoration: none; color: #333;}
.post_list_a .post_list_thumbnail {}
.post_list_a .post_list_thumbnail img {display: block;}
.post_list_a .post_list_content {padding: 10px; background: #fff;}
.post_list_a h3 {margin-bottom: 10px; font-size: 1em;}
.post_list_a .post_list_data {
display: flex;
flex-wrap: wrap;
font-size: 80%;
}
.post_list_a .post_list_time {margin-right: 10px;}
.post_list_a .post_list_cat {}
.post_list_a_btn {text-align:center;}
@media (max-width: 560px) {
.post_list_a article {width: 100%;}
.post_list_a_btn {font-size: 90%;}
	.post_list_a h3 {font-size: 90%;}
}

.post_list_a .post_list_thumbnail {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #eee;
}
.post_list_a .post_list_thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 560px) {
    .post_list_a .post_list_thumbnail {
        height: 220px; 
    }
}


/** トップページ（記事一覧D） **/
.top_2block {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.top_2block_in {
width: 48%;
}
.top_2block_in .top_title {
text-align: center;
}
.post_list_d {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

/** トップページ（記事一覧D：1記事目） **/
.post_list_d_1 {width: 48%;}
.post_list_d_1 article {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.post_list_d_1 article a {color: #fff;}
.post_list_d_1 .post_list_thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.post_list_d_1 article:hover .post_list_thumbnail img {
transform: scale(1.1);
}
.post_list_d_1 .post_list_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,.6);
padding: 10px;
}
.post_list_d_1 h3 {font-size: 100%;}
.post_list_d_1 .post_list_data {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
font-size: 80%;
}
.post_list_d_1 .post_list_time {margin-right: 10px;}
.post_list_d_1 .post_list_cat {}

/** トップページ（記事一覧D：2記事目以降） **/
.post_list_d_2 {width: 48%;}
.post_list_d_2 article {
  width: 100%;
margin-bottom: 5px;
}
.post_list_d_2 article a {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
	text-decoration: none;
	color: #333;
}
.post_list_d_2 .post_list_thumbnail {
	width: 20%;
	margin-right: 10px;
}
.post_list_d_2 .post_list_content {flex: 1; display: flex; align-items: center;}
.post_list_d_2 h3 {font-size: 80%;}

@media (max-width: 768px) {
.top_2block_in {width: 100%; margin-bottom: 70px;}
	.top_2block_in:last-child {margin: 0;}
}
@media (max-width: 560px) {
.post_list_d_1 {width: 100%; margin-bottom: 20px;}
.post_list_d_2 {width: 100%;}
	.post_list_d_2 .post_list_thumbnail {width: 30%;}
}


/** ブログページ **/
.page_content .post_list_a h3 {
	padding: 0;
	background: #fff;
    border: none;
	margin: 0;
}


/** タスカル通信 **/
.blog_list_tasukaru {}
.blog_list_tasukaru article {
    padding: 20px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog_list_tasukaru article:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blog_list_tasukaru article a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 5px;
}

.blog_list_tasukaru article:last-child {margin: 0;}
.blog_list_tasukaru .blog_list_tasukaru_thumbnail {
    min-width: 200px;
    width: 25%;
	margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog_list_tasukaru .blog_list_tasukaru_thumbnail img {}
.blog_list_tasukaru .blog_list_tasukaru_info {
    width: 75%;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.blog_list_tasukaru  h3 {
	padding: 30px 0;
    color: #333;
    background: none;
    border: none;
    margin: 0;
	flex: 1;
}
.blog_list_tasukaru .blog_list_tasukaru_info p.post_date {
	align-self: flex-end;
}
.blog_list_tasukaru p.post_date {
    color: #999;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 24px;
    margin-top: auto;
    margin-bottom: 0px;
}

body:not(.paged) .blog_list_tasukaru article:first-child .blog_list_tasukaru_thumbnail {
	width: 50%;
}
body:not(.paged) .blog_list_tasukaru article:first-child .blog_list_tasukaru_info {
	width: 50%;
}
.tasukaru_cat_list_out {
margin: 80px 0 100px;
}
.tasukaru_cat_list_out h3 {
    padding: 0.5em;
    color: #494949;
    background: #E9F6FB;
    border-left: solid 5px #0082C9;
    margin: 30px 0 20px;
	font-size: 1em;
}
.tasukaru_cat_list {
	margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
}
.tasukaru_cat_list li {
	list-style: none !important;
	margin:0 10px 10px 0;
}
.tasukaru_cat_list a {
    padding: 5px 10px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 90%;
    border-radius: 10px;
}
@media (max-width: 1230px) {
}

@media (max-width: 560px) {
  .blog_list_tasukaru article {padding: 5px;}
  body:not(.paged) .blog_list_tasukaru article:first-child .blog_list_tasukaru_thumbnail {width: 40%;}
  body:not(.paged) .blog_list_tasukaru article:first-child .blog_list_tasukaru_info {width: 60%;}
  .blog_list_tasukaru .blog_list_tasukaru_thumbnail {min-width: 100px;width: 35%; margin-right: 5px;}
  .blog_list_tasukaru .blog_list_tasukaru_info {width: 65%;}
  .blog_list_tasukaru  h3 {font-size: 90%; padding: 15px 0;}
  .blog_list_tasukaru p.post_date {font-size: 11px;}
}


/** タスカル通信（人気記事） **/
.tasukaru_popular {
	margin-top: 50px;
}
.tasukaru_popular h2 {
	background: #0082C9;
	color: #fff;
	padding: 15px;
	margin-bottom: 30px;
	border: none;
	text-align: center;
}
.tasukaru_popular h2:after {display: none;}
.post_list_b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
border-left: 1px solid #e5e5e5;
}
/* article区切り線 */
.post_list_b article {
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
}
.post_list_b article:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.post_list_b article:nth-child(-n+2) {border-top: 1px solid #e5e5e5;}
/* クリック領域 */
.post_list_b article a {
  display: flex;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}
.post_list_b .post_list_thumbnail {width:20%; margin-right: 10px;}
.post_list_b .post_list_thumbnail img {display: block;}
.post_list_b .post_list_content {flex: 1; padding: 10px 0; position: relative;}
.post_list_b h3 {
    color: #333;
    background: #fff;
    border: none;
    margin: 0;
	font-size: 100%;
}
.post_list_b .post_list_content .post_date {
    color: #999;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 24px;
    position: absolute;
    right: 32px;
    top: 80%;
}
.post_list_b .post_list_data {position: absolute; bottom: 0; right: 0; font-size: 80%;}
.post_list_b .post_list_time {}
.post_list_b .post_list_cat {}
@media (max-width: 560px) {
.post_list_b {display: block; border-top: 1px solid #ccc;}
.post_list_b article:nth-child(-n+2) {border-top: none;}
	.post_list_b article a {padding: 10px;}
	.post_list_b .post_list_thumbnail {margin: 0;}
	.post_list_b h3 {font-size: 90%;}
	.post_list_b .post_list_content {padding: 0;}
}



/** ABOUT **/
.o_about_ch {
	color: #312e36;
    font-family: Noto Sans JP,sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 140%;
}
.o_about_mv {
    margin: auto;
    max-width: 1200px;
    width: 100%;
}
.page-about h1 {display: none;}
@media (max-width: 768px) {
	.o_about_ch {padding: 0 20px;}
	.o_about_mv {padding: 0 20px;}
}


/** 運営者情報 **/
.o_operator_table {}
.o_operator_table td {}
.o_operator_table tr td:first-child {
	background: #ebebeb;
	width: 20%;
}
@media (max-width: 1024px) {
.o_operator_table td {
	display: block;
	width: 100%;
}
.o_operator_table tr td:first-child {width: 100%;}
}




/** フッター **/
.footer {
    background: #0082C9;
    width: 100%;
}
.footer_in {
    margin: auto;
    max-width: 1200px;
    width: 100%;
	padding: 50px 0;
	color: #fff;
}
.footer_in a {color: #fff; text-decoration: none;}

/** フッターウィジェット **/
.footer_block {margin-bottom: 30px;}
.footer_block h3 {
	padding: 10px 0;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}

.footer_block ul {
display: flex;
flex-wrap: wrap;
gap: 5px 20px;
}
.footer_block li {
	width: 18%;
width: calc((100% - 80px) / 5);
}

.footer_block .operator-info {
  display: flex;
  gap: 30px;	
}
.footer_block .operator-info-text {
}
.footer_block .operator-info-logo {
  width: 100px;
}

.copyright {
    background: #333;
    padding: 20px 0;
    text-align: center;
    width: 100%;
	color: #fff;
}
@media (max-width: 1024px) {
  .footer_in a {font-size: 13px;}
  .footer_in {padding: 30px 20px;}
  .footer_block li {width: calc((100% - 20px) / 2);}
  .footer_block .operator-info-text {font-size: 13px;}
  .footer_block .operator-info-logo {width: 80px;}
}
@media (max-width: 540px) {
  .footer_block .operator-info {display: block;}
}





/** メインビジュアル **/
.fp_eyecatch {
    background-color: #fff;
    margin: 0;
    position: relative;
    top: -21px;
    width: 100%;
}

.fp_eyecatch-inner {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.fp_eyecatch-title {
    color: #183028;
    font-family: inherit;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    padding: 0 16px;
    position: absolute;
    top: 105px;
}
.fp_eyecatch-title .title-text {
	background-color: rgb(255 255 255 / 0.9);
}

.fp_eyecatch-title_img {
    height: auto;
    margin: 0px 0px 0px 0px;
    width: 500px;
}

.fp_eyecatch-thumb {
    margin-left: auto;
}

.fp_eyecatch-thumb_img {
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left center;
    object-position: left center;
    width: 910px;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .fp_eyecatch {
      margin: 0;
      top: 0;
  }
  .fp_eyecatch-inner {
      width: 100%;
      display: block;
      margin-top: 0;
      padding-top: 50px;
  }
  .fp_eyecatch-title {
      font-size: 3.8vw;
      padding: 10px 20px;
      position: absolute;
      top: 80px;
      width: 100%;
  }
  .fp_eyecatch-title_img {
      background-color: rgb(255 255 255 / 0.9);
      margin: 0px;
      max-width: 511px;
      width: calc(100% - 200px);
  }
  .fp_eyecatch-thumb_img {
      height: 100%;
      margin-left: auto;
      margin-top: 50px;
      -o-object-position: left center;
      object-position: left center;
      padding-bottom: 10px;
      padding-top: 30px;
      width: 580px;
  }
}
@media (max-width: 540px) {
  .fp_eyecatch-title {
      font-size: 5vw;
  }

  .fp_eyecatch-title_img {
    min-width: 180px;
	width: calc(100% - 180px);
  }
}












/** ボタン **/
.o_btn_01_out {text-align: center; margin-top: 50px;}
.o_btn_01 {
  width:100%;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 1rem;
  cursor: pointer;
  user-select: none;
    -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #0082C9;
  border-bottom: 5px solid #0071B2;
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
  box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
}
.o_btn_01:hover {
  margin-top: 3px;
  color: #fff;
  background: #0082C9;
  border-bottom: 2px solid #0071B2;
}
@media (max-width: 768px) {
	
}

/** テーブル **/
.wp-block-table.o_table_001 {
width: 100%;
border-collapse: collapse;
white-space: nowrap;
}
.wp-block-table.o_table_001 table {}
.wp-block-table.o_table_001 thead {
	border: none;
	background: #0082C9;
	color: #fff;
}
.wp-block-table.o_table_001 thead th {}
.wp-block-table.o_table_001 tbody tr:nth-of-type(odd) {background: #f2f2f2;}
.wp-block-table.o_table_001 tbody tr:nth-of-type(even) {background: #E9F6FB;}
.wp-block-table.o_table_001 tbody td {padding: 10px;}
.wp-block-table.o_table_001 td,
.wp-block-table.o_table_001 th {border: 1px solid #fff;}
@media (max-width: 768px) {
.wp-block-table.o_table_001 {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border: 1px solid #ccc;
}
.wp-block-table.o_table_001 table{width: 800px;}
}


/** 枠 **/
.o_waku {}
.o_waku_title {
	margin: 0;
	background: #0082C9;
	padding: 3px 10px;
	font-size: 90%;
	color: #fff;
	font-weight: bold;
	width: fit-content;
	border-radius: 10px 10px 0 0;
}
.o_waku_in {
	border: 2px solid #0082C9;
	padding: 20px;
    border-radius: 0px 10px 10px 10px;
}
.o_waku_in p {margin: 0;}

/** 吹き出し **/
.o_hukidsi {}
.o_hukidsi_left {
  position: relative;
  display: inline-block;
  padding: 20px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
  border-radius: 10px;
}

.o_hukidsi_left:before {
  content: "";
  position: absolute;
  top: 40px;
  left: -29px;
  margin-top: 0px;
  border: 15px solid transparent;
  border-right: 15px solid #e0edff;
}

.o_hukidsi_left p {
  margin: 0;
  padding: 0;
}

.o_hukidsi_right {
  position: relative;
  display: inline-block;
  padding: 20px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
}

.o_hukidsi_right:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #e0edff;
}

.o_hukidsi_right p {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .o_hukidsi_left {
	padding: 10px;
    font-size: 14px;
  }
  .o_hukidsi_left:before {
    top: 20px;
  }

}


.o_marker {background:linear-gradient(transparent 60%, #ff6 60%);}

@media (max-width: 781px) {
.o_order_1 {order: 1;}
.o_order_2 {order: 2;}
}


@media (max-width: 768px) {
	.single_content {padding: 0 20px;}
}

