@charset "utf-8";

/* ［ INDEX ］
1 レイアウト
2_ヘッダー・フッター
3_メインエリア
4_ユニーク （独自モジュール）
5_ブロック (共通モジュール)
6_エレメント (最小モジュール)

［ COLOR ］
・ベースカラー #FFFDF3
・ベースカラー2 #FFF2D2
・ベースカラー3 #E3DFCF
・テキストカラー #3F2D27／rgba(63, 45, 39 1)
・テキストカラー2 #8C817D
・明るい線 #DDD7D2
・メインカラー1 #FF6430
・メインカラー2 #F8931F／rgba(248, 147, 31, 1)
・サブカラー1 #E0F886
・サブカラー2 #018C94
・サブカラー3 #335997
・サブカラー4 #A6C4BC

====================================================================== */



/* 1_レイアウト
====================================================================== */
/* ly_content (コンテンツエリア)
---------------------------------- */
.ly_content {
  max-width: 960px;
  margin: 0 auto;
}

/* ly_ (margin と padding の付与)
---------------------------------- */
.ly_mtLg { margin-top: 80px; }
.ly_mtMd { margin-top: 56px; }
.ly_mtSm { margin-top: 32px; }
.ly_mtSS { margin-top: 16px; }
.ly_mb0 { margin-bottom: 0; }

/* ly_col (カラム)
---------------------------------- */
.ly_col {
  display: flex; display: -webkit-flex;
  flex-flow: row wrap;
}
/* ly_col_col2 (2カラム) */
.ly_col_col2 {
  align-self: flex-start;
  width: 47.5%;
  margin: 0 5% 32px 0;
}
/* ly_col_col3 (3カラム) */
.ly_col_col3 {
  width: 32%;
  margin: 0 2% 32px 0;
}
/* 段落ち */
.ly_col_col2:nth-child(2n),
.ly_col_col3:nth-child(3n) {
  margin-right: 0;
}
/* 最下段の margin-bottom */
.ly_col_col2:nth-last-child(-n+2),
.ly_col_col3:nth-last-child(-n+3) {
  margin-bottom: 0;
}

/* text-align (位置指定)
---------------------------------- */
.hp_txtLeft { text-align: left !important; }
.hp_txtCenter { text-align: center !important; }
.hp_txtRight { text-align: right !important; }

/* hp_scroll (固定ヘッダースクロール補正)
---------------------------------- */
.hp_scroll {
  padding-top: 60px;
  margin-top: -60px;
}



