@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", sans-serif;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, th, td, div, span {
  color: #24292E;
  line-height: 100%;
  margin: 0;
}

p {
  line-height: 1.5;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

a {
  text-decoration: none;
  color: #303300;
}

@media (hover: hover) {
  a:hover, button:hover {
    cursor: pointer;
  }
}
ul {
  list-style: none;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th, table td {
  font-weight: 500;
}

img {
  width: 100%;
  image-rendering: auto;
}

input:focus-visible {
  outline: none;
}

body {
  min-height: 75vh;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  position: relative;
  z-index: 0;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*格子ratticeストライプstripeチェックcheck麻asaバツcross六角matrix*/
/*柄のサイズbackground-size*/
/* body:before{
    background-image: url(../assets/common/bg_cross.png);
    background-size: 15px;
    background-repeat: repeat;
} */
body::before { /*背景【ドット】*/
  background: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  background-image: radial-gradient(#e9e9e9 0%, transparent 30%);
  background-size: 8px 8px;
  background-repeat: repeat;
  opacity: 0.5;
}

main {
  min-height: 98vh;
  padding-top: 80px;
}
main p, main ul, main ol {
  margin-bottom: 1.5em;
}

/*  */
.flex {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 600px) {
  .flex {
    display: block;
  }
}
/*  */
button:focus-visible {
  outline: unset;
}

/* ボタンA */
.myBtn {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  position: relative;
  background-color: #f0f0f0; /* 好みの色に変更可 */
  border: solid 2px #2196f3;
  color: #2196f3;
  padding: 1.25em 1em;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 6px 6px 0px #2196f3; /* 浮いてる影 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.myBtn span {
  color: #2196f3;
}
.myBtn span:after {
  content: "\f101";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 0.8em;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .myBtn:hover {
    transform: translateY(2px); /* 押し込み感 */
    box-shadow: 3px 3px 0px #2196f3; /* 影を弱める */
  }
  .myBtn:hover span:after {
    transform: translateX(6px); /* 矢印が右にスライド */
    transition: transform 0.2s ease;
  }
}
/* ボタンB */
.myBtn_gd {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  color: #f9f9f9;
  font-weight: bold;
  text-decoration: none;
  padding: 1em;
  border: outset 2px #303030;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.myBtn_gd::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #909090 0%, #101010 100%);
  background-size: 200% 200%;
  transition: ease 1s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.myBtn_gd span {
  color: #f9f9f9;
  text-transform: capitalize;
}

button.myBtn_gd {
  font-size: 18px;
  letter-spacing: 1em;
  text-indent: 1em;
}

@media (hover: hover) {
  .myBtn_gd:hover::before {
    animation: gradientAnime 0.75s forwards;
    /* background-image: linear-gradient(to right,#70acce 0%,#144da0 100%); */
    /* transition: ease 1s; */
  }
}
@keyframes gradientAnime {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* テーブル */
table.myTbl {
  max-width: calc(100% - 2em);
  margin: 1em auto;
  border-collapse: collapse;
}

/* フォーム */
.myForm input:not([type=radio]), .myForm textarea, .myForm select {
  width: 100%;
  border: solid 1px #c8c8c8;
  font-size: 16px;
  padding: 0.5em;
  border-radius: 5px;
}
.myForm th, .myForm td {
  border: solid 1px #909090;
  padding: 0.5em;
}
.myForm th {
  width: 30%;
  background-color: #f0f0f0;
}
.myForm th span {
  font-size: 12px;
  color: #bf0000;
}
.myForm td {
  width: 70%;
}

/* リスト */
ul.list_notice {
  list-style: "※";
  padding-left: 1.5em;
}
ul.list_notice li {
  font-size: 14px;
  margin-bottom: 0.5em;
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #66a6ff, #89f7fe);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header .myInner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 28px 16px;
}
header .myInner .flex {
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: space-between;
  align-items: center;
}
header .myInner img.myLogo {
  max-width: 240px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
}
header nav ul li {
  margin-right: 30px;
}
header nav ul li:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width:600px){
  header .myInner img.myLogo {
    max-width: 200px;
  }  
}
/* ハンバーガーボタン */
.hamburger {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #f9f9f9;
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ハンバーガーアニメーション：activeクラスで変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* メニュー */
.menu-modal {
  position: fixed;
  top: 80px; /* ヘッダーの高さに合わせる */
  left: 0;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: max-height 0.75s ease;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.menu-modal.active { /* 開いた状態 */
  max-height: 600px; /* メニューの高さに応じて調整 */
  transition: max-height 0.75s ease;
}

/* メニュー項目内 */
header ul.snippet_menu li {
  flex-basis: 25%;
  border: solid 1px #e9e9e9;
  margin: 0;
}
header ul.snippet_menu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 8px 16px;
  font-weight: bold;
  transition: background 0.5s, color 0.25s;
}
header ul.snippet_menu li a:hover {
  background: #2196f3;
  color: #f9f9f9;
}
header ul.snippet_menu li a:hover span {
  color: #f9f9f9;
}
header ul.snippet_menu li a img {
  width: 100%;
  max-width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 1px #f0f0f0;
  margin-right: 8px;
}
header ul.snippet_menu li span {
  display: block;
  font-size: 14px;
}

@media only screen and (max-width: 900px) {
  .menu-modal.active {
    max-height: 100%;
  }
  header ul.snippet_menu li {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 600px) {
  header ul.snippet_menu.flex {
    display: flex;
  }
  header ul.snippet_menu.flex li img {
    flex-basis: 20%;
    max-width: 56px;
  }
  header ul.snippet_menu.flex li span {
    flex-basis: 80%;
    font-size: 12px;
  }
}
/* ハンバーガー開閉時のボタン変化 */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 下層ページタイトル */
.lowerTitle {
  height: 320px;
  border-bottom: 1px solid #66a6ff;
  padding: 64px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lowerTitle::before {
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #3b82f6, #1e3a8a 80%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.lowerTitle .myInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 1080px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 2%;
  text-align: center;
}
.lowerTitle h1, .lowerTitle p {
  margin: 24px auto;
  color: #f9f9f9;
  font-weight: bold;
  text-shadow: 0 0 1px #f9f9f9;
  position: relative;
  z-index: 2;
}
.lowerTitle h1 {
  font-family: sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 4px;
}
.lowerTitle p {
  max-width: 600px;
  font-size: 14px;
  color: #f9f9f9;
  margin: 0 auto;
}
.lowerTitle.type_overlay {
  position: relative;
  text-align: center;
}
.lowerTitle.type_overlay .en {
  font-size: 64px;
  color: rgba(200, 200, 200, 0.3);
  z-index: -1;
  pointer-events: none;
  font-weight: 900;
  letter-spacing: 4px;
  font-family: "Arial Black", "Yu Gothic", "游ゴシック", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 下層ページタイトル背景canvas */
#bg-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* パンくずリスト */
nav.myBcs {
  max-width: 1080px;
  margin: 16px auto;
  padding: 2%;
}
nav.myBcs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5em 0.25em;
  margin-bottom: 0;
  border-bottom: solid 1px #f0f0f0;
}
nav.myBcs ul li {
  font-size: 14px;
  margin-right: 1em;
  position: relative;
}
nav.myBcs ul li::after { /*矢印*/
  content: "\f054";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 8px;
  position: absolute;
  top: 50%;
  right: -1.25em;
  transform: translateY(-50%);
}
nav.myBcs ul li:last-of-type::after {
  display: none;
}
nav.myBcs ul li:first-of-type a:before { /*HOME*/
  content: "\f015";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.25em;
}

/* TOPへ戻るボタン */
#btnToTop {
  display: none;
  cursor: pointer;
  position: fixed;
  right: calc((100% - 1080px) / 2); /* コンテンツ右端に合わせる */
  bottom: 0px;
  padding: 5px 10px;
  z-index: 998;
  transition: opacity 0.5s;
}
#btnToTop span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: #2196f3;
}
#btnToTop span img {
  max-width: 35px;
}

@media only screen and (max-width: 1080px) {
  #btnToTop {
    right: 0;
  }
}
/* フッター */
footer {
  margin-top: 80px;
  background-color: #f0f0f0;
  position: relative;
  z-index: 0;
}
footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, #66a6ff, #66a6ff 10px, #f9f9f9 10px, #f9f9f9 20px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
}
footer .myInner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 2%;
}
footer .myInner img.myLogo {
  max-width: 240px;
}
footer .flex {
  align-items: center;
}
footer .flex .box {
  flex-basis: 50%;
  padding: 1em;
}
footer .box_left li { /*ナレッジ*/
  font-size: 14px;
  line-height: 1.5;
}
footer nav ul.flex {
  justify-content: flex-end;
}
footer nav ul.flex li a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin: 8px;
  margin-right: 0.75em;
}
footer nav ul.flex li a::before {
  content: "\f0da";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 10px;
  margin-right: 0.25em;
}
footer small { /* フッター【コピーライト】 */
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #66a6ff, #89f7fe);
  padding: 16px 8px;
}
footer small span {
  font-size: 12px;
  color: #f9f9f9;
}

/* 403/404 */
.my403, .my404 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ローディング */
#myLoading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#myLoading span {
  width: 50px;
  height: 50px;
  border: 3px solid #ccc;
  border-top-color: #66a6ff;
  border-radius: 50%;
  animation: loadAnime 1s linear infinite;
}

