@charset "Shift_JIS";


/* ####################ページ全体の設定#################### */
body {
	margin: 0;
       font-family: serif;
}

/* 「コンテンツ」ブロック */
.contents {
	padding: 15px 15px 0 15px;
	margin: 0;
}

/* SUB */
.sub {
	padding: 0 10px 0 10px;
	margin: 0;
}

/* 記事 */
article {
	background-color: #f5f5f5;
	padding: 30px;
}

/* トピックス */
.topics {
	background-color: #f5f5f5;
	padding: 20px;
}





/* カラー */

a {
	color: #666666;
       text-decoration:underline;
}

p {
	color: #666666;
}

.box1 {
	background: rgb(75 86 89/.7);
}

.sub  {
	background-color: #f5f5f5;
}

h1 {
	color: #666666;
}

h2 {
	color: #666666;
}

h3 {
	color: #666666;
}

h4 {
	color: #666666;
}




/* イメージサイズ */


.imgsize3 {
	width: 150px;
       height: auto;
       margin: auto;
}

.imgsize4 {
	width: 30px;
       height: auto;
       margin: auto;
}

.imgsize5 {
	width: 100%;
       height: auto;
       margin: auto;
}

.imgsize6 {
	width: 60%;
       height: auto;
       margin: 30px 0 40px 0;
}

.imgsize7 {
	width: 60%;
       height: auto;
       margin: 30px 0 60px 0;
}

.imgsize8 {
	width: 60%;
       height: auto;
       margin: 30px 0 60px 0;
}


/* イメージ9以降はサイズを分けている */



.topicsin {
	width: 95%;
       height: auto;
       margin: auto;
}


.tyumon-text { 
	width: 80%;
       height: auto;
       margin: auto;
}


.introduction-text { 
	width: 80%;
       height: auto;
       margin: auto;
}



/* パソコンで見たときは"pc"のclassが付いた画像が表示される */

img { max-width: 100%;
       height: auto;
 }
.pc { display: block !important; }
.sp { display: none !important; }


 
/* スマートフォンで見たときは"sp"のいclassが付いた画像が表示される */

@media only screen and (max-width: 750px) {
img { max-width: 100%;
       height: auto;
 }
.pc { display: none !important; }
.sp { display: block !important; }
}



/* サブメニュー */
aside {
	background-color: #f5f5f5;
	padding: 15px;
	margin-top: 18px;
}

/* トピックス */
.topics {
	background-color: #f5f5f5;
	padding: 5px;
	margin-top: 20px;
}




/* テーブル（custom-border） */
table.custom-border1 {
  width: 95%;
  border-collapse: collapse; /* 枠を1本に */
  margin: 0 auto;
}

table.custom-border1 td,
table.custom-border1 th {
  width: 50%;
  border: 1px solid #666666;
  text-align: center;
  padding: 5px;
}

/* ↑の1行目（見出し）の背景色 */
table.custom-border1 tr:first-child {
  background-color: #f0f0f0; /* グレー */
}

/* ↑↑の2行目以降の背景色 */
table.custom-border1 tr:not(:first-child) {
  background-color: #ffffff; /* 白 */
}




table.custom-border2 {
  width: 95%;
  border-collapse: collapse; /* 枠を1本に */
  margin: 0 auto;
}

table.custom-border2 td,
table.custom-border2 th {
  width: 20%;
  border: 1px solid #666666;
  text-align: center;
  padding: 5px;
}

/* ↑1行目（見出し）の背景色 */
table.custom-border2 tr:first-child {
  background-color: #f0f0f0; /* グレー */
}

/* ↑↑2行目以降の背景色 */
table.custom-border2 tr:not(:first-child) {
  background-color: #ffffff; /* 白 */
}



table.custom-border3 {
    width: 90%;
    border-collapse: collapse;
    margin: 0 auto; /* 中央寄せ */
}

table.custom-border3 td:first-child,
table.custom-border3 th:first-child {
    width: 35%;
}

