@charset "utf-8";
/*
 Theme Name:   okataduke_koma
 Theme URI:    整理収納コンサルタント こまちゃん
 Author:       Hikeou Design
 Author URI:   https://hikeout-design.com/
 Template:     generatepress
 Version:      0.1


=====================================================
■目次
=====================================================
・フォント
・配色指定
・基本設定
・共通設定
・見出し
・アニメーション
・メイン画像
・ナビゲーション
・パンくず
・フッター
・コンテンツ
・お知らせ
・CTA
・googlemap
・テーブル
・コンタクトフォーム
・よくある質問
・ボタン

※メディアクエリはcss/style-brake.cssに記載する
*/


/* ================================================
■ フォント
================================================ */
/* 【本文】ゴシック */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,900&display=swap'); */
/* 【本文】明朝 */
/* @import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700&display=swap&subset=japanese'); */

/* 【英語】サンセリフ */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap'); */
/* 【英語】セリフ） */
/* @import url('https://fonts.googleapis.com/css?family=Playfair+Display:500,700&display=swap'); */


/* ================================================
■ 基本設定
================================================ */
html{
  font-size: 62.5%;/*16px=1.6rem*/
}
body{
  font-family: "Zen Kaku Gothic New", 'Roboto', "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, Meiryo, "MS PGothic", sans-serif;
  /* 明朝の場合 */
  /* font-family: 'Playfair Display', 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif; */
  font-size: 1.6em;
  font-weight: 500;
  line-height: 150%;
  /* フォントサイズ自動調節 */
  -webkit-text-size-adjust: 100%;
  /* 改行設定 */
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* カーニング */
  letter-spacing: 0.08rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-kerning: auto;
          font-kerning: auto;
  text-align:justify;
}
/* 投稿ページでデフォルトのタイトルを非表示にする */
body.page .entry-header {
    display: none;
}
/* タップ時ハイライトカラー(背景色)を無効 */
a{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: bold;
}
a.link{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color:#249cd1;
  text-decoration: underline;
}
a:hover {
  opacity: 0.8;
  transition: .2s;
}
a.arrow {
  padding-left: 2.5rem;
  text-decoration: none;
}
a.arrow:before {
  position: absolute;
  content: "";
  background-image: url(./images/icon_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 1.8rem;
  width: 1.8rem;
  height: 1.8rem;
  left: 0;
  vertical-align: middle;
}
/* ページ内リンクのずれを修正 */
.anchor{
    display: block !important;
    padding-top: 70px !important;
    margin-top: -70px !important;
}
img {
    margin: 0 0 1rem 0;
    padding: 0;
    vertical-align: bottom;
    image-rendering: -webkit-optimize-contrast;
}
body.single .entry-content img {
  margin: 1rem 0;
}
p {
    margin-bottom: 1.5rem;
}
ul {
  list-style: none;
  margin: 0;
  font-weight: 500;
}
ol { list-style: decimal; }
/* 親要素にclearfix追加でfloat高さ出す */
.clearfix:after{
 	content: "";
	clear: both;
	display: block;
}
/* 矢印 */
ul.arrow {
  position: relative;
  padding-left: 2.8rem;
}
ul.arrow a {
  text-decoration: none;
  font-weight: bold;
  line-height: 180%;
}

ul.arrow li {
  position: relative;
  font-weight: bold;
  margin-bottom: 1rem;
}
ul.arrow li:before {
    position: absolute;
    content: "";
    background-image: url(./images/icon_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 2rem;
    width: 2rem;
    height: 2rem;
    left: -3rem;
    margin-top: .4rem;
    vertical-align: middle;
}

 .check_wrap_black {
    /* 必要に応じて、このコンテナの最大幅やパディングを設定 */
    max-width: 800px; /* 例: 最大幅 */
    margin: 0 auto;   /* 例: 中央寄せ */
    padding: 20px;    /* 例: 内側の余白 */
    box-sizing: border-box;
}

/* 各チェック項目のコンテナ */
.check_wrap_black > div {
    display: flex; /* アイコンとテキストを横並びにする */
    align-items: flex-start; /* アイコンとテキストの上端を揃える */
    margin-bottom: 3rem; /* 各項目間の下マージン */
    box-sizing: border-box;
}

/* チェックアイコン（テキストを含む）のスタイル */
.check_icon {
    flex-shrink: 0; /* アイコンの幅が狭くなっても縮まないようにする */
    background: url(./images/icon_check_black.png) no-repeat center center; /* アイコン画像 */
    background-size: 5rem; /* アイコン画像のサイズ */
    width: 5rem; /* アイコン要素の幅 */
    height: 5rem; /* アイコン要素の高さ */
    margin-right: 1.5rem; /* アイコンとテキストの間のスペース */

    /* 元々あったチェックアイコン内のテキストに対するスタイル */
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 5rem; /* アイコンの高さに合わせてテキストを垂直中央寄せにする場合 */
    color: transparent; /* アイコンにテキストが入っているので、透明にして見えなくする */
    overflow: hidden; /* テキストがアイコンからはみ出さないように隠す */
    white-space: nowrap; /* テキストの改行を防ぐ */
}
h3.check_title {
    margin-top: 1rem;
    font-size: 2.4rem;
}

/* 各チェック項目の説明文（<p>タグ）のスタイル */
.check_wrap_black > div > p {
    margin-top: 0; /* 上の要素との余白をリセット */
    /* 必要に応じて、フォントサイズや行間などを調整 */
    font-size: 1.6rem; /* 例 */
    line-height: 1.8; /* 例 */
}
.message_wrap {
    max-width: 60rem;
    margin: auto;
    padding: 4rem 6rem;
    background-color: #fff;
    border: solid .1rem #1e3135;
}
.message_wrap.bg {
    background-color: #f4f4f5;
}
.message_wrap h3 {
    font-size: 2.4rem;
    margin: 2rem 0 4rem;
}
.message_wrap h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}
.message_wrap p {
  margin-bottom: 0;
  font-weight: bold;
}

.check_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 5rem 5rem 10rem;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 220%;
    margin-bottom: 2rem;
}
.check_wrap.orange {
    padding: 2rem;
}
.check_wrap li {
    position: relative;
    font-weight: bold;
}
.check_wrap li:before {
    position: absolute;
    content: "";
    background: url(./images/icon_check_black.png) no-repeat left center;
    display: inline-block;
    background-size: 3.6rem;
    width: 3.6rem;
    height: 3.6rem;
    left: -5rem;
    top: .5rem;
    vertical-align: middle;
}
.check_wrap.orange li:before {
    position: absolute;
    content: "";
    background: url(./images/icon_check_orange.png) no-repeat left center;
    display: inline-block;
    background-size: 3rem;
    width: 3rem;
    height: 3rem;
    left: -4rem;
    top: 1rem;
    vertical-align: middle;
}