@keyframes loadAnime {
  to {
    transform: rotate(360deg);
  }
}
/* オーバーレイ */
.myOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.myOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* メイン */
section .myInner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2%;
}

@media only screen and (max-width: 600px) {
  section .myInner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* メインビジュアル */
.mainVisual picture, .mainVisual img {
  display: block;
  width: 100%;
  max-width: 1920px;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #e9e9e9;
}

/* コンテンツ */
/* プライバシーポリシー */
.myPp {
  counter-reset: policyList;
}
.myPp h2 {
  font-size: 20px;
  margin-bottom: 1em;
}
.myPp h2::before {
  counter-increment: policyList;
  content: counter(policyList) ".";
  margin-right: 0.5em;
}
.myPp p {
  padding-left: 1em;
}
.myPp ul {
  list-style: disc;
  padding-left: 2.5em;
}
.myPp ul li {
  line-height: 1.5;
}

/* 2カラムぺージ */
.myInner.flex .myCol {
  padding: 0.5em;
}
.myInner.flex .myCol.left {
  flex-basis: 75%;
}
.myInner.flex .myCol.right {
  flex-basis: 25%;
}

/* サイドバー */
aside .widget {
  background-color: #f0f0f0;
  border-radius: 5px;
}
aside .widget .myInner {
  padding: 0.5em;
}
aside .widget h4 {
  background-color: #24292E;
  color: #f9f9f9;
  letter-spacing: 0.5em;
  text-align: center;
  padding: 1em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
aside .list_news li {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: solid 1px #e0e0e0;
}
aside .list_news li span {
  display: block;
  font-size: 12px;
  margin-bottom: 0.5em;
}
aside .list_news li a {
  font-weight: bold;
}
aside .list_news li a::before {
  content: "\f05a";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.25em;
}
aside .list_news li a::after {
  content: "\f054";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 12px;
  margin-left: 0.25em;
}

/* ページャー */
ul.myPager {
  max-width: calc(100% - 5em);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1em auto;
}
ul.myPager li {
  flex-basis: 33.3333333333%;
  text-align: center;
  overflow: hidden;
}
ul.myPager li a {
  display: block;
  padding: 1.5em 0.5em;
  background-color: #f0f0f0;
  border: solid 2px #606060;
  transition: background-color 0.5s;
}
ul.myPager li a.disabled {
  pointer-events: none;
  background-color: #909090;
}
ul.myPager li a.disabled span {
  color: #606060;
}
ul.myPager li a span {
  color: #24292E;
  letter-spacing: 0.25em;
  text-indent: -0.25em;
}
ul.myPager li:nth-of-type(1) a {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
ul.myPager li:nth-of-type(1) a span::before {
  content: "\f137";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.5em;
}
ul.myPager li:nth-of-type(2) a {
  border-left: none;
  border-right: none;
}
ul.myPager li:nth-of-type(2) a span::before {
  content: "\f0ca";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.5em;
}
ul.myPager li:nth-of-type(3) a {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
ul.myPager li:nth-of-type(3) a span::after {
  content: "\f138";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-left: 0.5em;
}

@media (hover: hover) {
  ul.myPager li a:hover {
    background-color: #89f7fe;
    transition: 0.5s;
  }
}
/* 【News】お知らせぺージ */
body.news_pages h1.news_title {
  font-size: 28px;
  margin-bottom: 0.5em;
}
body.news_pages .published_date::before {
  content: "\f05a";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.25em;
}
body.news_pages .thumbnail {
  margin-bottom: 0.5em;
}

/* 【News】お知らせ一覧ぺージ */
ul.list_news li.flex {
  align-items: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-bottom: solid 1px #e0e0e0;
}
ul.list_news li.flex::before {
  content: "\f05a";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 12px;
  margin-right: 0.5em;
}
ul.list_news li.flex span {
  font-size: 14px;
  margin-right: 0.25em;
}
ul.list_news li.flex a {
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.5s;
}
ul.list_news li.flex a:after {
  content: "\f101";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
  margin-left: 0.5em;
  transition: margin-left 0.5s;
}

@media (hover: hover) {
  ul.list_news li.flex a:hover {
    color: #66a6ff;
    transition: color 0.5s;
  }
  ul.list_news li.flex a:hover:after {
    margin-left: 0.75em;
    transition: margin-left 0.5s;
  }
}
/* サイトマップページ */
ul.mySitemap li {
  padding-left: 2em;
  display: flex;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
ul.mySitemap li:before {
  content: "\f0da";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 12px;
  margin-right: 0.5em;
}
ul.mySitemap li:first-of-type {
  font-weight: bold;
  font-size: 1.2em;
  padding-left: 1em;
}

/* 免責事項ぺージ */
body.page_disclaimer h2 {
  margin-bottom: 1em;
  color: #2196f3;
  border-left: solid 8px;
  padding-left: 16px;
}
body.page_disclaimer p {
  padding-left: 1em;
  margin-bottom: 1.75em;
}

/* ダイアログボックス */
dialog {
  width: 90%;
  max-width: 700px;
  border: none;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2196f3;
  color: white;
  padding: 16px 24px;
}
.modal-header span {
  color: #f9f9f9;
  font-weight: bold;
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}
.modal-tabs button {
  flex: 1;
  font-size: 16px;
  letter-spacing: 4px;
  text-indent: 4px;
  padding: 10px;
  background: #f1f1f1;
  border: none;
  border-right: solid 1px #ddd;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}
.modal-tabs button:last-of-type {
  border-right: none;
}
.modal-tabs button.active {
  background: white;
  border-bottom: 3px solid #2196f3;
}

.tab-content {
  display: none;
  padding: 16px;
  background: white;
}
.tab-content.active {
  display: block;
}

.code-block {
  background: #24292E;
  color: #f9f9f9;
  padding: 16px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 16px;
  white-space: pre-wrap;
  margin-bottom: 10px;
  line-height: 1.25;
}

.copy-btn {
  background: #2196f3;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.preview-area {
  border-top: 1px solid #ccc;
  background: #fafafa;
  padding: 24px;
  cursor: default;
  overflow: hidden;
}
.preview-area select {
  appearance: none; /* ブラウザデフォルトの矢印を非表示 */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.modal-tabs {
  display: none;
}

@media only screen and (max-width: 600px) {
  .modal-tabs button {
    font-size: 12px;
    letter-spacing: 0;
    text-indent: 0;
  }
  .preview-area button {
    width: 100% !important;
  }
}
/* 下層ページリスト表示 */
ul.cards {
  justify-content: flex-start;
  list-style: none;
}
ul.cards > li.snippet-card {
  flex-basis: calc(25% - 16px);
  margin: 16px 8px;
}
ul.cards li.snippet-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  width: 200px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
}
ul.cards li.snippet-card h2 {
  font-size: 14px;
  color: #24292E;
  text-align: left;
  margin-bottom: 8px;
}
ul.cards li.snippet-card h2 + p {
  font-size: 14px;
  color: #24292E;
  text-align: left;
  line-height: 1;
  letter-spacing: 0;
}
ul.cards li.snippet-card .preview {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 8px;
  margin-bottom: 16px;
  background: #f0f0f0;
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
}
ul.cards li.snippet-card .preview select {
  appearance: none; /* ブラウザデフォルトの矢印を非表示 */
  -webkit-appearance: none;
  -moz-appearance: none;
}
ul.cards li.snippet-card .preview h2 {
  font-size: 18px;
}

body.snippets_heading .preview {
  align-items: flex-start;
}

body.snippets_accordion ul.cards li.snippet-card .preview {
  height: 240px;
}

body.snippets_returnToTop .preview, body.snippets_loading .preview, body.snippets_hamburger .preview, body.snippets_box .preview {
  align-items: center;
}

body.snippets_bc ul.cards.flex > li, body.snippets_search ul.cards.flex > li, body.snippets_menu ul.cards.flex > li, body.snippets_accordion ul.cards.flex > li {
  flex-basis: calc(50% - 16px);
}

body.snippets_heading ul.cards.flex > li, body.snippets_pagination ul.cards.flex > li, body.snippets_table ul.cards.flex > li, body.snippets_tab ul.cards.flex > li, body.snippets_textBox ul.cards.flex > li, body.snippets_selectBox ul.cards.flex > li, body.snippets_radioButton ul.cards.flex > li {
  flex-basis: calc(33.3333333333% - 16px);
}

body.snippets_bc .preview, body.snippets_search .preview {
  align-items: center;
  background-color: #f9f9f9;
}

body.snippets_list .preview li, body.snippets_list .preview-area li {
  text-align: left;
  margin-bottom: 8px;
}

@media only screen and (max-width: 600px) {
  ul.cards.flex {
    display: block;
  }
  ul.cards.flex li.snippet-card {
    width: calc(100% - 32px);
    flex-basis: 100%;
    margin: 24px auto;
  }
  ul.cards.flex li.snippet-card .preview h2 {
    font-size: 24px;
  }
}
/* カードデザインパターン1 */
.snippet-card.pattern-1 {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 200px;
  transition: transform 0.2s;
}
.snippet-card.pattern-1:hover {
  transform: translateY(-4px);
}
.snippet-card.pattern-1 .preview {
  background: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 8px;
}
.snippet-card.pattern-1 .title {
  font-weight: bold;
  text-align: center;
}

/* カードデザインパターン2 */
.snippet-card.pattern-2 {
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  color: white;
  border-radius: 10px;
  padding: 16px;
  width: 200px;
  transition: filter 0.3s;
}
.snippet-card.pattern-2:hover {
  filter: brightness(1.1);
}
.snippet-card.pattern-2 .preview {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-bottom: 8px;
}
.snippet-card.pattern-2 .title {
  font-weight: bold;
  text-align: center;
}

/* カードデザインパターン3 */
.snippet-card.pattern-3 {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  width: 200px;
  background: #fff;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s;
}
.snippet-card.pattern-3:hover {
  border-color: #2196f3;
}
.snippet-card.pattern-3 .preview {
  background: #fafafa;
  margin-bottom: 8px;
}
.snippet-card.pattern-3 .title {
  font-size: 14px;
  text-align: center;
}

/* カードデザインパターン4 */
.snippet-card.pattern-4 {
  background: #f5f5f5;
  padding: 16px;
  width: 200px;
  border-radius: 6px;
  transition: box-shadow 0.2s;
}
.snippet-card.pattern-4:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.snippet-card.pattern-4 .preview {
  background: #ddd;
  margin-bottom: 8px;
}
.snippet-card.pattern-4 .title {
  text-align: center;
  font-size: 15px;
}

/* カードデザインパターン5 */
.snippet-card.pattern-5 {
  background: #fff;
  border: 2px dashed #bbb;
  border-radius: 12px;
  padding: 16px;
  width: 200px;
  text-align: center;
}
.snippet-card.pattern-5:hover {
  border: 2px solid #888;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.snippet-card.pattern-5 .preview {
  background: #efefef;
  border-radius: 6px;
  margin-bottom: 8px;
}
.snippet-card.pattern-5 .title {
  padding: 4px 8px;
  background: #eee;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
}

/* HOME */
body.home .myContents ul.snippet_menu li {
  flex-basis: 25%;
  padding: 16px;
}
body.home .myContents ul.snippet_menu li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
  transition: transform 0.2s;
}
body.home .myContents ul.snippet_menu li a:hover {
  transform: translateY(-4px);
}
body.home .myContents ul.snippet_menu li a img {
  max-width: 240px;
  margin-bottom: 16px;
}
body.home .myContents ul.snippet_menu li a span {
  font-size: 16px;
  font-weight: bold;
  color: #2196f3;
}
body.home .myContents ul.snippet_menu li a span:after {
  content: "\f138";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  /*arrow right：f0da / f101 / f105 / f054 / f138*/
  margin-left: 8px;
}

@media only screen and (max-width: 900px) {
  body.home .myContents ul.snippet_menu li {
    flex-basis: 50%;
    padding: 16px 8px;
  }
}
@media only screen and (max-width: 600px) {
  body.home .myContents ul.snippet_menu.flex {
    display: flex;
  }
  body.home .myContents ul.snippet_menu.flex li a{
    padding: 8px;
  }
  body.home .myContents ul.snippet_menu li a img{
    margin-bottom: 8px;
  }
  body.home .myContents ul.snippet_menu.flex li a span {
    font-size: 10px;
  }
  body.home .myContents ul.snippet_menu li a span:after{
    margin-left:4px;
  }
}
p#total {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2%;
  text-align: right;
}/*# sourceMappingURL=style.css.map */