table.custom-border3 td:last-child,
table.custom-border3 th:last-child {
    width: 65%;
}

table.custom-border3 td,
table.custom-border3 th {
    border: 0px solid #666666;
    text-align: left;
    padding: 5px;
}


table.custom-border4 {
  width: 90%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}



table.custom-border5 {
  width: 90%;
  border-collapse: collapse;
  margin: 0 auto;
  font-family: serif;
}

table.custom-border5 td,
table.custom-border5 th {
  border: 1px solid #666666;
  text-align: center;
  padding: 5px;
}

/* 列幅 */
table.custom-border5 td:nth-child(1) { width: 30%; }
table.custom-border5 td:nth-child(2) { width: 45%; }
table.custom-border5 td:nth-child(3) { width: 25%; }

/* 1行目の文字色と背景 */
table.custom-border5 tr:first-child td,
table.custom-border5 tr:first-child th {
  background-color: #999999;
  color: white;
}

/* 2行目以降 */
table.custom-border5 tr:not(:first-child) {
  background-color: #ffffff;
}

table.custom-border5 tr:first-child h5 {
  color: white;
}



table.custom-border6 {
  width: 95%;
  border-collapse: separate; /* ← これが重要！ */
  border-spacing: 10px;       /* ← セルの間にギャップを作る */
  margin: 0 auto;
}

table.custom-border6 td,
table.custom-border6 th {
  width: 50%;
  background-color: #ffffff;
  border: 1px solid #666666;
  text-align: center;
  padding: 5px;
}



table.custom-border7 {
  width: 90%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}



table.custom-border8 {
    width: 90%;
    border-collapse: collapse;
    margin: 0 auto; /* 中央寄せ */
}

table.custom-border8 td:first-child,
table.custom-border8 th:first-child {
    width: 10%;
}

table.custom-border8 td:last-child,
table.custom-border8 th:last-child {
    width: 90%;
}

table.custom-border8 td,
table.custom-border8 th {
    border: 0px solid #666666;
    text-align: left;
    padding: 5px;
}


table.custom-border9 {
  width: 100%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}



table.custom-border10 {
    width: 95%;
    border-collapse: collapse;
    margin: 0 auto;
}

table.custom-border10 td:first-child,
table.custom-border10 th:first-child {
    width: 30%;
    background-color: #999999;
    color: #ffffff;
}

table.custom-border10 td:first-child h5,
table.custom-border10 th:first-child h5 {
    color: #ffffff; /* ← これが重要！ */
}

table.custom-border10 td:last-child,
table.custom-border10 th:last-child {
    width: 35%;
}

table.custom-border10 td:not(:first-child),
table.custom-border10 th:not(:first-child) {
    background-color: #ffffff;
}

table.custom-border10 td,
table.custom-border10 th {
    border: 1px solid #666666;
    text-align: center;
    padding: 5px;
}


table.custom-border11 {
  width: 95%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}


table.custom-border12 {
  width: 100%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}



table.custom-border13 {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto; /* 中央寄せ */
}

table.custom-border13 td:first-child,
table.custom-border13 th:first-child {
    width: 60%;
}

table.custom-border13 td:last-child,
table.custom-border13 th:last-child {
    width: 40%;
}

table.custom-border13 td,
table.custom-border13 th {
    background-color: #ffffff;
    border: 1px solid #666666;
    vertical-align: middle; /* ← これが垂直中央揃え */
    text-align: center;
    padding: 5px;
}











/* #################### 767px以下 #################### */
@media (max-width: 767px) {

/* トグルボタン */
#menubtn	{padding: 6px 12px;
	border: solid 1px #aaaaaa;
	border-radius: 5px;
	background-color: #ffffff;
       margin: 10px;
}

#menubtn:hover	{background-color: #dddddd}

#menubtn:focus	{outline: none}

#menubtn i	{color: #888888;
	font-size: 18px}

#menubtn span	{display: inline-block;
	text-indent: -9999px}


/* ナビゲーションメニュー（縦並び） */
.menu	{display: none}