strong {
     padding: 0.2rem;
     background: linear-gradient(transparent 80%, #ffff00 80%);
}

/* ================================================
■ 共通設定
================================================ */
/* パソコンで見れる */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォン+タブレットで見れる */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

ol.num {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  margin: 0;
  font-size: 2.4rem;
}
ol.num li {
  position: relative;
  padding: 1rem 0 1rem 3.5rem;
  font-weight: bold;
}

ol.num li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #249cd1;
  color: white;
  font-weight:bold;
  font-size: 1.5rem;
  border-radius: 50%;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.eyecatch p {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    font-size: 2rem;
}

p.message{
  display: block;
  width: 100%;
  margin: 0 auto 3rem;
  padding: 3rem;
  text-align: center;
  background-color: #f9f9f9;
  border: solid 1px #ccc;
  box-sizing: border-box;
}
span.type {
    border-radius: .3rem;
    padding: .15rem .5rem;
    font-size: 1.2rem;
    color: #fff;
    margin-right: .5rem;
    background-color: #1e3135;
    display: inline-block;
}
body.error404 .entry-content>p {
  text-align: center;
}
/* ================================================
■ 見出し
================================================ */
h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 150%;
}


h2 {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5rem;
  line-height: 150%;
}

h2.icon:after {
  content: '';
  display: block;
  margin: auto;
  background: url(./images/h2_icon.png) no-repeat center center;
  background-size: 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  position: relative;
  top: 1rem;
}
h2.uline:first-child {
  margin-top: 0 !important;
}
h2.uline:before {
    content: "";
    position: absolute;
    height: .6rem;
    width: 3rem;
    left: 0;
    right: 3rem;
    margin: auto;
    bottom: -2rem;
    background-color: #3bb7e2;
    border-radius: 1rem 0 0 1rem;
}
h2.uline:after {
    content: "";
    position: absolute;
    height: .6rem;
    width: 3rem;
    right: 0;
    left: 3rem;
    margin: auto;
    bottom: -2rem;
    background-color: #1e3135;
    border-radius: 0 1rem 1rem 0;
}
h3 {
  font-size: 2.1rem;
  font-weight: 800;
  position: relative;
}
h3 span{
  color: #1e3135;
}
h3.page {
    position: relative;
    padding-left: 3rem;
    font-size: 2rem;
    margin-bottom: 1rem;
}
h3.page::after {
     position: absolute;
     top: 50%;
     left:0;
     transform:translateY(-50%);
     content: '';
     width: 2rem;
     height:.3rem;
     background-color: #1e3135;
}
h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    font-weight: 800;
}
h4.point {
  color: #1e3135;
  font-size: 2.1rem;
  margin: 5rem 0 2rem;
  text-align: left;
}
h5 {
  color: #1e3135;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
/* ================================================
■ 見出し
================================================ */

.no_before:before { content: none;}
.no_after:after{ content: none;}
/* ================================================
■ メイン画像
================================================ */
.page-hero-top {
  height: 100vh;
  padding: 0rem;
  box-sizing: border-box;
}

/* ================================================
■ 固定ページヘッダー
================================================ */
.page-hero-pc {
    max-width: 100%;
    background-image: url(./images/page_bg1_pc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page-hero-pc:before {
    position: absolute;
    content: "";
    background-image: url(./images/logo_main.png);
    filter:drop-shadow(0 0 3px rgba(30,49,54,.7));
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 15rem;
    width: 15rem;
    height: 15rem;
    left: 5%;
    top: 0;
}
.page-hero-pc h1 {
    font-weight: bold;
    color: #fff;
    background-color: #1e3135;
    font-size: 4rem;
    margin-bottom: 0;
    padding: 1rem 2.5rem;
}

.page-hero-sp {
  display: none;
}

/* ================================================
■ ナビゲーション
================================================ */
img.header-image {
    float: left;
    width: auto !important;
    height: 4rem !important;
}
img.is-logo-image {
    margin-bottom: 0;
}
.navigation-branding img,
site-logo.mobile-header-logo img {
    margin: 0;
    padding: 0 0 0 .5rem !important;
}
.inside-navigation.grid-container {
  width: 100%;
  max-width: 200rem;
}
.main-navigation.sticky-navigation-transition .navigation-branding img {
  height: 3.4rem !important;
}
.main-navigation .main-nav ul li a {
  font-weight: bold;
  font-size: 1.6rem;
}
.main-navigation .main-nav ul li {
  text-align: center;
}
.main-navigation .main-nav>ul {
    gap: 3rem;
}
.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus > a,
.main-navigation .main-nav ul li.sfHover > a,
.main-navigation .main-nav ul li[class*="current-menu-"]:hover > a {
    color: #1e3135;
    background-color:rgba(0,0,0,0);
    transition: .2s;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    color: #222;
}
.main-navigation .main-nav ul li::after {
    color: #3bb7e2;
    font-size: 1rem;
    position: absolute;
    bottom: -.25rem;
    left: 0;
    right: 0;
}

.navigation-stick:not(.gen-sidebar-nav) {
    left: 0;
    right: 0;
    width: 100% !important;
    background-color: transparent;
}
.sticky-enabled .main-navigation.is_stuck {
    box-shadow: none;
}
.nav-align-right .inside-navigation {
    justify-content: flex-end;
    justify-content: center;
}
/* サブメニュー */
.main-navigation ul ul { box-shadow: none; }
.main-navigation ul ul.sub-menu {
    background-color: #fff;
}
.main-navigation .main-nav ul ul.sub-menu li a {
    padding: 1.5rem 2rem;
    color: #f2f0e9;
    background-color: #222333;
    font-size: 1.4rem;
    font-weight: bold !important;
}
.main-navigation .main-nav ul ul li:hover,
.main-navigation .main-nav ul ul.sub-menu li a:hover {
    color: #fff;
    background-color: #1e3135;
    font-size: 1.4rem;
    font-weight: bold !important;
}

nav#sticky-navigation .main-nav ul li a {
  margin-top: -2rem;
}

/* ================================================
■ パンくず
================================================ */
ul.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.2rem;
    padding: 1rem;
    background-color: #e9f6ff;
}
ul.breadcrumb li {
    display: inline-block;
}
ul.breadcrumb li:after {
    content: "\f106";
    font-family: GeneratePress;
    transform: rotate(90deg);
    display: inline-block;
    padding: 0 .5rem;
}
ul.breadcrumb li:last-child:after {
    content: "";
}
/* ================================================
■ フッター/CTA
================================================ */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 1.5rem;
    background-color: #fff;
}
.footer a { text-decoration: underline; }
.footer address p { font-style: normal; }
.footer address img.logo {
    max-width: 15rem;
    margin-bottom: 2rem;
}
.address_icon_wrap {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
}
.address_icon_wrap img {
    max-width: 2rem;
}
.footer_menu {
  display: flex;
  gap: 10rem;
}
.footer_menu div {
  display: flex;
  flex-direction: column;
}