/* 2_ヘッダー・フッター
====================================================================== */
/* ----------------------------------
ly_header （ヘッダー）
---------------------------------- */
.ly_header a { color: #3F2D27; }
.ly_header {
  background: #FFFDF3;
  display: flex; display: -webkit-flex;
  width: 100%;
  height: 100px;
  position: relative;
}
/* ヘッダー上下合わせ */
.ly_header .ly_content { align-self: center; }

/* el_siteName （サイト名）
---------------------------------- */
.el_siteCap {
  font-size: 10px;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}

/* el_contactBtn （コンタクトボタン）
---------------------------------- */
.el_contactBtn {
  display: inline-flex; display: -webkit-inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1.3;
  padding: 1em 2em;
  transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out;
  /* 変更可能箇所 */
  border-radius: 4px;
  font-size: .75rem;
  background: #FFFDF3;
  color: #3F2D27;
  border: solid 2px #3F2D27;
  font-weight: 700;
  /* 位置指定 */
  position: absolute;
  top: 28px;
  right: 28px;
}
/* hover */
.el_contactBtn:focus,
.el_contactBtn:hover,
.el_contactBtn:active {
  background: #F8931F;
  color: inherit;
  border: solid 2px #F8931F;
}


/* ----------------------------------
bl_headerUnit
---------------------------------- */
.bl_headerUnit {
  background: #E0F886;
  display: flex; display: -webkit-flex;
  justify-content: center;
  width: 100%;
  height: 32px;
}
/* ヘッダー上下合わせ */
.bl_headerUnit .ly_content {
  display: flex; display: -webkit-flex;
  justify-content: center;
}

/* bl_gNav （グローバルナビ）
---------------------------------- */
.bl_gNav {
  display: flex; display: -webkit-flex;
  align-items: flex-end;
  font-weight: 700;
}
/* テキストスタイリング */
.bl_gNav a {
  display: block;
  font-size: .75rem;
  line-height: 2.3em;
  border-bottom: solid 3px #E0F886;
  margin-left: 1.25rem;
}
.bl_gNav li:first-child a { margin-left: 0; }
.bl_gNav li a:hover,
.bl_gNav li a:active,
.bl_gNav li.active a {
  border-bottom: solid 3px #3F2D27;
}
.hp_active a {
  border-bottom: solid 3px #3F2D27;
}

/* bl_drawerBtn （ハンバーガーボタン）
---------------------------------- */
.ly_header input[type="checkbox"] { display: none; }
.bl_drawerBtn {
  color: #3F2D27;
  line-height: 1;
  align-self: center;
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
  background: #E0F886;
  padding: 16px;
  width: 56px;
  position: absolute;
  top: 0;
  right: 0;
}
.bl_drawerBtn::before {
  content: "\f0c9";
}
.js_check:checked ~ .bl_drawerBtn::before {
  content: "\f00d";
  padding-left: 4px;
}

/* bl_drawer （ドロワー）
---------------------------------- */
.js_check:checked ~ .bl_drawer { display: block; }
.bl_drawer a { color: #3F2D27; }
.bl_drawer {
  background: #FFFDF3;
  display: none;
  position: absolute;
  right: 0px;
  top: 100px;
  width: 100%;
  height: 1000vh;
  padding: 0 16px 16px;
  z-index: 100;
}
.bl_drawer_wrapper {
  padding: 32px 24px;
  background: #FFF2D2;
}


/* bl_drawer_nav （ドロワーナビ）
---------------------------------- */
.bl_drawer_nav li a {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  padding: 1em 0;
  border-bottom: solid 1px #3F2D27;
}
.bl_drawer_nav li a:focus,
.bl_drawer_nav li a:hover,
.bl_drawer_nav li a:active {
  background: rgba(248, 147, 31, .5);
}



/* ----------------------------------
ly_footer （フッター）
---------------------------------- */
.ly_footer a { color: #3F2D27; }
.ly_footer {
  background: #E0F886;
  padding: 56px 0 80px;
}

/* el_copyright （コピーライト）
---------------------------------- */
.el_copyright a {
  font-size: 0.75rem;
  display: inline-block;
}



/* ----------------------------------
bl_footerUnit
---------------------------------- */
.bl_footerUnit {
  display: flex; display: -webkit-flex;
  justify-content: center;
  width: 100%;
}
/* テキストスタイリング */
.bl_footerUnit .bl_gNav a {
  border-bottom: solid 3px #E0F886;
}



/* ----------------------------------
bl_toTopBtn （TOPへ戻るボタン）
---------------------------------- */
.bl_toTopBtn {
  text-align: center;
  position: fixed;
  right: 20px;
  bottom: 40px;
  font-size: 1rem;
  z-index: 50;
  color: #FCFCF8;
}
.bl_toTopBtn a .fa-circle {
  color: rgba(63, 45, 39, .8);
  text-shadow:  0 10px 12px rgba(63, 45, 39, .3);
}
.bl_toTopBtn a .fa-angle-up {
  font-size: 2rem;
  position: absolute;
  top: -2px;
}
/* hover */
.bl_toTopBtn a:hover .fa-circle {
  color: rgba(63, 45, 39, .9);
}
/* クリック時の挙動 */
.bl_toTopBtn a:active .fa-circle {
  color: rgba(63, 45, 39, 1);
  transition: width 3s ease-out .3s; -webkit-transition: width 3s ease-out .3s; -moz-transition: width 3s ease-out .3s;
}



/* 3_メインエリア
====================================================================== */
/* ----------------------------------
ly_mv_img （メイン画像）
---------------------------------- */
.el_mv_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 400px;
}
.el_logo_img {
  padding: 5px;
  background: #ffffff;
  display: inline-block;
}
.el_logo_img__black {
  background: #000000;
}
.el_logo_img__yellow {
  background: #F7E90C;
}


/* ----------------------------------
ly_main (メインエリア)
---------------------------------- */
.ly_main { padding: 64px 0 80px; }


/* ----------------------------------
el_map (地図)
---------------------------------- */
iframe { border: solid 1px #3F2D27; }



/* 4_ユニーク （独自モジュール）
====================================================================== */
/* ----------------------------------
un_newsList (トップページ お知らせ)
---------------------------------- */
.un_newsList li a {
  display: flex; display: -webkit-flex;
  font-size: 0.875rem;
  line-height: 1.6;
  width: 100%;
  padding: 16px 0;
  border-bottom: solid 1px #DDD7D2;
}
.un_newsList li:not(:last-child) { margin-bottom: 8px; }
.un_newsList_ttl { margin-right: 24px; }
.un_newsList_time {
  font-size: .75rem;
  text-align: center;
  padding: 3px 16px;
  min-width: 110px;
  height: 24px;
  border-radius: 24px;
  background: #3F2D27;
  color: #FFFDF3;
  margin-right: 24px;
}
.un_newsList li a::after {
  align-self: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 0.875rem;
  margin-left: auto;
}
.un_newsList li a:focus,
.un_newsList li a:hover,
.un_newsList li a:active {
  opacity: .5;
}



/* 5_ブロック (共通モジュール)
====================================================================== */
/* ----------------------------------
bl_bulletList (ulリスト)
---------------------------------- */
.bl_bulletList { font-size: 1rem; }
.bl_bulletList > li {
  line-height: 1.6;
  list-style: disc outside;
  margin: 0 0 1em 1.5em;
}
.bl_bulletList ul > li { /* ネスト1 */
  font-size: 0.875em;
  list-style: circle outside;
  margin: 0 0 1em 1.5em;
}
.bl_bulletList ul ul > li { /* ネスト2 */
  font-size: 0.875em;
  list-style: square outside;
  margin: 0 0 1em 1.5em;
}
.bl_bulletList ul > li:first-child {
  margin-top: 1em;
}
.bl_bulletList li:last-child {
  margin-bottom: 0;
}


/* ----------------------------------
bl_numberList (olリスト)
---------------------------------- */
.bl_numberList { font-size: 1rem; }
.bl_numberList > li {
  line-height: 1.6;
  list-style: decimal outside;
  margin: 0 0 1em 1.5em;
}
.bl_numberList ul > li { /* ネスト1 */
  font-size: 0.875em;
  list-style: decimal outside;
  margin: 0 0 1em 1.5em;
}
.bl_numberList ul ul > li { /* ネスト2 */
  font-size: 0.875em;
  list-style: lower-alpha outside;
  margin: 0 0 1em 1.5em;
}
.bl_numberList ul > li:first-child {
  margin-top: 1em;
}
.bl_numberList li:last-child {
  margin-bottom: 0;
}


/* ----------------------------------
bl_table (表組)
---------------------------------- */
.bl_table_border {
  border: solid 1px #8C817D;
  /* border-radius: 8px; */
}
.bl_table th {
  background: #E3DFCF;
  width: 50%;
}
.bl_table th,
.bl_table td {
  padding: 14px;
  vertical-align: top;
}

/* 枠線のスタイル */
.bl_table tbody tr:not(:last-child) { border-bottom: solid 1px #8C817D; }
.bl_table th:not(:last-child),
.bl_table td:not(:last-child) {
  border-right: solid 1px #8C817D;
}

/* th横幅30%のtbodyに設置 */
.bl_table_th30 th { width: 30%; }


/* ----------------------------------
bl_media (メディア)
---------------------------------- */
.bl_media_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.bl_media_cat {
  display: inline-block;
  font-size: 0.875rem;
  color: #8C817D;
  border: solid 1px #8C817D;
  border-radius: 4px;
  padding: .4em 1em;
  margin-bottom: 1.5em;
}
.bl_media_txt {
  margin-bottom: 1.5em;
}


/* ----------------------------------
bl_snsIcon  (SNSアイコン)
---------------------------------- */
.bl_snsIcon  {
  text-align: left;
  font-size: 2rem;
  line-height: 1;
}
.bl_snsIcon i {
  padding-right: 8px;
}
.bl_snsIcon li { display: inline-block; }
.bl_snsIcon li:not(:first-child) {
  margin-left: 24px;
}
.bl_snsIcon  a:focus,
.bl_snsIcon  a:hover,
.bl_snsIcon  a:active {
  opacity: .5;
}
.fa-facebook { color: #1877F2; }
.fa-twitter { color: #1DA1F2; }


/* ----------------------------------
bl_facebook (Facebook埋め込み)
---------------------------------- */
.bl_facebook {
  width: 100%;
  text-align: left;
  border-radius: 8px;
}
.bl_facebook iframe {
  max-width: 100%;
  border-radius: 8px;
}


/* 6_エレメント (最小モジュール)
====================================================================== */

/* ----------------------------------
el_btn (基本のボタン)
※aタグに指定する
---------------------------------- */
.el_btn {
  display: inline-flex; display: -webkit-inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1.3;
  padding: 1em 2em;
  transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out;
  /* 変更可能箇所 */
  border-radius: 100px;
  font-size: 1rem;
  width: 300px;
  max-width: 100%;
  background: #F8931F;
  color: #FFFDF3;
  border: solid 2px transparent;
  font-weight: 700;
}
/* hover */
.el_btn:focus,
.el_btn:hover,
.el_btn:active {
  background: transparent;
  color: inherit;
  border: solid 2px #FF6430;
}

/* el_btn__モディファイア
ボタンのサイズ変更
---------------------------------- */
/* 最小サイズ */
.el_btn__sizeSm {
  font-size: 0.875rem;
  width: 160px;
}
/* 最大サイズ */
.el_btn__sizeLg {
  font-size: 1.25rem;
  width: 320px;
}

/*
el_btn__beforeIcon
el_btn__afterIcon モディファイア
アイコン付きボタン
---------------------------------- */
.el_btn__beforeIcon,
.el_btn__afterIcon {
  /* justify-content: space-between; */
  font-family: "Font Awesome 5 Free";
}
.el_btn__beforeIcon::before { margin-right: 1em; }
.el_btn__afterIcon::after { margin-left: 1em; }

/* arrow-left */
.el_btn_arrow-left::before {
  font-weight: 900;
  content: "\f060";
  font-size: 1em;
}
/* arrow-right */
.el_btn_arrow-right::after {
  font-weight: 900;
  content: "\f061";
  font-size: 1em;
}

/*
el_btn__circle モディファイア
正円ボタンに変更
---------------------------------- */
.el_btn__circle {
  border: solid 2px #F8931F;
  border-radius: 100px;
  width: 150px;
  height: 150px;
}

/* el_btn__モディファイア
ボタンの色変更
---------------------------------- */
/*.el_btn__blue {
  background: #;
}*/
/* hover */
/* .el_btn__xxx:focus,
.el_btn__xxx:hover,
.el_btn__xxx:active {
  background: transparent;
  color: inherit;
  border: solid 2px #xxx;
} */


/* ----------------------------------
テキスト装飾
---------------------------------- */

/* el_link (アンカーテキスト)
---------------------------------- */
.el_link a {
  border-bottom: dashed 1px #3F2D27;
}
.el_link a:focus,
.el_link a:hover,
.el_link a:active {
  border-bottom: dotted 1px #3F2D27;
  opacity: .5;
}

/* el_caption (キャプション)
---------------------------------- */
.el_caption {
  font-size: 0.75rem;
  color: #8C817D;
  line-height: 1.6;
  margin-bottom: 1em;
}

/* 太字
---------------------------------- */
.hp_fontBold { font-weight: 700; }


/* ----------------------------------
タイトル・見出し
---------------------------------- */

/* el_ttlgradationLine (グラデアンダーラインタイトル）
---------------------------------- */
.el_ttlgradationLine {
  position: relative;
}
.el_ttlgradationLine::after {
  content: "";
  display: block;
  margin-top: .2em;
  height: 3px;
  background: #FF6430;
}

/* el_ttlLineL (左ラインタイトル)
---------------------------------- */
.el_ttlLineL {
  border-left: solid 4px #FF6430;
  padding-left: .5em;
}



/* ----------------------------------
テキスト囲み
---------------------------------- */

/* el_ttlBg （背景色タイトル）
---------------------------------- */
.el_ttlBg {
  background: #E3DFCF;
  border-radius: 8px;
  padding: .6em 1em;
}

/* el_txtBorderFrame （テキスト囲みエリアボーダー）
---------------------------------- */
.el_txtBorderFrame {
  padding: 24px;
  border: solid 1px #8C817D;
}
.el_txtBorderFrame *:last-of-type { margin-bottom: 0; }

/* el_txtBgFrame （テキスト囲みエリア背景）
---------------------------------- */
.el_txtBgFrame {
  padding: 24px;
  background: #E3DFCF;
}
.el_txtBgFrame *:last-of-type { margin-bottom: 0; }


/* デスクトップのスタイル
====================================================================== */

/* コンテンツの表示幅指定 */
.ly_content { width: 88%; }

/* PCサイズで表示 */
.hp_pcShow  { display: block; }

/* PCサイズで非表示 */
.hp_spShow  { display: none; }
.hp_tbShow  { display: none; }

/* ドロワーボタンを非表示 */
.bl_drawerBtn { display: none; }


/* タブレットのスタイル
====================================================================== */
@media all and (max-width: 768px) {

  /* タブレットサイズで表示 */
  .hp_tbShow  { display: block; }

  /* タブレットサイズで非表示 */
  .hp_pcShow { display: none; }

  /* サイト名縮小 */
  .ly_header .el_siteName { font-size: 1rem; }
  .ly_footer .el_siteName { font-size: 1.25rem; }

  /* グローバルナビ・ドロワーボタン 表示切り替え */
  .bl_drawerBtn { display: block; }
  .bl_headerUnit { display: none; }

  /* コンタクトボタン 表示切り替え */
  .el_contactBtn { display: none; }

  /* メイン画像 高さ調整 */
  .el_mv_img { height: 320px; }

  /* フッターナビ 表示切り替え */
  .bl_footerUnit { flex-flow: column; }
  .bl_footerUnit .bl_gNav { display: block; }
  .bl_footerUnit .bl_gNav li a {
    padding: 1em 0;
    margin-left: 0;
    border-bottom: solid 1px #3F2D27;
  }
  .bl_footerUnit .bl_gNav li:first-child a { border-top: solid 1px #3F2D27; }
  .bl_footerUnit .bl_gNav li a:focus,
  .bl_footerUnit .bl_gNav li a:hover,
  .bl_footerUnit .bl_gNav li a:active {
    background: #FFFDF3;
  }


}

/* モバイルのスタイル
====================================================================== */
@media all and (max-width: 500px) {

  /* スマホサイズで表示 */
  .hp_spShow  { display: block; }

  /* スマホサイズで非表示 */
  .hp_spHidden  { display: none; }

  /* メイン画像 高さ調整 */
  .el_mv_img { height: 200px; }

  /* カラム段落ち 切り替え */
  .ly_col { flex-flow: column nowrap; }
  .ly_col_col2,
  .ly_col_col3 {
    width: 100%;
    margin-right: 0;
  }
  .ly_col_col2:nth-last-child(-n+2) { margin-bottom: 32px; }
  .ly_col_col3:nth-last-child(-n+3) { margin-bottom: 32px; }
  .ly_col_col2:last-child,
  .ly_col_col3:last-child {
    margin-bottom: 0;
  }


}

/*SPからPCサイズのメニューdisplay:none解除*/
@media screen and (min-width:768px){
  .bl_drawer {
  display: none !important;
  }
}


/* css END */