.menu ul	{margin: 0;
	padding: 0;
	list-style: none}

.menu li a	{display: block;
	padding: 5px;
	color: #ffffff;
	font-size: 17px;
	text-decoration: none}

.menu li a:hover	{background-color: #eeeeee}

}


/* ナビゲーション固定 */
header {
  position: -webkit-sticky;
  position:         sticky;
  top: 0;
}





/* 768以下のｈ指定 */
h1 {
	color: #666666;
       font-size: 30px;
       height: auto;
       margin: auto;
}

h2 {
	color: #666666;
       font-size: 25px;
       height: auto;
       margin: auto;
}

h3 {
	color: #666666;
       font-size: 20px;
       height: auto;
       margin: auto;
}

h4 {
	color: #666666;
       font-size: 15px;
       height: auto;
       margin: auto;
}

h5 {
	color: #666666;
       font-size: 13px;
       height: auto;
       margin: auto;
}

h6 {
	color: #666666;
       font-size: 12px;
       height: auto;
       margin: auto;
}



/* 768以下の強調棒指定 */
.emphasis {
  border-left: 7px solid #296e95;
  padding-left: 5px;
}








.imgsize1 {
	width: 200px;
       height: auto;
       margin: 7px 70px 0 70px;
}


.imgsize2 {
	width: 300px;
       height: auto;
       margin: 0 25px 19px 25px;
}