.cta_wrap {
    background-color: #f8f7f4;
}
.cta_wrap .cta_box {
  width: 100%;
  max-width: 100rem;
  margin: auto;
  padding: 10rem 1.5rem;
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr 1fr;
}
.cta_wrap .cta_left,
.cta_wrap .cta_right {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.cta_wrap .cta_left img {
  border: solid .3rem #ffd70d;
}
.cta_wrap .cta_right img {
  border: solid .3rem #3e9648;
}
.cta_wrap span {
  font-size: 1.4rem;
}

.fix_wrap {
    background-color: rgba(30, 49, 54, .2);
    backdrop-filter: blur(5px);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    height: 10rem;

    animation-name: bottom-top;
    animation-duration: .5s;
    animation-delay: 5s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
.fix_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 70rem;
    width: 100%;
    margin: auto;
    padding: 1rem 0 0;
}
.fix_contents > a.fix_button {
    display: block;
    width: 100%;
    padding: 1.4rem 1rem;
    border: solid .2rem #1e3135;
    background-color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}
.fix_contents > a.fix_button:hover {
    background-color: #ffd70d;
    color: #1e3135;
    transition: .2s;
    opacity: 1;
}
.fix_contents > p.fukidashi {
    margin: 1rem auto;
    padding: 0 1.5rem;
    font-size: 1.3rem;
}
.fix_contents > p.fukidashi::before {
    transform: rotate(-20deg);
    height: 1.6rem;
}
.fix_contents > p.fukidashi::after {
    transform: rotate(20deg);
    height: 1.6rem;
}
.fix_contents > a.fix_button >div {
    position: relative;
    padding-left: 2rem;

}
.fix_contents > a.fix_button >div:before {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}
.fix_contents > a.fix_button >div.fix_merumaga:before {
    background-image: url(./images/icon_footer_mailmagazine.png);
    background-size: 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
    left: 3.5rem;
}
.fix_contents > a.fix_button >div.fix_line:before {
    background-image: url(./images/icon_footer_line.png);
    background-size: 2rem;
    width: 2rem;
    height: 2rem;
    left: 4rem;
    margin-top: .4rem;
}
.fix_contents > a.fix_button >div.fix_soudan:before {
    background-image: url(./images/icon_footer_soudan.png);
    background-size: 2.6rem;
    width: 2.6rem;
    height: 2.4rem;
    left: 3.5rem;
}
/* .fix_merumaga {
    position: relative;
}
.fix_merumaga:before {
    position: absolute;
    content: "";
    background-image: url(./images/icon_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 2rem;
    width: 2rem;
    height: 2rem;
    left: -3rem;
    margin-top: .4rem;
    vertical-align: middle;
} */
/* ================================================
■ フキダシ
================================================ */
p.fukidashi {
    position: relative;
    text-align: center;
    display: block;
    width: fit-content;
    line-height: 1.2;
    margin: 4rem auto 3rem;
    padding: 0 3rem;
    font-weight: bold;
}
p.fukidashi::before, p.fukidashi::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 2rem;
    background: rgba(0, 0, 0, 1);
}
p.fukidashi::before {
    transform: rotate(-30deg);
    left: 0;
}
p.fukidashi::after {
    transform: rotate(30deg);
    right: 0;
}

