@charset "UTF-8";

/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html,
body {
  width: 100%;
}

body {
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "sans-serif";
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  color: #5c5c5c;
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #39f;
}

s a:hover,
a:active {
  color: #f60;
}

/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}

/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/

.loaded {
  opacity: 0;
  visibility: hidden;
}

/*ページ全体*/
#container {
  position: relative;
}

/*本体*/
#main {
  background-image: url(../images/bg_main.jpg);
  background-size: auto;
  background-repeat: cover;
  margin-bottom: 0em;
}

/*カラム部分*/
#main-in {
  background-color: #fff;
  padding: 0em 0;
  box-shadow: 2px 1px 15px #594a42;
}

/*カラム内部のサイズ*/
#main-contents .contents {
  margin-bottom: 0em;
  padding: 0 40px;
}

/*段落タグ*/
#main-contents p {
  line-height: 1.8em;
}

/*全体のフォントサイズ*/
#main-contents {
  font-size: 1.8em;
}

/*カラム全体の幅を変更する*/
.header_inr {
  width: 720px;
  margin: 0 auto
}

/*-----------------------------------------------------------------------------------------------------
ｈタグの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*H2タグ*/
#main-contents h2 {
  margin: 0 0 0em;
  padding: 0.3em 0.9em;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  color: #333;
}

/*H3タグ*/
#main-contents h3 {
  margin: 0 0 0.5em;
  padding: 0.3em 0.5em;
  border-bottom: 1px solid #ccc;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

/*H4タグ*/
#main-contents h4 {
  margin: 0 0 1.5em;
  padding: 0.8em;
  border: 1px solid #8e8e8e;
  font-weight: bold;
}

/*H5タグ*/
#main-contents h5 {
  margin: 0 0 1.5em;
  padding: 0 0.8em 0.5em;
  border-bottom: 2px solid #414141;
  font-weight: bold;
}

/*-----------------------------------------------------------------------------------------------------
ファーストビュー(ヘッダー画像)
-----------------------------------------------------------------------------------------------------*/
#main-image {
  padding-top: 0em;
  background: url(../images/top_image_front.jpg) center top no-repeat #fff;
  height: auto;
}

#main-image-in {
  position: relative;
  padding-bottom: 0em;
  background-color: transparent;
}

#main-image img {
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------------------------------------------------------
メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------------------------------------------------------*/
.subhead {
  margin: 0 -2.2em;
  padding: 0em 0em;
  margin-bottom: 1.5em;
  color: #fff;
}

.cta_area_01 {
  position: relative;
}

.cta_btn_01 {
  position: absolute;
  left: 5%;
  bottom: 18%;
}

.cta_btn_01 img {
  width: 95%;
}

.cta_area_02 {
  position: relative;
}

.cta_btn_02 {
  position: absolute;
  left: 6%;
  bottom: 25%;
}

.cta_btn_02 img {
  width: 95%;
}

.cta_area_03 {
  position: relative;
}

.cta_btn_03 {
  position: absolute;
  left: 6%;
  bottom: 26%;
}

.cta_btn_03 img {
  width: 95%;
}

.btn_tel {
  display: none;
}


.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
    transform: scale(1.0);
  }

  50%,
  70% {
    transform: scale(0.85);
  }
}


/*--------------------------------------------------------
段落・リスト・テーブル設定
--------------------------------------------------------*/
/*チェックリスト（リストタグ）*/
#main-contents ul.checklist {
  margin: 0 0 1.5em;
  padding: 1em;
  padding-bottom: 0;
  border: 1px solid #414141;
}

#main-contents ul.checklist li {
  margin-bottom: 1.5em;
  padding-top: 5px;
  padding-left: 24px;
  background: url(../images/icon-check01-red.png) left top no-repeat;
  list-style-type: none;
}

/*テーブルタグ*/
#main-contents table {
  margin-bottom: 1em;
  padding: 0;
  color: #333;
}

#main-contents th {
  background-color: #031824;
  font-size: 1em;
  text-align: left;
  padding: 0.5em 1em;
  color: #fff;
}

#main-contents td {
  padding: 1em 1em;
  font-size: 0.9em;
  background-color: #f9f9f9;
}

#main-contents table.table-style01 th,
#main-contents table.table-style01 td {
  text-align: left;
  vertical-align: middle;
}

/*-----------------------------------------------------------------------------------------------------
フッター部分
-----------------------------------------------------------------------------------------------------*/
#footer {
  background: #031824;
  padding: 2em 0;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}

#footer a {
  color: #fff;
}

.fix_menu_smartphone {
  display: none;
}

.tel_left {
  display: none;
}

.tel_right {
  display: none;
}

.fadeintop {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 2s;
}

.fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: all 2s;
}

.fadeinleft {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 2s;
}

.fadeinright {
  opacity: 0;
  transform: translateX(40px);
  transition: all 2s;
}

.fadeinbottom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 2s;
}
/* =========================
  固定ヘッダー（スマホファースト）
========================= */
:root {
  --lp-header-h: 56px;      /* スマホ */
  --lp-header-max: 720px;
}

@media (min-width: 768px) {
  :root {
    --lp-header-h: 64px;    /* PC */
  }
}

/* ヘッダー外枠：画面幅いっぱい */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--lp-header-h);
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

/* 中身：カラム幅 */
.lp-header__inner {
  max-width: var(--lp-header-max);
  height: 100%;
  margin: 0 auto;
  padding: 0;                 /* ←スマホは0でFVと一致させる */
  display: flex;
  align-items: center;
  gap: 0;                     /* ←画像同士をピタッとさせたい場合 */
}

/* PCだけ左右余白を付ける */
@media (min-width: 768px) {
  .lp-header__inner {
    padding: 0 16px;
    gap: 8px;                 /* ←PCは少し余白あってもOKなら */
  }
}

/* 画像共通（ヘッダー内は高さフィット） */
.lp-header img {
  height: 100%;
  width: auto;
  display: block;
}

/* ロゴ：左固定、縦いっぱい */
.lp-header__logo {
  height: 100%;
  flex: 0 0 auto;
}

/* TEL：中央、余白を使って伸びる（画像が縮むように） */
.lp-header__tel {
  height: 100%;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

/* TEL画像がはみ出る場合は縮める */
.lp-header__tel img {
  max-width: 100%;
  object-fit: contain;
}

/* CTA：右固定 */
.lp-header__cta {
  height: 100%;
  flex: 0 0 auto;
}

/* CTAホバー（任意） */
.lp-header__cta:hover img,
.lp-header__logo:hover img,
.lp-header__tel:hover img {
  opacity: 0.85;
}

#main{
  padding-top: var(--lp-header-h);
}

/* =========================
  画面が大きい時（PC）
========================= */
@media (min-width: 720px) {
  :root {
    --lp-header-h: 72px; /* PCで少し高くしたい場合 */
  }

  .lp-header__inner {
    padding: 0 16px;
  }
}