.imgsize9 {
	width: 40%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize10 {
	width: 60%;
       height: auto;
       margin: 20px 0 0 0;
}


.imgsize11 {
	width: 55%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize13 {
	width: 35%;
       height: auto;
       margin: 20px 0 0 0;
}


.imgsize14 {
	width: 50%;
       height: auto;
       margin: 5px 0 0 0;
}


.imgsize15 {
	width: 100%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize16 {
	width: 100%;
       height: auto;
       margin: 20px 0 20px 0;
}


.imgsize17 {
	width: 12%;
       height: auto;
       margin: 0 0 10px 0;
}


.imgsize18 {
	width: 50%;
       height: auto;
       margin: 20px 0 0 0;
}


.imgsize19 {
	width: 95%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize20 {
	width: 50%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize21 {
	width: 30%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize22 {
  width: 90%;
  height: auto;
  max-height: 150px; /* 画像高さ制限（調整可） */
  display: inline-block; /* 垂直位置調整に安定 */
  vertical-align: middle; /* 念のため画像にも指定 */
  margin: 7px 0 7px 0;
}




/* 768以下のBACK-TOPテーブル */
.back-top {
      width: 80%;
      margin: 0 auto;
      border-collapse: collapse;
}

.back-top td {
      width: 50%;
      text-align: center;
      vertical-align: middle;
}

.back-top img {
      height: 15px;
      width: auto;
      border: none;
}





/* 768以下の身長のテーブル */
.table1 {
      width: 100%;           /* 画面幅の60% */
      margin-left: auto;    /* 自動で左マージンを取ることで右寄せ */
      margin-right: 0;      /* 右のマージンは0 */
      border-collapse: collapse;
}








/* 768以下のitemcatedgorybox-aの並び替え */
.itemcategorybox-a:after {content: "";
              display: block;
              clear: both
}

.itemcategorybox2 {float: left;
              width: 100%
}
   
.itemcategorybox3 {float: left;
              width: 50%
}

.itemcategorybox4 {float: left;
              width: 50%
}

.itemcategorybox5 {float: left;
              width: 50%
}

.itemcategorybox6 {float: left;
              width: 50%
}

.itemcategorybox7 {float: left;
              width: 100%
}

.itemcategorybox8 {float: left;
              width: 100%
}

.itemcategorybox9 {float: left;
              width: 100%
}

.itemcategorybox10 {float: left;
              width: 100%
}

.itemcategorybox11 {float: left;
              width: 100%
}







/* 768以下のitemcatedgorybox-bの並び替え */
.itemcategorybox-b:after {content: "";
              display: block;
              clear: both
}

.itemcategorybox2 {float: left;
              width: 100%
}
   
.itemcategorybox3 {float: left;
              width: 50%
}

.itemcategorybox4 {float: left;
              width: 50%
}

.itemcategorybox5 {float: left;
              width: 50%
}

.itemcategorybox6 {float: left;
              width: 50%
}

.itemcategorybox7 {float: left;
              width: 100%
}

.itemcategorybox8 {float: left;
              width: 100%
}

.itemcategorybox9 {float: left;
              width: 100%
}

.itemcategorybox10 {float: left;
              width: 100%
}

.itemcategorybox11 {float: left;
              width: 100%
}







/* 768以下のitemcatedgorybox-eの並び替え */

.itemcategorybox-e:after {content: "";
              display: block;
              clear: both
}

.itemcategorybox10 {float: left;
              width: 100%
}
   
.itemcategorybox11 {float: left;
              width: 100%
}








/* 768以下のitemcategoryarticle */
.itemcategoryarticle1 {
	background-color:  rgb(250, 250, 237);
	padding: 10px;
}

.itemcategoryarticle2 {
	background-color:  rgb(250, 250, 237);
	padding: 0 10px 0 10px;
       margin: 0;
}

.itemcategoryarticle3 {
	background-color:  rgb(250, 250, 237);
	padding: 20px;
}

.itemcategoryarticle4 {
	background-color:  rgb(250, 250, 237);
	padding: 20px;
}





/* 768以下のcategoryarticle */
.categoryarticle1 {
	background-color:  rgb(250, 250, 237);
	padding: 10px;
}


.categoryarticle2 {
	background-color:  rgb(250, 250, 237);
	padding: 10px;
}




/* 768以下のcompanyarticle */
.companyarticle1 {
	background-color:  #f5f5f5;
	padding: 20px;
}


.companyarticle1-a {
	width: 90%;
	height: auto;
	margin: 0 auto; /* 左右中央に配置 */
	background-color: #f5f5f5;
	padding: 0px;
}



/* 768以下のitemarticle1 */
.itemarticle1 {
	background-color: #f5f5f5;
	padding: 30px;
}


/* 768以下のintroductionarticle1 */
.introductionarticle1 {
	background-color: #f5f5f5;
	padding: 30px;
}


/* 768以下のshoplistarticle1 */
.shoplistarticle1 {
	background-color:  #f5f5f5;
	padding: 20px;
}


/* 768以下のareaarticle1 */
.areaarticle1 {
	background-color:  #f5f5f5;
	padding: 20px;
}


/* 768以下のnewsarticle1 */
.newsarticle1 {
	background-color:  #f5f5f5;
	padding: 20px;
}


/* 768以下のdevelopmentarticle1 */
.developmentarticle1 {
	background-color:  #f5f5f5;
	padding: 20px;
}


/* 768以下のlinearticle1 */
.linearticle1 {
	background-color:  #f3fff0;
	padding: 20px;
}


/* 768以下のlineareaarticle1 */
.lineareaarticle1 {
	background-color:  #f3fff0;
	padding: 20px;
}







/* 768以下のwallpaper1 */
.wallpaper1 {
	background-color: rgb(250, 250, 237);
	padding: 10px;
}






/* itemcategoryのサムネイルを連動させて画像を切り替える */
:root {
  --overlay-color: rgb(75 86 89/.5);
}

/* ラッパー */
.bl_imgSwitcher {
  inline-size: min(100%, 712px);
  margin-inline: auto;
  margin-block: 0rem;
}

/* メイン画像 */
.bl_imgSwitcher_main img {
  aspect-ratio: 3/4;
  inline-size: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: opacity .4s cubic-bezier(.25, 1, .5, 1);
}

/* サムネイルのエリア */
.bl_imgSwitcher_thumb {
  display: flex;
  gap: 0 1.5rem;
  margin-block-start: 2rem;
  overflow-x: scroll;
}

/* サムネイルの各ボタン */
.bl_imgSwitcher_btn {
  flex-shrink: 0;
  inline-size: 6.75rem;
  block-size: 9.375rem;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  border: 1px solid rgb(75 86 89/.5);

  &::before {
    content: "";
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 10;
    transition: background-color .4s;
  }

  &:focus-visible::before {
    background-color: var(--overlay-color);
  }

  img {
    aspect-ratio: 3/4;
    inline-size:  auto;
    block-size:  auto;
    object-fit: cover;
  }
}

@media (any-hover: hover) {
  .bl_imgSwitcher_btn:hover::before {
    background-color: var(--overlay-color);
  }
}

/* is_activeクラスが付与されたら、サムネイルに半透明の黒背景を適用 */
.bl_imgSwitcher1_btn.is_active::before {
  background-color: var(--overlay-color);
}



/* 4:3 バージョン */
.bl_imgSwitcher--4x3 .bl_imgSwitcher_main img,
.bl_imgSwitcher--4x3 .bl_imgSwitcher_btn img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* サムネイルサイズ調整（お好みで） */
.bl_imgSwitcher--4x3 .bl_imgSwitcher_btn {
  inline-size: 9rem;    /* 横長に */
  block-size: 6.75rem;
}






/* カラーdotの指定 */
.circle {
  width: 20px;
  height: 20px;
  border: 1px solid rgb(75 86 89/.5);
  border-radius: 50%;
  background-color: var(--dot-color, black);
}

.circle-group {
  display: flex;
  gap: 5px;
}






/* 768以下のアクセスカウンター */
.counter {
      text-align: center;
}




























/* #################### 768px以上 #################### */
@media (min-width: 768px) {


/* トグルボタン */
#menubtn	{display: none}

/* ナビゲーション */
#menu	{display: block !important
}

.menu ul	{margin: 0;
	padding: 0;
	list-style: none}

.menu li a	{display: block;
       margin: 10px 25px 10px 25px;
	padding: 10px 15px;
	color: #ffffff;
	font-size: 15px;
	text-decoration: none}

.menu li a:hover	{background-color: #eeeeee}

.menu ul:after	{content: "";
	display: block;
	clear: both}

.menu li	{float: left;
	width: auto}

/* ナビゲーションメニュー（縦並び） */
.menu	{display: none}

.menu ul	{margin: 0;
	padding: 0;
	list-style: none}

.menu li a	{display: block;
	padding: 5px;
	color: #ffffff;
	font-size: 15px;
	text-decoration: none}
       

.menu li a:hover	{background-color: #eeeeee}


/* ナビゲーション固定 */
header {
  position: -webkit-sticky;
  position:         sticky;
  top: 0;
}





/* 768以上のitembox-aの並び替え */
.itembox-a {
  display: flex;
  flex-wrap: wrap; /* スマホなどの狭い画面でも折り返し */
  justify-content: center;
  align-items: stretch; /* 子要素の高さを揃える */
}

.itembox2,
.itembox3 {
  flex: 1 1 45%; /* 最小幅45%、画面サイズに応じて可変 */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.itemarticle1 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.imgsize5,
.imgsize6 {
  max-width: 100%;
  height: auto;
}





/* 768以上のintroductionbox-bの並び替え */

.introductionbox-b:after {content: "";
              display: flex;
              flex-wrap: wrap;
}

.introductionbox-a {float: left;
              width: 100%
}

.introductionbox4 {float: left;
              width: 100%
}





/* 768以上のintroductionbox-aの並び替え */

.introductionbox-a:after {content: "";
              display: flex;
              flex-wrap: wrap;
}

.introductionbox2 {float: left;
              width: 50%
}
   
.introductionbox3 {float: left;
              width: 50%
}







/* 768以上のitemcatedgorybox-cの並び替え */

.itemcategorybox-c:after {content: "";
              display: block;
              clear: both
}

.itemcategorybox-a {float: left;
              width: 50%
}
   
.itemcategorybox-b {float: left;
              width: 50%
}




/* 768以上のitemcatedgorybox-fの並び替え */

.itemcategorybox-f:after {content: "";
              display: flex;
              flex-wrap: wrap;
}

.itemcategorybox-d {float: left;
              width: 100%
}
   
.itemcategorybox-e {float: left;
              width: 100%
}




/* 768以上のitemcatedgorybox-dの並び替え */

.itemcategorybox-d:after {content: "";
              clear: both
              display: flex;
              flex-wrap: wrap;
}

.itemcategorybox8 {float: left;
              width: 50%
}
   
.itemcategorybox9 {float: left;
              width: 50%
}



/* 768以上のitemcatedgorybox-eの並び替え */

.itemcategorybox-e:after {content: "";
              display: flex;
              flex-wrap: wrap;
}

.itemcategorybox10 {float: left;
              width: 50%
}
   
.itemcategorybox11 {float: left;
              width: 50%
}




/* 768以上のcategorybox-aの並び替え */
.categorybox-a {
    display: flex;
    flex-wrap: wrap;
}

.categorybox2 {
    width: 65%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.categorybox3 {
    width: 35%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.categoryarticle1 {
    height: 100%;
}

.categoryarticle2 {
    height: 100%;
}




/* 768以上のshoplistbox-cの並び替え */

.shoplistbox-c:after {content: "";
              display: flex;
              flex-wrap: wrap;
}

.shoplistbox-a {float: left;
              width: 50%
}
   
.shoplistbox-b {float: left;
              width: 50%
}


/* 768以上のshoplistbox-dの並び替え */
.shoplistbox-d {float: left;
              width: 100%
}




/* 768以上のlinebox-cの並び替え */

.linebox-c:after {content: "";
              display: flex;
              flex-wrap: wrap;
}

.linebox-a {float: left;
              width: 50%
}
   
.linebox-b {float: left;
              width: 50%
}


/* 768以上のlinebox-dの並び替え */
.linebox-d {float: left;
              width: 100%
}






/* 768以上のitemcategoryarticle */
.itemcategoryarticle3 {
	background-color:  rgb(250, 250, 237);
	padding: 30px 100px 30px 100px;
}


.itemcategoryarticle4 {
	background-color:  rgb(250, 250, 237);
	padding: 30px 100px 30px 100px;
}



/* 768以上のcategoryarticle */
.categoryarticle1 {
	background-color:  rgb(250, 250, 237);
	padding: 0px 0px 0px 40px;
}

.categoryarticle2 {
	background-color:  rgb(250, 250, 237);
	padding: 0px 40px 0px 0px;
}

.categoryarticle3 {
	width: 85%;
       height: auto;
	background-color:  rgb(250, 250, 237);
	padding: 0px 0px 0px 0px;
}


/* 768以上のcompanyarticle1-a */
.companyarticle1-a {
	width: 60%;
	height: auto;
	margin: 0 auto; /* 左右中央に配置 */
	background-color: #f5f5f5;
	padding: 0px;
}




/* 768以上のintroductionarticle1 */
.introductionarticle1 {
	background-color: #f5f5f5;
	padding: 120px;
}






/* 768以上のshoplistarticle1 */
.shoplistarticle1 {
	background-color:  #f5f5f5;
	padding: 20px 80px 20px 80px;
}


/* 768以上のshoplistarticle2 */
.shoplistarticle2 {
	background-color:  #f5f5f5;
	padding: 0 100px 0 100px;
}


/* 768以上のshoplistarticle3 */
.shoplistarticle3 {
	background-color:  #f5f5f5;
	padding: 20;
}



/* 768以上のlinearticle1 */
.linearticle1 {
	background-color:  #f3fff0;
	padding: 20px 80px 20px 80px;
}


/* 768以上のlinearticle2 */
.linearticle2 {
	background-color:  #f3fff0;
	padding: 0 100px 0 100px;
}


/* 768以上のlinearticle3 */
.linearticle3 {
	background-color:  #f3fff0;
	padding: 20;
}






/* 768以上のｈ指定 */

h1 {
	color: #666666;
       font-size: 50px;
       height: auto;
       margin: auto;
}


h2 {
	color: #666666;
       font-size: 40px;
       height: auto;
       margin: auto;
}


h3 {
	color: #666666;
       font-size: 35px;
       height: auto;
       margin: auto;
}


h4 {
	color: #666666;
       font-size: 25px;
       height: auto;
       margin: auto;
}


h5 {
	color: #666666;
       font-size: 20px;
       height: auto;
       margin: auto;
}

h6 {
	color: #666666;
       font-size: 13px;
       height: auto;
       margin: auto;
}



.imgsize1 {
	width: 200px;
       height: auto;
       margin: 10px 70px 0 70px;
}


.imgsize2 {
	width: 300px;
       height: auto;
       margin: 0 25px 18px 25px;
}


.imgsize9 {
	width: 30%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize10 {
	width: 25%;
       height: auto;
       margin: 20px 0 0 0;
}


.imgsize11 {
	width: 40%;
       height: auto;
       margin: 0 0 5px 0;
}


.imgsize12 {
	width: 80%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize13 {
	width: 15%;
       height: auto;
       margin: 20px 0 0 0;
}


.imgsize14 {
	width: 50%;
       height: auto;
       margin: 5px 0 0 0;
}


.imgsize15 {
	width: 60%;
       height: auto;
       margin: 20px 0 0 0;
}


.imgsize16 {
	width: 70%;
       height: auto;
       margin: 20px 0 20px 0;
}


.imgsize17 {
	width: 4%;
       height: auto;
       margin: 10px 0 10px 0;
}


.imgsize18 {
	width: 35%;
       height: auto;
       margin: 50px 0 50px 0;
}


.imgsize19 {
	width: 95%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize20 {
	width: 25%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize21 {
	width: 15%;
       height: auto;
       margin: 0 0 0 0;
}


.imgsize22 {
  width: 60%;
  height: auto;
  max-height: 150px; /* 画像高さ制限（調整可） */
  display: inline-block; /* 垂直位置調整に安定 */
  vertical-align: middle; /* 念のため画像にも指定 */
  margin: 7px 0 7px 0;
}








/* 768以上の身長のテーブル */
.table1 {
      width: 60%;           /* 画面幅の60% */
      height: auto;
      margin: auto;    /* 自動で左マージンを取ることで右寄せ */
}







/* 768以上のテーブル（custom-border） */
table.custom-border3 {
    width: 60%;
    border-collapse: collapse;
    margin: 0 auto; /* 中央寄せ */
}

table.custom-border3 td:first-child,
table.custom-border3 th:first-child {
    width: 50%;
}

table.custom-border3 td:last-child,
table.custom-border3 th:last-child {
    width: 50%;
}

table.custom-border3 td,
table.custom-border3 th {
    height: 50px;
    border: 0px solid #666666;
    text-align: left;
    padding: 5px;
}




table.custom-border4 {
  width: 60%; /* 画面幅の60% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}




table.custom-border5 {
  width: 60%;
  border-collapse: collapse;
  margin: 0 auto;
  font-family: serif;
}

table.custom-border5 td,
table.custom-border5 th {
  border: 1px solid #666666;
  text-align: center;
  padding: 5px;
}

/* 列幅 */
table.custom-border5 td:nth-child(1) { width: 30%; }
table.custom-border5 td:nth-child(2) { width: 40%; }
table.custom-border5 td:nth-child(3) { width: 30%; }

/* 1行目の文字色と背景 */
table.custom-border5 tr:first-child td,
table.custom-border5 tr:first-child th {
  background-color: #999999;
  color: white;
}

/* 2行目以降 */
table.custom-border5 tr:not(:first-child) {
  background-color: #ffffff;
}

table.custom-border5 tr:first-child h5 {
  color: white;
}




table.custom-border7 {
  width: 60%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}



table.custom-border8 {
    width: 60%;
    border-collapse: collapse;
    margin: 0 auto; /* 中央寄せ */
}

table.custom-border8 td:first-child,
table.custom-border8 th:first-child {
    width: 10%;
}

table.custom-border8 td:last-child,
table.custom-border8 th:last-child {
    width: 90%;
}

table.custom-border8 td,
table.custom-border8 th {
    border: 0px solid #666666;
    text-align: left;
    padding: 5px;
}


table.custom-border9 {
  width: 80%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}


table.custom-border10 {
    width: 70%;
    border-collapse: collapse;
    margin: 0 auto;
}

table.custom-border10 td:first-child,
table.custom-border10 th:first-child {
    width: 30%;
    background-color: #999999;
    color: #ffffff;
}

table.custom-border10 td:first-child h5,
table.custom-border10 th:first-child h5 {
    color: #ffffff; /* ← これが重要！ */
}

table.custom-border10 td:last-child,
table.custom-border10 th:last-child {
    width: 35%;
}

table.custom-border10 td:not(:first-child),
table.custom-border10 th:not(:first-child) {
    background-color: #ffffff;
}

table.custom-border10 td,
table.custom-border10 th {
    border: 1px solid #666666;
    text-align: center;
    padding: 5px;
}


table.custom-border11 {
  width: 70%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}


table.custom-border12 {
  width: 80%; /* 画面幅の90% */
  margin: 0 auto; /* 中央寄せ（任意） */
  border: 0px solid #000; /* ボーダー例（必要に応じて変更） */
  border-collapse: collapse; /* テーブルのボーダーをまとめる（任意） */
}


table.custom-border13 {
    width: 70%;
    border-collapse: collapse;
    margin: 0 auto; /* 中央寄せ */
}

table.custom-border13 td:first-child,
table.custom-border13 th:first-child {
    width: 65%;
}

table.custom-border13 td:last-child,
table.custom-border13 th:last-child {
    width: 35%;
}

table.custom-border13 td,
table.custom-border13 th {
    background-color: #ffffff;
    border: 1px solid #666666;
    text-align: center;
    padding: 5px;
}










/* 768以上のBACK-TOPテーブル */
.back-top {
      width: 80%;
      margin: 0 auto;
      border-collapse: collapse;
}

.back-top td {
      width: 50%;
      text-align: center;
      vertical-align: middle;
}

.back-top img {
      height: 25px;
      width: auto;
      border: none;
      padding: 50px 0 30px 0;
}



/* PC環境でリンクの機能を見た目も含めて無効化 */
.tel-link {
    pointer-events: none;   /* クリック無効化 */
    color: inherit;         /* 色を通常のテキストに */
    text-decoration: none;  /* 下線削除 */
    cursor: default;        /* 通常のカーソルに */
}










}






















/*  ====================PC版(600px以上)==================== */
/* ==== PC版 ==== */
@media (min-width: 600px) {

/* PC版：コンテナ */
.container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* PC版：「ヘッダー」ブロック内のコンテナ */
header .container {
	display: flex;
	justify-content: space-between;
}

/* PC版：記事 */
article {
	padding-left: 60px;
	padding-right: 60px;
}


  
/* ========== PC版の設定ここまで ========== */




/*  ====================PC版(1025px以上)==================== */
/* ==== PC版（大） ==== */
@media (min-width: 1025px) {

/* PC版（大）：コンテナ */
.container {
	max-width: 1300px;
}


/* PC版（大）：「コンテンツ」ブロック内のコンテナ */
.contents .container {
	display: flex;
	justify-content: space-between;
}

/* PC版（大）：記事 */
.leftsaide {
	width: 68%;
	box-sizing: border-box;
}

.leftsaide2 {
	width: 68%;
	box-sizing: border-box;
}


/* PC版（大）：サブメニュー */
.sub {
	width: 28%;
	padding-top: 0px;
}

.sub2 {
	width: 28%;
	padding-top: 0px;
}

/* PC版（大）：プロフィール */
.profile {
	margin-top: 0;
}

}



/* ========== PC版（大）の設定ここまで ========= */






