@charset "UTF-8";

html {
  font-size: 14px;
}

@media (min-width:600px) {
  html {
    font-size: 16px;
  }
}




/* === 全体にかかる設定 =============== */

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 100%;
  line-height: 1.6;
  background-color: #f8f5e3;
}

/* === 横幅の制限 =============== */

.w_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.w1025_container {
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 15px;
}

/* === ヘッダー =============== */

/* ヘッダー */
header {
  background-color: #fff;
}

/* === サブメニュー =============== */

/* サブメニュー エリア */
.sub_menu_area {
  display: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* サブメニュー PC用 */
.sub_menu {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  text-align: right;
}

.sub_menu ol {
  margin-bottom: 0;
  list-style: none;
}

.sub_menu li {
  margin-left: 0;
  display: inline-block;
}

.sub_menu a {
  display: block;
  margin: 0 8px;
  padding: 0.5rem 0;
}

.sub_menu li:last-child a {
  margin-right: 0;
}

.sub_menu a::before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  margin: 0 8px -4px 0;

  background-image: url(images/happa_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* === タイトルバー スマホ用 =============== */

/* Flex 分割 */
.tit_bar .w_container {
  display: flex;
  align-items: center;
}

/* 要素を右寄せ */
.tit_bar .migiyose {
  margin-left: auto;
}

/* サイト名 */
.tit_bar .site_name {
  margin: 2rem 0;
  padding: 0 1rem 0.3rem 1rem;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  border-left: 9px solid #99cc00;
}

.tit_bar .houjin_name {
  font-size: 1.1rem;
}

/* 緑色のボタン（PCのみ） */
.tit_bar .green_btn {
  display: none;
}

.tit_bar .green_btn a {
  display: inline-block;
  padding: 0.5rem 1rem 0.6rem 1rem;
  background-color: #509f00;
  /* background: linear-gradient(#509f00, #5cb700);*/
  border-radius: 6px;
}

/* 電話番号（PCのみ） */
.tit_bar .tel {
  display: none;
  margin: 0;
  padding-left: 2rem;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
}

.tit_bar .tel::before {
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  margin: 0 8px -4px 0;

  background-image: url(images/tel_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.tit_bar .jikan {
  font-size: 0.92rem;
}

.tit_bar .jikan_tit {
  color: #509f00;
}

/* === ハンバーガーメニュー =============== */

/* ハンバーガーボタン */
#hamburger_btn {
  display: block;
  z-index: 80;
}

/* 「閉じる」アイコンは消しておく */
#hamburger_btn .close_icon {
  display: none;
}

#hamburger_btn .menu_icon,
#hamburger_btn .close_icon {
  position: relative;
  width: 40px;
  z-index: 99999;
}

/* ボタンがチェックされたら（「閉じる」アイコンを表示する）*/
#hamburger_btn.check .close_icon {
  display: block;
}

/* ボタンがチェックされたら（「メニュー」アイコンを消す）*/
#hamburger_btn.check .menu_icon {
  display: none;
}

/* パネル */
#hamburger_panel {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: -100;
  opacity: 0;
}

/* パネル */
#hamburger_panel .innerpanel {
  height:85%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* パネルにチェックが付いたらアニメーション */
#hamburger_panel.check {
  z-index: 9999;
  transition: all 0.5s ease 0s;
  opacity: 1;
}

/* パネル のデザイン */
#hamburger_panel {
  padding-top: 135px;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
}

/* パネル のリスト部分 */
#hamburger_panel ol.panel_list {
  list-style: none;
  border-top: 2px dotted rgba(92, 50, 24, 0.5);
}

#hamburger_panel .panel_list li {
  margin-left: 0;
}

#hamburger_panel .panel_list a {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  color:#002698;
  border-bottom: 2px dotted rgba(92, 50, 24, 0.5);
}
#hamburger_panel .panel_list a:hover {
  color:#f00;
}
#hamburger_panel .panel_list a:active {
  color:#fff;
  background-color:#5377e6;
}

/* パネル（会員） のリスト部分 */
#hamburger_panel ol.panel_list02 {
  list-style: none;
  background-color: #efffd5;
  border-top: 2px dotted rgba(92, 50, 24, 0.5);
}

#hamburger_panel .panel_list02 li {
  margin-left: 0;
}

#hamburger_panel .panel_list02 a {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  color:#002698;
  border-bottom: 2px dotted rgba(92, 50, 24, 0.5);
}
#hamburger_panel .panel_list02 a:hover {
  color:#ff0000;
}
#hamburger_panel .panel_list02 a:active {
  color:#fff;
  background-color:#fcc37e;
}

