@charset "utf-8";
/*=======================================================================

共通レイアウト(layout.css)

========================================================================*/

body {
	border-bottom: 20px solid #924898;
  color: #222;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  line-height: 1.8;
}

/*----------------------------------------------------------------------
 Links
----------------------------------------------------------------------*/
@media (hover: hover) {
  a {
    transition: .2s;
  }
  a:hover,
	#content a:hover {
    opacity: .7;
    text-decoration: none;
  }
}
a {
  color: #0081cc;
  text-decoration: none;
}
#content a {
  text-decoration: underline;
}


/*----------------------------------------------------------------------
 Header
----------------------------------------------------------------------*/
#header {
	border-top: 20px solid #924898;
}
#header .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	width: 1200px;
	min-height: 72px;
  margin: 0 auto;
}
#header h1 {
	width: calc(100% - 480px);
}
#header .header_right {
  display: flex;
	align-items: center;
  justify-content: flex-end;
  width: 480px;
	margin-top: 16px;
	font-size: 0;
}

div.search {
  margin-right: 10px;
}
form.google-top {
  width: 240px;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}
form.google-top input.google {
	width: 44px;
	height: 25px;
  margin: 0;
	border: 1px solid #555;
	vertical-align: middle;
}
form.google-top input.search {
	width: 180px;
	height: 25px;
	padding: 0 4px;
  border: 1px solid #555;
  border-right: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  outline: 0;
}
@media screen and (-ms-high-contrast: none) {
  form.google-top input.search {
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    letter-spacing: -.1em;
  }
}
::placeholder {
  color: #999;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  letter-spacing: -.1em;
}
:-ms-input-placeholder {
  color: #999;
}

.font_size {
  display: flex;
  align-items: center;
	column-gap: 2px;
}
.font_size_ttl {
	margin-right: 4px;
	color: #924898;
	font-size: 14px;
}
.font_size a:hover {
  opacity: 1;
}


/*----------------------------------------------------------------------
 Nav
----------------------------------------------------------------------*/
.slicknav_menu {
	display: none;
}
#menu {
	width: 1200px;
  margin: 0 auto;
}
#menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#menu li {
  width: calc(100% / 8);
}
#menu li:nth-of-type(6) {
  width: 14%;
}
#menu li:nth-of-type(8) {
  width: 11%;
}
#menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
	min-height: 68px;
  padding: 12px 8px 20px;
  color: #924898;
	font-size: 14px;
  line-height: 1.3;
  text-align: center;
	position: relative;
}
#menu li a::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #924898;
  border-right: solid 1px #924898;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
  position: absolute;
  top: calc(100% - 20px);
  left: calc(50% - 4px);
  transition: .3s;
}
#menu li.hover a,
#menu li.current a {
	opacity: .5;
}

#menu #gNav li ul {
  display: none;
	width: auto;
  z-index: 100;
  position: absolute;
  /*top: 100%;
  left: 50%;
  transform: translateX(-50%);*/
}
#menu #gNav li ul li {
  position: static;
  width: 240px;
  padding: 0 14px;
  background: #f8f7f1;
  border: 0;
	line-height: 1.2;
}
#menu #gNav li ul li:first-child {
  padding-top: 4px;
}
#menu #gNav li ul li:last-child {
  padding-bottom: 14px;
}
#menu #gNav li ul li a {
  display: block;
  width: 100%;
  min-height: auto;
  padding: 8px 2px;
  border-bottom: 1px dashed #aaa;
  color: #222;
  font-size: 12px;
	font-weight: 400;
  text-align: left;
  text-decoration: none;
  opacity: 1;
  position: relative;
}
#menu #gNav li ul li a:hover {
  opacity: .5;
}
#menu #gNav li ul li a:hover::before,
#menu #gNav li ul li a:hover::after,
#menu #gNav li.hover ul li a::before,
#menu #gNav li.hover ul li a::after {
  content: none;
	border: 0;
}
#menu #gNav li ul li a::after {
  content: '' !important;
	border: 0;
	width: 12px;
	height: 6px;
	background: url("../images/icon_nav_arrow.svg") no-repeat;
	background-size: contain;
  position: absolute;
  top: 50%;
	left: auto;
  right: 5px;
  transform: translateY(-50%);
  transition: .2s;
}
#menu #gNav li ul li a:hover::after {
  right: 0;
}
.droppy::after {
  content: '';
  display: block;
  clear: both;
}

