@charset "UTF-8";
body#Eiken {
  /* 背景色とフォントファミリーを設定 */
  background-color: #f9f9f9;
  color: #2e2624;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em; }

h1, h2, h3, h4, h5, h6 {
  /* 見出しの行間と字間を調整 */
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #2e2624;
  /* 見出しも同じ色に */ }

h2 {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  color: #2e2624;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  position: relative;
  margin-top: 30px;
  width: 100%; }
  h2 span {
    font-size: 20px; }

h2::after {
  content: "";
  display: block;
  width: 20%;
  height: 3px;
  background-color: #2e2624;
  margin: 0 auto;
  margin-top: 8px; }

.h2sub {
  color: #787677;
  font-size: 18px;
  display: inline-block;
  transform: skewX(-30deg); }

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important; }

.sp {
  display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important; }

  .sp {
    display: block !important; } }
.y_marker {
  background-image: linear-gradient(transparent 60%, #fff368 40%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  /* 初期状態は幅0 */
  color: black; }

.y_marker.is-active {
  animation: marker-effect 1s ease-in-out forwards; }

@keyframes marker-effect {
  to {
    background-size: 100% 100%;
    /* 最終的に幅100%に */ } }
.gmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }

.gmap iframe,
.gmap object,
.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*========
ボタン
==========*/
.btn,
a.btn,
button.btn {
  font-size: 120%;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 100%;
  margin: 0 auto; }

.btn--01,
a.btn--01 {
  color: #fff;
  background-color: #00b24e; }

.btn--01:hover,
a.btn--01:hover {
  color: #fff;
  background: #47c880; }

.btn--02,
a.btn--02 {
  color: #fff;
  background-color: #1884d8; }

.btn--02:hover,
a.btn--02:hover {
  color: #fff;
  background: #41a3ec; }

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem; }

/*==========
光るボタン
=========*/
/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button {
  /* ボタンを光らせるために必要 */
  position: relative;
  /* ボタンの位置を基準にするため relative指定 */
  overflow: hidden;
  /* ボタンの外の領域は非表示 */ }

/* ------------------------------------
ボタンの外側にボックス作成
（疑似要素「before」を使う）
------------------------------------*/
.shine-button::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  animation-name: shine-run;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */ }

/* ------------------------------------
アニメーションのタイミングとボックスの
拡大率、角度、透過率の指定
------------------------------------*/
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */ }
  40% {
    transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */ }
  100% {
    transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */ } }
/*========
Footer
==========*/
footer {
  background: #aff0f0;
  color: #000000;
  font-size: 12px;
  text-align: center;
  padding: 5px 0; }
