@charset "utf-8";
/* CSS Document */
body {
  color: #231815;
  font-family: YuGothic, 'Yu Gothic', "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  line-height: 1.5;
  font-feature-settings: "palt";
}
:where(p, h1, h2, h3, h4, h5, h6, ul, ol, li) {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  width: auto;
  vertical-align: bottom;
}
a {
  color: #231815;
  text-decoration: none;
  transition: .3s
}
a:hover {
  opacity: .6;
}
.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
  br.is-sp {
    display: inline-block;
  }
  .is-pc {
    display: none;
  }
}
/*
	ヘッダー
*/
.header {
  position: fixed;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  width: 100%;
  height: 93px;
}
.header_inner {
  position: relative;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1230px;
  height: 100%;
}
.header_logo {
  line-height: 1;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 314px;
}
.header_logo h1 {
  margin: 0;
}
.header_nav {
  position: absolute;
  right: 15px;
  bottom: 0;
}
.header_nav_list {
  display: flex;
}
.header_nav_item {
  position: relative;
  text-align: center;
  min-width: 135px;
  font-weight: 600;
  line-height: 1;
  font-size: 14px;
  margin-left: 1em;
}
.header_nav_item:first-child {
  display: block;
}
.header_nav_item a {
  display: block;
  padding: .75em;
  border-bottom: 4px solid #a360a0;
}
.header_nav_item a span {
  font-size: 11px;
}
.header_nav_lower {
  position: absolute;
  background: rgba(255, 255, 255, .8);
  width: 100%;
  display: none;
}
.header_nav_lower li {
  position: relative;
}
.header_nav_lower li::after {
  content: "";
  height: 4px;
  width: calc(100% - 20px);
  background: #c8aac8;
  position: absolute;
  left: 10px;
  bottom: 0;
}
.header_nav_lower li a {
  white-space: nowrap;
  border-bottom: none;
  padding: .75em 0 calc(.75em + 4px) 0;
}
.header_nav_lower li a:hover {
  opacity: 1;
}
.header_nav_lower li a:hover {
  background: rgba(255, 210, 255, .8);
}
.header_sp_nav {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header_logo {
    right: 15px;
  }
  .header_nav {
    background: rgba(255, 255, 255, .8);
    overflow: auto;
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 320px;
    opacity: 0;
    border-radius: 25px;
    bottom: auto;
    height: 0;
  }
  .header_nav.is-open {
    opacity: 1;
    max-height: calc(100vh - 240px);
    box-sizing: border-box;
    height: auto;
  }
  .header_sp_bg.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .header_nav_list {
    flex-direction: column;
    height: 100%;
  }
  .header_nav_item {
    min-width: auto;
    font-size: 28px;
    font-weight: 500;
    border-bottom: 1px solid #FFF;
    margin-left: 0;
  }
  .header_nav_item:first-child {
    display: none;
  }
  .header_nav_item:nth-child(2) {
    margin-top: 0;
  }
  .header_nav_item:last-child {
    padding-bottom: 30px;
    border-bottom: none;
  }
  .header_nav_item > a {
    position: relative;
    padding: 12px .25em 17px;
    border-bottom: 6px solid #a360a0;
    border-bottom: none;
    min-height: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .header_nav_item:has(ul) > a {
    padding-bottom: 50px;
    background: url('/assets/img/icon_arrow_bottom.png') no-repeat center bottom 20px / 18px;
  }
  .header_nav_item > a::after {
    content: "";
    height: 10px;
    width: calc(100% - 60px);
    background: #a360a0;
    position: absolute;
    left: 30px;
    bottom: 0;
  }
  .header_nav_item > a span {
    font-size: 22px;
  }
  .header_nav_lower {
    position: static;
    background: none;
    display: none;
  }
  .header_nav_lower li {
    border-bottom: 1px solid #FFF;
  }
  .header_nav_lower li:last-child {
    border-bottom: none;
  }
  .header_nav_lower li::after {
    height: 5px;
    width: calc(100% - 50px);
    left: 25px;
  }
  .header_sp_nav {
    display: flex;
    height: 100%;
    position: absolute;
    right: 15px;
    bottom: 0;
  }
  .header_densyoku {
    align-self: flex-end;
  }
  .header_densyoku a {
    display: block;
    color: #a360a0;
    padding: .25em 0;
    border-bottom: 4px solid #a360a0;
    font-weight: 600;
    line-height: 1.33;
    font-size: 18px;
  }
  .header_hamburger {
    align-self: center;
    text-align: center;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: inherit;
    border: none;
    margin: 12px 0 0 30px;
    padding: 0;
    cursor: pointer;
  }
  .header_hamburger span {
    display: block;
    background: #a360a0;
    width: 52px;
    height: 4px;
    margin-bottom: 10px;
  }
  .header_hamburger p {
    font-family: "Noto Sans JP", sans-serif;
    color: #a360a0;
    font-weight: 700;
    line-height: 1;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: calc(140vw/7.5);
  }
  .header_logo {
    max-width: calc(560vw / 7.5);
    left: 4.8vw;
  }
  .header_inner {
    padding: 0;
  }
  .header_nav {
    top: calc(180vw / 7.5);
    max-width: calc(320vw / 7.5);
    border-radius: calc(25vw / 7.5);
  }
  .header_nav.is-open {
    max-height: calc(100vh - 240px);
  }
  .header_nav_item {
    font-size: calc(28vw / 7.5);
  }
  .header_nav_item:last-child {
    padding-bottom: calc(30vw / 7.5);
  }
  .header_nav_item > a {
    padding: calc(12vw / 7.5) .25em calc(17vw / 7.5);
    min-height: calc(106vw / 7.5);
  }
  .header_nav_item:has(ul) > a {
    padding-bottom: calc(50vw / 7.5);
    background: url('/assets/img/icon_arrow_bottom.png') no-repeat center bottom calc(20vw / 7.5) / calc(18vw / 7.5);
    ;
  }
  .header_nav_item > a::after {
    height: calc(10vw / 7.5);
    width: calc(100% - 60vw / 7.5);
    left: calc(30vw / 7.5);
  }
  .header_nav_item > a span {
    font-size: calc(22vw / 7.5);
  }
  .header_nav_lower li::after {
    height: calc(5vw / 7.5);
    width: calc(100% - 50vw / 7.5);
    left: calc(25vw / 7.5);
  }
  .header_sp_nav {
    right: 4.8vw;
  }
  .header_densyoku a {
    border-bottom: calc(6vw / 7.5) solid #a360a0;
    font-size: calc(24vw/7.5);
    font-weight: 700;
  }
  .header_densyoku a br {
    display: none;
  }
  .header_hamburger {
    margin: calc(12vw / 7.5) 0 0 calc(28vw / 7.5);
  }
  .header_hamburger span {
    width: calc(86vw / 7.5);
    height: calc(5vw / 7.5);
    margin-bottom: calc(17vw / 7.5);
  }
  .header_hamburger p {
    font-size: calc(31vw/7.5);
  }
}
/*
	パンくずリスト
*/
.breadcrumb {
  max-width: 985px;
  margin: 70px auto 50px;
  padding: 0 15px;
}
.breadcrumb_list_item {
  display: inline-block;
  font-size: 18px;
}
.breadcrumb_list_item:not(:last-child)::after {
  content: "／";
  color: #979696;
}
.breadcrumb_list_item :where(a, span) {
  color: #979696;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
/*
	フッター
*/
footer {
  position: relative;
}
.pagetop {
  cursor: pointer;
  z-index: 100;
  position: fixed;
  right: 2vw;
  max-width: 43px;
}
.footer_nav {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.footer_nav::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  background-image: radial-gradient(circle, #a360a0 1.5px, transparent 1.5px);
  background-position: 0 0;
  background-size: 12px 1px;
  position: absolute;
  bottom: 0;
}
.footer_nav_inner {
  box-sizing: content-box;
  padding: 0 15px;
  margin: 62px auto 0;
  max-width: 1200px;
}
.footer_nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 14px;
  gap: 10px 0;
  margin-top: 10px;
}
.footer_nav_list:first-child {
  margin-top: 0;
}
.footer_nav_item::before {
  content: "|";
  color: #969696;
  padding-inline: 1.25em;
}
.footer_nav_item:first-child::before {
  content: none;
  padding-inline: 0;
}
.footer_nav_item a {
  color: #969696;
}
.footer_nav_item a span {
  font-size: .8em;
}
.footer_bottom {
  background: #f5e6f5;
}
.footer_bottom_inner {
  padding: 25px 15px;
  margin: 0 auto;
  max-width: 1230px;
}
.footer_bottom_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer_logo {
  max-width: 373px;
}
.footer_copyright {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .footer_bottom_row {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 6.66vw;
    max-width: calc(52vw / 7.5);
  }
  .footer_nav {
    padding-bottom: calc(33vw / 7.5);
    margin-bottom: calc(15vw / 7.5);
  }
  .footer_nav_inner {
    padding: 0;
    margin-top: calc(80vw / 7.5);
    max-width: none;
  }
  .footer_nav_list {
    font-size: calc(22vw / 7.5);
    font-weight: 500;
    gap: calc(20vw / 7.5) 0;
    margin-top: calc(20vw / 7.5);
  }
  .footer_nav_item::before, .footer_nav_item:first-child::before, .footer_nav_item_sp_last::after {
    content: "|";
    color: #969696;
    padding-inline: 1em;
  }
  .footer_bottom_inner {
    padding: calc(24vw / 7.5) 2vw calc(40vw / 7.5);
    max-width: none;
  }
  .footer_bottom_row {
    gap: calc(13vw / 7.5);
  }
  .footer_logo {
    max-width: calc(544vw / 7.5);
  }
  .footer_copyright {
    font-size: calc(16vw / 7.5);
  }
}
.anc-seciton{
	margin-top: -90px;
	padding-top: 90px;
}
.asterisk {
  font-size: .6em;
  display: inline-block;
  vertical-align: text-top;
}