/* 緑色のボタン部分 */
#hamburger_panel .panel_btn {
  display: flex;
  gap: 10px;
  padding: 0 10px;
}

#hamburger_panel .panel_btn .item {
  flex: 1 1 50%;
}

#hamburger_panel .panel_btn a {
  display: block;
  padding: 0.5rem 1rem;
  background-color: #509f00;
  border-radius: 4px;
}

/* === メインメニュー =============== */

/* 背景 スマホ用 */
.main_menu_area {
  background-image: linear-gradient(#fff 0% 50%, #f8f5e3 50% 100%);
}

.main_menu {
  background-color: #4d3219;
  border-radius: 6px;
}

/* メインメニュー */
.main_menu {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

.main_menu ol {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  list-style-type: none;
}

.main_menu li {
  margin-left: 0;
  flex: 1 1 50%;
}

.main_menu a {
  display: block;
  line-height: 1;
  padding: 1.5rem 0.2rem;
  height: 100%;
  text-align: center;
}

/* 区切り線 */
.main_menu li:nth-last-child(4),
.main_menu li:nth-last-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.main_menu li:nth-last-child(1),
.main_menu li:nth-last-child(3) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

/* メインメニュー 追加 */
.main_menu .small-xs{
  font-size: 0.9rem;
}

/* フッター */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

/* 促すボタン */
.sokusu_card {
  position: relative;
  margin-bottom: 1rem;
  padding: 0.8rem;

  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  background-color: #fff;
  /* background: linear-gradient(#fff, #f1f1f1); 
  border: 2px solid #fff;*/
  border-radius: 8px;
  filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.2));
}

.sokusu_card::before {
  position: absolute;
  content: '';
  right: 16px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #509f00;
  border-bottom: 2px solid #509f00;
  transform: rotate(-45deg);
}

.sokusu_tit {
  color: #f30;
  font-size: 2rem;
}

.sokusu_card a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

/* サイトマップ（PCのみ） */
.sitemap {
  display: none;
  padding: 2rem 0 1rem 0;
  color: #fff;
  background-color: #f7f1e5;
  border-top:2px solid rgba(230, 215, 182, 0.5);
}

.sitemap h4 {
  color: #000;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sitemap .w1025_container {
  display: flex;
}

.sitemap .item {
  flex: 1 1 24%;
}

.sitemap .item:first-child {
  flex: 1 1 28%;
}

.sitemap ul {
  margin-bottom: 1rem;
  list-style: none;
}

.sitemap li {
  margin-left: 0;
  font-size: 0.8rem;
}

.sitemap a::before {
  content: '+';
  margin-right: 0.5rem;
  color: #ffae00;
}

/* コンタクト */
.contact {
  padding: 2rem 0;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  background-color: #4d3219;
}

