@charset "UTF-8";
/* ==============================================================
*  ベース
* ============================================================ */
/*---------------------------------
  外部ファイル読み込み
---------------------------------*/
/* FontAwesome 読み込み */
/* WebFont 読み込み */
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Noto+Sans+JP:wght@100..900&display=swap");
/*---------------------------------
  変数
  サイト内で2回以上使用する値は変数定義するか検討する
---------------------------------*/
/*---------------------------------
  Mixin
  サイト内で2回以上使用する値は変数定義するか検討する
---------------------------------*/
/**
 * mediaクエリの書き出し
 * @param $breakpoint
 *   pc PC用メディアクエリ
 *   sp スマホ用メディアクエリ
 */
/*---------------------------------
  Reset
---------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

cite {
  font-size: 80%;
  color: #aaa;
  font-style: normal;
}

/*---------------------------------
  フォーム
---------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

/*---------------------------------
  ページの共通設定
---------------------------------*/
body {
  color: #333;
  font-family: sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 480px) {
  body {
    font-size: 16px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 479px) {
  body {
    font-size: 4.2vw;
  }
}

/*---------------------------------
  見出し
---------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 1em 0;
}
@media screen and (min-width: 480px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 19.2px;
  }
}
@media screen and (max-width: 479px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 5.04vw;
  }
}

/*---------------------------------
  文章
---------------------------------*/
p {
  margin: 1em 0;
  font-weight: 400;
}

pre {
  width: 100%;
  overflow: auto;
}

blockquote {
  padding-left: 20px;
  border-left: solid 5px #ddf2ff;
}

mark {
  background-color: yellow;
  color: black;
}

/*---------------------------------
  リスト
---------------------------------*/
ul,
ol {
  list-style: none;
  padding: 0;
}

dd {
  margin: 0;
}

/*---------------------------------
  テーブル
---------------------------------*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  border: 1px solid #bbb;
}

td,
th {
  border: 1px solid #bbb;
}

th {
  background-color: #eee;
  padding: 0.6em;
}

td {
  background-color: #fff;
  padding: 0.6em;
}

/*---------------------------------
  画像
---------------------------------*/
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figcaption {
  color: #ccc;
  font-size: 80%;
}

/*---------------------------------
  リンク
---------------------------------*/
a {
  color: #00a2e6;
  text-decoration: none;
}

@media screen and (min-width: 480px) {
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    opacity: 0.7;
  }
}

/*---------------------------------
  入力パーツ
---------------------------------*/
input,
textarea,
select,
button {
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 16px;
}
@media screen and (min-width: 480px) {
  input,
  textarea,
  select,
  button {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 479px) {
  input,
  textarea,
  select,
  button {
    font-size: 4.2vw;
    padding: 2vw;
  }
}

@media screen and (max-width: 479px) {
  input[type=text] {
    width: 100%;
  }
}

select {
  border: 1px solid #333;
  border-radius: 4px;
}

textarea {
  height: 4em;
}
@media screen and (max-width: 479px) {
  textarea {
    width: 100%;
  }
}

/*---------------------------------
  clearfix
---------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

/*---------------------------------
  コンテンツ表示幅
---------------------------------*/
@media screen and (min-width: 480px) {
  body {
    min-width: 1100px;
  }
  .inner {
    width: 960px;
    margin: 0 auto;
  }
  .inner.-wide {
    width: 1100px;
  }
  .inner.-narrow {
    width: 700px;
  }
}
@media screen and (max-width: 479px) {
  body {
    min-width: 0;
  }
  .inner {
    width: auto;
    margin: 0 auto;
  }
}
/*---------------------------------
  非表示
---------------------------------*/
.hidden {
  display: none;
}

@media screen and (min-width: 480px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .pc {
    display: none;
  }
}
/* ==============================================================
  *  mixin
  * ============================================================ */
/* ==============================================================
*  レイアウト
* ============================================================ */
/*---------------------------------
  段組み
---------------------------------*/
@media screen and (min-width: 480px) {
  .block-pc {
    display: block;
  }
  .flex-pc {
    display: flex;
  }
  .flexWrap-pc {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 479px) {
  .block-sp {
    display: block;
  }
  .flex-sp {
    display: flex;
  }
  .flexWrap-sp {
    display: flex;
    flex-wrap: wrap;
  }
}
/*---------------------------------
  レイアウト幅
---------------------------------*/
@media screen and (min-width: 480px) {
  .w10-pc {
    width: 10%;
  }
  .w15-pc {
    width: 15%;
  }
  .w20-pc {
    width: 20%;
  }
  .w25-pc {
    width: 25%;
  }
  .w30-pc {
    width: 30%;
  }
  .w32-pc {
    width: 32%;
  }
  .w33-pc {
    width: 33%;
  }
  .w35-pc {
    width: 35%;
  }
  .w40-pc {
    width: 40%;
  }
  .w45-pc {
    width: 45%;
  }
  .w50-pc {
    width: 50%;
  }
  .w55-pc {
    width: 55%;
  }
  .w60-pc {
    width: 60%;
  }
  .w65-pc {
    width: 65%;
  }
  .w66-pc {
    width: 66%;
  }
  .w67-pc {
    width: 66.5%;
  }
  .w70-pc {
    width: 70%;
  }
  .w75-pc {
    width: 75%;
  }
  .w80-pc {
    width: 80%;
  }
  .w85-pc {
    width: 85%;
  }
  .w90-pc {
    width: 90%;
  }
  .w95-pc {
    width: 95%;
  }
  .w100-pc {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .w10-sp {
    width: 10%;
  }
  .w15-sp {
    width: 15%;
  }
  .w20-sp {
    width: 20%;
  }
  .w25-sp {
    width: 25%;
  }
  .w30-sp {
    width: 30%;
  }
  .w32-sp {
    width: 32%;
  }
  .w33-sp {
    width: 33%;
  }
  .w35-sp {
    width: 35%;
  }
  .w40-sp {
    width: 40%;
  }
  .w45-sp {
    width: 45%;
  }
  .w50-sp {
    width: 50%;
  }
  .w55-sp {
    width: 55%;
  }
  .w60-sp {
    width: 60%;
  }
  .w65-sp {
    width: 65%;
  }
  .w66-sp {
    width: 66%;
  }
  .w67-sp {
    width: 66.5%;
  }
  .w70-sp {
    width: 70%;
  }
  .w75-sp {
    width: 75%;
  }
  .w80-sp {
    width: 80%;
  }
  .w85-sp {
    width: 85%;
  }
  .w90-sp {
    width: 90%;
  }
  .w95-sp {
    width: 95%;
  }
  .w100-sp {
    width: 100%;
  }
}
.panel {
  position: fixed;
  z-index: 1;
  width: 50vw;
  height: 100vw;
  top: 0;
}
.panel.-left {
  left: 0;
  background-color: #333;
}
.panel.-right {
  right: 0;
  background-color: #000;
}

/* ==============================================================
*  モジュール（汎用的に使用できるスタイル）
* ============================================================ */
.btn {
  display: block;
  background-color: #00a0dd;
  border-radius: 5px;
  padding: 0.6em 1em;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .btn {
    padding: 0.8em;
    font-size: 4vw;
  }
}
.btn:hover {
  background-color: #51adf6;
}

.official {
  display: block;
  position: relative;
  background-color: #e91e63;
  border-radius: 5px;
  box-shadow: 0 5px 0 0 #ca0044;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
}
@media screen and (max-width: 479px) {
  .official {
    font-size: 4vw;
  }
}

.official:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: none !important;
  transform: translateY(4px);
  background-color: #f81762;
}

.official::after {
  content: "";
  display: block;
  width: 1.8em;
  height: 2.4em;
  background-image: url(../img/click.png);
  background-repeat: no-repeat;
  background-size: 1.8em auto;
  position: absolute;
  bottom: -0.7em;
  right: -0.3em;
}

.official::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4588235294), rgba(255, 255, 255, 0));
  animation: shiny 8s ease-in-out infinite;
}

@keyframes shiny {
  0% {
    left: 0%;
    opacity: 0;
    width: 0;
  }
  5% {
    opacity: 1;
    width: 100%;
  }
  10% {
    left: 100%;
    opacity: 0.7;
    width: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
    width: 0;
  }
}
div.ez-toc-widget-container ul.ez-toc-list {
  padding: 0;
}

div.ez-toc-widget-container li {
  border: none;
  padding: 5px 8px;
  text-align: justify;
}

.ez-toc-widget-container ul.ez-toc-list li.active::before {
  background-color: #bfe6ff;
  border-radius: 5px;
}

.Article__main #ez-toc-container {
  background: #e6f4fd;
  border: none;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .Article__main #ez-toc-container {
    padding: 4vw;
    margin: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 479px) {
  .Article__main div#ez-toc-container p.ez-toc-title {
    text-align: center;
    display: block;
    font-size: 3.5vw;
  }
}
.Article__main div#ez-toc-container ul,
.Article__main div#ez-toc-container ul li {
  list-style: decimal;
  overflow: initial;
}
.Article__main div#ez-toc-container ul {
  padding-left: 15px;
}
.Article__main div#ez-toc-container ul li {
  font-size: 16px;
  margin: 0.5em 0;
}
@media screen and (max-width: 479px) {
  .Article__main div#ez-toc-container ul li {
    font-size: 4vw;
    margin: 0.5em 0;
  }
}
.Article__main #ez-toc-container a {
  color: #0071bd;
  text-decoration: none;
  text-shadow: none;
  text-decoration: underline;
}
.Article__main #ez-toc-container a:hover {
  text-decoration: none;
}

@media screen and (max-width: 479px) {
  #ez-toc-container {
    margin: 5px 0 20px;
    width: 100%;
    background-color: #e8f2f9;
    border: none;
  }
  #ez-toc-container ul ul,
  .ez-toc div.ez-toc-widget-container ul ul {
    margin-left: 0;
  }
  nav {
    padding: 8px 0 0px;
  }
}
/*---------------------------------
  文字サイズ
---------------------------------*/
.font-xl {
  font-size: 1.2em !important;
}

.font-l {
  font-size: 1.1em !important;
}

.font-s {
  font-size: 0.8em !important;
}

.font-xs {
  font-size: 0.7em !important;
}

/*---------------------------------
  文字色
---------------------------------*/
.font-white {
  color: #fff !important;
}

.font-gray {
  color: #aaa !important;
}

.font-red {
  color: #f44336 !important;
}

.font-green {
  color: #4caf50 !important;
}

.font-pink {
  color: #e91e63 !important;
}

.font-orange {
  color: #ff9800 !important;
}

.font-purple {
  color: #8400ff !important;
}

/*---------------------------------
  文字の太さ
---------------------------------*/
.font-bold {
  font-weight: 700 !important;
}

/*---------------------------------
  背景色
---------------------------------*/
.bg-white {
  background-color: #fff !important;
}

.bg-gray {
  background-color: #ddd !important;
}

.bg-red {
  background-color: #f44336 !important;
}

.bg-green {
  background-color: #4caf50 !important;
}

.bg-pink {
  background-color: #e91ebd !important;
}

.bg-orange {
  background-color: #ff9800 !important;
}

.bg-purple {
  background-color: #8400ff !important;
}

/*---------------------------------
  文字種
---------------------------------*/
.pickup {
  color: #ff5722;
}

.bold {
  font-weight: 700;
}

