@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');
/* 指定
---------------------------------------------------------- */
.MainPic {
  margin-bottom: 40px;
}
/* 背景
---------------------------------------------------------- */
.top-yellow-zone {
  border-top: solid 10px #ffe16a;
  background-image: linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 12px 12px;
  background-color: #fbeec6;
  padding: clamp(24px, 6vw, 40px) 0;
  margin-bottom: 45px;
}
.top-white-zone {
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5em 0;
}
.top-inner-box {
  width: 92%;
  height: auto;
  margin: 0 4%;
}
/* ボタン_新デザイン
---------------------------------------------------------- */
.btn_base {
  font-size: 1.1rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.4em 0;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #777;
}
a.btn_tomicashop {
  width: 90%;
  margin: 0 5% 0.7em;
  overflow: hidden;
  color: #fff;
  border-radius: 0;
  background: #777;
}
a.btn_tomicashop span {
  position: relative;
}
a.btn_tomicashop:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #d70101;
}
a.btn_tomicashop:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
a.btn_plarailshop {
  width: 90%;
  margin: 0 5% 0.7em;
  overflow: hidden;
  color: #fff;
  border-radius: 0;
  background: #777;
}
a.btn_plarailshop span {
  position: relative;
}
a.btn_plarailshop:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #0161d7;
}
a.btn_plarailshop:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.fa-position-right {
  position: absolute;
  top: calc(50% - .5em);
  right: 1rem
}
/* リンク帯ボタン
---------------------------------------------------------- */
.c-linkBanner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px 10px;
  background: #55c463;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 20px);
  transition: opacity .2s ease;
}
.c-linkBanner, .c-linkBanner:link, .c-linkBanner:visited, .c-linkBanner:hover, .c-linkBanner:active {
  color: #fff;
  text-decoration: none;
}
.c-linkBanner:hover {
  opacity: .8;
}
/* テキスト */
.c-linkBanner__text {
  line-height: 1.2;
}
/* 右側丸アイコン */
.c-linkBanner__icon {
  width: 30px;
  height: 30px;
  background: #ffeb00;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
/* ▶ 矢印 */
.c-linkBanner__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #55c463;
}