/* フッターバー */
.site-info a,
.site-info a:visited {
    text-decoration: underline;
}
.site-footer {
    margin-bottom: 10rem;
}
.teigaku-hp{
  font-size: 1.2rem;
}
.footerbar_menu_wrap{
  display: none;
}
.copyright-bar {
    font-size: 1.2rem;
    font-weight: 500;
}
.copyright-bar a.privacy {
    padding-right: .75rem;
    margin-right: .5rem;
    border-right: solid 1px #ccc;
    font-weight: 500;
}
/* ================================================
■ お知らせ
================================================ */
.news_wrap {
    background-color: #f9f9f9;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-bottom: solid 1px #eee;
}

.news_contents {
    max-width: 80rem;
    width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 1rem 3rem;
    box-sizing: border-box;
    border-top: solid 0.2rem #1e3135;
    border-bottom: solid 0.2rem #1e3135;
}

.news_contents a {
    display: block;
    padding: 2rem 1rem;
}
.news_contents a:hover{
    color: #000000;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}
.news_contents li:last-child {
  border-bottom: none;
}
.list-news {
    list-style: none;
    margin: 0;
    border-bottom: dotted 1px #ccc;
    width: 100%;
    display: table;
}
li.list-news a {
  text-decoration: none;
}
li.list-news .news-date {
    padding: 1rem 0;
    width: auto;
    font-size: 1.4rem;
    color: #999999;
}
li.list-news .news-cat {
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    padding: .2rem .8rem;
    margin: 0 2rem;
    background: #1e3135;
    display: inline-block;
}
li.list-news .news-txt {
    padding: 1rem 0;
    width: auto;
    color: #222;
    text-decoration: underline;
    display: block;
}
li.list-news .news-txt:hover{
    text-decoration: none;
}
/* アイキャッチ付き */
.news_eye_wrap a{
  color: #222;
}
.news_eye_wrap a:hover{
  text-decoration: none;
  color: #222;
}
figure.eyecatch {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border: solid 1px #eaeaea;
  box-sizing: border-box;
}
figure.eyecatch:hover {
  border: solid 1px #ccc;
  box-sizing: border-box;
}
figure.eyecatch .date {
    text-align: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: #3988d8;
    color: #fff;
    font-size: 1.4rem;
    padding: .1rem .5rem;
    margin-bottom: 1rem;
    opacity: .9;
}
figure.eyecatch img {
    margin-bottom: 0;
}
figure.eyecatch img.img-responsive:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
span.cat {
    display: inline-block;
    background-color: #666;
    border-radius: .25rem;
    color: #fff;
    font-size: 1.4rem;
    padding: .25rem .5rem;
    margin: 0 1rem .5rem 0;
}
/* 謚慕ｨｿ繝壹�繧ｸ */
header.page-header {
    display: none;
}
div.entry-meta {
    margin: 1rem 0 2rem;
}
body.blog .post-image img {
  margin-bottom: 1rem;
}
body.blog div.entry-meta {
  margin-bottom: 8rem;
}
.entry-content img {
  margin-bottom: 1rem;
}
.entry-meta > .byline{
  display: none;
}
.entry-meta > .cat-links{
  display: none;
}
.nav-previous {
    float: left;
}
.nav-next {
    float: right;
}
.nav-next .next:before {
    content: none;
}
.nav-next .next::after {
    content: none;
}

footer.entry-meta {
    margin-top: 2em;
    padding-top: 1rem;
}

.nav-links {
    text-align: center;
    margin-bottom: 5rem;
}
.nav-links a.page-numbers {
    border: solid 1px #1e3135;
    color: #1e3135;
    padding: .5rem 1rem;
    margin: 0 .3rem;
}
.nav-links span.current {
    border: solid 1px #1e3135;
    background-color: #1e3135;
    color: #fff;
    font-weight: bold;
    padding: .5rem 1rem;
    margin: 0 .3rem;
}

.nav-links > a.prev, .nav-links > a.next{
    border: none;
    padding: 0 .5rem;
    margin: 0;
}

/* サイドバー */
h2.widget-title {
    color: #666;
    font-size: 1.6rem;
    border-bottom: solid 1px #ccc;
    padding-bottom: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
h2.entry-title {
  margin-bottom: 4rem;
  position: relative;
  padding: 1.5rem 1rem 1.5rem 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  border-left: solid 3px #1e3135;
  text-align: left;
}
h2.entry-title a {
  color: #222;
}
.inside-right-sidebar h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.inside-right-sidebar aside ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: underline;
    color: #222;
}
.inside-right-sidebar aside ul li a:hover {
  text-decoration: none;
}
/* ================================================
■ 埋め込み(googlemap、facebook)
================================================ */
.gmap {
height: 30rem;
overflow: hidden;
/* padding-bottom: 56.25%; */
position: relative;
/* margin-bottom: 1rem; */
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.fb_contents {
    max-width: 50rem;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}
/* ================================================
■ テーブル
================================================ */
/* ================================================
■ テーブル
================================================ */
/* 基本設定 */
table, th, td {
  border-collapse: collapse;
  border: 1px solid #1e3135;
  box-sizing: border-box;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* 一般的なデザイン */
table.common {
  margin-bottom: 3rem;
}
table.common tr th,
table.common tr td{
  padding: 2rem;
  text-align: left;
  /* word-break: break-all; */
}
table.common th{
  width: 30%;
  vertical-align: top;
  background-color: #f2f0e9;
  font-weight: bold;
}
table.common td{
  text-align: left;
  width: 70%;
  background-color: #fff;
}
table.common td p{
  padding: 0;
  margin: 0;
/*   font-size: 1.4rem; */
}

/* ボーダーなし */
.noborder table {
  max-width: 100rem;
  margin: 0 auto 5rem;
}
.noborder table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.noborder table ,
.noborder table th,
.noborder table td {
  border: none !important;
}
.noborder table tr th, .noborder table tr td {
  background-color: transparent !important;
  padding: 4rem 2rem;
  vertical-align: top;
}

table.no_border, table.no_border th, table.no_border td {
    border: none;
}
table.no_border tr:first-child{
  border-top: none;
}
table.no_border th{
  background-color: #fff;
}
.noborder table th{
  width: 25%;
  font-size: 1.8rem;
}
.noborder table td{
  width: 75%;
}
/* ================================================
■ コンタクトフォーム
================================================ */
input[type='text'], input[type='email'], input[type='tel'], input[type='url'], textarea{
  width:100%;
  padding:5px;
  background-color: #f5fbff;
  box-sizing:border-box;
  -moz-box-sizing:border-box; /* Firefox */
  -webkit-box-sizing:border-box; /* Chrome, Safari */
  }
  @supports(-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'],
    input[type='radio'] {
      -webkit-appearance: none;
      -moz-appearance: none;
    }
  }
  input[type='checkbox'], input[type='radio'] {
    background: #fff;
    border: .1rem solid #ccc;
    outline: none;
    display: inline-block;
    position: relative;
    top: .2rem;
    margin: 0;
    cursor: pointer;
    -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
  }
  input[type='checkbox']{
      width: 1.6rem;
      height: 1.6rem;
      border: .1rem #ccc solid;
      border-radius: .3rem;
  }
  input[type='radio'] {
      padding: .4rem;
      border: .1rem #ccc solid;
      border-radius: 50%;
  }
  input[type='checkbox']:checked {
    background: #009fe0;
    border: .1rem solid #009fe0;
  }
  input[type='radio']:checked {
    background: #009fe0;
    border: .1rem solid #009fe0;
  }
  input[type='checkbox']:after {
      content: '';
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      width: .5rem;
      height: .9rem;
      border: .2rem solid #fff;
      border-top: 0;
      border-left: 0;
      left: .4rem;
      top: .1rem;
      transform: rotate(43deg);
      -webkit-transform: rotate(43deg);
  }
  input[type='radio']:after {
      content: '';
      display: block;
      width: .7rem;
      height: .7rem;
      border-radius: 50%;
      background-color: #fff;
  }
  
  /* contactform7 */
  input[type='submit'].wpcf7-submit{
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    padding: 1.5rem 3rem;
    display: block;
    width: 100%;
    max-width: 30rem;
    margin: 1rem auto;
    text-align: center;
    transition: .2s;
    background: #1e3135;
    border-bottom: solid 3px #152426;
    border-radius: 50rem;
  }
  
  input[type='submit'].wpcf7-submit:hover{
    background: #ffe100;
    border-bottom: solid 3px #c1a000;
    color: #1e3135;
  }
  input[type='submit'].wpcf7-submit:active {
      -webkit-transform: translateY(3px);
      transform: translateY(3px);
      border-bottom: none !important;
  }
  input[type='date'].wpcf7-form-control.wpcf7-date,
  select.wpcf7-form-control.wpcf7-select {
      background-color: #f5fbff;
      padding: .5rem;
      border: solid 1px #ccc;
  }
  span.wpcf7-form-control > span.wpcf7-list-item {
      margin: 0 auto;
      width: auto;
      max-width: inherit;
      min-width: inherit;
      display: inline-block;
  }
  .wpcf7-acceptance > span.wpcf7-list-item {
      margin: 0;
      display: inline !important;
    text-align: center;
  }
  span.wpcf7-list-item label {
      display: block;
      word-break: break-all;
      margin-right: 3rem;
  }
  div.wpcf7-response-output {
      margin: 1rem 0;
      padding: 2rem;
      text-align: center;
      font-weight: bold;
      font-size: 2rem;
      border: 2px solid #ff0000;
  }
  div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
      border: 3px solid #fcee21;
  }
  div.wpcf7-mail-sent-ok {
      border: 3px solid #009fe0;
  }
  div.wpcf7 .ajax-loader {
      display: block;
      margin: 2rem auto 1rem;
  }
  input::placeholder,textarea::placeholder {
    color: #bbb;
  }
  span.require {
      background-color: #e20000;
      border-radius: .3rem;
      color: #fff;
      font-size: 1.2rem;
      padding: .3rem;
      margin-right: 1rem;
      vertical-align: inherit;
  }
  
  /* 郵便番号による住所自動入力 */
  td.address-wrap p { text-align: left; }
  td.address-wrap p br {
    display: none;
  }
  .postalcod-wrap {
    display: block;
    margin-bottom: 1rem;
  }
  input.length3 { max-width: 10rem; }
  input.length4 { max-width: 13rem; }

/* ================================================
■ faq よくある質問
================================================ */
.faq_wrap {
	margin: 4rem auto 0;
	max-width: 80rem;
}

.faq > .toggle {
	display: none !important;
}

.faq {
    position: relative;
    margin-bottom: 2rem;
    padding: 3rem 0;
}

.question,.anser {
	transform: translateZ(0);
	transition: all 0.3s;
}

.question {
  display: flex;
  align-items: center;
  padding-right: 5rem;
  font-weight: bold;
  font-size: 2.1rem;
}

.question span,.anser span {
    padding-right: 1.5rem;
    color: #1e3135;
    font-weight: bold;
    font-size: 3.4rem;
    font-family: "Roboto";
}
.anser span {
  color: #f39d00;
}

.question:after,.question:before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 1.5rem;
  background-color: #1e3135;
  transition: all 0.3s;
}

.question:after {
	transform: rotate(90deg);
}

.anser {
	max-height: 0;
	overflow: hidden;
  font-size: 1.8rem;
}

.anser > div {
  margin-top: 3rem;
  padding: 3rem 0 1rem;
  border-top: solid .1rem #eaeaea;
  width: 100%;
  display: flex;
  align-items: center;
  line-height: 180%;
}

.toggle:checked + .question + .anser {
	max-height: 1000rem;
	transition: all 1.5s;
}

.toggle:checked + .question:before {
	transform: rotate(90deg) !important;
}

/* ================================================
流れ
================================================ */
.flow {
  max-width: 80rem;
  margin: auto;
}
.flow > li {
  padding: 3rem 0;
}
.flow > li:not(:last-child) {
  border-bottom: 2px solid #1e3135;
  position: relative;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child)::before {
  border-width: 2.1rem;
  border-top-color: #1e3135;
}
.flow > li:not(:last-child)::after {
  border-width: 1.8rem;
  border-top-color: #f8f7f4;
}
.flow > li dl {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flow > li dl dt {
  font-size: 2rem;
  font-weight: 600;
  color: #5eac24;
  -ms-flex-preferred-size: 20%;
  min-width: 15rem;
  margin-right: 1vw;
  text-align: center;
}
.flow > li dl dd {
    margin: 1.5rem;
    margin-left: 0;
}
.flow > li dl dd h4 {
  margin-bottom: 1rem;
}
.flow > li dl dt .icon {
  font-size: 1.4rem;
  color: #fff;
  background-color: #3e9648;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  display: block;
  border-radius: 2rem;
}

.flow > li dl dt .icon:before {
    content: '';
    display: inline;
    min-width: 5rem;
    height: auto;
    position: static;
    left: 0;
    top: 0;
}

/* 流れ2 */
.flow_wrap {
    max-width: 100rem;
    width: 100%;
    margin: auto;
    padding-bottom: 10rem;
}
.flow2 {
	padding-left: 12rem;
	position: relative;
}
.flow2::before {
    content: "";
    width: .2rem;
    height: 100%;
    background: #1e3135;
    margin-left: -.1rem;
    display: block;
    position: absolute;
    top: 0;
    left: 12rem;
}
.flow2 > li {
	position: relative;
}
.flow2 > li:not(:last-child) {
	   margin-bottom: 5rem;
}
.flow2 > li .flow_num {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background: #5eac24;
    padding: .3rem 1rem;
    display: block;
    position: absolute;
    top: 0;
    left: -9rem;
    z-index: 2;
}
.flow2 > li .flow_num::after {
	content: "";
	border-style: solid;
	border-width: .5rem 0 .5rem 1rem;
	border-color: transparent transparent transparent #5eac24;
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.flow2 > li dl {
	padding-left: 7rem;
	position: relative;
}
.flow2 > li dd {
  margin: 0;
}
.flow2 > li dl::before,
.flow2 > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 1.5rem;
}
.flow2 > li dl::before {
    width: 1rem;
    height: 1rem;
    margin-top: -.5rem;
    background: #1e3135;
    border-radius: 50%;
    left: -.5rem;
}
.flow2 > li dl::after {
	width: 5rem;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: .5rem;
}
.flow2 > li dl dt {
    font-size: 2rem;
    margin-bottom: .5rem;
}

/* ================================================
■ スクロール
================================================ */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  section.gallery_wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
  .scroll-wrap {
    display: flex;
    overflow: hidden;
  }
  .scroll-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: .5rem;
  }
  .scroll-list-left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
  }
  .scroll-item {
    width: calc(100vw / 3.8);
  }
  .scroll-item>img {
    width: 100%;
    margin-bottom: 0;
  }
  .scroll-infinity.scroll-seminar .scroll-list {
    gap: 0;
  }
  .scroll-infinity.scroll-seminar .scroll-item {
    width: calc(100vw / 5);
  }