.marker_yellow_bold {
  background: linear-gradient(transparent 20%, #ffff66 20%);
}

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

.marker_blue_bold {
  background: linear-gradient(transparent 20%, #66ccff 20%);
}

.marker_blue {
  background: linear-gradient(transparent 60%, #66ccff 60%);
}

.marker_pink_bold {
  background: linear-gradient(transparent 20%, #ff66ff 20%);
}

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

.Form {
  /*---------------------------------
    変数
  ---------------------------------*/
  /*---------------------------------
    入力パーツ
  ---------------------------------*/
  /*---------------------------------
    選択パーツ
  ---------------------------------*/
  /*---------------------------------
    ボタンパーツ
  ---------------------------------*/
}
.Form .InputText__input {
  font-size: 16px;
  padding: 5px 10px;
  margin: 10px 0;
}
.Form .Textarea__textarea {
  font-size: 14px;
  padding: 5px 10px;
  margin: 10px 0;
  height: 6em;
  line-height: 1.6;
}
@media screen and (max-width: 479px) {
  .Form .Textarea__textarea {
    padding: 2vw;
  }
}
.Form .InputSelect {
  position: relative;
}
.Form .InputSelect__label {
  padding-left: 26px;
  font-size: 16px;
}
@media screen and (max-width: 479px) {
  .Form .InputSelect__label {
    display: block;
    border: solid 1px;
    padding: 2vw;
    font-size: 5vw;
    margin: 1px;
  }
}
.Form .InputSelect__input {
  position: absolute;
  opacity: 0;
  display: inline-block;
  width: 1px;
  height: 1px;
  border: none;
  padding: 0;
  margin: 0;
  background-color: none;
}
@media screen and (max-width: 479px) {
  .Form .InputSelect__input {
    vertical-align: middle;
  }
}
.Form .InputSelect__input + .InputSelect__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: solid 1px #333;
  border-radius: 50%;
}
@media screen and (max-width: 479px) {
  .Form .InputSelect__input + .InputSelect__label::before {
    display: none;
  }
}
.Form .InputSelect__input + .InputSelect__label.-checkbox::before {
  border-radius: 2px;
}
@media screen and (max-width: 479px) {
  .Form .InputSelect__input:checked + .InputSelect__label {
    background-color: #ffc107;
    box-shadow: inset 0 0 0 3px #fff;
  }
}
.Form .InputSelect__input:checked + .InputSelect__label::before {
  background-color: #39e;
  box-shadow: inset 0 0 0 2px #fff;
}
.Form .InputSelect__input:focus + .InputSelect__label::before {
  border-color: #39e;
}
.Form .InputSelect__input:disabled + .InputSelect__label {
  color: #aaa;
}
@media screen and (max-width: 479px) {
  .Form .InputSelect__input:disabled + .InputSelect__label {
    background-color: #f7f7f7;
  }
}
.Form .InputSelect__input:disabled + .InputSelect__label::before {
  border-color: #aaa;
}
.Form .Select {
  font-size: 16px;
  padding: 5px 10px;
  padding-right: 55px;
  margin: 10px 0;
}
@media screen and (max-width: 479px) {
  .Form .Select {
    padding: 4vw;
    font-size: 5vw;
    width: 100%;
  }
}
.Form .Select__option {
  padding: 5px 10px;
}
.Form .-select {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .Form .-select {
    display: block;
  }
}
.Form .-select::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 0;
  transform: translate(-10px, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #39e transparent transparent transparent;
  pointer-events: none;
}
@media screen and (max-width: 479px) {
  .Form .-select::after {
    display: none;
  }
}
.Form .Form__button {
  font-size: 16px;
  text-align: center;
  padding: 10px 35px;
  margin: 10px 0;
}
@media screen and (max-width: 479px) {
  .Form .Form__button {
    font-size: 5vw;
    margin: 0 1vw;
  }
}
.Form .Form__button.-submit {
  background-color: #ff5722;
}
.Form .Form__button.-reset {
  background-color: #ccc;
}
.Form .Form__button.-button {
  background-color: #ccc;
}

/*---------------------------------
  必須・任意表示
---------------------------------*/
.required::after,
.optional::after {
  content: "必須";
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #dc143c;
  border-radius: 4px;
  color: #dc143c;
  font-size: 70%;
  padding: 3px 5px;
  margin-left: 10px;
}
@media screen and (max-width: 479px) {
  .required::after,
  .optional::after {
    font-size: 60%;
  }
}

.optional::after {
  content: "任意";
  border: 1px solid #333;
  color: #333;
}

/*---------------------------------
  画像回り込み
---------------------------------*/
@media screen and (min-width: 480px) {
  .img-left {
    float: left;
    margin-right: 20px;
  }
}
@media screen and (max-width: 479px) {
  .img-left {
    text-align: center;
  }
}

@media screen and (min-width: 480px) {
  .img-right {
    float: right;
    margin-left: 20px;
  }
}
@media screen and (max-width: 479px) {
  .img-right {
    text-align: center;
  }
}

.img-center {
  text-align: center;
}

.clear {
  clear: both;
}

@media screen and (min-width: 480px) {
  .home .liquid-speech-balloon-wrap,
  .page .liquid-speech-balloon-wrap {
    width: 660px;
  }
}
@media screen and (max-width: 479px) {
  .home .liquid-speech-balloon-wrap,
  .page .liquid-speech-balloon-wrap {
    margin: 4vw;
  }
}

@media screen and (min-width: 480px) {
  .liquid-speech-balloon-wrap {
    width: auto;
    margin: 20px auto;
  }
}
@media screen and (max-width: 479px) {
  .liquid-speech-balloon-wrap {
    margin: 4vw 0;
  }
}

.liquid-speech-balloon-avatar {
  background-color: #fff;
}
@media screen and (min-width: 480px) {
  .liquid-speech-balloon-avatar {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .liquid-speech-balloon-avatar {
    width: 12vw;
    height: 12vw;
  }
}

div.liquid-speech-balloon-text {
  font-weight: 400;
  line-height: 1.8;
  padding: 0;
}
@media screen and (min-width: 480px) {
  div.liquid-speech-balloon-text .wp-block-liquid-speech-balloon,
  div.liquid-speech-balloon-text p {
    font-size: 15px;
    padding: 20px;
  }
}
@media screen and (max-width: 479px) {
  div.liquid-speech-balloon-text .wp-block-liquid-speech-balloon,
  div.liquid-speech-balloon-text p {
    font-size: 3.7vw;
    padding: 3vw;
  }
}

.liquid-speech-balloon-small .liquid-speech-balloon-avatar {
  background-color: #fff;
}
@media screen and (min-width: 480px) {
  .liquid-speech-balloon-small .liquid-speech-balloon-avatar {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .liquid-speech-balloon-small .liquid-speech-balloon-avatar {
    width: 12vw;
    height: 12vw;
  }
}
.liquid-speech-balloon-small div.liquid-speech-balloon-text {
  font-weight: 400;
  line-height: 1.8;
  padding: 0;
}
@media screen and (min-width: 480px) {
  .liquid-speech-balloon-small div.liquid-speech-balloon-text p {
    font-size: 13px;
    padding: 20px;
  }
}
@media screen and (max-width: 479px) {
  .liquid-speech-balloon-small div.liquid-speech-balloon-text p {
    font-size: 3.5vw;
    padding: 3vw;
  }
}

.liquid-speech-balloon-large .liquid-speech-balloon-avatar {
  background-color: #fff;
}
@media screen and (min-width: 480px) {
  .liquid-speech-balloon-large .liquid-speech-balloon-avatar {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .liquid-speech-balloon-large .liquid-speech-balloon-avatar {
    width: 12vw;
    height: 12vw;
  }
}
.liquid-speech-balloon-large div.liquid-speech-balloon-text {
  font-weight: 400;
  line-height: 1.8;
  padding: 0;
}
@media screen and (min-width: 480px) {
  .liquid-speech-balloon-large div.liquid-speech-balloon-text p {
    font-size: 17px;
    padding: 20px;
  }
}
@media screen and (max-width: 479px) {
  .liquid-speech-balloon-large div.liquid-speech-balloon-text p {
    font-size: 3.9vw;
    padding: 3vw;
  }
}

/*---------------------------------
  リスト表示
---------------------------------*/
/* 番号なしリスト表示 */
.ul {
  list-style: disc;
}

/* 番号付リスト表示 */
.ol {
  list-style: decimal;
}

@media screen and (min-width: 480px) {
  .ul {
    padding: 0 10px 0 20px;
  }
  .ol {
    padding: 0 10px 0 20px;
  }
}
@media screen and (max-width: 479px) {
  .ul {
    padding: 0 5vw 0 7vw;
  }
  .ol {
    padding: 0 5vw 0 7vw;
  }
}
@media screen and (max-width: 479px) {
  .recommendTableHtml {
    margin: 2vw;
  }
}

.recommendTableHtml__mainTitle {
  margin: 0;
}
@media screen and (min-width: 480px) {
  .recommendTableHtml__mainTitle {
    color: #ff7373;
    font-size: 40px;
    text-align: center;
    padding: 30px 0;
  }
}
@media screen and (max-width: 479px) {
  .recommendTableHtml__mainTitle {
    background: #fff;
    background-image: url(../img/icon_btnList.gif);
    background-repeat: no-repeat;
    background-size: auto 2.4em;
    background-position: 4px center;
    background-color: #f99;
    color: #fff;
    font-size: 5vw;
    font-weight: 400;
    padding: 0 0 0 3em;
    height: 2.3em;
    line-height: 2.2em;
    text-align: left;
  }
}

.recommendTableHtml__table {
  border: solid 3px #ff7373;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .recommendTableHtml__table {
    margin: 0;
  }
}

.recommendTableHtml__table td {
  border: solid 1px #ff7373;
  width: 50%;
  padding: 0;
}
@media screen and (min-width: 480px) {
  .recommendTableHtml__table td {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .recommendTableHtml__table td {
    font-size: 5vw;
  }
}

.recommendTableHtml__table td a {
  display: block;
  background-image: url(../img/rank.png);
  background-repeat: no-repeat;
  color: #333;
}
@media screen and (min-width: 480px) {
  .recommendTableHtml__table td a {
    background-position: 10px 14px;
    background-size: 40px;
    padding: 10px 10px 10px 60px;
  }
}
@media screen and (max-width: 479px) {
  .recommendTableHtml__table td a {
    background-position: 1.5vw 3.5vw;
    background-size: 7vw;
    padding: 2vw 2vw 2vw 11vw;
  }
}
.recommendTableHtml__table td a:hover {
  background-color: #ffc;
}

.recommendTableHtml__pickup {
  font-weight: 700;
  color: #d80000;
}
@media screen and (min-width: 480px) {
  .recommendTableHtml__pickup {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .recommendTableHtml__pickup {
    font-size: 6vw;
  }
}

@media screen and (max-width: 479px) {
  .recommendTableHtml .font30 {
    font-size: 3vw;
  }
  .recommendTableHtml .font35 {
    font-size: 3.5vw;
  }
  .recommendTableHtml .font40 {
    font-size: 4vw;
  }
  .recommendTableHtml .font45 {
    font-size: 4.5vw;
  }
  .recommendTableHtml .font55 {
    font-size: 5.5vw;
  }
  .recommendTableHtml .font60 {
    font-size: 6vw;
  }
}
.recommendSelectHtml p:empty {
  display: none;
}

@media screen and (min-width: 480px) {
  .recommendSelectHtml__inner {
    width: 1100px;
    margin: 0 auto;
  }
}

.recommendSelectHtml__mainTitle {
  margin: 0;
}
@media screen and (min-width: 480px) {
  .recommendSelectHtml__mainTitle {
    color: #aaa;
    text-shadow: 0.05em 0.05em #4a4a4a;
    font-size: 40px;
    text-align: center;
    padding: 30px 0;
  }
}
@media screen and (max-width: 479px) {
  .recommendSelectHtml__mainTitle {
    background-color: #aaa;
    color: #fff;
    text-shadow: 0.05em 0.05em #4a4a4a;
    font-size: 5vw;
    font-weight: 400;
    padding: 3vw;
    text-align: center;
  }
}

@media screen and (min-width: 480px) {
  .recommendSelectHtml__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.recommendSelectHtml__item {
  background: #c4ebdf;
  color: #333;
  border-radius: 10px;
}
@media screen and (min-width: 480px) {
  .recommendSelectHtml__item {
    box-shadow: 0 0 5px #78deb1;
    width: 24%;
    margin: 0 auto 20px 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 479px) {
  .recommendSelectHtml__item {
    padding: 3vw;
    margin: 6px 2vw;
  }
}

.recommendSelectHtml__item {
  background-repeat: no-repeat;
}
@media screen and (min-width: 480px) {
  .recommendSelectHtml__item {
    background-position: center 30px;
    padding-top: 200px;
    background-size: auto 150px;
  }
}
@media screen and (max-width: 479px) {
  .recommendSelectHtml__item {
    background-position: 3vw 3vw;
    background-size: auto 20vw;
  }
}

.recommendSelectHtml__item:nth-child(1) {
  background-image: url(../img/select001.png);
}

.recommendSelectHtml__item:nth-child(2) {
  background-image: url(../img/select002.png);
}

.recommendSelectHtml__item:nth-child(3) {
  background-image: url(../img/select001.png);
}

.recommendSelectHtml__item:nth-child(4) {
  background-image: url(../img/select002.png);
}

@media screen and (min-width: 480px) {
  .recommendSelectHtml__item:nth-child(4n) {
    margin-right: 0;
  }
}

.recommendSelectHtml__title {
  margin-top: auto;
}

.recommendSelectHtml__link {
  color: #fff;
  background: #f76a9a;
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 0.5em;
  font-weight: 700;
  font-size: 91%;
  transition: background-color 0.5s;
}
@media screen and (min-width: 480px) {
  .recommendSelectHtml__link {
    padding: 0.8em 0.5em;
    border: solid 3px #fff;
    margin-top: 20px;
  }
}
@media screen and (max-width: 479px) {
  .recommendSelectHtml__link {
    font-size: 4vw;
    padding: 0.8em 0.5em;
    margin-top: 10px;
  }
}
.recommendSelectHtml__link:hover {
  background: #e91e63;
}

.recommendSelectHtml__text {
  font-size: 90%;
}
@media screen and (max-width: 479px) {
  .recommendSelectHtml__text {
    padding-left: 25vw;
    font-size: 4vw;
    min-height: 20vw;
  }
}

/* 先頭巻き戻りをさせない */
.slick-slider div {
  transition: none;
}

/* SLICK:一瞬縦並びを解決 */
#topList__slick,
#Eyecatch_slick {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

#topList__slick.slick-initialized,
#Eyecatch_slick.slick-initialized {
  display: block;
  opacity: 1;
}

/* SLICK:矢印位置調整 */
.slick-prev,
.slick-next {
  z-index: 1;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 479px) {
  .slick-prev,
  .slick-next {
    width: 7vw;
    height: 7vw;
  }
}
.slick-prev::before,
.slick-next::before {
  font-size: 45px;
}
@media screen and (max-width: 479px) {
  .slick-prev::before,
  .slick-next::before {
    font-size: 7vw;
  }
}

.slick-prev {
  left: 8px;
}
.slick-prev::before {
  content: "\f053";
  font-family: FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Brands";
}

.slick-next {
  right: 8px;
}
.slick-next::before {
  content: "\f054";
  font-family: FontAwesome;
}

/*---------------------------------
  テーブル表示
---------------------------------*/
@media screen and (min-width: 480px) {
  .table-pc {
    color: #333;
    list-style: none;
  }
  .tr-pc {
    display: flex;
    border-bottom: solid 1px #fff;
  }
  .th-pc {
    display: flex;
    align-items: center;
    background-color: white;
    font-weight: 700;
    padding: 10px;
  }
  .td-pc {
    background-color: white;
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .table-sp {
    color: #333;
    list-style: none;
    overflow: auto;
  }
  .tr-sp {
    border-bottom: solid 1px #fff;
  }
  .th-sp {
    display: flex;
    align-items: center;
    background-color: white;
    font-weight: 700;
    padding: 5vw;
  }
  .td-sp {
    background-color: white;
    padding: 5vw;
  }
}
/*---------------------------------
  テーブル
---------------------------------*/
.table {
  overflow: auto;
}

.tableBox {
  overflow: auto;
  border: solid 1px #ccc;
  font-size: 80%;
  height: 50vh;
}
@media screen and (min-width: 480px) {
  .tableBox {
    width: 1000px;
    margin: 80px auto;
  }
}
@media screen and (max-width: 479px) {
  .tableBox {
    width: 96vw;
    margin: 4vw 2vw;
  }
}
.tableBox a {
  color: #333;
}
.tableBox table {
  table-layout: auto;
}
.tableBox table thead {
  position: sticky;
  top: -1px;
  border: solid 1px;
}
.tableBox table th {
  white-space: nowrap;
  background-color: #fdcede;
  font-size: 90%;
}
@media screen and (min-width: 480px) {
  .tableBox table th {
    padding: 10px 20px 10px 10px;
  }
}
@media screen and (max-width: 479px) {
  .tableBox table th {
    padding: 2vw 6vw 2vw 2vw;
  }
}
.tableBox table th.tablesorter-headerUnSorted {
  background-color: #eaeaea;
}
.tableBox table td {
  border: solid 1px #333;
  background-color: transparent;
  font-size: 90%;
}
@media screen and (min-width: 480px) {
  .tableBox table td {
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .tableBox table td {
    padding: 2vw;
  }
}
.tableBox table tbody tr:nth-child(even) {
  background-color: #fffbee;
}
.tableBox table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.tableBox table .left {
  text-align: left;
}
.tableBox table .right {
  text-align: right;
}
.tableBox table .center {
  text-align: center;
}
.tableBox table .title {
  text-align: left;
  white-space: nowrap;
}
.tableBox table .price {
  text-align: right;
  white-space: nowrap;
}
.tableBox table .time {
  text-align: center;
  white-space: nowrap;
}

.tablepress thead th,
.tablepress tbody tr:first-child td,
.tablepress tbody td,
.tablepress tfoot th {
  border: 1px solid #333 !important;
  box-sizing: content-box;
}

.tablepress *::before,
.tablepress *::after {
  box-sizing: content-box !important;
}

.tablesorter th {
  position: relative;
  cursor: pointer;
  text-align: left;
}

.tablesorter th::before,
.tablesorter th::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 7px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #333 transparent;
  pointer-events: none;
}

.tablesorter th::before {
  border-bottom-style: solid;
  border-top: none;
  top: 30%;
}

.tablesorter th::after {
  border-top-style: solid;
  border-bottom: none;
  bottom: 30%;
}

.tablesorter th.tablesorter-headerAsc:after {
  border: none;
}

.tablesorter th.tablesorter-headerAsc:before {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.tablesorter th.tablesorter-headerDesc:before {
  border: none;
}

.tablesorter th.tablesorter-headerDesc:after {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.tablesorter th.sorter-false:before,
.tablesorter th.sorter-false:after {
  border: none;
}

.wp-block-post-title {
  border-bottom: solid 1px #ccc;
  padding-bottom: 1em;
}

@media screen and (min-width: 480px) {
  .container > p {
    width: 780px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .container > p {
    font-size: 4.5vw;
    margin: 1em 4vw;
  }
}

@media screen and (min-width: 480px) {
  .container > ul {
    width: 960px;
    margin: 1em auto;
  }
}
@media screen and (max-width: 479px) {
  .container > ul {
    font-size: 4.5vw;
    list-style: disc;
    padding-left: 2em;
  }
}

@media screen and (min-width: 480px) {
  .container > .wp-block-image {
    width: 780px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .container > .wp-block-image {
    margin: 1em 0;
  }
}

@media screen and (min-width: 480px) {
  .container > .line {
    border-top: dashed 1px #ccc;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 479px) {
  .container > .line {
    border-top: dashed 1px #ccc;
    margin-top: 2em;
  }
}

.wp-block-image img {
  max-width: 100%;
  border-radius: 5px;
}

@media screen and (max-width: 479px) {
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
    text-align: center;
    display: block;
    margin: 0;
  }
}

.wp-block-group {
  padding: 1px 20px 10px;
  margin: 1em 0;
  border-radius: 5px;
}
.wp-block-group .wp-block-group__inner-container p {
  margin: 1em 0;
  line-height: 1.5;
}

.wp-block-columns {
  margin-bottom: 0;
}

.wp-block-button__link {
  transition: all 0.5s;
}
@media screen and (max-width: 479px) {
  .wp-block-button__link {
    font-size: 3.5vw;
  }
}

.wp-block-button__link:hover {
  opacity: 0.8;
}

/*********************************
  編集画面カスタムカラー追加
 **********************************/
.has-pink-background-color {
  background-color: #f78da7;
}

.has-pink-color {
  color: #f78da7;
}

.has-red-background-color {
  background-color: #cf2e2e;
}

.has-red-color {
  color: #cf2e2e;
}

.has-orange-background-color {
  background-color: #ff6900;
}

.has-orange-color {
  color: #ff6900;
}

.has-amber-background-color {
  background-color: #fcb900;
}

.has-amber-color {
  color: #fcb900;
}

.has-light-green-cyan-background-color {
  background-color: #7bdcb5;
}

.has-light-green-cyan-color {
  color: #7bdcb5;
}

.has-vivid-green-cyan-background-color {
  background-color: #00d084;
}

.has-vivid-green-cyan-color {
  color: #00d084;
}

.has-pale-cyan-blue-background-color {
  background-color: #8ed1fc;
}

.has-pale-cyan-blue-color {
  color: #8ed1fc;
}

.has-vivid-cyan-blue-background-color {
  background-color: #0693e3;
}

.has-vivid-cyan-blue-color {
  color: #0693e3;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-white-color {
  color: #ffffff;
}

.has-light-gray-background-color {
  background-color: #ccc;
}

.has-light-gray-color {
  color: #ccc;
}

.has-cyan-blue-gray-background-color {
  background-color: #abb8c3;
}

.has-cyan-blue-gray-color {
  color: #abb8c3;
}

.has-dark-gray-background-color {
  background-color: #313131;
}

.has-dark-gray-color {
  color: #313131;
}

.has-light-blue-background-color {
  background-color: #f1fbff;
}

.has-light-blue-color {
  color: #f1fbff;
}

/* ==============================================================
*  各ページ固有のスタイル
* ============================================================ */
@media screen and (max-width: 479px) {
  .single-main {
    padding-bottom: 50px;
  }
}

.single-main__fixedBox {
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 480px) {
  .single-main__fixedBox {
    background: #fcfcfc;
    bottom: 0;
    border-top: solid 2px #ffffff;
    padding: 10px;
    height: 82px;
    box-shadow: 0 0 4px 0 #aaa;
  }
}
@media screen and (max-width: 479px) {
  .single-main__fixedBox {
    left: 0;
    bottom: 0;
    height: 50px;
    z-index: 30;
  }
}

@media screen and (max-width: 479px) {
  .single-main__official {
    font-size: 4.5vw;
    height: 50px;
    line-height: 50px;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 -2px 0 #ee3900;
  }
}

.single-main__fixedBoxBtn {
  margin: 0 auto;
}

@media screen and (max-width: 479px) {
  .single-main .Article__sidebar {
    display: none;
  }
}

/* ==============================================================
*  パーツ
* ============================================================ */
/**
 * 記事内フォーム
 */
.Article .Form.-type01 .inner {
  width: 100%;
}

/**
 * 本文内基本情報
 */
.Article__basicInfo dt {
  background-color: #bfe6ff;
  border-bottom: 2px solid #fff;
  font-size: 16px;
  padding: 10px;
}
@media screen and (max-width: 479px) {
  .Article__basicInfo dt {
    font-size: 4vw;
  }
}
.Article__basicInfo dd {
  background-color: #eee;
  border-bottom: 2px solid #fff;
  border-left: solid 2px #fff;
  font-size: 16px;
  padding: 10px;
}
@media screen and (max-width: 479px) {
  .Article__basicInfo dd {
    border-left: none;
    font-size: 4vw;
  }
}

/**
 * パンくずリスト
 */
.Article__breadcrumb {
  background: linear-gradient(to right, #d3e7f4, #9ac7e5);
  font-size: 85%;
  padding: 5px;
}
@media screen and (max-width: 479px) {
  .Article__breadcrumb span:nth-last-child(2),
  .Article__breadcrumb .current-item {
    display: none;
  }
}
.Article__breadcrumb .inner {
  background-color: transparent;
}
.Article__breadcrumb .current-item {
  margin: 5px;
}
.Article__breadcrumb a {
  color: #2196f3;
  margin: 5px;
}

@media screen and (min-width: 480px) {
  .Article__body {
    padding: 0 20px;
  }
}

/**
 * サムネイル
 */
.Article__thumbnail {
  position: relative;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 479px) {
  .Article__thumbnail {
    position: relative;
    background-size: cover;
    background-position: center;
  }
}

@media screen and (min-width: 480px) {
  .Article__thumbnail {
    text-align: center;
    margin: -30px 0px 10px 0;
  }
}
@media screen and (min-width: 480px) {
  .Article__thumbnail img {
    width: 100%;
    height: auto;
  }
}

/**
 * ヘッダー情報
 */
@media screen and (min-width: 480px) {
  .Article__header {
    background-color: rgb(221, 242, 255);
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 479px) {
  .Article__header {
    padding: 3vw;
    background-color: #e8f2f9;
    box-shadow: 0 0 5px #ccc;
  }
}
.Article__header.-noThumbnail {
  position: relative;
  background: #e6f4fd;
}

.Article__mainTitle {
  word-break: break-all;
  color: #333;
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
}
@media screen and (max-width: 479px) {
  .Article__mainTitle {
    font-size: 5.5vw;
  }
}

@media screen and (min-width: 480px) {
  .Article__meta {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 -10px;
    align-items: center;
  }
}
@media screen and (max-width: 479px) {
  .Article__meta {
    margin: 10px 0 0;
  }
}

.Article__date {
  display: flex;
}

.Article__time,
.Article__modifiedDate {
  font-size: 70%;
  margin-right: 10px;
}
@media screen and (max-width: 479px) {
  .Article__time,
  .Article__modifiedDate {
    font-size: 3.5vw;
  }
}

.Article__pr {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 70%;
  padding: 3px 8px;
  border-radius: 5px;
}
@media screen and (max-width: 479px) {
  .Article__pr {
    top: 10px;
    right: 3vw;
    font-size: 3vw;
  }
}

/**
 * レイアウト
 */
.Article__content {
  background-color: #fff;
}
@media screen and (min-width: 480px) {
  .Article__content {
    padding: 30px 0;
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 479px) {
  .Article__content {
    background-color: transparent;
    padding: 0;
  }
}

/**
 * メイン
 */
.Article__main {
  order: -1;
}
@media screen and (max-width: 479px) {
  .Article__main {
    padding: 10px 0 0;
  }
}

/**
 * サイドバー
 */
.single-column .Article__sidebar {
  margin-top: -15px;
}

.Article__sidebarBoxTitle {
  border-bottom: solid 4px #0097e7;
  color: #0097e7;
  font-size: 105%;
  padding: 5px;
  margin: 0 0 10px;
}
.Article__sidebarBoxTitle i {
  padding-right: 5px;
}

.Article__sidebar > .Article__sidebarBox:first-child {
  padding-top: 0;
}

.Article__sidebarBox {
  position: sticky;
  top: 80px;
  padding: 28px 0 20px;
}
@media screen and (max-width: 479px) {
  .Article__sidebarBox {
    padding: 30px 0 0;
    margin: 30px 0 0;
  }
}

.Article__sidebarItem {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .Article__sidebarItem {
    font-size: 5vw;
    margin: 0;
  }
}
.Article__sidebarItem li {
  padding: 5px 0;
}
.Article__sidebarItem a {
  color: #333;
}
@media screen and (max-width: 479px) {
  .Article__sidebarItem a {
    color: #333;
    display: block;
    background-color: #fff;
    padding: 3vw;
  }
}
.Article__sidebarItem a:hover {
  color: #2196f3;
}
.Article__sidebarItem img {
  display: block;
  margin: 0 auto;
}

.Article__sidebarTitle {
  background-color: #5ca5d5;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 0 10px;
}
@media screen and (max-width: 479px) {
  .Article__sidebarTitle {
    font-size: 6vw;
    padding: 5px 3vw;
  }
}

.Article__sidebarJobsite {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 0 3px #ccc;
}
.Article__sidebarJobsite a {
  color: #333;
}

.Article__sidebarJobsiteTitle {
  background-color: #fff7e6;
  color: #ff5823;
  padding: 8px 10px;
  font-size: 90%;
}

.Article__sidebarJobsiteCopyIcon {
  background-color: #fff;
  border-radius: 5px;
  font-size: 80%;
  width: 6em;
  text-align: center;
  color: #ff5722;
  margin: 5px 0px;
}

.Article__sidebarJobsiteCopy {
  background: #eee;
  font-size: 80%;
  padding: 8px 10px;
}

/**
 * フッター
 */
.Article__footer {
  padding: 30px;
}
@media screen and (max-width: 479px) {
  .Article__footer {
    padding: 10px 2vw;
  }
}

/**
 * ボタン
 */
.Article__detail {
  background-color: #fff;
  border: solid 1px #fff;
  color: #0d1275;
}
@media screen and (max-width: 479px) {
  .Article__detail {
    font-size: 6vw;
  }
}
.Article__detail:hover {
  border: solid 1px #0d1275;
}

/**
 * 本文デザイン
 */
@media screen and (max-width: 479px) {
  div.block-editor-block-list__layout,
  div.acf-field-wysiwyg,
  .Article__body {
    background-color: #fff;
    padding: 4vw;
  }
}
div.block-editor-block-list__layout > *:first-child,
div.acf-field-wysiwyg > *:first-child,
.Article__body > *:first-child {
  margin-top: 0;
}

.block-library-html__edit {
  width: 100%;
}

.block-editor-block-list__block.Writing {
  border: solid 2px #ccc;
  padding: 1em;
}

.ArticleList {
  display: flex;
  width: 32%;
  margin-bottom: 15px;
}
@media screen and (min-width: 480px) {
  .ArticleList {
    margin-right: 2%;
  }
}
@media screen and (max-width: 479px) {
  .ArticleList {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .ArticleList:nth-child(3n) {
    margin-right: 0;
  }
}

.ArticleList__link {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px #ccc;
  color: #333;
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ArticleList__link:hover {
  color: #333;
}

.ArticleList__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
@media screen and (min-width: 480px) {
  .ArticleList__image {
    position: relative;
    height: 180px;
  }
}

.ArticleList__body {
  padding: 0 10px 10px;
}

.ArticleList__title {
  font-size: 16px;
  word-break: break-all;
  text-align: justify;
  padding: 3px;
}

@media screen and (max-width: 479px) {
  #pickup__slick .ArticleList__image {
    height: 180px;
  }
}

.ArticleList__image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 480px) {
  .ArticleList__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: none;
  }
}

@media screen and (min-width: 480px) {
  .ArticleList__link:hover .ArticleList__image img {
    transform: translate(-50%, -50%) scale(1.1, 1.1);
    opacity: 1;
  }
}

.ArticleList__title {
  word-break: break-all;
}
@media screen and (min-width: 480px) {
  .ArticleList__title {
    font-size: 16px;
    padding: 3px;
    text-align: justify;
  }
}
@media screen and (max-width: 479px) {
  .ArticleList__title {
    font-size: 4.5vw;
  }
}

.-slick .ArticleList__title {
  height: 3.5em;
  overflow: hidden;
}

.ArticleList__date {
  position: absolute;
  bottom: 10px;
  color: #aaa;
  font-size: 80%;
  margin: 4px 0;
  display: none;
}

.ArticleList__pr {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 70%;
  padding: 3px 8px;
  border-radius: 5px;
}
@media screen and (max-width: 479px) {
  .ArticleList__pr {
    top: 20px;
    right: 6vw;
    font-size: 3vw;
  }
}

@media screen and (min-width: 480px) {
  .Best3_inner {
    width: 800px;
    margin: 0 auto;
  }
}

.Best3_figure {
  text-align: center;
}

.Best3_box {
  display: flex;
  justify-content: center;
  gap: 2%;
}
@media screen and (min-width: 480px) {
  .Best3_box {
    padding: 40px 0;
  }
}
@media screen and (max-width: 479px) {
  .Best3_box {
    padding: 6vw 0;
    margin: 0.6em 2vw;
  }
}

.Best3_item {
  position: relative;
  display: flex;
  flex-direction: column;
  border: solid 1px #ccc;
  border-radius: 10px;
  width: 32%;
}
@media screen and (min-width: 480px) {
  .Best3_item {
    box-shadow: 4px 4px 0px 0px #eee;
    padding: 40px 1em 1em;
  }
}
@media screen and (max-width: 479px) {
  .Best3_item {
    box-shadow: 2px 2px 0px 0px #eee;
    padding: 6vw 2vw 2vw;
  }
}

.Best3_item::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}
@media screen and (min-width: 480px) {
  .Best3_item::before {
    height: 80px;
    background-size: auto 80px;
    margin: -1em;
  }
}
@media screen and (max-width: 479px) {
  .Best3_item::before {
    height: 16vw;
    background-size: auto 16vw;
    margin: -2vw;
  }
}

.Best3_item:nth-child(1)::before {
  background-image: url(../img/best1.png);
}

.Best3_item:nth-child(2)::before {
  background-image: url(../img/best2.png);
}

.Best3_item:nth-child(3)::before {
  background-image: url(../img/best3.png);
}

.Best3_companyFigure {
  margin: 1em 0;
}

@media screen and (min-width: 480px) {
  .Best3_text {
    font-size: 90%;
  }
}
@media screen and (max-width: 479px) {
  .Best3_text {
    font-size: 3.4vw;
    line-height: 1.3;
  }
}

.Best3_btnBox {
  margin-top: auto;
}
@media screen and (min-width: 480px) {
  .Best3_btnBox {
    padding: 1em 0 0;
  }
}
@media screen and (max-width: 479px) {
  .Best3_btnBox {
    font-size: 3vw;
    padding: 0.5em 0;
  }
}

.Best3_btn {
  box-shadow: 0 3px 0 0 #bbbbbb;
}
@media screen and (max-width: 479px) {
  .Best3_btn {
    font-size: 3vw;
  }
}

.BlockPostPickup {
  border: solid 2px #5ba4d4;
}

.BlockPostPickup__mainTitle {
  background-color: #5ba4d4;
  padding: 7px;
  color: #fff;
}

.BlockPostPickup__link {
  display: block;
  color: #333;
}
.BlockPostPickup__link:hover {
  background-color: #eaf3fa;
}

@media screen and (max-width: 479px) {
  .BlockPostPickup__thumb {
    background-color: #eee;
    text-align: center;
  }
}
.BlockPostPickup__thumb img {
  width: 200px;
}

.BlockPostPickup__body {
  padding: 10px;
}

.BlockPostPickup__title {
  color: #2196f3;
}

.BlockPostPickup__excerpt {
  font-size: 90%;
}

/*---------------------------------
  基本
---------------------------------*/
.Box {
  margin: 0;
}
@media screen and (max-width: 479px) {
  .Box {
    padding: 0;
  }
}

.Box__header {
  position: relative;
}
@media screen and (min-width: 480px) {
  .Box__header {
    background-size: 960px 20px;
  }
}

@media screen and (max-width: 479px) {
  .Box__body {
    padding: 0 2vw;
  }
}

@media screen and (min-width: 480px) {
  .Box__footer {
    margin: 0 0 30px;
  }
}

.Box__mainTitle {
  position: relative;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .Box__mainTitle {
    font-size: 1.8em;
    padding: 0.7em 0;
  }
}
@media screen and (max-width: 479px) {
  .Box__mainTitle {
    font-size: 6.5vw;
    margin: 0.6em 2vw;
    text-align: center;
  }
}

.Box__mainTitleCaption {
  text-align: center;
  color: #666;
}
@media screen and (min-width: 480px) {
  .Box__mainTitleCaption {
    margin-top: -20px;
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 479px) {
  .Box__mainTitleCaption {
    font-size: 4vw;
    margin: 1em 3vw;
  }
}

@media screen and (max-width: 479px) {
  .Box__mainTitleText {
    display: block;
  }
}

.Box__mainTitleDate {
  border: solid 1px;
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (min-width: 480px) {
  .Box__mainTitleDate {
    font-size: 55%;
    padding: 0.4em 1.4em;
    margin-left: 1em;
    vertical-align: middle;
  }
}
@media screen and (max-width: 479px) {
  .Box__mainTitleDate {
    font-size: 60%;
    padding: 0.4em 2.4em;
  }
}

.Box__subTitle {
  text-align: center;
  font-size: 20px;
  margin: 0;
  padding: 1em 0 0;
}
@media screen and (max-width: 479px) {
  .Box__subTitle {
    font-size: 5vw;
    padding: 0;
  }
}

.Box__articleList {
  justify-content: space-between;
}
@media screen and (min-width: 480px) {
  .Box__articleList {
    margin: 20px 0 0;
  }
}
.Box__articleList::after {
  content: "";
  width: 32%;
}

@media screen and (min-width: 480px) {
  .Box__buttonBox.-gotoArchive {
    padding: 25px 0;
    margin: -10px 0 0;
  }
}
@media screen and (max-width: 479px) {
  .Box__buttonBox.-gotoArchive {
    padding: 0 0 40px;
    margin: 0;
  }
}
.Box__buttonBox.-gotoArchive .Box__button {
  width: 80%;
  box-shadow: 0 0 5px 0 #aaa;
}

/*---------------------------------
  パンくずリスト
---------------------------------*/
@media screen and (min-width: 480px) {
  .Box.-breadcrumb {
    margin: 0;
  }
}
@media screen and (max-width: 479px) {
  .Box.-breadcrumb {
    padding: 0;
  }
}

/*---------------------------------
  フロントページ：トップ記事
---------------------------------*/
@media screen and (min-width: 480px) {
  .Box.-topList {
    border-bottom: solid 5px #fff;
    height: 400px;
  }
}
@media screen and (max-width: 479px) {
  .Box.-topList {
    padding: 0;
  }
}

/*---------------------------------
  ページ内コンテンツ並べ替え
---------------------------------*/
.Box.-orderContentBox {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}
@media screen and (max-width: 479px) {
  .Box.-orderContentBox {
    margin: 0;
    padding: 0;
  }
}
.Box.-orderContentBox .Box {
  margin: 15px 0;
}
@media screen and (max-width: 479px) {
  .Box.-orderContentBox .Box {
    margin: 0;
  }
}

/*---------------------------------
  ページ内コンテンツ並べ替え
---------------------------------*/
/*---------------------------------
  診断
---------------------------------*/
@media screen and (max-width: 479px) {
  .Box.-mainCheck {
    background: transparent;
    border-bottom: none;
    margin: 0;
  }
}

/*---------------------------------
  並べ替え
---------------------------------*/
@media screen and (max-width: 479px) {
  .Box.-orderJobsite {
    padding: 0;
  }
}

/*---------------------------------
  メインリスト
---------------------------------*/
.Box.-mainList .Box__mainTitle {
  position: relative;
}

/*---------------------------------
  記事一覧
---------------------------------*/
@media screen and (max-width: 479px) {
  .Box.-column {
    padding: 0;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 480px) {
  .Box.-column .inner {
    width: 780px;
    box-shadow: 0 0 3px #ccc;
  }
}

.Box.-archive .Box__body .inner {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 479px) {
  .Box.-archive .Box__body .inner {
    background-color: transparent;
    padding: 0;
  }
}
.Box.-archive .Box__body .inner::after {
  content: "";
  display: block;
  clear: both;
}

.Box.-archiveList {
  padding-top: 10px;
}
.Box.-archiveList .Box__body .inner {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 479px) {
  .Box.-archiveList .Box__body .inner {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
  }
}

/*---------------------------------
  スクール詳細：概要
---------------------------------*/
.Box.-main .Box__header {
  color: #fff;
}
@media screen and (max-width: 479px) {
  .Box.-main .Box__header {
    color: #333;
  }
}

/*---------------------------------
  スクール詳細：記事
---------------------------------*/
@media screen and (max-width: 479px) {
  .Box.-articleJobsite {
    padding: 0;
  }
}
@media screen and (min-width: 480px) {
  .Box.-articleJobsite .inner {
    box-shadow: 0 0 3px #ccc;
  }
}

/*---------------------------------
  メイン：記事
---------------------------------*/
@media screen and (max-width: 479px) {
  .Box.-article {
    margin: -20px 0 0;
  }
}
.Box.-article .inner {
  background: #fff;
}
@media screen and (min-width: 480px) {
  .Box.-article .inner {
    width: 720px;
  }
}

/*---------------------------------
  カテゴリリスト
---------------------------------*/
.Box.-termList .Box__header {
  padding: 0;
}
@media screen and (max-width: 479px) {
  .Box.-termList .Box__header {
    padding: 10px 0 0;
    margin: 0;
  }
}
.Box.-termList .Box__header .inner::after {
  display: none;
}
.Box.-termList .Box__body .inner {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 479px) {
  .Box.-termList .Box__body .inner {
    background: #fff;
    padding: 5px 0;
  }
}
.Box.-termList .Box__subTitle {
  border-radius: 5px;
  color: #fff;
  text-align: left;
  padding: 10px 15px;
}

/*---------------------------------
  関連記事
---------------------------------*/
@media screen and (min-width: 480px) {
  .Box.-relationList .inner {
    padding: 10px;
    background: #fff;
  }
}
@media screen and (min-width: 480px) {
  .Box.-relationList .Box__main {
    padding-right: 40px;
  }
}
@media screen and (max-width: 479px) {
  .Box.-relationList .Box__sub {
    border-radius: 5px;
    margin: 30px 0;
  }
}

@media screen and (max-width: 479px) {
  .Box.-writingGroup1 {
    margin: 3vw;
  }
}

.Catch .balloon {
  position: absolute;
  text-align: center;
}
.Catch .balloon::before, .Catch .balloon::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  width: 0;
  height: 0;
  border-style: solid;
}

.Catch.no01 {
  background-color: #4dc2dc;
  color: #fff;
  padding: 60px 0;
}
.Catch.no01 .Catch_body {
  font-style: italic;
  text-align: center;
}
.Catch.no01 .Catch_body .text01 {
  font-size: 35px;
  margin-bottom: 35px;
}
.Catch.no01 .Catch_body .text01 .pickup {
  background-color: #ff677e;
  border-radius: 30px;
  color: #fff;
  margin-left: 6px;
  padding: 2px 14px 4px 10px;
}
.Catch.no01 .Catch_body .text02 {
  font-size: 70px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
}

.Catch.no02 {
  background-color: #fff;
  padding: 60px 0;
}
.Catch.no02 .Catch_body {
  text-align: center;
}
.Catch.no02 .Catch_body .text01 {
  position: relative;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding: 2px 20px;
  margin-bottom: 30px;
  display: inline-block;
  overflow: hidden;
  z-index: 50;
}
.Catch.no02 .Catch_body .text02 {
  font-size: 24px;
}

.Catch.no03 {
  background-color: #beefff;
  padding: 60px 0;
}
.Catch.no03 .Catch_body {
  text-align: center;
}
.Catch.no03 .Catch_body .text01 {
  position: relative;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding: 2px 20px;
  margin-bottom: 30px;
  display: inline-block;
  overflow: hidden;
  z-index: 50;
}
.Catch.no03 .Catch_body .text02 {
  position: relative;
  padding-top: 150px;
}
.Catch.no03 .Catch_body .text02 .balloon {
  color: #fff;
  font-size: 28px;
  border-radius: 60px;
}
.Catch.no03 .Catch_body .text02 .balloon.-type01 {
  background: #4dc2dc;
  top: 0;
  left: 60px;
  padding: 20px 75px;
}
.Catch.no03 .Catch_body .text02 .balloon.-type01::before {
  display: none;
}
.Catch.no03 .Catch_body .text02 .balloon.-type01::after {
  right: 24%;
  border-width: 24px 2px 0 34px;
  border-color: #4dc2dc transparent transparent transparent;
}
.Catch.no03 .Catch_body .text02 .balloon.-type02 {
  background: #2196f3;
  top: 20px;
  right: 60px;
  padding: 20px 60px;
}
.Catch.no03 .Catch_body .text02 .balloon.-type02::before {
  display: none;
}
.Catch.no03 .Catch_body .text02 .balloon.-type02::after {
  left: 24%;
  border-width: 26px 34px 0 0;
  border-color: #2196f3 transparent transparent transparent;
}

.Catch.no03 .Catch_body .text02 .balloon.-type02::after {
  left: 24%;
  border-width: 26px 34px 0 0;
  border-color: #2196f3 transparent transparent transparent;
}

@media screen and (max-width: 479px) {
  .Comment {
    background: #fff;
    padding: 1px 2vw 8px;
    border-radius: 5px;
    box-shadow: 0 0 3px #ccc;
    margin: 1em 0;
  }
}

.Comment__mainTitle {
  border-left: 8px solid #aaa;
  padding: 10px 15px;
  font-size: 20px;
  background: linear-gradient(to right, rgb(234, 234, 234), rgb(234, 234, 234), rgb(234, 234, 234), rgba(234, 234, 234, 0.7)), url(../img/title_bg.png);
}
@media screen and (max-width: 479px) {
  .Comment__mainTitle {
    padding: 2vw;
    font-size: 4vw;
  }
}

.Comment__listItem {
  border: solid 2px #aaa;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 479px) {
  .Comment__listItem {
    padding: 3vw;
    margin: 2vw;
  }
}
.Comment__listItem.none {
  display: none;
}

.Comment__main {
  padding-left: 15px;
}
@media screen and (max-width: 479px) {
  .Comment__main {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .Comment__icon {
    padding: 0 10px 10px 0;
    float: left;
  }
}
.Comment__icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #eee;
}
@media screen and (max-width: 479px) {
  .Comment__icon img {
    width: 45px;
    height: 45px;
  }
}

.Comment__header {
  display: flex;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 479px) {
  .Comment__header {
    font-size: 3vw;
    flex-wrap: wrap;
  }
}

.Comment__name,
.Comment__age,
.Comment__gender {
  margin-right: 8px;
  line-height: 1.1;
}

@media screen and (max-width: 479px) {
  .Comment__row {
    width: 100%;
  }
}

.Comment__date {
  font-size: 80%;
  position: absolute;
  right: 20px;
}
@media screen and (max-width: 479px) {
  .Comment__date {
    position: static;
  }
}

.Comment__body {
  font-size: 15px;
  text-align: justify;
  margin: 1em 0 0;
}
@media screen and (max-width: 479px) {
  .Comment__body {
    font-size: 4vw;
    clear: both;
  }
}
.Comment__body p {
  line-height: 1.8;
}

.Comment__rating {
  color: #e7711b;
}
@media screen and (max-width: 479px) {
  .Comment__rating {
    font-size: 3vw;
  }
}

.Comment__all {
  position: relative;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .Comment__all {
    font-size: 3.5vw;
    line-height: 1.3;
  }
}
@media screen and (min-width: 480px) {
  .Comment__all.none {
    height: 150px;
  }
}
@media screen and (max-width: 479px) {
  .Comment__all.none {
    height: 13vh;
  }
}

.Comment__allButton {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, white, white, rgba(255, 255, 255, 0));
  text-align: center;
  padding: 50px 0 0;
  font-size: 90%;
  width: 100%;
  color: #ff5722;
}

.Comment__footer {
  text-align: center;
  padding: 10px;
}

.Comment__more {
  padding: 10px 30px;
  background: #667788;
  color: #fff;
  border: none;
  box-shadow: 0 3px #aaa;
}
@media screen and (max-width: 479px) {
  .Comment__more {
    font-size: 3.5vw;
    padding: 2vw 10vw;
  }
}

.comment-respond .form-submit {
  text-align: center;
  font-size: 4vw;
}
.comment-respond input[type=submit] {
  padding: 10px 30px;
  background: #678;
  color: #fff;
  border: none;
  box-shadow: 0 3px #aaa;
}

/* 基本 */
.Eyecatch a {
  position: relative;
  z-index: 1;
}

.Eyecatch__photo {
  text-align: center;
}
.Eyecatch__photo img {
  max-width: 800px;
}
@media screen and (max-width: 479px) {
  .Eyecatch__photo img {
    max-width: none;
    width: 100%;
  }
}

.Eyecatch.-fixed .Eyecatch__photo {
  background-image: url(../img/main_visual.png);
  background-repeat: no-repeat;
  background-position: center 0;
  background-attachment: fixed;
  width: 100vw;
  height: 300px;
}

.Footer {
  background-color: #333;
  box-shadow: 0 -2px 0 #555;
  color: #fff;
  font-size: 60%;
  padding: 120px 0 10px;
}
.Footer a {
  color: #fff;
}

@media screen and (min-width: 480px) {
  .Footer_list {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 479px) {
  .Footer_list {
    text-align: center;
  }
}

.Footer_listItem {
  margin: 20px 10px;
}

.Footer__copyright {
  text-align: center;
}

.Form {
  position: relative;
  z-index: 1;
}
.Form .Form__question {
  background: linear-gradient(to right, rgb(234, 234, 234), rgb(234, 234, 234), rgb(234, 234, 234), rgba(234, 234, 234, 0.7)), url(../img/title_bg.png);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 15px;
}
@media screen and (max-width: 479px) {
  .Form .Form__question {
    margin-bottom: 2vw;
    font-size: 3.5vw;
    padding: 2.5vw;
  }
}
@media screen and (max-width: 479px) {
  .Form .Form__answer {
    margin-bottom: 6vw;
  }
}
.Form .Form__button {
  background-color: #ff5722;
  box-shadow: 0 5px 0 0 #ee3900;
  color: #fff;
}
.Form .Form__button:hover {
  background-color: #ff7e55;
}
.Form .Form__button.-submit {
  background-color: #ff5722;
  box-shadow: 0 5px 0 0 #ee3900;
  color: #fff;
  width: 80%;
  margin: 0 auto 20px;
  display: block;
  padding: 15px;
  border: none;
  font-size: 18px;
  border-radius: 10px;
}

.FormOut {
  margin: 2em 0;
}
@media screen and (max-width: 479px) {
  .FormOut {
    padding: 0 2vw;
    font-size: 5vw;
  }
}

.FormOut_container {
  background-color: #fefbf8;
  border-radius: 10px;
  box-shadow: 0 0 5px #d4c9b8;
}
@media screen and (min-width: 480px) {
  .FormOut_container {
    padding: 1em 1.5em 2em;
    margin: 0 auto;
    width: 860px;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_container {
    padding: 1em 2vw;
    margin: 2vw;
  }
}

.FormOut_mainTitle {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .FormOut_mainTitle {
    gap: 0.4em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_mainTitle {
    gap: 0.2em;
  }
}

.FormOut_mainTitle01 {
  background-color: #0067cf;
  color: #fff;
  border: solid 2px;
  font-weight: 700;
  padding: 0 0.2em 0.1em 0.6em;
  -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
}
@media screen and (min-width: 480px) {
  .FormOut_mainTitle01 {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_mainTitle01 {
    font-size: 0.4em;
  }
}

.FormOut_mainTitle02 {
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 480px) {
  .FormOut_mainTitle02 {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_mainTitle02 {
    font-size: 0.9em;
  }
}

.FormOut_mainTitle03 {
  color: #e91e1e;
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .FormOut_mainTitle03 {
    font-size: 2.6em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_mainTitle03 {
    font-size: 1em;
  }
  .FormOut_mainTitle03.-fs1_1 {
    font-size: 1.1em;
  }
  .FormOut_mainTitle03.-fs1_2 {
    font-size: 1.2em;
  }
  .FormOut_mainTitle03.-fs1_3 {
    font-size: 1.3em;
  }
  .FormOut_mainTitle03.-fs1_4 {
    font-size: 1.4em;
  }
  .FormOut_mainTitle03.-fs1_5 {
    font-size: 1.5em;
  }
  .FormOut_mainTitle03.-fs1_6 {
    font-size: 1.6em;
  }
  .FormOut_mainTitle03.-fs1_7 {
    font-size: 1.7em;
  }
}

.FormOut_sectionHeader {
  display: flex;
  align-items: center;
  border-bottom: solid 3px #0067cf;
  gap: 1em;
}
@media screen and (min-width: 480px) {
  .FormOut_sectionHeader {
    margin: 2em 0 1em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_sectionHeader {
    margin: 1em 0;
  }
}

.FormOut_title {
  background-color: #0067cf;
  padding: 0.5em 1em;
  color: #fff;
  border-radius: 10px 10px 0 0;
  margin: 0;
}
@media screen and (min-width: 480px) {
  .FormOut_title {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_title {
    font-size: 0.8em;
  }
}

.FormOut_note {
  background-color: #e91e1e;
  color: #fff;
  font-size: 0.8em;
  font-weight: 700;
  padding: 0.2em 0.7em;
}

.FormOut_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 480px) {
  .FormOut_list {
    gap: 1em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_list {
    justify-content: space-between;
    gap: 1em;
  }
}

@media screen and (max-width: 479px) {
  .FormOut_list {
    gap: 0.2em;
  }
}
@media screen and (min-width: 480px) {
  .FormOut_item {
    width: 48%;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_item {
    width: 98%;
  }
}
@media screen and (min-width: 480px) {
  .FormOut_item.-col1 {
    width: 98%;
  }
  .FormOut_item.-col2 {
    width: 48%;
  }
  .FormOut_item.-col3 {
    width: 30%;
  }
  .FormOut_item.-col4 {
    width: 22%;
  }
  .FormOut_item.-col5 {
    width: 18%;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_item.-m-col1 {
    width: 98%;
  }
  .FormOut_item.-m-col2 {
    width: 48%;
  }
  .FormOut_item.-m-col3 {
    width: 30%;
  }
  .FormOut_item.-m-col4 {
    width: 22%;
  }
  .FormOut_item.-m-col5 {
    width: 18%;
  }
  .FormOut_item.-m-col38 {
    width: 38%;
  }
  .FormOut_item.-m-col58 {
    width: 58%;
  }
}

.FormOut_label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.FormOut_checkbox,
.FormOut_radio {
  background-color: #fff;
  border: solid 2px #333;
}
@media screen and (min-width: 480px) {
  .FormOut_checkbox,
  .FormOut_radio {
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_checkbox,
  .FormOut_radio {
    padding: 8px;
  }
}

.FormOut_radio {
  border-radius: 50%;
}

.FormOut_checkbox:checked,
.FormOut_radio:checked {
  background-color: #2196f3;
  box-shadow: 0 0 0 3px #fff inset;
}

.FormOut_select {
  border: solid 2px;
  background-color: #fff;
  color: #333;
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .FormOut_select {
    padding: 0.8em 1em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_select {
    font-size: 0.7em;
  }
}

.FormOut_text {
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .FormOut_text {
    font-size: 0.8em;
  }
}

@media screen and (min-width: 480px) {
  .FormOut_footer {
    padding-top: 2em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_footer {
    padding-top: 1em;
  }
}

.FormOut_submit {
  border: none;
  border-radius: 50px;
  background-color: #ff4e7c;
  font-weight: 700;
  padding: 0.7em 2em;
  transition: all 0.5s;
}
@media screen and (min-width: 480px) {
  .FormOut_submit {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 479px) {
  .FormOut_submit {
    font-size: 1em;
  }
}

.FormOutCompact {
  margin: 1em 0;
}
@media screen and (max-width: 479px) {
  .FormOutCompact {
    padding: 0 2vw;
  }
}
.FormOutCompact .-flex-column {
  flex-direction: column;
}

.FormOutCompact_container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px #aaa;
  padding: 1px;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_container {
    margin: 0 auto;
    width: 660px;
  }
}

.FormOutCompact_mainTitle {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  margin-left: 0.2em;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_mainTitle {
    font-size: 70%;
    gap: 0.4em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_mainTitle {
    gap: 0.2em;
    padding-right: 2.5em;
  }
}

.FormOutCompact_mainTitle::after {
  content: "";
  display: block;
  background-image: url(../img/bg_title01.png);
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_mainTitle::after {
    width: 5.5em;
    height: 6em;
    background-size: 5.5em;
    bottom: -1.6em;
    right: -0.3em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_mainTitle::after {
    width: 3.6em;
    height: 3.6em;
    background-size: 3.4em;
    bottom: -0.7em;
    right: -0.4em;
  }
}

.FormOutCompact_mainTitleBox:first-child {
  transform: rotate(349deg);
  text-align: center;
  position: relative;
  top: -2px;
}

.FormOutCompact_mainTitle01 {
  background-color: #f44336;
  border: solid 2px;
  color: #ffffff;
  font-weight: 700;
  padding: 0 0.2em 0.1em 0.6em;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_mainTitle01 {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_mainTitle01 {
    font-size: 0.4em;
  }
}

.FormOutCompact_mainTitle02 {
  color: #333;
  line-height: 1.2;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_mainTitle02 {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_mainTitle02 {
    font-size: 0.7em;
  }
}

.FormOutCompact_mainTitle03 {
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_mainTitle03 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_mainTitle03 {
    font-size: 1em;
  }
  .FormOutCompact_mainTitle03.-fs1_1 {
    font-size: 1.1em;
  }
  .FormOutCompact_mainTitle03.-fs1_2 {
    font-size: 1.2em;
  }
  .FormOutCompact_mainTitle03.-fs1_3 {
    font-size: 1.3em;
  }
  .FormOutCompact_mainTitle03.-fs1_4 {
    font-size: 1.4em;
  }
  .FormOutCompact_mainTitle03.-fs1_5 {
    font-size: 1.5em;
  }
}

.FormOutCompact_header {
  background-color: var(--bg-lightcolor, #ffeeda);
  padding: 0.8em 0 0.4em;
  border-bottom: solid 2px var(--bg-color, #ff8000);
  border-radius: 10px 10px 0 0;
  margin: 0;
}

@media screen and (min-width: 480px) {
  .FormOutCompact_body {
    margin: 1em;
  }
  .FormOutCompact_body.-header4em .FormOutCompact_sectionHeader {
    width: 4em;
  }
  .FormOutCompact_body.-header5em .FormOutCompact_sectionHeader {
    width: 5em;
  }
  .FormOutCompact_body.-header6em .FormOutCompact_sectionHeader {
    width: 6em;
  }
  .FormOutCompact_body.-header7em .FormOutCompact_sectionHeader {
    width: 7em;
  }
  .FormOutCompact_body.-header8em .FormOutCompact_sectionHeader {
    width: 8em;
  }
  .FormOutCompact_body.-header9em .FormOutCompact_sectionHeader {
    width: 9em;
  }
  .FormOutCompact_body.-header10em .FormOutCompact_sectionHeader {
    width: 10em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_body {
    font-size: 4vw;
    margin: 0.6em 2vw 0;
  }
  .FormOutCompact_body.-header4em-sp .FormOutCompact_sectionHeader {
    width: 4em;
  }
  .FormOutCompact_body.-header5em-sp .FormOutCompact_sectionHeader {
    width: 5em;
  }
  .FormOutCompact_body.-header6em-sp .FormOutCompact_sectionHeader {
    width: 6em;
  }
  .FormOutCompact_body.-header7em-sp .FormOutCompact_sectionHeader {
    width: 7em;
  }
  .FormOutCompact_body.-header8em-sp .FormOutCompact_sectionHeader {
    width: 8em;
  }
  .FormOutCompact_body.-header9em-sp .FormOutCompact_sectionHeader {
    width: 9em;
  }
  .FormOutCompact_body.-header10em-sp .FormOutCompact_sectionHeader {
    width: 10em;
  }
}

.FormOutCompact_section {
  display: flex;
  align-items: center;
  margin-top: 0.6em;
  border-bottom: dashed 1px var(--bg-color, #ff8000);
  padding: 0 0 0.6em;
}

.FormOutCompact_sectionHeader {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}

.FormOutCompact_sectionBody {
  flex: 1;
}

.FormOutCompact_title {
  color: var(--bg-color, #ff8000);
  margin: 0;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_title {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_title {
    font-size: 0.8em;
  }
}

.FormOutCompact_note {
  color: #aaa;
  font-size: 0.7em;
  font-weight: 700;
}

.FormOutCompact_list {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_list.-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_list.-wrap-sp {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 480px) {
  .FormOutCompact_item.-col1 {
    width: 100%;
  }
  .FormOutCompact_item.-col2 {
    width: 49%;
  }
  .FormOutCompact_item.-col3 {
    width: 32%;
  }
  .FormOutCompact_item.-col4 {
    width: 23%;
  }
  .FormOutCompact_item.-col5 {
    width: 18%;
  }
  .FormOutCompact_item.-col6 {
    width: 15%;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_item.-col1-sp {
    width: 100%;
  }
  .FormOutCompact_item.-col2-sp {
    width: 48%;
  }
  .FormOutCompact_item.-col3-sp {
    width: 31%;
  }
  .FormOutCompact_item.-col4-sp {
    width: 22%;
  }
  .FormOutCompact_item.-col5-sp {
    width: 18%;
  }
  .FormOutCompact_item.-col6-sp {
    width: 15%;
  }
}

.FormOutCompact_label {
  position: relative;
  display: block;
  border-radius: 6px;
  border: solid 1px #ddd;
  background-color: #eee;
  color: #666;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_label {
    font-size: 0.8em;
    padding: 0.5em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_label {
    font-size: 0.9em;
    padding: 0.4em 0;
  }
}

.FormOutCompact_label:has(.FormOutCompact_radio:checked) {
  border: solid 1px var(--bg-color, #ff8000);
  background-color: var(--bg-lightcolor, #ffeeda);
  color: #333;
}

.FormOutCompact_checkbox,
.FormOutCompact_radio {
  background-color: #fff;
  border: solid 2px #333;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_checkbox,
  .FormOutCompact_radio {
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_checkbox,
  .FormOutCompact_radio {
    padding: 8px;
  }
}

.FormOutCompact_radio {
  opacity: 0;
  position: absolute;
}

.FormOutCompact_checkbox:checked,
.FormOutCompact_radio:checked {
  background-color: var(--bg-color, #ff8000);
  box-shadow: 0 0 0 3px #fff inset;
}

.FormOutCompact_select {
  background-color: #eee;
  border: solid 1px #ddd;
  color: #666;
  font-weight: 700;
  width: 100%;
  padding: 0.8em 1em;
  font-size: 0.8em;
}
@media screen and (max-width: 479px) {
  .FormOutCompact_select {
    font-size: 3.1vw;
    padding: 1em;
  }
}

.FormOutCompact_select.selected {
  border: solid 1px var(--bg-color, #ff8000);
  background-color: var(--bg-lightcolor, #ffeeda);
  color: #333;
}

.FormOutCompact_text {
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .FormOutCompact_text {
    font-size: 0.8em;
  }
}

@media screen and (min-width: 480px) {
  .FormOutCompact_footer {
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_footer {
    margin: 0.8em 0;
  }
}

.FormOutCompact_submit {
  border: none;
  border-radius: 12px;
  background-color: #8bc34a;
  font-weight: 700;
  padding: 0.7em 2em;
  transition: all 0.5s;
}
@media screen and (min-width: 480px) {
  .FormOutCompact_submit {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 479px) {
  .FormOutCompact_submit {
    font-size: 3.8vw;
  }
}

@media screen and (min-width: 480px) {
  .Form.-comment {
    margin: 0 0 20px;
  }
}
.Form.-comment .Form__question {
  padding: 8px 10px;
}
@media screen and (min-width: 480px) {
  .Form.-comment .Form__question {
    font-size: 15px;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__question {
    font-size: 4vw;
  }
}
.Form.-comment .Form__answer {
  position: relative;
}
.Form.-comment .Form__answer.-radio {
  display: flex;
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__answer.-radio {
    flex-wrap: wrap;
  }
}
.Form.-comment .InputSelect__input {
  font-size: 14px;
}
.Form.-comment .InputSelect__input + .InputSelect__label::before {
  width: 16px;
  height: 16px;
}
.Form.-comment .InputSelect__input:checked + .InputSelect__label::before {
  box-shadow: inset 0 0 0 3px #fff;
}
.Form.-comment .InputSelect__label {
  padding-left: 18px;
  font-size: 16px;
}
@media screen and (min-width: 480px) {
  .Form.-comment .Form__questionAuthor {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__questionAuthor input {
    font-size: 3.5vw;
    padding: 2vw;
  }
}
.Form.-comment .Form__questionStar .InputSelect {
  width: 20%;
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__questionStar .InputSelect:first-child {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__questionStar .InputSelect:last-child {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__questionStar .InputSelect__label {
    font-size: 3.5vw;
    padding: 2vw;
    text-align: center;
  }
}
.Form.-comment .Form__questionAge .InputSelect {
  flex: 1;
  white-space: nowrap;
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__questionAge .InputSelect__label {
    font-size: 3.5vw;
    padding: 2vw;
    text-align: center;
  }
}
.Form.-comment .Form__questionGender .InputSelect {
  width: 50%;
}
@media screen and (max-width: 479px) {
  .Form.-comment .Form__questionGender .InputSelect__label {
    font-size: 3.5vw;
    padding: 2vw;
    text-align: center;
  }
}
.Form.-comment .Form__questionComment textarea {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 479px) {
  label[for=siteguard_captcha] {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 479px) {
  #siteguard_captcha {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 479px) {
  #comment {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 479px) {
  #submit {
    font-size: 3.5vw;
  }
}

.comment-form {
  border: solid 1px #ccc;
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 479px) {
  .comment-form {
    border: none;
    padding: 3.5vw;
  }
}

.comment-reply-title {
  border-left: 8px solid #aaa;
  padding: 10px 15px;
  font-size: 20px;
  background: linear-gradient(to right, rgb(234, 234, 234), rgb(234, 234, 234), rgb(234, 234, 234), rgba(234, 234, 234, 0.7)), url(../img/title_bg.png);
}
@media screen and (max-width: 479px) {
  .comment-reply-title {
    font-size: 3.5vw;
    margin: 20px 2vw 0;
  }
}

/*---------------------------------
  Form-eyecatch1
---------------------------------*/
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 {
    overflow: hidden;
  }
}
.Form.-eyecatch1 .inner {
  background: #fff;
}
.Form.-eyecatch1 .Form__headerLink {
  position: relative;
  background: #ca9721;
  display: block;
  color: white;
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__headerLink {
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__headerLink {
    font-size: 3vw;
    padding: 2vw;
  }
}
.Form.-eyecatch1 .Form__headerLink .fa-angle-down {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__headerLink .fa-angle-down {
    right: 10px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__headerLink .fa-angle-down {
    font-size: 5vw;
    right: 2vw;
  }
}
.Form.-eyecatch1 .Form__box {
  background-color: #fff;
  width: 760px;
  margin: 0 auto;
  border-radius: 10px;
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__box {
    background-color: #fff;
    width: auto;
    border: solid 1px #ccc;
    padding: 0 2vw;
  }
}
.Form.-eyecatch1 .Form__progress {
  display: none;
}
.Form.-eyecatch1 .Form__header {
  position: relative;
  text-align: center;
}
.Form.-eyecatch1 .Form__body {
  transition: none;
  background: #f6ecd7;
  border: solid 5px #ca9721;
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__body {
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__body {
    padding: 2vw;
  }
}
.Form.-eyecatch1 .Form__body * {
  transition: none;
}
.Form.-eyecatch1 .Form__selectBox {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__selectBox {
    margin: 0 0 10px;
  }
}
.Form.-eyecatch1 .Form__selectBox .Form__questionItem {
  flex: 1;
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__selectBox .Form__questionItem {
    padding-right: 2vw;
  }
}
.Form.-eyecatch1 .Form__selectBox .Form__questionItem:nth-child(3n) {
  padding-right: 0;
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__answer {
    margin-bottom: 2vw;
  }
}
.Form.-eyecatch1 .Form__answer.-select {
  display: block;
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__answer.-select {
    width: 98%;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__answer.-select {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__answer.-checkbox {
    justify-content: space-around;
  }
}
.Form.-eyecatch1 .Form__answer.-checkbox::after {
  content: "";
  display: block;
  height: 0;
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__answer.-checkbox::after {
    width: 33%;
  }
}
.Form.-eyecatch1 .Form__answer .Form__select {
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__answer .Form__select {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__answer .Form__select {
    font-size: 3.5vw;
    padding: 1vw 2vw;
  }
}
.Form.-eyecatch1 .Form__answer .Form__select option {
  transform: scale(0.8);
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .InputSelect__label {
    background-color: #fff;
    font-size: 3.5vw;
    padding: 1vw 2vw;
  }
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .Form__footer {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__footer {
    padding: 10px 0 0;
  }
}
.Form.-eyecatch1 .main_check_body {
  display: none;
}
.Form.-eyecatch1 .Form__button {
  padding: 10px 35px;
  color: #fff;
  border: none;
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__button {
    padding: 5px 0;
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .Form__button.main_check {
    padding: 12px;
    border-radius: 10px;
    font-size: 5vw;
    width: auto;
  }
}
.Form.-eyecatch1 .Form__button.main_check:hover {
  background-color: #2196f3;
  color: #fff;
}
.Form.-eyecatch1 .question4 .Form__question {
  background: #ca9721;
  color: #fff;
}
@media screen and (min-width: 480px) {
  .Form.-eyecatch1 .question4 .Form__question {
    font-size: 14px;
    padding: 5px 12px;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 479px) {
  .Form.-eyecatch1 .question4 .Form__question {
    font-size: 3vw;
    padding: 1vw 2vw;
  }
}

@media screen and (min-width: 480px) {
  .IconList_inner {
    width: 660px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .IconList_inner {
    margin: 1em 2vw;
  }
}

.IconList_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .IconList_box {
    gap: 0.8em 1.5%;
  }
}
@media screen and (max-width: 479px) {
  .IconList_box {
    gap: 0.5em 2.6%;
    margin: 2vw;
  }
}

.IconList_link {
  display: flex;
  border: solid 2px;
  border-radius: 0.6em;
  transition: all 0.5s;
  width: 48%;
}
@media screen and (min-width: 480px) {
  .IconList_link {
    padding: 0.6em;
  }
}
@media screen and (max-width: 479px) {
  .IconList_link {
    padding: 0.4em;
  }
}

.IconList_link:hover {
  opacity: 0.8;
}

.IconList_item {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .IconList_item {
    gap: 1em;
  }
}
@media screen and (max-width: 479px) {
  .IconList_item {
    gap: 0.4em;
  }
}

.IconList_title {
  color: #333;
  font-weight: 700;
  margin-right: auto;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .IconList_title {
    font-size: 100%;
  }
}
@media screen and (max-width: 479px) {
  .IconList_title {
    font-size: 95%;
  }
}

@media screen and (min-width: 480px) {
  .IconList_icon {
    font-size: 110%;
  }
}
@media screen and (max-width: 479px) {
  .IconList_icon {
    font-size: 90%;
  }
}

@media screen and (max-width: 479px) {
  .IconList_arrow {
    font-size: 70%;
  }
}

.LPComment {
  position: relative;
  box-shadow: 0 0 3px #999;
  border-radius: 0.6em;
  padding: 0;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .LPComment {
    width: 660px;
    margin: 1em auto;
  }
}
@media screen and (max-width: 479px) {
  .LPComment {
    margin: 1em 2vw;
  }
}

.LPComment_mainTitle {
  text-align: center;
  padding: 0.2em 0.6em;
  margin: 0;
}

.LPComment_item {
  border-bottom: dashed 1px #ccc;
  padding-bottom: 0.6em;
  margin: 0.6em;
}

.LPComment_item:last-child {
  border-bottom: none;
}

.LPComment_header {
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
}

.LPComment_header::before {
  content: "";
  display: block;
  width: 2.8em;
  height: 2.8em;
  background-size: 2.8em auto;
  background-color: #eee;
  background-position: center;
  border: solid 1px #aaa;
  border-radius: 50%;
  margin-right: 0.4em;
}

.LPComment_header.male::before {
  background-image: url(../img/male.png);
}

.LPComment_header.female::before {
  background-image: url(../img/female.png);
}

.LPComment_headerBox {
  flex: 1;
}

.LPComment_title {
  color: var(--bg-color, #ff8000);
  font-size: 110%;
  font-weight: 700;
}

.LPComment_meta {
  font-size: 90%;
}

.LPComment_display {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #888;
  font-size: 80%;
  text-align: center;
  padding: 0.8em 0;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 0px 10px 10px #fff;
}

.LPComment .btnBox {
  margin: 1em;
}

@media screen and (min-width: 480px) {
  .LPTable01_inner {
    margin: 2em auto;
    display: table;
  }
}
@media screen and (max-width: 479px) {
  .LPTable01_inner {
    margin: 1em 0;
  }
}

.LPTable01_mainTitle {
  position: relative;
  background: #ffc107;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
}
@media screen and (min-width: 480px) {
  .LPTable01_mainTitle {
    font-size: 1.2em;
    margin: 0.7em 0;
  }
}
@media screen and (max-width: 479px) {
  .LPTable01_mainTitle {
    font-size: 1em;
    margin: 0.7em 2vw;
  }
}

.LPTable01_mainTitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0 10px;
  border-color: #ffc107 transparent transparent transparent;
}

.LPTable01_scrollBox {
  padding: 0 1px;
}
@media screen and (max-width: 479px) {
  .LPTable01_scrollBox {
    width: 100vw;
    overflow-x: auto;
  }
}

.LPTable01_table {
  border-collapse: separate;
  border-spacing: 0;
  border: none;
}
@media screen and (min-width: 480px) {
  .LPTable01_table {
    box-shadow: 0 0 3px #aaa;
    min-width: 660px;
  }
}
@media screen and (max-width: 479px) {
  .LPTable01_table {
    font-size: 85%;
    min-width: 100%;
  }
}

.LPTable01 th {
  position: relative;
  background-color: #eee;
  border: none;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 480px) {
  .LPTable01 th {
    padding: 0.6em 0.6em 1em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable01 th {
    padding: 0.6em 0.6em 1em;
  }
}

.LPTable01 th::after {
  content: "▼";
  position: absolute;
  bottom: 0.5em;
  left: 50%;
  transform: translate(-50%, 0);
  color: #999;
  font-size: 0.5em;
}

.LPTable01 td {
  position: relative;
  background-color: #fff;
  border: none;
  border-bottom: solid 1px #ccc;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  min-width: 3.5em;
}
@media screen and (min-width: 480px) {
  .LPTable01 td {
    padding: 0.6em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable01 td {
    padding: 0.6em;
  }
}
.LPTable01 td:has(> .bg-maru2) {
  background-image: url(../img/bg_maru2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable01 td:has(> .bg-maru) {
  background-image: url(../img/bg_maru.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable01 td:has(> .bg-sankaku) {
  background-image: url(../img/bg_sankaku.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}

.LPTable01 td:not(:last-child) {
  border-right: dashed 1px #ccc;
}

.LPTable01 .border {
  display: inline-block;
  border: solid 2px;
  border-radius: 0.6em;
  font-size: 85%;
  padding: 0.2em 0.4em;
  margin-bottom: 0.4em;
}
.LPTable01 .company {
  display: block;
  color: #333;
  font-size: 80%;
}
.LPTable01 .mark {
  display: block;
  margin: 0.5em auto;
  width: 3em;
}
.LPTable01 .note {
  position: relative;
  background-color: #eee;
  border: solid 2px var(--bg-color, #ff8000);
  font-size: 80%;
  font-weight: 700;
  padding: 0.6em;
  margin: 0.4em 0;
}
.LPTable01 .note:last-child {
  margin-bottom: 0;
}
.LPTable01 .note.gray {
  border-color: #aaa;
}
.LPTable01 .note.red {
  border-color: #f44336;
}
.LPTable01 .note.green {
  border-color: #4caf50;
}
.LPTable01 .note.pink {
  border-color: #e91e63;
}
.LPTable01 .note.orange {
  border-color: #ff9800;
}
.LPTable01 .note.purple {
  border-color: #8400ff;
}
.LPTable01 .note::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 0.8em;
  height: 0.8em;
  border: 0.5em solid var(--bg-color, #ff8000);
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 .note.gray::after {
  border-color: #aaa;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 .note.red::after {
  border-color: #f44336;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 .note.green::after {
  border-color: #4caf50;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 .note.pink::after {
  border-color: #e91e63;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 .note.orange::after {
  border-color: #ff9800;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 .note.purple::after {
  border-color: #8400ff;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable01 img {
  display: block;
  margin: auto;
  height: auto;
  margin-bottom: 0.6em;
}
@media screen and (min-width: 480px) {
  .LPTable01 img {
    max-width: 160px;
  }
}
.LPTable01 .rate {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .LPTable01 .rate {
    font-size: 90%;
  }
}
.LPTable01 .rate::before {
  content: "★★★★★";
  color: #ccc;
}
.LPTable01 .rate05::after,
.LPTable01 .rate10::before,
.LPTable01 .rate10::after,
.LPTable01 .rate15::before,
.LPTable01 .rate15::after,
.LPTable01 .rate20::before,
.LPTable01 .rate20::after,
.LPTable01 .rate25::before,
.LPTable01 .rate25::after,
.LPTable01 .rate30::before,
.LPTable01 .rate30::after,
.LPTable01 .rate35::before,
.LPTable01 .rate35::after,
.LPTable01 .rate40::before,
.LPTable01 .rate40::after,
.LPTable01 .rate45::before,
.LPTable01 .rate45::after,
.LPTable01 .rate50::after {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffa500;
  overflow: hidden;
  height: 1em;
}
.LPTable01 .rate .rate05::after,
.LPTable01 .rate .rate15::after,
.LPTable01 .rate .rate25::after,
.LPTable01 .rate .rate35::after,
.LPTable01 .rate .rate45::after {
  width: 0.5em;
  content: "★";
}
.LPTable01 .rate .rate10::after,
.LPTable01 .rate .rate15::before {
  content: "★";
}
.LPTable01 .rate .rate15::after {
  left: 1em;
}
.LPTable01 .rate .rate20::after,
.LPTable01 .rate .rate25::before {
  content: "★★";
}
.LPTable01 .rate .rate25::after {
  left: 2em;
}
.LPTable01 .rate .rate30::after,
.LPTable01 .rate .rate35::before {
  content: "★★★";
}
.LPTable01 .rate .rate35::after {
  left: 3em;
}
.LPTable01 .rate .rate40::after,
.LPTable01 .rate .rate45::before {
  content: "★★★★";
}
.LPTable01 .rate .rate45::after {
  left: 4em;
}
.LPTable01 .rate .rate50::after {
  content: "★★★★★";
}
.LPTable01 .btn {
  position: relative;
  background: var(--bg-color, #ff8000);
  border-radius: 8px;
  font-size: 80%;
  outline: none;
  overflow: hidden;
  padding: 0.6em;
  transition: all 0.5s;
}
@media screen and (min-width: 480px) {
  .LPTable01 .btn {
    display: inline-block;
    padding: 0.8em 2em;
  }
}
.LPTable01 .btn:hover {
  opacity: 0.7;
}
.LPTable01 .btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4588235294), rgba(255, 255, 255, 0));
  animation: shiny 8s ease-in-out infinite;
}
@keyframes shiny {
  0% {
    left: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    left: 100%;
    opacity: 0.7;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media screen and (min-width: 480px) {
  .LPTable02_inner {
    width: 800px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable02_inner {
    margin: 1em 0;
  }
}

.LPTable02_mainTitle {
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .LPTable02_mainTitle {
    font-size: 1.5em;
    text-align: center;
    padding: 0.4em 0.6em;
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable02_mainTitle {
    font-size: 1.3em;
    text-align: left;
    padding: 0.4em 0.6em 0.4em 3.5em;
  }
}

.LPTable02_scrollBox {
  padding: 0 1px;
}
@media screen and (max-width: 479px) {
  .LPTable02_scrollBox {
    width: 100vw;
    overflow-x: auto;
  }
}

.LPTable02_table {
  border-collapse: separate;
  border-spacing: 0;
  border: none;
}
@media screen and (min-width: 480px) {
  .LPTable02_table {
    box-shadow: 0 0 3px #aaa;
  }
}
@media screen and (max-width: 479px) {
  .LPTable02_table {
    font-size: 85%;
    min-width: 100%;
  }
}

.LPTable02 th {
  position: relative;
  background-color: #ddd;
  border: none;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
  padding: 0.6em;
}
.LPTable02 th.rank1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 6em;
  height: 5em;
  background-image: url(../img/rank_header01.png);
  background-repeat: no-repeat;
  background-size: 6em auto;
  z-index: 1;
}
.LPTable02 th.rank2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 6em;
  height: 5em;
  background-image: url(../img/rank_header02.png);
  background-repeat: no-repeat;
  background-size: 6em auto;
  z-index: 1;
}
.LPTable02 th.rank3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 6em;
  height: 5em;
  background-image: url(../img/rank_header03.png);
  background-repeat: no-repeat;
  background-size: 6em auto;
  z-index: 1;
}
.LPTable02 td {
  position: relative;
  background-color: #fff;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #ccc;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
  min-width: 3.5em;
  min-height: 3.5em;
}
@media screen and (min-width: 480px) {
  .LPTable02 td {
    padding: 0.6em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable02 td {
    padding: 0.6em;
  }
}
.LPTable02 td:has(> .bg-maru2) {
  background-image: url(../img/bg_maru2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable02 td:has(> .bg-maru) {
  background-image: url(../img/bg_maru.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable02 td:has(> .bg-sankaku) {
  background-image: url(../img/bg_sankaku.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable02 td:not(:last-child) {
  border-right: dashed 1px #ccc;
}
.LPTable02 td:first-child {
  white-space: nowrap;
  background-color: #eee;
  border-right: solid 1px #ccc;
  font-size: 80%;
  font-weight: 700;
}
.LPTable02 td:first-child:has(+ td > .bg-maru)::before, .LPTable02 td:first-child:has(+ td > .bg-maru2)::before, .LPTable02 td:first-child:has(+ td > .bg-sankaku)::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  min-height: 4.5em;
}

.LPTable02 .mark {
  display: block;
  margin: 0.5em auto;
  width: 3em;
}
.LPTable02 .border {
  display: inline-block;
  border: solid 2px;
  border-radius: 0.6em;
  font-size: 90%;
  padding: 0.2em 0.4em;
  margin-bottom: 0.4em;
}
.LPTable02 .company {
  display: block;
  color: #333;
}
.LPTable02 img {
  display: block;
  margin: auto;
  height: auto;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 479px) {
  .LPTable02 img {
    max-width: 30vw;
  }
}
.LPTable02 .note {
  position: relative;
  background-color: #eee;
  border: solid 2px var(--bg-color, #ff8000);
  font-size: 80%;
  font-weight: 700;
  padding: 0.6em;
  margin: 0.4em 0;
}
.LPTable02 .note:last-child {
  margin-bottom: 0;
}
.LPTable02 .note.gray {
  border-color: #aaa;
}
.LPTable02 .note.red {
  border-color: #f44336;
}
.LPTable02 .note.green {
  border-color: #4caf50;
}
.LPTable02 .note.pink {
  border-color: #e91e63;
}
.LPTable02 .note.orange {
  border-color: #ff9800;
}
.LPTable02 .note.purple {
  border-color: #8400ff;
}
.LPTable02 .note::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 0.8em;
  height: 0.8em;
  border: 0.5em solid var(--bg-color, #ff8000);
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .note.gray::after {
  border-color: #aaa;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .note.red::after {
  border-color: #f44336;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .note.green::after {
  border-color: #4caf50;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .note.pink::after {
  border-color: #e91e63;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .note.orange::after {
  border-color: #ff9800;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .note.purple::after {
  border-color: #8400ff;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable02 .rate {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .LPTable02 .rate {
    font-size: 90%;
  }
}
.LPTable02 .rate::before {
  content: "★★★★★";
  color: #ccc;
}
.LPTable02 .rate05::after,
.LPTable02 .rate10::before,
.LPTable02 .rate10::after,
.LPTable02 .rate15::before,
.LPTable02 .rate15::after,
.LPTable02 .rate20::before,
.LPTable02 .rate20::after,
.LPTable02 .rate25::before,
.LPTable02 .rate25::after,
.LPTable02 .rate30::before,
.LPTable02 .rate30::after,
.LPTable02 .rate35::before,
.LPTable02 .rate35::after,
.LPTable02 .rate40::before,
.LPTable02 .rate40::after,
.LPTable02 .rate45::before,
.LPTable02 .rate45::after,
.LPTable02 .rate50::after {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffa500;
  overflow: hidden;
  height: 1em;
}
.LPTable02 .rate .rate05::after,
.LPTable02 .rate .rate15::after,
.LPTable02 .rate .rate25::after,
.LPTable02 .rate .rate35::after,
.LPTable02 .rate .rate45::after {
  width: 0.5em;
  content: "★";
}
.LPTable02 .rate .rate10::after,
.LPTable02 .rate .rate15::before {
  content: "★";
}
.LPTable02 .rate .rate15::after {
  left: 1em;
}
.LPTable02 .rate .rate20::after,
.LPTable02 .rate .rate25::before {
  content: "★★";
}
.LPTable02 .rate .rate25::after {
  left: 2em;
}
.LPTable02 .rate .rate30::after,
.LPTable02 .rate .rate35::before {
  content: "★★★";
}
.LPTable02 .rate .rate35::after {
  left: 3em;
}
.LPTable02 .rate .rate40::after,
.LPTable02 .rate .rate45::before {
  content: "★★★★";
}
.LPTable02 .rate .rate45::after {
  left: 4em;
}
.LPTable02 .rate .rate50::after {
  content: "★★★★★";
}
.LPTable02 .btn {
  position: relative;
  background: var(--bg-color, #ff8000);
  border-radius: 8px;
  outline: none;
  overflow: hidden;
  padding: 0.6em;
  transition: all 0.5s;
}
@media screen and (min-width: 480px) {
  .LPTable02 .btn {
    display: inline-block;
    padding: 0.8em 2em;
  }
}
.LPTable02 .btn:hover {
  opacity: 0.7;
}
.LPTable02 .btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4588235294), rgba(255, 255, 255, 0));
  animation: shiny 8s ease-in-out infinite;
}
@keyframes shiny {
  0% {
    left: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    left: 100%;
    opacity: 0.7;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media screen and (min-width: 480px) {
  .LPTable03_inner {
    width: 660px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_inner {
    margin: 1em 0;
  }
}

.LPTable03_mainTitle {
  position: relative;
  background: #ffc107;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
}
@media screen and (min-width: 480px) {
  .LPTable03_mainTitle {
    font-size: 1.2em;
    margin: 0.7em 0;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_mainTitle {
    font-size: 1em;
    margin: 0.7em 2vw;
  }
}

.LPTable03_mainTitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0 10px;
  border-color: #ffc107 transparent transparent transparent;
}

.LPTable03_scrollBox {
  padding: 0 1px;
}
@media screen and (max-width: 479px) {
  .LPTable03_scrollBox {
    width: 100vw;
    overflow-x: auto;
  }
}

.LPTable03_table {
  border-collapse: collapse;
  border: none;
}
@media screen and (min-width: 480px) {
  .LPTable03_table {
    box-shadow: 0 0 3px #aaa;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_table {
    font-size: 85%;
    min-width: 100%;
  }
}
.LPTable03_table th {
  position: relative;
  background-color: #ddd;
  border: none;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
  padding: 0.6em;
}
.LPTable03_table td {
  position: relative;
  background-color: #fff;
  border: none;
  border-bottom: solid 1px #ccc;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
  min-width: 3.5em;
  min-height: 3.5em;
}
@media screen and (min-width: 480px) {
  .LPTable03_table td {
    padding: 0.6em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_table td {
    font-size: 90%;
    padding: 0.6em;
  }
}
.LPTable03_table td:not(:last-child) {
  border-right: dashed 1px #ccc;
}
.LPTable03_table .rank {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 480px) {
  .LPTable03_table .rank {
    gap: 0.8em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_table .rank {
    gap: 0.4em;
  }
}
.LPTable03_table .rank::before {
  content: "";
  display: block;
  width: 3em;
  height: 3em;
  background-repeat: no-repeat;
  background-size: 3em auto;
}
.LPTable03_table .rank.rank1::before {
  background-image: url(../img/icon_no1.png);
}
.LPTable03_table .rank.rank2::before {
  background-image: url(../img/icon_no2.png);
}
.LPTable03_table .rank.rank3::before {
  background-image: url(../img/icon_no3.png);
}
.LPTable03_table .box {
  flex: 1;
}
.LPTable03_table .name {
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .LPTable03_table .name {
    padding-top: 0.8em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_table .company img {
    max-width: 25vw;
  }
}
.LPTable03_table .btn {
  margin: 0.5em auto;
  max-width: 90%;
}
@media screen and (max-width: 479px) {
  .LPTable03_table .btn {
    font-size: 3vw;
  }
}
.LPTable03_table .mark {
  display: block;
  margin: 0.5em auto;
  width: 3em;
}
@media screen and (max-width: 479px) {
  .LPTable03_table .rateBox {
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_table .rateText {
    font-size: 88%;
    line-height: 1.2;
  }
}
.LPTable03_table .rate {
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .LPTable03_table .rate {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable03_table .rate {
    font-size: 2em;
  }
}

@media screen and (min-width: 480px) {
  .LPTable04_inner {
    width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable04_inner {
    margin: 1em 0;
  }
}

.LPTable04_mainTitle {
  position: relative;
  background: #ffc107;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
}
@media screen and (min-width: 480px) {
  .LPTable04_mainTitle {
    font-size: 1.2em;
    margin: 0.7em 0;
  }
}
@media screen and (max-width: 479px) {
  .LPTable04_mainTitle {
    font-size: 1em;
    margin: 0.7em 2vw;
  }
}

.LPTable04_mainTitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0 10px;
  border-color: #ffc107 transparent transparent transparent;
}

.LPTable04_scrollBox {
  overflow-x: auto;
}
@media screen and (min-width: 480px) {
  .LPTable04_scrollBox {
    width: 800px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable04_scrollBox {
    width: 100%;
    margin: 1em 0;
  }
}

.LPTable04 th {
  position: relative;
  background-color: #ddd;
  border: none;
  font-size: 75%;
  text-align: center;
  white-space: nowrap;
  padding: 0.6em;
}
.LPTable04 td {
  position: relative;
  background-color: #fff;
  border: none;
  border-bottom: solid 1px #ccc;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
  min-width: 3.5em;
  min-height: 3.5em;
  white-space: nowrap;
}
@media screen and (min-width: 480px) {
  .LPTable04 td {
    padding: 0.6em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable04 td {
    padding: 0.6em;
  }
}
.LPTable04 td:has(> .bg-maru2) {
  background-image: url(../img/bg_maru2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable04 td:has(> .bg-maru) {
  background-image: url(../img/bg_maru.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable04 td:has(> .bg-sankaku) {
  background-image: url(../img/bg_sankaku.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable04 td:not(:last-child) {
  border-right: dashed 1px #ccc;
}
.LPTable04 td:first-child {
  white-space: nowrap;
  background-color: #eee;
  border-right: solid 1px #ccc;
  font-size: 80%;
  font-weight: 700;
}
.LPTable04 td:first-child:has(+ td > .bg-maru)::before, .LPTable04 td:first-child:has(+ td > .bg-maru2)::before, .LPTable04 td:first-child:has(+ td > .bg-sankaku)::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  min-height: 4.5em;
}
.LPTable04 .sticky {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #ccc;
  border-left: none;
  border-right: none;
  z-index: 1;
}
.LPTable04 .sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  z-index: -1;
}

.LPTable04 .mark {
  display: block;
  margin: 0.5em auto;
  width: 3em;
}
.LPTable04 .border {
  display: inline-block;
  border: solid 2px;
  border-radius: 0.6em;
  font-size: 90%;
  padding: 0.2em 0.4em;
  margin-bottom: 0.4em;
}
.LPTable04 .company {
  display: block;
  color: #333;
}
.LPTable04 img {
  display: block;
  margin: auto;
  height: auto;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 479px) {
  .LPTable04 img {
    max-width: 30vw;
  }
}
.LPTable04 .note {
  position: relative;
  background-color: #eee;
  border: solid 2px var(--bg-color, #ff8000);
  font-size: 80%;
  font-weight: 700;
  padding: 0.6em;
  margin: 0.4em 0;
}
.LPTable04 .note:last-child {
  margin-bottom: 0;
}
.LPTable04 .note.gray {
  border-color: #aaa;
}
.LPTable04 .note.red {
  border-color: #f44336;
}
.LPTable04 .note.green {
  border-color: #4caf50;
}
.LPTable04 .note.pink {
  border-color: #e91e63;
}
.LPTable04 .note.orange {
  border-color: #ff9800;
}
.LPTable04 .note.purple {
  border-color: #8400ff;
}
.LPTable04 .note::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 0.8em;
  height: 0.8em;
  border: 0.5em solid var(--bg-color, #ff8000);
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .note.gray::after {
  border-color: #aaa;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .note.red::after {
  border-color: #f44336;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .note.green::after {
  border-color: #4caf50;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .note.pink::after {
  border-color: #e91e63;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .note.orange::after {
  border-color: #ff9800;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .note.purple::after {
  border-color: #8400ff;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable04 .rate {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .LPTable04 .rate {
    font-size: 90%;
  }
}
.LPTable04 .rate::before {
  content: "★★★★★";
  color: #ccc;
}
.LPTable04 .rate05::after,
.LPTable04 .rate10::before,
.LPTable04 .rate10::after,
.LPTable04 .rate15::before,
.LPTable04 .rate15::after,
.LPTable04 .rate20::before,
.LPTable04 .rate20::after,
.LPTable04 .rate25::before,
.LPTable04 .rate25::after,
.LPTable04 .rate30::before,
.LPTable04 .rate30::after,
.LPTable04 .rate35::before,
.LPTable04 .rate35::after,
.LPTable04 .rate40::before,
.LPTable04 .rate40::after,
.LPTable04 .rate45::before,
.LPTable04 .rate45::after,
.LPTable04 .rate50::after {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffa500;
  overflow: hidden;
  height: 1em;
}
.LPTable04 .rate .rate05::after,
.LPTable04 .rate .rate15::after,
.LPTable04 .rate .rate25::after,
.LPTable04 .rate .rate35::after,
.LPTable04 .rate .rate45::after {
  width: 0.5em;
  content: "★";
}
.LPTable04 .rate .rate10::after,
.LPTable04 .rate .rate15::before {
  content: "★";
}
.LPTable04 .rate .rate15::after {
  left: 1em;
}
.LPTable04 .rate .rate20::after,
.LPTable04 .rate .rate25::before {
  content: "★★";
}
.LPTable04 .rate .rate25::after {
  left: 2em;
}
.LPTable04 .rate .rate30::after,
.LPTable04 .rate .rate35::before {
  content: "★★★";
}
.LPTable04 .rate .rate35::after {
  left: 3em;
}
.LPTable04 .rate .rate40::after,
.LPTable04 .rate .rate45::before {
  content: "★★★★";
}
.LPTable04 .rate .rate45::after {
  left: 4em;
}
.LPTable04 .rate .rate50::after {
  content: "★★★★★";
}
.LPTable04 .btn {
  position: relative;
  background: var(--bg-color, #ff8000);
  border-radius: 8px;
  outline: none;
  overflow: hidden;
  padding: 0.6em;
  transition: all 0.5s;
}
@media screen and (min-width: 480px) {
  .LPTable04 .btn {
    display: inline-block;
    padding: 0.8em 2em;
  }
}
.LPTable04 .btn:hover {
  opacity: 0.7;
}
.LPTable04 .btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4588235294), rgba(255, 255, 255, 0));
  animation: shiny 8s ease-in-out infinite;
}
@keyframes shiny {
  0% {
    left: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    left: 100%;
    opacity: 0.7;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media screen and (min-width: 480px) {
  .LPTable05_inner {
    width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable05_inner {
    margin: 1em 0;
  }
}

.LPTable05_mainTitle {
  position: relative;
  background: #ffc107;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
}
@media screen and (min-width: 480px) {
  .LPTable05_mainTitle {
    font-size: 1.2em;
    margin: 0.7em 0;
  }
}
@media screen and (max-width: 479px) {
  .LPTable05_mainTitle {
    font-size: 1em;
    margin: 0.7em 2vw;
  }
}

.LPTable05_mainTitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0 10px;
  border-color: #ffc107 transparent transparent transparent;
}

@media screen and (min-width: 480px) {
  .LPTable05_scrollBox {
    width: 800px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTable05_scrollBox {
    width: 100%;
    margin: 1em 0;
    padding: 0 0.5em;
  }
}

.LPTable05_table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.LPTable05_table th {
  position: relative;
  background-color: #ddd;
  border: none;
  font-size: 75%;
  text-align: center;
  padding: 0.6em;
}
.LPTable05_table td {
  position: relative;
  background-color: #fff;
  border: none;
  border-bottom: solid 1px #ccc;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
  min-width: 3.5em;
  min-height: 3.5em;
}
@media screen and (min-width: 480px) {
  .LPTable05_table td {
    padding: 0.6em;
  }
}
@media screen and (max-width: 479px) {
  .LPTable05_table td {
    padding: 0.6em;
  }
}
.LPTable05_table td:has(> .bg-maru2) {
  background-image: url(../img/bg_maru2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable05_table td:has(> .bg-maru) {
  background-image: url(../img/bg_maru.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable05_table td:has(> .bg-sankaku) {
  background-image: url(../img/bg_sankaku.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5em auto;
}
.LPTable05_table td:not(:last-child) {
  border-right: dashed 1px #ccc;
}
.LPTable05_table td:first-child:has(+ td > .bg-maru)::before, .LPTable05_table td:first-child:has(+ td > .bg-maru2)::before, .LPTable05_table td:first-child:has(+ td > .bg-sankaku)::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  min-height: 4.5em;
}
.LPTable05_table .sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  padding-bottom: 1em;
}
.LPTable05_table .sticky::after {
  content: "▼";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  color: #00a9d3;
  font-size: 0.7em;
  text-align: center;
}

.LPTable05 .mark {
  display: block;
  margin: 0.5em auto;
  width: 3em;
}
.LPTable05 .border {
  display: inline-block;
  border: solid 2px;
  border-radius: 0.6em;
  font-size: 90%;
  padding: 0.2em 0.4em;
  margin-bottom: 0.4em;
}
.LPTable05 .company {
  display: block;
  color: #333;
}
.LPTable05 img {
  display: block;
  margin: auto;
  height: auto;
  margin-bottom: 0.6em;
}
.LPTable05 .note {
  position: relative;
  background-color: #eee;
  border: solid 2px var(--bg-color, #ff8000);
  font-size: 80%;
  font-weight: 700;
  padding: 0.6em;
  margin: 0.4em 0;
}
.LPTable05 .note:last-child {
  margin-bottom: 0;
}
.LPTable05 .note.gray {
  border-color: #aaa;
}
.LPTable05 .note.red {
  border-color: #f44336;
}
.LPTable05 .note.green {
  border-color: #4caf50;
}
.LPTable05 .note.pink {
  border-color: #e91e63;
}
.LPTable05 .note.orange {
  border-color: #ff9800;
}
.LPTable05 .note.purple {
  border-color: #8400ff;
}
.LPTable05 .note::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 0.8em;
  height: 0.8em;
  border: 0.5em solid var(--bg-color, #ff8000);
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .note.gray::after {
  border-color: #aaa;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .note.red::after {
  border-color: #f44336;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .note.green::after {
  border-color: #4caf50;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .note.pink::after {
  border-color: #e91e63;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .note.orange::after {
  border-color: #ff9800;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .note.purple::after {
  border-color: #8400ff;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.LPTable05 .rate {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .LPTable05 .rate {
    font-size: 90%;
  }
}
.LPTable05 .rate::before {
  content: "★★★★★";
  color: #ccc;
}
.LPTable05 .rate05::after,
.LPTable05 .rate10::before,
.LPTable05 .rate10::after,
.LPTable05 .rate15::before,
.LPTable05 .rate15::after,
.LPTable05 .rate20::before,
.LPTable05 .rate20::after,
.LPTable05 .rate25::before,
.LPTable05 .rate25::after,
.LPTable05 .rate30::before,
.LPTable05 .rate30::after,
.LPTable05 .rate35::before,
.LPTable05 .rate35::after,
.LPTable05 .rate40::before,
.LPTable05 .rate40::after,
.LPTable05 .rate45::before,
.LPTable05 .rate45::after,
.LPTable05 .rate50::after {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffa500;
  overflow: hidden;
  height: 1em;
}
.LPTable05 .rate .rate05::after,
.LPTable05 .rate .rate15::after,
.LPTable05 .rate .rate25::after,
.LPTable05 .rate .rate35::after,
.LPTable05 .rate .rate45::after {
  width: 0.5em;
  content: "★";
}
.LPTable05 .rate .rate10::after,
.LPTable05 .rate .rate15::before {
  content: "★";
}
.LPTable05 .rate .rate15::after {
  left: 1em;
}
.LPTable05 .rate .rate20::after,
.LPTable05 .rate .rate25::before {
  content: "★★";
}
.LPTable05 .rate .rate25::after {
  left: 2em;
}
.LPTable05 .rate .rate30::after,
.LPTable05 .rate .rate35::before {
  content: "★★★";
}
.LPTable05 .rate .rate35::after {
  left: 3em;
}
.LPTable05 .rate .rate40::after,
.LPTable05 .rate .rate45::before {
  content: "★★★★";
}
.LPTable05 .rate .rate45::after {
  left: 4em;
}
.LPTable05 .rate .rate50::after {
  content: "★★★★★";
}
.LPTable05 .btn {
  position: relative;
  background: var(--bg-color, #ff8000);
  border-radius: 8px;
  outline: none;
  overflow: hidden;
  padding: 0.6em;
  transition: all 0.5s;
}
@media screen and (min-width: 480px) {
  .LPTable05 .btn {
    display: inline-block;
    padding: 0.8em 2em;
  }
}
.LPTable05 .btn:hover {
  opacity: 0.7;
}
.LPTable05 .btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4588235294), rgba(255, 255, 255, 0));
  animation: shiny 8s ease-in-out infinite;
}
@keyframes shiny {
  0% {
    left: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    left: 100%;
    opacity: 0.7;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media screen and (min-width: 480px) {
  .LPTabTable01_inner {
    width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  .LPTabTable01_inner {
    margin: 1em 0;
  }
}

.LPTabTable01_tabList {
  display: flex;
  justify-content: center;
  gap: 1em;
}

.LPTabTable01_tabButton {
  position: relative;
  display: block;
  background: #ccc;
  border: solid 1px #ccc;
  border-radius: 4px;
  line-height: 1.2;
  height: 100%;
  color: #333;
}
@media screen and (min-width: 480px) {
  .LPTabTable01_tabButton {
    font-size: 0.9em;
    padding: 0.6em 1.4em;
  }
}
@media screen and (max-width: 479px) {
  .LPTabTable01_tabButton {
    font-size: 0.8em;
    padding: 0.6em 0.4em;
  }
}
.LPTabTable01_tabButton small {
  font-size: 0.8em;
}
.LPTabTable01_tabButton.active {
  background: #ffc107;
  border: solid 1px #ffc107;
}
.LPTabTable01_tabButton.active:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ffc107 transparent transparent transparent;
  border-width: 10px 20px 0 20px;
  background: none;
}

.LPTabTable01_topText {
  text-align: center;
}

.LPTabTable01_contents {
  display: none;
}
.LPTabTable01_contents.active {
  display: block;
}

.LPTabTable01_tableBox {
  box-shadow: 0 0 2px #ddd;
  overflow-x: auto;
}

.LPTabTable01_table {
  border-collapse: separate;
  border-spacing: 0;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-size: 0.8em;
  table-layout: fixed;
}
@media screen and (max-width: 479px) {
  .LPTabTable01_table {
    line-height: 1;
  }
}
.LPTabTable01_table th {
  background: #f2f4f7;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-top: none;
  border-left: none;
  font-size: 0.9em;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 480px) {
  .LPTabTable01_table th {
    padding: 0.8em 0.4em;
  }
}
@media screen and (max-width: 479px) {
  .LPTabTable01_table th {
    padding: 0.4em;
  }
}
.LPTabTable01_table td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-top: none;
  border-left: none;
  text-align: center;
  padding: 0.4em;
  vertical-align: middle;
  min-width: 5em;
}
.LPTabTable01_table .LPTabTable01_rank {
  min-width: 3em;
}
.LPTabTable01_table .rank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  background: #4b5461;
  color: #fff;
  font-size: 0.9em;
  margin: auto;
}
.LPTabTable01_table .rank1 {
  background: #d6c106;
}
.LPTabTable01_table .rank2 {
  background: #9e9e9e;
}
.LPTabTable01_table .rank3 {
  background: #ca480c;
}
.LPTabTable01_table .mark {
  width: 3em;
  height: auto;
}
.LPTabTable01_table .LPTabTable01_name {
  position: sticky;
  left: -1px;
  min-width: 10em;
}
.LPTabTable01_table .LPTabTable01_link {
  min-width: 6em;
}
.LPTabTable01_table .LPTabTable01_link a {
  display: inline-block;
  background-color: #e91e63;
  border-radius: 5px;
  box-shadow: 0 3px 0 0 #bbbbbb;
  color: #fff;
  text-align: center;
  padding: 0.6em;
  transition: all 0.5s;
}
.LPTabTable01_table .LPTabTable01_link a:hover {
  opacity: 0.7;
}
.LPTabTable01_table td.LPTabTable01_score {
  color: #e91e63;
}
.LPTabTable01_table td.LPTabTable01_score span {
  font-size: 1.7em;
  font-weight: 700;
}
.LPTabTable01_table td.LPTabTable01_score.high {
  background-color: #faffba;
}
.LPTabTable01_table td.LPTabTable01_score.high span {
  font-size: 2em;
}
.LPTabTable01_table td.LPTabTable01_text {
  text-align: left;
  min-width: 16em;
  line-height: 1.3;
}
@media screen and (max-width: 479px) {
  .LPTabTable01_table td.LPTabTable01_text.-sp-w14em {
    min-width: 14em;
  }
}

@media screen and (min-width: 480px) {
  .MainPoint {
    margin: 1em;
  }
}
@media screen and (max-width: 479px) {
  .MainPoint {
    margin: 1em 2vw;
  }
}

.MainPoint_title {
  position: relative;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.2em;
}

.MainPoint_title::before {
  content: "point";
  display: block;
  float: left;
  background-color: var(--bg-color, #ff8000);
  border-radius: 0 0.4em 0.4em 0;
  box-shadow: 0.2em 0.2em 0 #ccc;
  color: var(--font-color, #fff);
  font-size: 60%;
  text-transform: uppercase;
  padding: 0.2em 0.4em;
  margin: 0.2em 0.8em 0 0;
  transform: rotate(350deg);
}

.MainPoint_text {
  background-image: linear-gradient(180deg, #eee 1px, transparent 1px);
  background-size: 100% 2em;
  line-height: 2em;
  background-position: 0 -0.1em;
}

.MainSpec {
  font-size: 85%;
}
@media screen and (min-width: 480px) {
  .MainSpec {
    margin: 1em;
  }
}
@media screen and (max-width: 479px) {
  .MainSpec {
    margin: 1em 2vw;
  }
}
.MainSpec .bg-white {
  background-color: #fff !important;
  border-color: #ddd !important;
}
.MainSpec .bg-gray {
  background-color: #ddd !important;
  border-color: #ddd !important;
}
.MainSpec .bg-red {
  background-color: #f44336 !important;
  border-color: #f44336 !important;
}
.MainSpec .bg-green {
  background-color: #4caf50 !important;
  border-color: #4caf50 !important;
}
.MainSpec .bg-pink {
  background-color: #e91e63 !important;
  border-color: #e91e63 !important;
}
.MainSpec .bg-orange {
  background-color: #ff9800 !important;
  border-color: #ff9800 !important;
}

.MainSpec_inner {
  background-color: #eee;
  padding: 0.5em;
  border-radius: 0.4em;
}

.MainSpec_title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4em;
}

.MainSpec_title::before,
.MainSpec_title::after {
  content: " --- ";
  color: #aaa;
  font-weight: 400;
  margin: 0 0.4em;
}

.MainSpec_box {
  display: flex;
  justify-content: center;
  gap: 0.4em;
  flex-wrap: wrap;
}

.MainSpec_item {
  background-color: #fff;
  border-radius: 1em;
  font-size: 90%;
  text-align: center;
  padding: 0.2em 0.8em;
  align-items: center;
}

@media screen and (min-width: 480px) {
  .MainSpecTable {
    margin: 1em;
  }
}
@media screen and (max-width: 479px) {
  .MainSpecTable {
    margin: 1em 2vw;
  }
}
.MainSpecTable .bg-white {
  background-color: #fff !important;
  border-color: #ddd !important;
}
.MainSpecTable .bg-gray {
  background-color: #ddd !important;
  border-color: #ddd !important;
}
.MainSpecTable .bg-red {
  background-color: #f44336 !important;
  border-color: #f44336 !important;
}
.MainSpecTable .bg-green {
  background-color: #4caf50 !important;
  border-color: #4caf50 !important;
}
.MainSpecTable .bg-pink {
  background-color: #e91e63 !important;
  border-color: #e91e63 !important;
}
.MainSpecTable .bg-orange {
  background-color: #ff9800 !important;
  border-color: #ff9800 !important;
}

.MainSpecTable_table {
  font-size: 85%;
  width: 100%;
}

.MainSpecTable_th {
  white-space: nowrap;
  text-align: left;
}

.MainSpecTable_box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

.MainSpecTable_item {
  background-color: var(--bg-lightcolor, #ffeeda);
  border: solid 1px var(--bg-color, #ff8000);
  border-radius: 1em;
  color: #333;
  font-size: 85%;
  text-align: center;
  padding: 0.2em 0.8em;
  align-items: center;
}

.MainTop {
  padding: 0;
}
@media screen and (min-width: 480px) {
  .MainTop {
    margin: 1em;
    gap: 2em;
  }
}
@media screen and (max-width: 479px) {
  .MainTop {
    margin: 1em 2vw;
  }
}
@media screen and (max-width: 479px) {
  .MainTop figure {
    width: 40vw;
  }
}

.MainTop_table,
.MainTop_th,
.MainTop_td {
  border: none;
}

.MainTop_table {
  flex: 1;
  font-size: 80%;
  text-align: center;
}

.MainTop_th {
  background-color: #eee;
  padding: 0.2em;
}

.MainTop_td {
  background-color: #fefefe;
  padding: 0.3em;
}

.MainWriting {
  background-image: url(../img/border02.png), url(../img/border02.png);
  background-position: bottom center, top center;
  background-repeat: repeat-x;
  background-size: auto 0.6em;
  padding: 1em 0;
}
@media screen and (min-width: 480px) {
  .MainWriting {
    margin: 1em;
  }
}
@media screen and (max-width: 479px) {
  .MainWriting {
    margin: 1.5em 4vw 1em;
  }
}
.MainWriting h2 {
  color: #333;
  margin: 1em -0.4em;
  font-size: 1.2em;
  background-color: var(--bg-lightcolor, #ffeeda);
  padding: 0.2em 0.6em;
}
.MainWriting p {
  line-height: 1.8;
}
.MainWriting ul,
.MainWriting ol {
  list-style: none;
  line-height: 1.6;
  padding: 0 0.4em 0 1.8em;
  margin: 1em 0;
}
.MainWriting li {
  counter-increment: number;
  text-indent: -1.3em;
  margin: 0.6em 0;
}
.MainWriting ul li::before {
  content: "●";
  margin-right: 5px;
  color: var(--bg-color, #ff8000);
  font-weight: 700;
}
.MainWriting ol li::before {
  content: counter(number) ".";
  margin-right: 5px;
  color: var(--bg-color, #ff8000);
  font-weight: 700;
}

.Page__body ul {
  list-style: disc;
}
.Page__body ol {
  list-style: decimal;
}
@media screen and (min-width: 480px) {
  .Page__body ul {
    padding: 0 10px 0 20px;
  }
  .Page__body ol {
    padding: 0 10px 0 20px;
  }
}
@media screen and (max-width: 479px) {
  .Page__body ul {
    padding: 0 5vw 0 7vw;
  }
  .Page__body ol {
    padding: 0 5vw 0 7vw;
  }
}

.PageTop {
  position: fixed;
  right: 10px;
  bottom: 50px;
  transform: rotate(-90deg);
  z-index: 10000;
  font-size: 2.8em;
  transition: all 0.5s;
}

.PageTop__link i {
  color: #a6a6a6;
}
.PageTop__link i:hover {
  color: #666;
}

.Pagination {
  padding: 40px 0 20px;
}
.Pagination a:hover {
  background-color: #2196f3;
  color: #fff;
}
.Pagination .page-numbers {
  display: block;
  padding: 8px 18px;
  background-color: #fff;
  color: #333;
  margin: 0 3px;
  border-radius: 5px;
  border: solid 1px #ccc;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 479px) {
  .Pagination .page-numbers {
    background-color: #fff;
    border: solid 1px #d7efff;
    color: #2196f3;
  }
}
.Pagination .current {
  background-color: #2196f3;
  color: #fff;
}
.Pagination .dots {
  background-color: transparent;
  color: #333;
  box-shadow: none;
  border: none;
}

.Pagination__list {
  display: flex;
  justify-content: center;
}

.Pagination__listItem {
  display: flex;
  justify-content: center;
}

.Pagination__total {
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 479px) {
  .Pagination__total {
    color: #2196f3;
  }
}

.Particle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.Ranking.-table1 {
  padding: 1px 0 20px;
}
@media screen and (min-width: 480px) {
  .Ranking.-table1 {
    width: 960px;
    margin: 20px auto;
  }
}
.Ranking.-table1 .Ranking__title {
  position: relative;
  background: #FFC107;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
}
@media screen and (min-width: 480px) {
  .Ranking.-table1 .Ranking__title {
    margin: 20px 0;
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__title {
    font-size: 4vw;
    padding: 2vw;
    margin: 4vw 2vw;
  }
}
.Ranking.-table1 .Ranking__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0 10px;
  border-color: #FFC107 transparent transparent transparent;
}
.Ranking.-table1 .Ranking__table {
  table-layout: auto;
}
@media screen and (min-width: 480px) {
  .Ranking.-table1 .Ranking__table {
    width: 960px;
  }
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__table {
    margin: 2vw;
    width: 96vw;
  }
}
.Ranking.-table1 .Ranking__th {
  white-space: normal;
  background: #eeeeee;
  color: #212121;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__th {
    font-size: 3vw;
    padding: 1vw;
  }
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__th.-col0 {
    width: 2vw;
  }
}
.Ranking.-table1 .Ranking__td {
  background: #fff;
  vertical-align: top;
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__td {
    font-size: 3vw;
    padding: 1vw;
  }
}
.Ranking.-table1 .Ranking__td.-rankIcon {
  font-weight: 700;
  color: #E91E63;
  background: #fff5d5;
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__td.-rankIcon {
    font-size: 3.5vw;
  }
}
.Ranking.-table1 .Ranking__box {
  display: flex;
}
@media screen and (min-width: 480px) {
  .Ranking.-table1 .Ranking__rankIcon {
    padding-right: 5px;
    width: 25px;
  }
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__rankIcon {
    width: 5vw;
  }
}
.Ranking.-table1 .Ranking__markIcon {
  width: 40px;
  display: block;
  margin: auto;
}
.Ranking.-table1 .Ranking__text p {
  margin: 0;
}
.Ranking.-table1 .Ranking__link {
  display: block;
  background: #e91e63;
  color: #fff;
  border-radius: 6px;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .Ranking.-table1 .Ranking__link {
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .Ranking.-table1 .Ranking__link {
    padding: 2vw 0;
    margin: 1vw 0;
  }
}

.Ranking + .RecommendTop {
  margin-top: -25px;
}

@media screen and (min-width: 480px) {
  .RecommendTop {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 479px) {
  .RecommendTop {
    padding: 2vw 2vw 20px;
  }
}

.RecommendTop__body {
  padding: 10px;
}
@media screen and (max-width: 479px) {
  .RecommendTop__body {
    padding: 2vw;
  }
}

.RecommendTop__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.RecommendTop__item {
  position: relative;
}
.RecommendTop__item.-size25 {
  width: 25%;
}
.RecommendTop__item.-size33 {
  width: 33%;
}
.RecommendTop__item.-size50 {
  width: 50%;
}
.RecommendTop__item.-size100 {
  width: 100%;
}

.RecommendTop__link {
  color: #fff;
  padding: 15px 15px 15px 40px;
  display: block;
  margin: 5px;
  background-color: #00a0dd;
  border-radius: 6px;
  font-size: 16px;
  text-align: justify;
}
@media screen and (max-width: 479px) {
  .RecommendTop__link {
    font-size: 4vw;
    padding: 2vw;
  }
}

.RecommendTop__link:hover {
  opacity: 0.7;
}

.RecommendTop__icon {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fff;
  font-size: 50%;
  padding: 2px 1em;
  border: solid 1px;
  color: #2196f3;
  box-shadow: 0 0 3px #2196f3;
  border-radius: 30px;
}
@media screen and (max-width: 479px) {
  .RecommendTop__icon {
    top: -1.5vw;
  }
}

/**
 * smallSP
 */
.-pickupHeader .inner {
  border-top: solid 5px var(--maintitle-keycolor, var(--bg-color, #ff8000));
  box-shadow: 0 2px 10px #ddd;
  background-color: var(--maintitle-bgcolor, #fff);
  color: var(--maintitle-color, var(--bg-color, #ff8000));
  font-weight: 700;
  padding: 1px;
  margin: 2em auto 2.5em;
}
@media screen and (min-width: 480px) {
  .-pickupHeader .inner {
    width: 760px;
  }
}

.ResultOne.-smallSP {
  background-color: #fff;
  margin: 2em auto;
  box-shadow: 0 0 5px #aaa;
  border-radius: 8px;
  padding: 1px;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP {
    width: 660px;
  }
}
.ResultOne.-smallSP .ResultOne__header {
  position: relative;
  border-top: solid 8px var(--bg-color, #ff8000);
  border-radius: 8px 8px 0 0;
}
.ResultOne.-smallSP .ResultOne__rank {
  position: absolute;
  top: -2.4em;
  left: 0.5em;
  z-index: -1;
  background-color: #dedede;
  border: solid #fff 2px;
  border-radius: 0.4em;
  box-shadow: 0 0 0 2px #eee;
  color: #666;
  font-size: 0.8em;
  font-weight: 700;
  text-align: center;
  padding: 0.1em 0.7em;
}
.ResultOne.-smallSP .ResultOne__rank.-rank1 {
  background-image: url(../img/rank_icon01.png);
  background-repeat: no-repeat;
  background-size: 3.5em auto;
  box-shadow: none;
  background-color: transparent;
  top: -3em;
  padding: 0.7em 0.7em 0.1em;
  width: 4em;
  height: 3em;
}
.ResultOne.-smallSP .ResultOne__rank.-rank2 {
  background-image: url(../img/rank_icon02.png);
  background-repeat: no-repeat;
  background-size: 3.5em auto;
  box-shadow: none;
  background-color: transparent;
  top: -3em;
  padding: 0.7em 0.7em 0.1em;
  width: 4em;
  height: 3em;
}
.ResultOne.-smallSP .ResultOne__rank.-rank3 {
  background-image: url(../img/rank_icon03.png);
  background-repeat: no-repeat;
  background-size: 3.5em auto;
  box-shadow: none;
  background-color: transparent;
  top: -3em;
  padding: 0.7em 0.7em 0.1em;
  width: 4em;
  height: 3em;
}
.ResultOne.-smallSP .ResultOne__mainTitleBox {
  display: flex;
  align-items: center;
  border-bottom: solid 2px #ccc;
  margin: 0 0.6em;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__mainTitleBox {
    padding: 0.8em 0.6em 0.7em;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__mainTitleBox {
    padding: 0.8em 0.4em 0.6em;
  }
}
.ResultOne.-smallSP .ResultOne__mainTitle {
  font-weight: 700;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__mainTitle {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__mainTitle {
    font-size: 4.5vw;
  }
}
.ResultOne.-smallSP .ResultOne__catch {
  padding: 0 10px 10px;
}
.ResultOne.-smallSP .ResultOne__catch::before {
  content: "ポイント";
  border: solid 1px #3a385f;
  border-radius: 5px;
  background-color: #fff;
  font-size: 65%;
  padding: 2px 6px;
  margin-right: 10px;
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__catch::before {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__catch {
    font-size: 4vw;
    padding: 0;
    color: #074095;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__body .Writing p {
    line-height: 1.3;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__info {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__thumb {
    width: 260px;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__thumb {
    width: 50%;
    text-align: center;
    margin: 1em 4vw 0.2em;
  }
}
.ResultOne.-smallSP .ResultOne__table {
  width: 98%;
  margin: 12px 1%;
  font-size: 15px;
  border: 1px solid #aaa;
  border-collapse: collapse;
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__table {
    width: 92vw;
    margin: 0;
    font-size: 3vw;
    margin: 2vw;
    border: 1px solid #aaa;
  }
}
.ResultOne.-smallSP .ResultOne__th.-active {
  background-color: #ffc107;
}
.ResultOne.-smallSP .ResultOne__td.-active {
  background-color: #fff5d5;
}
.ResultOne.-smallSP .ResultOne__th {
  text-align: center;
  border: 1px solid #aaa;
  background-color: #fee;
  color: #d90000;
  padding: 5px 10px;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__th:first-child {
    border-left: none;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__th {
    padding: 1vw 2vw;
    font-weight: 700;
    font-size: 3.5vw;
    width: 30%;
  }
}
.ResultOne.-smallSP .ResultOne__td {
  text-align: center;
  border: 1px solid #aaa;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__td {
    width: 70%;
  }
  .ResultOne.-smallSP .ResultOne__td:first-child {
    border-left: none;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__td {
    background-color: #fff;
    font-size: 3.5vw;
    font-weight: 700;
    padding: 1vw 2vw;
    white-space: normal;
    width: 70%;
    text-align: left;
  }
}
.ResultOne.-smallSP .ResultOne__td p {
  margin: 0;
  text-align: left;
}
.ResultOne.-smallSP .ResultOne__td.-left p {
  text-align: left;
}
.ResultOne.-smallSP .ResultOne__dl dt {
  background-color: #bfe6ff;
  padding: 2vw;
}
.ResultOne.-smallSP .ResultOne__dl dd {
  background-color: #eee;
  padding: 2vw;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__footer {
    justify-content: space-between;
    padding: 0 15px 15px;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__footer {
    margin: 1em 4vw;
  }
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__btn {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__btn {
    padding: 0 15px;
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__detailBox {
    padding: 12px;
    color: #3e98f4;
    border-radius: 0;
    border: none;
    font-size: 4vw;
    text-align: center;
  }
}
.ResultOne.-smallSP .ResultOne__detail {
  color: #73b4f7;
}
@media screen and (min-width: 480px) {
  .ResultOne.-smallSP .ResultOne__detail {
    background-color: #ff9800;
    border-radius: 0;
    padding: 5px;
    font-size: 13px;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne.-smallSP .ResultOne__detail {
    display: inline;
    background: none;
    padding: 0;
    font-size: 3.5vw;
  }
}
.ResultOne.-smallSP .ResultOne__detail:hover {
  border: none;
}

@media screen and (min-width: 480px) {
  .ResultOne__btn {
    padding: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 479px) {
  .ResultOne__btn {
    padding: 5vw 8vw;
    font-size: 4vw;
  }
}

@media screen and (min-width: 480px) {
  .SearchText__mainTitle {
    background-image: url(../img/icon_pickup.gif);
    background-repeat: no-repeat;
    background-size: auto 60px;
    padding: 0 0 0 75px;
    margin: 30px 0 0;
    background-position: left bottom;
  }
}
@media screen and (max-width: 479px) {
  .SearchText__mainTitle {
    background-repeat: no-repeat;
    background-size: auto 1.9em;
    background-position: 4px center;
    font-size: 5vw;
    font-weight: 700;
    padding: 0.2em 3vw 0;
    line-height: 2.2em;
    text-align: center;
    margin: 10px 0 0;
    background-color: #d1e4fd;
    text-shadow: 0.08em 0.08em #fff;
  }
}

.SearchText__count {
  font-size: 48px;
}
@media screen and (max-width: 479px) {
  .SearchText__count {
    font-size: 8vw;
  }
}

@media screen and (min-width: 480px) {
  .SeachText__meta {
    background: #ffedde;
    padding: 15px;
    border-top: solid 3px #f67f00;
  }
}
@media screen and (max-width: 479px) {
  .SeachText__meta {
    background: #fff;
    padding: 2vw;
    font-size: 3vw;
  }
}

.SearchText__text {
  font-size: 15px;
}
@media screen and (max-width: 479px) {
  .SearchText__text {
    font-size: 4vw;
  }
}
.SearchText__text p {
  margin: 0;
}

.SearchText__item {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 5px 10px;
  margin: 10px 10px 10px 0;
  border-radius: 5px;
  font-size: 13px;
}
@media screen and (max-width: 479px) {
  .SearchText__item {
    font-size: 3.5vw;
    color: #333;
    margin: 1vw;
    background: #d8eafd;
  }
}

.SliderBanner {
  display: flex;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}

.SliderBanner ul {
  display: flex;
  padding: 0;
  margin: 0;
}

.SliderBanner li {
  width: 300px;
  list-style: none;
}

.SliderBanner ul:first-child {
  animation: SliderBannerFirst 150s -75s linear infinite;
}

.SliderBanner ul:last-child {
  animation: SliderBannerLast 150s linear infinite;
}

@keyframes SliderBannerFirst {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes SliderBannerLast {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_inner {
    width: 800px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_inner {
    margin: 1em 0;
  }
}
.-design1 .SmallBox01_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_list {
    gap: 2%;
  }
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_list {
    gap: 1em;
  }
}
.-design1 .SmallBox01_figure {
  padding: 1.2em;
  background-color: #fff;
  border-radius: 0.6em 0.6em 0 0;
  overflow: hidden;
  min-height: 70px;
}
.-design1 .SmallBox01_item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border: solid 2px #666;
  border-radius: 0.6em;
  box-shadow: 0 0.2em 0 0.1em #666;
  background-color: var(--bg-lightcolor, #ffeeda);
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_item {
    width: 23%;
  }
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_item {
    width: 100%;
    margin: 1vw 4vw;
  }
}
.-design1 .SmallBox01_item > *:not(.SmallBox01_caption) {
  width: 100%;
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_item:has(.SmallBox01_caption) {
    margin: 4vw;
  }
}
.-design1 .SmallBox01_caption {
  position: absolute;
  background-color: #fff;
  left: 50%;
  font-weight: 700;
  transform: translate(-50%, 0px);
  white-space: nowrap;
  background: #ffc107;
  color: #333;
  border-radius: 0.4em;
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_caption {
    top: -1.4em;
    padding: 0.2em 0.8em;
    font-size: 90%;
  }
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_caption {
    top: -2em;
    padding: 0.4em 1em;
    font-size: 1em;
  }
}
.-design1 .SmallBox01_caption::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 1em;
  border: 0.6em solid transparent;
  border-top: 0.6em solid #ffc107;
  width: 0;
  height: 0;
}
.-design1 .SmallBox01_text {
  color: #111;
  margin: 0.8em;
  font-size: 80%;
}
.-design1 .SmallBox01_btnBox {
  margin-top: auto;
}
.-design1 .SmallBox01_btn {
  margin: 0.8em;
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_btn {
    font-size: 90%;
  }
}
.-design1 .SmallBox01_btn::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: -0.3em;
  right: 0.2em;
  background: none;
  color: #ffeb3b;
  font-size: 1.2em;
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_btn::after {
    bottom: -0.5em;
  }
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_btn::after {
    bottom: -0.3em;
  }
}
.-design1 .SmallBox01__box {
  display: flex;
}
.-design1 .SmallBox01__box .SmallBox01_text {
  flex: 1;
}
.-design1 .SmallBox01_linkBox {
  display: flex;
  align-items: center;
}
.-design1 .SmallBox01_link {
  margin-right: 0.3em;
  color: #ff5722;
}
@media screen and (min-width: 480px) {
  .-design1 .SmallBox01_link {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 479px) {
  .-design1 .SmallBox01_link {
    font-size: 2.4em;
  }
}

@media screen and (min-width: 480px) {
  .-design2 .SmallBox01_inner {
    width: 800px;
    margin: 2em auto;
  }
}
@media screen and (max-width: 479px) {
  .-design2 .SmallBox01_inner {
    margin: 1em 0;
  }
}
.-design2 .SmallBox01_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 480px) {
  .-design2 .SmallBox01_list {
    gap: 2%;
  }
}
@media screen and (max-width: 479px) {
  .-design2 .SmallBox01_list {
    gap: 1em;
  }
}
.-design2 .SmallBox01_figure {
  display: flex;
  align-items: center;
  padding: 0.4em 1.2em;
  background-color: #fff;
  border-radius: 0.6em 0.6em 0 0;
  overflow: hidden;
  min-height: 70px;
}
.-design2 .SmallBox01_item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border: solid 2px #aaa;
  border-radius: 0.6em;
  box-shadow: 0 0.2em 0 #aaa;
  background-color: var(--bg-lightcolor, #ffeeda);
}
@media screen and (min-width: 480px) {
  .-design2 .SmallBox01_item {
    width: 23%;
  }
}
@media screen and (max-width: 479px) {
  .-design2 .SmallBox01_item {
    width: 100%;
    margin: 1vw 4vw;
  }
}
.-design2 .SmallBox01_item > * {
  width: 100%;
}
.-design2 .SmallBox01_caption {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  color: #333;
  border-radius: 0.4em 0.4em 0 0;
  font-weight: 700;
  font-size: 90%;
  text-align: center;
  vertical-align: bottom;
  /*---------------------------------
    文字サイズ
  ---------------------------------*/
}
@media screen and (min-width: 480px) {
  .-design2 .SmallBox01_caption {
    padding: 0.2em 0.8em;
    font-size: 90%;
  }
}
@media screen and (max-width: 479px) {
  .-design2 .SmallBox01_caption {
    padding: 0.4em 1em;
    font-size: 1em;
  }
}
.-design2 .SmallBox01_caption span {
  margin: 0 0.2em;
}
.-design2 .SmallBox01_caption .font-xl {
  font-size: 1.6em !important;
}
.-design2 .SmallBox01_caption .font-l {
  font-size: 1.4em !important;
}
.-design2 .SmallBox01_caption .font-s {
  font-size: 0.8em !important;
}
.-design2 .SmallBox01_caption .font-xs {
  font-size: 0.6em !important;
}
.-design2 .SmallBox01__box {
  background-color: #fff;
  border-radius: 0 0 0.4em 0.4em;
}
.-design2 .SmallBox01_text {
  color: #111;
  margin: 0.8em;
  font-size: 80%;
}
.-design2 .SmallBox01__box {
  display: flex;
}
.-design2 .SmallBox01__box .SmallBox01_text {
  flex: 1;
}
.-design2 .SmallBox01_linkBox {
  display: flex;
  align-items: center;
}
.-design2 .SmallBox01_link {
  margin-right: 0.3em;
}
@media screen and (min-width: 480px) {
  .-design2 .SmallBox01_link {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 479px) {
  .-design2 .SmallBox01_link {
    font-size: 2.4em;
  }
}
.-design2 .SmallBox01_link i {
  display: none;
}
.-design2 .SmallBox01_link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1.2em;
  background-image: url(../img/arrow_right.png);
  background-repeat: no-repeat;
  background-size: 1em auto;
}

.Tab {
  margin: 0 auto -2em;
}
@media screen and (min-width: 480px) {
  .Tab {
    width: 660px;
  }
}

.Tab_inner {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 1em;
  gap: 0.1em;
}
@media screen and (min-width: 480px) {
  .Tab_inner {
    width: 88%;
  }
}
@media screen and (max-width: 479px) {
  .Tab_inner {
    width: 78%;
  }
}

.Tab__Item {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.Tab__Link {
  cursor: pointer;
  padding: 10px;
  text-align: left;
  background-color: #fff;
  border-top: solid 4px #eee;
  font-size: 1em;
  border-radius: 4px 4px 0 0;
  height: 100%;
}
@media screen and (max-width: 479px) {
  .Tab__Link {
    font-size: 4vw;
    padding: 2vw;
    text-align: justify;
  }
}
.Tab__Link.-active {
  background-color: var(--bg-lightcolor, #ffeeda);
  border-top: solid 4px var(--bg-color, #ff8000);
}
.Tab__Link.-noActive {
  background-color: rgba(0, 0, 0, 0.0509803922) !important;
  color: #666 !important;
  border-top: solid 4px #ccc !important;
}

.Box__body.-tab {
  display: none;
}
@media screen and (min-width: 480px) {
  .Box__body.-tab .inner {
    width: 660px;
  }
}
.Box__body.-tab.-active {
  display: block;
}

.TaxonomyList__list {
  display: flex;
  flex-wrap: wrap;
}

.TaxonomyList__listItem {
  display: flex;
  margin-right: 8px;
  margin-bottom: 5px;
}
.TaxonomyList__listItem .TaxonomyList__link {
  font-size: 60%;
  border-radius: 50px;
  background-color: #e3e3e3;
  color: #333;
}
@media screen and (min-width: 480px) {
  .TaxonomyList__listItem .TaxonomyList__link {
    padding: 3px 10px;
  }
}
@media screen and (max-width: 479px) {
  .TaxonomyList__listItem .TaxonomyList__link {
    padding: 1vw 3vw;
  }
}
.TaxonomyList__listItem .TaxonomyList__span {
  font-size: 60%;
  border-radius: 50px;
  background-color: #e3e3e3;
  color: #333;
}
@media screen and (min-width: 480px) {
  .TaxonomyList__listItem .TaxonomyList__span {
    padding: 3px 10px;
  }
}
@media screen and (max-width: 479px) {
  .TaxonomyList__listItem .TaxonomyList__span {
    padding: 1vw 3vw;
  }
}
.TaxonomyList__listItem a:hover {
  opacity: 0.8;
}

.TaxonomyList__name img {
  display: none;
}

.-taxonomy .TaxonomyList__list {
  justify-content: space-between;
}
@media screen and (min-width: 480px) {
  .-taxonomy .TaxonomyList__list {
    padding: 0 15px 15px;
  }
}
@media screen and (max-width: 479px) {
  .-taxonomy .TaxonomyList__list {
    padding: 0 2vw;
  }
}
.-taxonomy .TaxonomyList__list .TaxonomyList__listItem {
  margin-right: 0;
}
@media screen and (min-width: 480px) {
  .-taxonomy .TaxonomyList__list .TaxonomyList__listItem {
    width: 24%;
  }
}
@media screen and (max-width: 479px) {
  .-taxonomy .TaxonomyList__list .TaxonomyList__listItem {
    width: 47vw;
  }
}
.-taxonomy .TaxonomyList__list .TaxonomyList__listItem .TaxonomyList__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: none;
  border-radius: 4px;
  color: #333;
  background: #e0e9ff;
}
@media screen and (min-width: 480px) {
  .-taxonomy .TaxonomyList__list .TaxonomyList__listItem .TaxonomyList__link {
    font-size: 16px;
    padding: 10px;
  }
}
@media screen and (max-width: 479px) {
  .-taxonomy .TaxonomyList__list .TaxonomyList__listItem .TaxonomyList__link {
    font-size: 3vw;
    padding: 2vw;
  }
}
.-taxonomy .TaxonomyList__list .TaxonomyList__listItem .TaxonomyList__link:hover {
  background: #fff;
  opacity: 1;
}
.-taxonomy .TaxonomyList__list .TaxonomyList__name img {
  display: inline-block;
  width: 20px;
  position: relative;
  top: -2px;
  margin-right: 5px;
}
@media screen and (max-width: 479px) {
  .-taxonomy .TaxonomyList__list .TaxonomyList__name img {
    display: none;
  }
}

.Writing {
  padding: 0.5em;
}
@media screen and (min-width: 480px) {
  .Writing {
    margin: 2em auto;
    width: 660px;
  }
}
@media screen and (max-width: 479px) {
  .Writing {
    margin: 1em 3vw;
  }
}
.Writing *:first-child {
  margin-top: 0;
}
.Writing *:last-child {
  margin-bottom: 0;
}
.Writing h1 {
  box-shadow: 0em 0.4em 0 -0.2em #ddd;
  background-color: var(--bg-color, #ff8000);
  color: #fff;
  margin: 2em 0 1em;
  padding: 0.4em 0.6em;
}
@media screen and (min-width: 480px) {
  .Writing h1 {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 479px) {
  .Writing h1 {
    font-size: 1.1em;
  }
}
.Writing h2 {
  box-shadow: 0em 0.4em 0 -0.2em #ddd;
  background-color: var(--bg-lightcolor, #ffeeda);
  color: #333;
  margin: 2em 0 1em;
  padding: 0.4em 0.6em;
}
@media screen and (min-width: 480px) {
  .Writing h2 {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 479px) {
  .Writing h2 {
    font-size: 1.1em;
  }
}
.Writing h3 {
  color: var(--bg-color, #ff8000);
  font-size: 1.1em;
  margin: 1.5em 0 0.5em;
}
@media screen and (min-width: 480px) {
  .Writing h3 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 479px) {
  .Writing h3 {
    font-size: 1em;
  }
}
.Writing p {
  line-height: 1.8;
}
.Writing ul,
.Writing ol {
  list-style: none;
  line-height: 1.6;
  padding: 0 0.4em 0 1.8em;
  margin: 1em 0;
}
.Writing li {
  counter-increment: number;
  text-indent: -1.3em;
  margin: 0.6em 0;
}
.Writing ul li::before {
  content: "●";
  margin-right: 5px;
  color: var(--bg-color, #ff8000);
  font-weight: 700;
}
.Writing ol li::before {
  content: counter(number) ".";
  margin-right: 5px;
  color: var(--bg-color, #ff8000);
  font-weight: 700;
}

.Writing.design {
  position: relative;
  box-shadow: 0 0 0.4em 0 #bbb;
  padding: 1.5em 1em;
}
@media screen and (max-width: 479px) {
  .Writing.design {
    margin: 2em 3vw;
  }
}
.Writing.design.noBorder {
  box-shadow: none;
}

@media screen and (min-width: 480px) {
  .pc-660 {
    width: 660px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .pc-720 {
    width: 720px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .pc-760 {
    width: 760px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .pc-800 {
    width: 800px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .pc-840 {
    width: 840px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .pc-900 {
    width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .pc-960 {
    width: 960px;
    margin: auto;
  }
}

@media screen and (min-width: 480px) {
  .noMargin {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 480px) {
  .noPadding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */