@charset "UTF-8";

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

body {
  color: #333;
  font-family: arial, sans-serif;
  font-size: 100%;
  line-height: 1.6;
}

/* 左右の余白 */
.container {
  padding: 0 15px;
}

main {
  padding: 0 0 0 0;
}


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

/* タイトルバー */
.tit_bar {
  display: flex;
	z-index: 9;
  }

/* サイト名 */

.site_name a {
  display: inline-block;
  padding: 1.2rem 1rem 1rem 1rem;
}

.site_name img {
  width: 240px;
  margin: 0 auto -10px auto;
}

/* メインメニュー */
.main_menu {
  position: absolute;
  top: 2rem;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-right: 0;
	z-index: 9999;
	background-color: #e96573;
	padding: 1rem;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}

.h_icon::before {
  position: relative;
  top: 2px;
 content: '';
 display: inline-block;
 width: 17px;
 height: 17px;
 margin-right: 5px;
 background-image: url(images/home.svg);
 background-size: contain;
 background-repeat: no-repeat;
}

.h_icon img {
  width: 10px;
}

/* === スマホ表示時のヘッダー =============== */

/* ハンバーガーボタン */
#hamburger_btn {
  position: fixed;
  display: block;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 80;
  background-color: rgba(231, 102, 117, 0.9);
}

#hamburger_btn .menu_icon,
#hamburger_btn .close_icon {
  margin: 15px auto 8px auto;
  width: 32px;
  z-index: 90;
}

/* 固定ヘッダー */
header {
  background-color: rgba(255, 255, 255, 0.9);
}

/* メインメニューを非表示に */
.main_menu {
  display: none;
}

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

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

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

/* パネル */
#hamburger_panel {
  position: fixed;
  right: -100vw;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(231, 102, 117, 1);
  transition: all 0.5s ease 0s;
  z-index: 70;
}

#hamburger_panel .h_icon::before {
  position: relative;
  top: 1px;
 content: '';
 display: inline-block;
 width: 17px;
 height: 17px;
 margin-right:5px;
 background-image: url(images/home_s.svg);
 background-size: contain;
 background-repeat: no-repeat;
 }

/* パネルにチェックが付いたら */
#hamburger_panel.check {
  right: 0;
}

/* パネル のデザイン */
#hamburger_panel {
  text-align: center;
  padding-top: 70px;
}

#hamburger_panel ol {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#hamburger_panel ol li {
  margin-left: 0;
}

#hamburger_panel ol li a {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
}


@media (min-width:1025px) {

  .tit_bar {
	  margin: 3rem 0;
  }

  .tit_bar_area .container {
    position: relative;
  }

/* タイトルバー */
.site_name a {
  padding: 1.5rem 2rem;
}

.site_name img {
  width: 540px;
}

/* サブメニュー */

.sub_menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-right: 0;
}
.s_menu_item01 {
flex: 1 1 50%;
}
.s_menu_item02 {
flex: 1 1 50%;
}

.s_menu_item01 a {
display: block;
padding: 1rem 1.0rem;
background-color: #808080;
border-radius: 20px;
line-height: 1.5;
}

.s_menu_item02 a {
display: block;
padding: 1rem 1.5rem;
background-color: #808080;
border-radius: 20px;
line-height: 1.5;
}

  /* メインメニューを表示して、ハンバーガーボタンを消す */
  .main_menu {
    display: block;
	  margin-top: 3rem;
  }

  #hamburger_btn {
    display: none;
  }

  /* メインメニュー */
  .main_menu ol {
    margin: 0;
    list-style: none;
  }

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

  .main_menu ol li a {
    padding: 1rem;
	  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
	  font-size: 1.1rem;
  }
  .main_menu ol li a:hover {
	  color: #ffcbd1;
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
		 -o-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
  }

}

/* === ドロップダウンメニュー ========== */
.dropdown_menu {
  display: none;
}

@media (min-width:1025px) {
  .dropdown_menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;

  border-radius: 0 0 10px 10px;
  color: #000;
  }
/* パネル */
.dropdown_menu ol {
  list-style: none;
}

.dropdown_menu ol li {
  margin-left: 0;
}

.dropdown_menu ol li a {
  display: block;
  padding: 2rem 0;
  background-color: #333;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.dropdown_menu ol li:last-child a {
  border-bottom: none;
}

.dropdown_menu ol li a:hover {
  background-color:#000;
}

.dropdown_menu ol li a:active {
  background-color:#5b5bff;
  color: #fff;
}

/* ドロップダウンメニュー（パネル）の表示・非表示 */
.dropdown_menu .dd_panel {
  visibility: hidden;
  opacity: 0;
  top: 80%;
  transition: all 0.5s ease 0s;
}

.dropdown_menu:hover .dd_panel {
  visibility: visible;
  opacity: 1;  
  top: 100%;
}
}

/* === フッター =============== */

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
  padding: 0 0 10px 0;
  text-align: center;
  font-size: 0.9rem;
  background-color: #e96573;
  color: #fff;
}

/* フッターメニュー */
.footer_menu {
  text-align: center;
  background-color: #dc4d5c;
}

.footer_menu ol {
  list-style: none;
}

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

.footer_menu ol li::after {
  content: '|';
  color: rgba(255, 255, 255, 0.7);
}

.footer_menu ol li:last-child::after {
  display: none;
}

.footer_menu ol li a {
  display: inline-block;
  padding: 0.5rem 1rem;
}
address {
  padding: 1rem 0;
  font-style: normal;
}

.space_pc {
  margin-left: 0;
}
@media (min-width:768px) {
  footer {
    margin-top: auto;
  }

.space_pc {
  margin-left: 15px;
}
}

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

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

a:visited {
  color: #69f;
}

a:hover {
  color: #f30;
}

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;
}

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

@media (min-width:600px) {
  body {
    line-height: 2;
  }
}

@media (min-width:1025px) {
  .container {
    width: 1025px;
    margin: 0 auto;
  }
}