/* ================================================
■ ボタン
================================================ */
a.button {
    display: inline-block;
    width: 100%;
    max-width: 30rem;
    height: auto;
    position: relative;
    background: #ffd70d;
    border: 2px solid #ffd70d;
    border-radius: 10rem;
    padding: 2rem 1.5rem;
    font-weight: bold;
    font-size: 2.1rem;
    color: #1e3135;
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
}
a.button.navy{
    background: #1e3135;
    border: 2px solid #1e3135;
    color: #fff;
}
.button_wrap {
    max-width: 63rem;
    margin: 2rem auto;
}
a.button.center {
    display: block;
    margin: auto;
}
a.button.small {
    font-size: 1.6rem;
    padding: 1.2rem 1rem;
    max-width: 24rem;
}
a.button.line {
    background: #06c755;
    border: 2px solid #06c755;
    position: relative;
}
/* マウスオーバーした際のデザイン */
a.button:hover,
a.button:focus {
  background-color: #fff;
  color: #f39d00;
  opacity: 1;
}
a.button.navy:hover,
a.button.navy:focus {
    background: #fff;
      color:#1e3135;
}
a.button.line {
    background: #06c755;
    border: 2px solid #06c755;
    position: relative;
    padding-left: 5rem
}
a.button.line:before {
position: absolute;
content: "";
background: url(./images/icon_line.png) no-repeat center center;
display: inline-block;
background-size: 3rem;
width: 3rem;
height: 3rem;
left: 5.5rem;
vertical-align: middle;
}
a.button.line:hover,
a.button.line:focus {
  background-color: #fff;
  color: #06c755;
}