#menu .hnav,
#menu .search {
  display: none;
}

/*----------------------------------------------------------------------
 Contents 
----------------------------------------------------------------------*/
#main {
  display: flex;
  flex-wrap: wrap;
	column-gap: 40px;
	width: 1200px;
	margin: 40px auto 56px;
}
#main #content {
	width: 920px;
}


/*----------------------------------------------------------------------
 Sidebar 
----------------------------------------------------------------------*/
#main #sidebar {
	width: 240px;
}

/* Side Nav */
#sidebar .sideNav h2 {
  margin: 0;
  padding: 16px 10px;
  background: #d1b3d7;
  color: #924898;
  font-size: 100%;
  text-align: center;
}
#sidebar .sideNav h2 a {
  color: #924898;
  text-decoration: none;
}
.sideNav ul {
  border: 1px solid #c9c9ca;
  line-height: 1.3;
}
.sideNav ul ul {
  border: 0;
  display: none;
}
.sideNav ul .active  ul {
  display: inherit;
}
.sideNav li a,
.sideNav li li a,
.sideNav li li li a,
.sideNav li li li li a {
    display: block;
    padding: 12px 14px;
    background: #fff;
    border-top: 1px dashed #c9c9ca;
    color: #333;
    font-size: 87.5%;
    text-decoration: none;
}
.sideNav li li a {
    padding: 10px 15px 10px 25px;
    border-top: 1px dashed #c9c9ca;
}
.sideNav li li li a {
    padding: 7px 15px 7px 35px;
}
.sideNav li li li li a {
    padding: 7px 15px 7px 45px;
}
.sideNav li a:hover,
.sideNav li.active li a:hover,
.sideNav li.active li.active li a:hover {
  background: #f1e5f4;
  opacity: 1;
}
.sideNav li.active a,
.sideNav li.active li a,
.sideNav li.active li.active a,
.sideNav li.active li.active li.active a,
.sideNav li.active li.active li.active li a {
	background: #f9f9f9;
  color: #666;
}
.sideNav li.active li a,
.sideNav li.active li.active li.active li a {
   background: #fff;
}
.sideNav li.active li.active li a {
    background: #fff;
    border-top: 1px dotted #c9c9ca;
}
.sideNav li:first-child a {
    border-top: none;
}
.sideNav li li:first-child a {
    border-top: 1px dashed #c9c9ca;
}
.sideNav li li:last-child a,
.sideNav li li li:last-child a {
    border-radius: 0;
}


/*----------------------------------------------------------------------
 Footer
----------------------------------------------------------------------*/
#footer {
  padding: 40px 0 16px;
  background: #f8f7f1;
  color: #222;
	text-align: center;
}

#footer .footerNav {
  margin-bottom: 40px;
}
#footer .footerNav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}
#footer .footerNav li::after {
  content: '|';
}
#footer .footerNav li:nth-of-type(1)::before {
  content: '|';
}
#footer .footerNav li a {
	padding: 0 12px;
  color: #333;
	font-size: 14px;
	line-height: 1.4;
}

#footer .address {
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 700;
}

#footer .copyright {
	font-size: 12px;
}


/*----------------------------------------------------------------------
 Pagetop 
----------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 32px;
	right: 20px;
	z-index: 100;
}
.pagetop a {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #924898;
	text-align: center;
	text-decoration: none;
}
.pagetop a:hover {
	opacity: 0.75;
}
span.arrow {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
span.arrow:after {
	content: '';
	position: absolute;
	top: 25px;
	left: 21px;
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}


/*----------------------------------------------------------------------
 TopicPath
----------------------------------------------------------------------*/
#content .topic_path {
	margin: 0;
	padding: 0;
	font-size: 75%;
}
#content .topic_path li {
	display: inline-block;
}
#content .topic_path li + li:before {
  padding: 0 5px;
  color: #999;
  content: ">";
}