.contact .admin_name {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact .admin_name span {
  font-size: 1.4rem;
}

.contact h4 {
  margin: 1rem 0;
  font-size: 1rem;
}

.contact h4::before,
.contact h4::after {
  content: '❇︎';
  margin: 0.5rem;
  color: #693;
}

.contact .tel {
  letter-spacing: 0.2rem;

  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

/* コピーライト */
.copyright {
  margin-top: 2rem;
  font-size: 0.7rem;
  text-align: center;
}

footer .tel {
  pointer-events: none;
}

footer .tel a {
  color:#fff;
}

/* スマホ用 電話ボタン */
.yohaku {
  display: block;
  height: 80px;
  background-color: #4d3219;
}

.sp_phone_area {
  position: fixed;
  left: 0;
  bottom: -100px;
  width: 100%;
  height: fit-content;
  transition: all 0.5s ease 0s;
  padding: 15px;
}

.sp_phone_area.active {
  bottom: 0;
}

.sp_btn {
  position: relative;
  padding: 1rem;
  padding-left: 3rem;
  font-size: 1.1rem;
  text-align: center;
  background-color: #509f00;
  border-radius: 100vh;
}

.sp_btn::before {
  position: absolute;
  content: '';
  display: inline-block;

  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;

  background-image: url(images/tel_w_icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sp_btn a::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* === メディアクエリ =============== */

@media (min-width:600px) {

  body {
    line-height: 2;
  }

  /* タイトル文字変更 */
  .tit_bar .site_name {
    font-size: 1.6rem;
  }

  /* メインメニュー */
  .main_menu ol {
    flex-wrap: nowrap;
  }

  .main_menu li {
    flex: 1 1 auto;
  }

  /* メインメニュー　枠線 */
  .main_menu li:nth-last-child(1),
  .main_menu li:nth-last-child(2),
  .main_menu li:nth-last-child(3),
  .main_menu li:nth-last-child(4) {
    border: none;
  }

  .main_menu li:nth-last-child(1),
  .main_menu li:nth-last-child(2),
  .main_menu li:nth-last-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }

  /* 促すボタン */
  .sokusu_area .w_container {
    display: flex;
    gap: 15px;
    padding-bottom: 0rem;
    margin-top:1rem;
  }

  .sokusu_area .item {
    flex: 1 1 50%;
  }

  /* コンタクト */
  .contact .w_container {
    display: flex;
    align-items: center;
  }

  .contact .item {
    flex: 1 1 50%;
  }

  /* スマホ用 電話ボタン */
  .yohaku {
    display: none;
  }

  .sp_phone_area {
    display: none;
  }

/* メインメニュー 追加 */
.main_menu {
  font-size: 1.2rem;
}

.main_menu .small-xs{
  font-size: 1.2rem;
}

}

@media (min-width:1025px) {

  /* タイトル文字変更 */
  .tit_bar .site_name {
    font-size: 1.8rem;
  }

  .tit_bar .houjin_name {
    font-size: 1.2rem;
  }

  /* 表示する */
  .sub_menu_area,
  .tit_bar .green_btn,
  .tit_bar .tel,
  .sitemap {
    display: block;
  }

  /* 消す */
  #hamburger_btn {
    display: none;
  }

  /* メインメニュー（背景） */
  .main_menu_area {
    background-image: url(images/main_menu_bg.svg), linear-gradient(#4d3219 0% 50%, rgba(255, 255, 255, 0) 50% 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom, center;
    background-size: 1170px, auto;
    background-color: #f8f5e3;
  }

  .main_menu {
    background-color: unset;
    border-radius: unset;
  }

  /* 促すボタン */
  .sokusu_area .w_container {
    gap: 0;
    padding-bottom: 1rem;

  }

  .sokusu_card {
    margin: 2rem 1rem;
  }

/* メインメニュー 追加 */
.main_menu {
  font-size: 1.2rem;
}

.main_menu .small-xs{
  font-size: 1.2rem;
}

}

/* === リンク色 =============== */

/* 標準 */
a:link {
  color: #256bec;
  text-decoration: none;
}

a:visited {
  color: #6a9cf8;
  ;
}

a:hover {
  color: rgb(245, 0, 0);
}

a:active {
  color: #fc0;
}

/* 黒いリンク文字 */
.black_link a:link {
  color: #333;
  text-decoration: none;
}

.black_link a:visited {
  color: #666;
}

.black_link a:hover {
  color: #36f;
}

.black_link a:active {
  color: #f30;
}

/* 白いリンク文字 */
.white_link a:link {
  color: #fff;
  text-decoration: none;
}

.white_link a:visited {
  color: #fff;
}

.white_link a:hover {
  color: #fc0;
}

.white_link a:active {
  color: #f30;
}

/* 白い白いリンク文字 */
.white_white_link a:link {
  color: #fff;
  text-decoration: none;
}

.white_white_link a:visited {
  color: #fff;
}

.white_white_link a:hover {
  color: #fff;
}

.white_white_link a:active {
  color: #fff;
}

/* メインメニュー専用 */

/*
.main_menu a:hover {
  background-color: #342211;


.main_menu a:active {
  background-color:#256bec;
}*/

/* 黒い黒いリンク文字（サイト名等） */
.black_black_link a:link {
  color: #333;
  text-decoration: none;
}

.black_black_link a:visited {
  color: #333;
}

.black_black_link a:hover {
  color: #333;
}

.black_black_link a:active {
  color: #36f;
}

/* 緑色のボタン専用 */
.green_btn a:hover {
  color: #fff;
  filter: drop-shadow(1px 8px 3px rgba(0, 0, 0, 0.2));
  transition: all 0.5s ease 0s;
  background-color: #36f;
}

.white_link a:active {
  color: #fff;
  transition: none;
  background-color: #f00;
}

/* 促すカード専用 */
.sokusu_card {
  will-change: filter;
  transition: transform 0.5s ease 0s;
}

.sokusu_card:hover {
  transform: translateY(-5px);
  filter: drop-shadow(1px 8px 3px rgba(0, 0, 0, 0.2));
}