a.button.green {
  background: #3e9648;
  border: 2px solid #3e9648;
  position: relative;
  color: #fff;
}
a.button.green:hover,
a.button.green:focus {
  background-color: #fff;
  color: #3e9648;
}

/* ================================================
■ タブ
================================================ */
.tabs {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  max-width: 100rem;
  margin: 0 auto;
}
.tab_label {
  color: #f39d00;
  font-weight: bold;
  text-align: center;
  font-size: 2.1rem;
  border: solid 2px #f39d00;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #f39d00;
}
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}

.tab_content {
    position: relative;
    animation: fadeIn 1s ease;
    border: solid .3rem #f2f0e9;
    padding: 3rem 3rem 5rem;
}
.tab_content h3 {
  text-align: left;
  font-size: 2.8rem;
  margin: 5rem 0 1rem;
}
.tab_content h3:first-child {
  margin-top: 0;
}
.tab_img_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.tab_content table.simple.common {
    margin-top: 2rem;
}
/* ================================================
■ 404/検索結果
================================================ */
body.error404 div#page {
   padding: 20rem 1.5rem;
}
body.error404 .entry-title {
    margin-bottom: 1rem;
    text-align: center;
}
form.search-form {
    text-align: center;
}

/* ================================================
■ top
================================================ */
.main_wrap {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  position: relative;
}
.main_wrap:after {
  position: absolute;
  content: "";
  background: url(./images/logo_main.png) no-repeat top center;
  display: inline-block;
  background-size: 20rem;
  width: 20rem;
  height: 18.7rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  /* 水平/垂直/ぼかし/色 */
  filter:drop-shadow(0px 0px 3px rgb(30 49 53 / .5));
}
.main_wrap a.button {
    max-width: 22rem;
}
.main_wrap h1 {
    margin-bottom: 4rem;
    font-size: 4rem;
    font-weight: bold;
}
.main_company_wrap,
.main_customer_wrap {
  background-image: url(./images/mainimg1_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_company_wrap {
  background-image: url(./images/mainimg1_pc.jpg);
}
.main_customer_wrap {
  background-image: url(./images/mainimg2_pc.jpg);
}
.main_company_contents,
.main_customer_contents {
  background-color:rgba(30,49,54,.7);
  width: 100%;
  max-width: 45rem;
  padding: 8rem 2rem 6rem;
}
.main_company_contents {
  background-color:rgba(30,49,54,.7);

  animation-name: bottom-top;
  animation-duration: 1s;
  animation-delay: .3s; /* 遅延設定 */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.main_company_contents h1 {
    color: #fff;
}
.main_customer_contents {
  background-color:rgba(255,255,255,.6);

  animation-name: bottom-top;
  animation-duration: 1s;
  animation-delay: .6s; /* 遅延設定 */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.top_message {
    font-size: 5rem;
    font-weight: bold;
    line-height: 150%;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 12rem auto;
}

.top_prof {
    display: grid;
    max-width: 140rem;
    margin: auto;
    gap: 7rem;
    grid-template-columns: 1fr 2.5fr 1fr;
}

.top_prof img {
   box-shadow: 0px 0px 10px 5px rgba(30, 49, 54, .1);
}
.top_prof > div:nth-child(1) {
  margin-top: -15rem;
    font-size: 1.4rem;
    line-height: 130%;
}
.top_prof > div:nth-child(1) p {
  font-size: 1.4rem;
}
.top_prof > div:nth-child(2) p {
  font-size: 1.8rem;
}
.top_prof > div:nth-child(2) a {
  display: block;
  margin: 6rem auto 0;
}
.top_prof > div:nth-child(3) {
  margin-top: 15rem;
}

.top_service_wrap {
  max-width: 120rem;
  margin: auto;
}
.top_service_wrap h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  text-align: center;
}
.top_service_wrap ul.arrow {
  margin-top: 1rem;
}
.top_service_wrap ul.arrow li {
    margin-bottom: .5rem;
}
.instagram_wrap {
  width: 100%;
  max-width: 100rem;
  margin: auto;
  text-align: center;
  margin-top: 3rem;
  padding: 8rem 1.5rem 0;
}
.instagram_wrap > a.button.instagram {
    position: relative;
    padding-left: 4rem;
    display: block;
    margin: 3rem auto 0;
}
.instagram_wrap a.button.instagram:before {
    position: absolute;
    content: "";
    background-image: url(./images/icon_insta1.png);
    background-size: 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    left: 7rem;
    margin-top: .2rem;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}

/* ================================================
■ 数値強調
================================================ */
.num_wrap {
    font-size: 3.4rem;
    font-weight: bold;
    margin-top: 3rem;
    line-height: 150%;
}
span.num {
  color: #f39d00;
  font-family: 'Roboto';
  font-size: 3rem;
  font-weight: 900;
}
span.num_strong {
  -webkit-text-stroke: 7px #1e3135;
  color: #ffd70d;
  font-family: 'Roboto';
  font-size: 7rem;
  font-weight: 900;
  position: relative; /* 疑似要素の基準となるように設定 */
  display: inline-block; /* 幅を内容に合わせる */
  z-index: 1; /* 元の文字の下に配置 */
  margin: 0 .5rem;
}
span.num_strong::after {
  content: "";
  -webkit-text-stroke: 0 #1e3135;
  position: absolute; /* 親要素を基準に配置 */
  top: 0;
  left: 0;
  color: #ffd70d;
  z-index: 200; /* 元の文字の下に配置 */
}
span.num_strong.one::after {
  content: "86,883";
}
span.num_strong.two::after {
  content: "1.8";
}
span.num_strong.three::after {
  content: "50";
}
span.num_strong.four::after {
  content: "200";
}
span.num_strong.five::after {
  content: "3000";
}

/* ================================================
■ 企業のお客様
================================================ */
.company_cost_wrap {
    max-width: 120rem;
    margin: auto;
    text-align: center;
}
.company_cost_wrap > .company_top_txt {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
.company_cost_wrap img {
    max-width: 18rem;
    margin: 5rem 0;
}
.company_cost_caption {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
}
.company_voice_wrap {
  max-width: 90rem;
  margin: 0 auto 5rem;
}
.company_voice_wrap > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company_voice_caption {
    background-color: #1e3135;
    color: #fff;
    text-align: center;
    padding: 1.2rem 2rem;
    margin: -3rem 0 2rem;
    font-weight: bold;
    min-width: 20rem;
}
.company_voice_wrap .num_wrap {
  margin-bottom: 2rem;
}
.company_voice_wrap .company_voice {
  width: 90%;
  margin: 0 auto 2rem;
}

/* point_wrap: 全体を中央揃えにするコンテナ */
.point_wrap {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
/* point: 各reason項目をFlexboxで配置 */
.point {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* 各項目の間隔 */
}

/* point の直下の div（各項目）*/
.point > div {
    flex: 0 1 calc(33.33% - 20px); /* 基本的に3列表示（gapを考慮） */
    max-width: 320px; /* 各項目の最大幅 */
    padding: 15px; /* 必要最低限のパディング */
    text-align: center;
    box-sizing: border-box;
}

/* 各項目内の要素のスタイル */
.point > div img {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-bottom: 3rem;
    object-fit: contain;
    border-radius: 100%;
}

.point > div h3 {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.point > div h3 span {
    font-size: 2.8rem;
    color: #f39d00;
    font-weight: bold;
    font-family: 'Roboto';
}

.point > div p {
  margin-bottom: 3rem;
  text-align: left;
}


/* --- レスポンシブ対応 --- */

/* タブレット向け (2列表示) */
@media (max-width: 992px) {
    .point > div {
        flex: 0 1 calc(50% - 20px);
    }
}

/* スマートフォン向け (1列表示) */
@media (max-width: 768px) {
    .point > div {
        flex: 0 1 100%;
        max-width: 320px;
    }
}

/* 非常に狭い画面での余白調整 */
@media (max-width: 480px) {
    .point_wrap {
        padding: 0 15px;
    }
    .point > div {
        padding: 10px; /* パディングをさらに減らす */
    }
}
/* ================================================
■ 個人のお客様
================================================ */
.grid_wrap {
    max-width: 100rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.grid_wrap > div {
  align-items: center;
}
.txt_wrap {
    max-width: 60rem;
    margin: 5rem auto 0;
}
.txt_wrap h4 {
    margin: 2rem 0 1rem;
}

/* ================================================
■ セミナー
================================================ */
.seminer_num_wrap {
    max-width: 60rem;
    margin: 5rem auto 0;
}
.seminer_num_wrap > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.seminer_num_title {
    background-color: #1e3135;
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    padding: 1.2rem 2rem;
    margin: 3rem 0 2rem;
    font-weight: bold;
    min-width: 20rem;
}
.seminer_num_caption {
    max-width: 16rem;
    text-align: center;
    margin: 6rem auto 8rem;
    padding: 1rem;
    background-color: #fff;
    border: solid .1rem #ccc;
    font-size: 1.4rem;
}

.page_about {
    max-width: 100rem;
    margin: auto;
}
.page_about img {
  max-width: 36rem;
  margin: auto;
}
.page_about_wrap {
  display: flex;
  gap: 10rem !important;
  justify-content: center;
  line-height: 180%;
}
.page_about .title {
  border: solid.1rem #1e3135;
  color: #1e3135;
  text-align: center;
  font-size: 1.6rem;
  padding: .6rem 1rem;
  margin: 0 0 2rem;
  font-weight: bold;
  max-width: 15rem;
}
.page_about h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.page_about h3 {
    font-size: 2.4rem;
    margin-bottom: 5rem;
}
.page_about h3 span {
    font-size: 1.8rem;
}

/* ================================================
■ プロフィール
================================================ */
.page_about.prof {
    max-width: 120rem;
    margin: 5rem auto 0;
    padding-bottom: 3rem;
}
.page_about_wrap.prof {
    align-items: center;
}
.page_about_wrap.prof h2 {
    text-align: left;
    font-size: 3.4rem;
    margin-bottom: 2rem;
}

.prof_wrap {
    max-width: 80rem;
    margin: 0 auto;
}
.prof_wrap h3 {
    margin: 3rem 0 2rem;
}
.prof_wrap h3:first-child {
    margin-top: 0;
}