@charset "UTF-8";
/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
body, div, section, article, aside, nav,
h1, h2, h3, h4, h5, h6,
span, time, figure, figcaption,
p, blockquote, pre, address, code,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, button,
table, tbody, thead, tfoot, tr, th, td {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  word-break: break-all; }

header, main, aside, footer, section {
  display: block; }

h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%; }

ul, ol {
  list-style: none; }

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%; }

table {
  border-collapse: collapse; }

input,
select {
  vertical-align: middle; }

em {
  font-style: normal; }

button {
  background: none;
  border: none; }

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none; }

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px; }

/*----------------------------------------------------
	setting
----------------------------------------------------*/
/*
  mixin
*/
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-20px) rotate(10deg); } }
@keyframes fuwafuwa2 {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-20px) rotate(-10deg); } }
@keyframes fuwafuwa_sp {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px) rotate(10deg); } }
@keyframes fuwafuwa2_sp {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px) rotate(-10deg); } }
.motion-fuwafuwa {
  animation: 3s fuwafuwa infinite; }

@media screen and (max-width: 768px) {
  .motion-fuwafuwa {
    animation: 3s fuwafuwa_sp infinite; } }
.motion-fuwafuwa2 {
  animation: 3s fuwafuwa2 infinite; }

@media screen and (max-width: 768px) {
  .motion-fuwafuwa2 {
    animation: 3s fuwafuwa2_sp infinite; } }
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.motion-fadeup {
  opacity: 0; }

.motion-fadeup.-isAnimated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards; }

/*----------------------------------------------------
	basic
----------------------------------------------------*/
body {
  min-width: 1080px;
  color: #513f3f;
  font-size: 16px;
  font-size: 1rem;
  font-family: 'Jun 201', sans-serif;
  line-height: 2;
  background: #ffeeee; }

@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 14px;
    font-size: 0.875rem; } }
@media screen and (max-width: 768px) {
  html, body {
    height: 100%; } }
* {
  box-sizing: border-box; }

a:link {
  color: #513f3f;
  text-decoration: none; }

a:visited {
  color: #513f3f; }

a:hover {
  color: #513f3f; }

a:active {
  color: #513f3f; }

*[data-show="sp"] {
  display: none; }

@media screen and (max-width: 768px) {
  *[data-show="sp"] {
    display: block; } }
@media screen and (max-width: 768px) {
  *[data-show="pc"] {
    display: none; } }
/*----------------------------------------------------
	layout
----------------------------------------------------*/
/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  padding: 17px 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

.header .contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto; }

.header__logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px dashed #513f3f;
  width: 24%;
  max-width: 260px; }

.header.fixed {
  position: fixed; }

.header.fixed .utility-nav {
  display: none; }

@media screen and (max-width: 768px) {
  .header {
    padding: 0;
    height: 60px; }

  .header .contents {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between; }

  .header__logo {
    border: 0;
    width: auto;
    max-width: none; }

  .header__logo img {
    width: 150px; }

  .header.fixed .utility-nav {
    display: flex; } }
/*----------------------------------------------------
	nav
----------------------------------------------------*/
.nav {
  width: 74%;
  position: relative;
  z-index: 1;
  padding: 5px 0; }

.nav-ttl {
  display: none; }

.nav-list {
  display: flex;
  justify-content: space-between;
  padding: 0 6px; }

.nav-list li {
  font-weight: bold;
  width: calc(100% / 6); }

.nav-list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s;
  text-align: center;
  letter-spacing: 0.069em;
  line-height: 0;
  font-family: 'Jun 501', sans-serif; }

.nav-list li a img {
  height: 45px;
  margin-bottom: 10px; }

.nav-list li a span {
  display: block;
  margin-top: auto; }

.nav-list li a:hover, .nav-list li a.-active {
  color: #d84993; }

.nav .utility-nav {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: -60px;
  display: flex; }

.nav .utility-nav li {
  margin-left: 30px; }

.nav .utility-nav li a {
  display: flex;
  align-items: center; }

.nav .utility-nav li a:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  margin-right: 8px;
  margin-top: 2px;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #513f3f; }

@media screen and (max-width: 768px) {
  .nav {
    position: static; }

  .nav-ttl {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #ffedf0;
    color: #d84993;
    font-size: 10px;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: center; }

  .nav-ttl:before {
    content: "";
    display: block;
    width: 18px;
    height: 16px;
    background: url(../img/share/menu.svg) center no-repeat;
    background-size: contain; }

  .nav-ttl.-active:before {
    width: 16px;
    height: 16px;
    background-image: url(../img/share/close.svg); }

  .nav-wrap {
    position: absolute;
    top: 60px;
    left: 0;
    padding: 17px 14px;
    background: #ffedf0; }

  .nav-list {
    flex-wrap: wrap;
    padding: 0; }

  .nav-list li {
    width: calc(100% / 2 - 7px);
    margin: 0 0 14px;
    font-size: 12px;
    font-size: 0.75rem; }

  .nav-list li a {
    padding: 15px;
    border-radius: 10px;
    background: #fff; }

  .nav-list li a img {
    height: 25px;
    margin-bottom: 10px; }

  .nav .utility-nav {
    position: static;
    display: flex;
    justify-content: space-between; }

  .nav .utility-nav li {
    width: calc(100% / 2 - 7px);
    margin: 0;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem; }

  .nav .utility-nav li a {
    justify-content: center; } }
/*----------------------------------------------------
	main
----------------------------------------------------*/
/*----------------------------------------------------
	2column layout
----------------------------------------------------*/
.column-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px; }

.column-wrap .main {
  width: 720px;
  margin-right: 45px;
  padding-top: 0; }

.column-wrap .aside {
  width: 235px;
  padding-top: 13px; }

.column-wrap .aside-title {
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 5px solid #000;
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1; }

@media screen and (max-width: 768px) {
  .column-wrap {
    /* ---------------------------SP */
    display: block;
    padding-top: 10px; }

  .column-wrap .main,
  .column-wrap .aside {
    width: auto; }

  .column-wrap .main {
    margin: 0 0 50px; }

  .column-wrap .aside {
    padding: 0; }

  .column-wrap .aside-title {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 2px solid #000;
    font-size: 20px;
    font-size: 1.25rem; } }
/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  text-align: center; }

.footer-detail {
  padding-top: 190px;
  padding-bottom: 160px;
  background: url(../img/share/bg_footer.jpg) center top no-repeat;
  background-size: cover; }

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(60px - (((38px * 1.5) - 38px) / 2));
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 0.03em;
  font-weight: bold; }

.footer__logo svg {
  margin-bottom: 30px;
  max-width: 100%; }

.footer__logo svg use {
  stroke-width: 6px;
  paint-order: stroke;
  stroke-linejoin: round;
  stroke: #fff;
  fill: #d84993;
  font-size: 1.875rem;
  letter-spacing: 0.14em;
  text-anchor: middle;
  dominant-baseline: alphabetic;
  font-weight: bold; }

.footer__logo .corp {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  font-weight: normal; }

.footer__logo .ns_title {
  font-family: 'Jun 501', sans-serif; }

.footer__address {
  display: inline-flex;
  flex-direction: column;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff; }

.footer__address p {
  margin-bottom: calc(25px - (((20px * 1.5) - 20px) / 2)); }

.footer__address .tel {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.footer__address .mail {
  text-align: left; }

.footer__address .mail a {
  color: #d84993; }

.footer-contents {
  padding: 70px 20px 15px;
  background: #efb9c2; }

.footer-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 50px; }

.footer-nav-list {
  width: 190px;
  margin: 0 40px; }

.footer-nav-list li a {
  display: block;
  padding: 18px 5px;
  padding-top: calc(18px - (((18px * 1.5) - 18px) / 2));
  padding-bottom: calc(18px - (((18px * 1.5) - 18px) / 2));
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed #fff;
  text-align: left;
  transition: .3s;
  font-family: 'Jun 501', sans-serif; }

.footer-nav-list li a:hover {
  background: #d84993; }

.footer .pagetop {
  position: relative; }

.footer .pagetop a {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 134px;
  height: 91px;
  margin-left: auto;
  padding-top: 45px;
  background: url(../img/share/pagetop.png) no-repeat;
  background-size: contain;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: bold;
  transition: .3s; }

.footer .pagetop a:hover {
  transform: scale(1.2); }

.footer .copyright {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 0 15px; }

@media screen and (max-width: 768px) {
  .footer-detail {
    position: relative;
    padding: 0;
    padding-bottom: 108.28%;
    background-image: url(../img/share/bg_footer_sp.jpg); }

  .footer-detail-wrap {
    padding-top: 67px;
    padding-bottom: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

  .footer__logo {
    margin-bottom: calc(30px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.1em; }

  .footer__logo svg {
    margin-bottom: 10px;
    max-width: 100%; }

  .footer__logo svg use {
    stroke-width: 6px;
    paint-order: stroke;
    stroke-linejoin: round;
    stroke: #fff;
    fill: #d84993;
    font-size: 1.5rem;
    letter-spacing: 0.14em;
    text-anchor: middle;
    dominant-baseline: alphabetic;
    font-weight: bold; }

  .footer__logo .corp {
    font-size: 10px;
    font-size: 0.625rem;
    letter-spacing: 0.018em; }

  .footer__address {
    display: block;
    padding: 0 27px;
    text-align: left;
    font-size: 12px;
    font-size: 0.75rem; }

  .footer__address p {
    margin: 0;
    line-height: 2.5; }

  .footer__address .tel {
    display: block; }

  .footer__address .tel span {
    display: block;
    line-height: 2.5; }

  .footer-contents {
    padding: 0 0 10px; }

  .footer-nav {
    display: block;
    margin-bottom: 20px; }

  .footer-nav-list {
    width: auto;
    margin: 0; }

  .footer-nav-list li a {
    display: block;
    padding: 15px 27px;
    padding-top: calc(15px - (((14px * 1.5) - 14px) / 2));
    padding-bottom: calc(15px - (((14px * 1.5) - 14px) / 2));
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em; }

  .footer .pagetop a {
    width: calc(134px / 2);
    height: calc(91px / 2);
    padding-top: calc(45px / 2);
    font-size: 9px;
    font-size: 0.5625rem; }

  .footer .copyright {
    font-size: 9px;
    font-size: 0.5625rem;
    letter-spacing: 0.05em; } }
@media screen and (max-width: 768px) and (min-width: 500px) {
  .footer-detail-wrap {
    width: 78%;
    left: 50%;
    transform: translate(-50%, -50%); } }
/*----------------------------------------------------
	0.basic
----------------------------------------------------*/
.is-left {
  text-align: left; }

.is-center {
  text-align: center; }

.is-right {
  text-align: right; }

.column-wrap, .footer .pagetop, .section .contents {
  width: 1053px;
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  .column-wrap, .footer .pagetop, .section .contents {
    width: auto;
    margin: 0 25px; } }
/* タイトル */
.page-ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 334px;
  background: url(../img/share/bg_title.jpg) center no-repeat;
  background-size: cover;
  text-align: center;
  font-family: 'Jun 501', sans-serif;
  font-size: 40px;
  color: #d1498b;
  letter-spacing: .1em;
  text-shadow: 0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff; }

.page-ttl:after {
  position: absolute;
  bottom: -57px;
  content: "";
  display: block;
  width: 100%;
  height: 85px;
  background: url(../img/share/title_flag.png) center no-repeat;
  background-size: auto 100%; }

.page-ttl > svg > use {
  stroke-width: 6px;
  paint-order: stroke;
  stroke-linejoin: round;
  stroke: #fff;
  fill: #d84993;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.075em;
  text-anchor: middle;
  dominant-baseline: alphabetic;
  font-weight: bold; }

@media screen and (max-width: 768px) {
  .page-ttl {
    height: 110px;
    font-size: 8vw; }

  .page-ttl:after {
    bottom: -33px;
    height: 50px; }

  .page-ttl text {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.05em; }

  .page-ttl > svg > use {
    stroke-width: 3px; } }
.ttl-l2 {
  margin-bottom: 50px;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: bold;
  font-family: 'Jun 501', sans-serif; }

.ttl-l2 span {
  display: block;
  margin-bottom: calc(13px - (((26px * 1.5) - 26px) / 2));
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.14em;
  color: #d84993; }

@media screen and (max-width: 768px) {
  .ttl-l2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-size: 1.25rem; }

  .ttl-l2 span {
    font-size: 13px;
    font-size: 0.8125rem; } }
.headline {
  margin-bottom: 50px;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #d84993;
  font-weight: bold; }

.headline span {
  color: #ffad9c; }

@media screen and (max-width: 768px) {
  .headline {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.05em; } }
/* セクション */
.section {
  padding: 90px 0 120px; }

.section.-bg {
  position: relative;
  margin-top: 90px;
  background: #ffeeee; }

.section.-bg:before {
  position: absolute;
  top: -80px;
  content: "";
  display: block;
  width: 100%;
  height: 83px;
  background: url(../img/share/line_section.svg) center no-repeat;
  background-size: auto  100%; }

@media screen and (max-width: 768px) {
  .section {
    padding: 45px 0 60px; }

  .section.-bg {
    margin-top: 45px; }

  .section.-bg:before {
    top: -40px;
    height: 43px; } }
/* リスト */
.list-ul {
  margin-bottom: 2em; }

.list-ul li {
  padding-left: 1em; }

.list-ul li:before {
  content: "・";
  margin-left: -1em; }

.list-ol {
  margin-bottom: 2em; }

.list-ol li {
  counter-increment: entry-ol;
  margin-bottom: 10px;
  padding-left: 1em; }

.list-ol li:before {
  content: counter(entry-ol);
  margin-right: .2em;
  margin-left: -.8em; }

/* text */
.txt-note {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  background: #ffeeee;
  background-image: linear-gradient(90deg, transparent 0%, transparent 49%, #ffeeee 50%, #ffeeee 100%), linear-gradient(180deg, transparent 0%, transparent 98.5%, #c84983 100%);
  background-repeat: repeat-x,repeat-y;
  background-size: 8px 100%, 100% 3em;
  line-height: 3em; }

@media screen and (max-width: 768px) {
  .txt-note {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    background-size: 4px 100%, 100% 3em; } }
/* btn */
.btn {
  text-align: center; }

.btn a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 160px;
  background: url(../img/share/btn.svg) center no-repeat;
  background-size: contain;
  color: #d84993;
  text-align: center;
  transition: .3s;
  font-weight: bold; }

.btn a span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: -.5em; }

.btn a span:before {
  transition: .3s;
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23d84993%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px; }

.btn a:hover {
  transform: scale(1.2);
  background-image: url(../img/share/btn_hover.svg);
  color: #fff; }

.btn a:hover span:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  animation: btnHoverAnimation ease-in-out .8s; }

@media screen and (max-width: 768px) {
  .btn a {
    position: relative;
    width: 200px;
    height: 131px; } }
@keyframes btnHoverAnimation {
  0% {
    transform: translateX(0); }
  25% {
    transform: translateX(10px); }
  50% {
    transform: translateX(5px); }
  75% {
    transform: translateX(10px); }
  100% {
    transform: translateX(0); } }
.link {
  text-align: right; }

.link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 65px;
  color: #d84993;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.075em;
  transition: .3s; }

.link a:after {
  position: absolute;
  right: 20px;
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23d84993%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: .3s; }

.link a:hover:after {
  right: 0; }

@media screen and (max-width: 768px) {
  .link a {
    padding-right: 20px;
    font-size: 14px;
    font-size: 0.875rem; }

  .link a:after {
    right: 0;
    content: "";
    display: inline-block;
    width: 14px;
    height: 12px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23d84993%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: contain; } }
/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.-top {
  background: #fff; }

.-top .main {
  padding-top: 60px;
  background: url(../img/top/bg.jpg) center top no-repeat;
  background-size: contain; }

@media screen and (max-width: 768px) {
  .-top .main {
    padding-top: 0;
    background-image: url(../img/top/bg_sp.jpg); } }
.mainvisual {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 30px; }

.mainvisual__img img {
  border: 4px solid #fff;
  border-radius: 73px; }

.mainvisual__txt {
  position: absolute;
  top: 50%;
  right: 65px;
  transform: translateY(-50%); }

.mainvisual__logo {
  position: absolute;
  right: 40px;
  bottom: -120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 437px;
  height: 185px;
  padding-bottom: 35px;
  background: url(../img/share/rainbow.png) center no-repeat;
  background-size: contain; }

.mainvisual__logo svg {
  display: none; }

@media screen and (max-width: 768px) {
  .mainvisual {
    max-width: 100%;
    margin: 0; }

  .mainvisual__img {
    width: 100%;
    padding-top: 88.67%;
    background: url(../img/top/mv_sp.jpg) center no-repeat;
    background-size: contain; }

  .mainvisual__img img {
    display: none; }

  .mainvisual__txt {
    position: relative;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    transform: translateY(0);
    width: 100%;
    margin-top: -26.56%;
    padding-bottom: 56.25%;
    background: url(../img/top/bg_mv.png) center bottom no-repeat;
    background-size: contain;
    z-index: 1; }

  .mainvisual__txt img {
    position: absolute;
    top: 50.63%;
    left: 50%;
    transform: translateX(-50%);
    width: 84.38%; }

  .mainvisual__logo {
    position: relative;
    right: auto;
    bottom: auto;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: -40px;
    margin-bottom: -15px;
    padding-bottom: 22.97%;
    background-size: 56.25% auto; }

  .mainvisual__logo svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    max-width: 100%; }

  .mainvisual__logo svg use {
    stroke-width: 6px;
    paint-order: stroke;
    stroke-linejoin: round;
    stroke: #fff;
    fill: #d84993;
    font-size: 1.5rem;
    letter-spacing: 0.124em;
    text-anchor: middle;
    dominant-baseline: alphabetic;
    font-weight: bold; }

  .mainvisual__logo img {
    display: none; } }
.top-info {
  position: relative;
  display: flex;
  align-items: flex-start; }

.top-info-news {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  background: #fff;
  border-radius: 0 50px 50px 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3); }

.top-info-news a {
  position: relative;
  display: flex;
  align-items: center;
  max-width: calc(1080px / 2);
  width: 100%;
  padding: 30px;
  font-size: 18px;
  font-size: 1.125rem;
  transition: .3s; }

.top-info-news a span {
  margin-right: 1em;
  color: #d84993; }

.top-info-news a:after {
  position: absolute;
  right: 36px;
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23d84993%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: .3s; }

.top-info-news a:hover {
  color: #d84993; }

.top-info-news a:hover:after {
  right: 16px; }

.top-info__img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 437px;
  height: 185px;
  margin-left: 70px;
  margin-top: -80px;
  padding-bottom: 35px;
  background: url(../img/share/rainbow.png) center no-repeat;
  background-size: contain; }

@media screen and (max-width: 768px) {
  .top-info {
    display: block; }

  .top-info-news {
    width: calc(100% - 30px);
    margin: 0 auto;
    border-radius: 50px; }

  .top-info-news a {
    max-width: 100%;
    padding: 7px 20px;
    font-size: 12px;
    font-size: 0.75rem; }

  .top-info-news a span {
    margin-right: 10px;
    padding: 10px;
    border-right: 1px dashed #513f3f; }

  .top-info-news a:after {
    position: absolute;
    right: 20px;
    width: calc(25px / 2);
    height: calc(21px / 2); }

  .top-info-news a:hover:after {
    right: 10px; }

  .top-info__img {
    width: auto; }

  .top-info__img svg {
    display: block;
    max-width: 100%; }

  .top-info__img svg use {
    stroke-width: 6px;
    paint-order: stroke;
    stroke-linejoin: round;
    stroke: #fff;
    fill: #d84993;
    font-size: 0.875rem;
    letter-spacing: 0.124em;
    text-anchor: middle;
    dominant-baseline: alphabetic;
    font-weight: bold; }

  .top-info__img img {
    display: none; } }
.top-contents .contents {
  max-width: 100%; }

.top-contents-section {
  position: relative;
  max-width: 1050px;
  margin: 0 auto; }

.top-contents-section__img img {
  border-radius: 34px; }

.top-contents-section.-philosophy {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 100px;
  padding-bottom: 130px; }

.top-contents-section.-philosophy .ttl-l2 {
  letter-spacing: 0em; }

.top-contents-section.-philosophy .ttl-l2:before {
  content: "";
  display: block;
  width: 52px;
  height: 88px;
  margin: 0 auto 30px;
  background: url(../img/share/candol.png) center no-repeat;
  background-size: contain; }

.top-contents-section.-philosophy p {
  width: 450px;
  margin: 0 auto;
  margin-bottom: calc(60px - (((18px * 2.6) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.6; }

.top-contents-section.-philosophy .icon01 {
  position: absolute;
  top: 0;
  left: 154px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 160px; }

.top-contents-section.-philosophy .icon01 img:nth-of-type(1) {
  width: 36px;
  margin-left: auto;
  margin-bottom: 10px; }

.top-contents-section.-philosophy .icon02 {
  position: absolute;
  top: 40px;
  right: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 154pxm; }

.top-contents-section.-philosophy .icon02 img:nth-of-type(1) {
  order: 2;
  width: 73px;
  margin-left: auto;
  margin-top: 44px; }

.top-contents-section.-philosophy .img01,
.top-contents-section.-philosophy .img02,
.top-contents-section.-philosophy .img03 {
  position: absolute; }

.top-contents-section.-philosophy .img01 {
  top: 206px;
  left: 0; }

.top-contents-section.-philosophy .img02 {
  left: 100px;
  bottom: 0; }

.top-contents-section.-philosophy .img03 {
  right: 0;
  bottom: 0; }

.top-contents-section.-facility {
  display: flex;
  padding-top: 50px;
  background: url(../img/top/img01.png) right top no-repeat;
  z-index: 1; }

.top-contents-section.-facility .ttl-l2 {
  margin-right: 20px;
  writing-mode: vertical-rl;
  text-align: inherit; }

.top-contents-section.-facility .ttl-l2 span {
  position: absolute;
  top: 0;
  left: 80px;
  writing-mode: horizontal-tb; }

.top-contents-section.-facility .btn {
  position: absolute;
  left: 0;
  bottom: -57px; }

.top-contents-section.-schedule {
  display: flex;
  flex-direction: row-reverse;
  margin-top: -140px;
  margin-bottom: 80px;
  padding-top: 50px;
  background: url(../img/top/img02.png) left bottom no-repeat; }

.top-contents-section.-schedule .ttl-l2 {
  margin-left: 20px;
  writing-mode: vertical-rl;
  text-align: inherit; }

.top-contents-section.-schedule .ttl-l2 span {
  position: absolute;
  top: 0;
  right: 250px;
  writing-mode: horizontal-tb; }

.top-contents-section.-schedule .btn {
  position: absolute;
  right: 0;
  bottom: -57px; }

.top-contents-section.-event {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px; }

.top-contents-section.-event .ttl-l2 {
  margin-right: 20px;
  writing-mode: vertical-rl;
  text-align: inherit; }

.top-contents-section.-event .ttl-l2 span {
  position: absolute;
  top: 0;
  left: 80px;
  writing-mode: horizontal-tb; }

.top-contents-section.-event .btn {
  position: absolute;
  left: 0;
  bottom: -57px; }

.top-contents-section.-event .link {
  width: calc(100% - 50px);
  margin-top: 36px; }

@media screen and (max-width: 768px) {
  .top-contents .contents {
    max-width: 100%;
    margin: 0; }

  .top-contents-section {
    position: relative;
    max-width: 1050px;
    margin: 0 auto; }

  .top-contents-section__img {
    width: 77.19%; }

  .top-contents-section__img img {
    border-radius: 15px 0 0 15px; }

  .top-contents-section__img02 {
    width: 77.19%;
    margin-left: auto; }

  .top-contents-section.-philosophy {
    max-width: 100%;
    margin-bottom: 35px;
    padding-bottom: 0;
    background: none; }

  .top-contents-section.-philosophy .ttl-l2:before {
    width: 25px;
    height: 44px;
    margin: 0 auto 30px; }

  .top-contents-section.-philosophy p {
    width: auto;
    margin-bottom: calc(30px - (((14px * 2.5) - 14px) / 2));
    padding: 20px;
    font-size: 14px;
    font-size: 0.875rem; }

  .top-contents-section.-philosophy .icon01 {
    top: 0;
    left: 20px;
    width: 80px; }

  .top-contents-section.-philosophy .icon01 img:nth-of-type(1) {
    width: 18px;
    margin-bottom: 6px; }

  .top-contents-section.-philosophy .icon01 img:nth-of-type(2) {
    width: 58px; }

  .top-contents-section.-philosophy .icon02 {
    top: 180px;
    right: 25px;
    width: 76px; }

  .top-contents-section.-philosophy .icon02 img:nth-of-type(1) {
    width: 36px;
    margin-top: 15px; }

  .top-contents-section.-philosophy .icon02 img:nth-of-type(2) {
    width: 60px; }

  .top-contents-section.-philosophy .img01,
  .top-contents-section.-philosophy .img02,
  .top-contents-section.-philosophy .img03 {
    position: static; }

  .top-contents-section.-philosophy .img01 {
    margin-left: 10px; }

  .top-contents-section.-philosophy .img01 img {
    width: 60.94%; }

  .top-contents-section.-philosophy .img03 {
    margin-top: -34px;
    margin-right: 5px;
    text-align: right; }

  .top-contents-section.-philosophy .img03 img {
    width: 58.44%; }

  .top-contents-section.-philosophy .img02 {
    margin-left: 7px;
    margin-top: -48px; }

  .top-contents-section.-philosophy .img02 img {
    width: 51.56%; }

  .top-contents-section.-facility {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 30px;
    background: none;
    z-index: 1; }

  .top-contents-section.-facility .ttl-l2 {
    margin-right: 10px; }

  .top-contents-section.-facility .ttl-l2 span {
    left: calc(100% - 77.19%); }

  .top-contents-section.-facility .top-contents-section__img02 {
    overflow: hidden; }

  .top-contents-section.-facility .top-contents-section__img02 img {
    position: relative;
    right: -20px; }

  .top-contents-section.-facility .btn {
    position: absolute;
    left: 0;
    bottom: 20%; }

  .top-contents-section.-schedule {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding-top: 30px;
    background: none; }

  .top-contents-section.-schedule .ttl-l2 {
    margin-left: 10px; }

  .top-contents-section.-schedule .ttl-l2 span {
    right: calc(100% - 77.19%); }

  .top-contents-section.-schedule .top-contents-section__img img {
    border-radius: 0 15px 15px 0; }

  .top-contents-section.-schedule .top-contents-section__img02 {
    margin-left: 0;
    margin-right: auto; }

  .top-contents-section.-schedule .btn {
    position: absolute;
    right: 0;
    bottom: 20%; }

  .top-contents-section.-event {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 30px;
    background: none;
    z-index: 1; }

  .top-contents-section.-event .ttl-l2 {
    margin-right: 10px; }

  .top-contents-section.-event .ttl-l2 span {
    left: calc(100% - 77.19%); }

  .top-contents-section.-event .top-contents-section__img {
    padding-top: 67.45%;
    background: url(../img/top/img_event_sp.jpg) center no-repeat;
    background-size: contain;
    border-radius: 15px 0 0 15px; }

  .top-contents-section.-event .top-contents-section__img img {
    display: none; }

  .top-contents-section.-event .btn {
    bottom: -30px; }

  .top-contents-section.-event .link {
    margin-top: 10px;
    margin-right: 20px; } }
.top-news {
  padding-top: 0; }

.top-news .news-list {
  margin-bottom: 30px; }

.top-news .news-list a:not([href$=".pdf"]):before, .top-news .news-list a:not([href$=".pdf"]):after {
  position: absolute;
  right: 0;
  border-radius: 30px;
  transition: .3s; }

.top-news .news-list a:not([href$=".pdf"]):after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23d84993%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 56px;
  background-color: #ffc6cb;
  background-size: 16px auto;
  background-position: center;
  border: 1px solid #a34980;
  color: #c94984;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box; }

.top-news .news-list a:not([href$=".pdf"]):before {
  right: 1px;
  content: "";
  width: 126px;
  height: 52px;
  border: 1px solid #fff;
  border-radius: 28px;
  z-index: 1; }

.top-news .news-list a:not([href$=".pdf"]):hover:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.15%22%20height%3D%2221.53%22%20viewBox%3D%220%200%2025.15%2021.53%22%3E%3Cpolygon%20points%3D%2213.4%2020.54%2022.47%2011.46%200%2011.46%200%2010.06%2022.47%2010.06%2013.4%20.99%2014.39%200%2025.15%2010.76%2014.39%2021.53%2013.4%2020.54%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 56px;
  background-color: #d84993;
  background-size: 16px auto;
  background-position: center;
  border-color: #ffc6cb; }

@media screen and (max-width: 768px) {
  .top-news .news-list {
    margin-bottom: 15px; }

  .top-news .news-list a:not([href$=".pdf"]) {
    padding-right: 70px; }

  .top-news .news-list a:not([href$=".pdf"]):after {
    width: 65px;
    height: 28px;
    font-size: 10px;
    font-size: 0.625rem; }

  .top-news .news-list a:not([href$=".pdf"]):before {
    width: 61px;
    height: 24px; }

  .top-news .link {
    margin: 0 -5px; } }
.top-access .contents {
  position: relative;
  display: flex;
  max-width: 1000px;
  padding-top: 50px; }

.top-access .ttl-l2 {
  margin-right: 50px;
  writing-mode: vertical-rl;
  text-align: inherit; }

.top-access .ttl-l2 span {
  position: absolute;
  top: 0;
  left: 110px;
  writing-mode: horizontal-tb; }

.top-access-map {
  display: flex;
  align-items: flex-start; }

.top-access-map-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 59.55%;
  padding: 25px 25px 30px;
  border: 1px solid #513f3f;
  border-radius: 20px; }

.top-access-map-detail__img {
  margin-bottom: 25px; }

.top-access-map-detail p {
  letter-spacing: 0.2em;
  line-height: 1.75; }

.top-access-map-detail p .tel {
  font-size: 22px;
  font-size: 1.375rem;
  color: #c94984;
  font-weight: bold; }

.top-access-map-detail p .tel a {
  color: #c94984 !important; }

.top-access-map__txt {
  margin: 40px 60px;
  font-size: 18px;
  font-size: 1.125rem;
  background: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 49%, #fff 50%, #fff 100%), linear-gradient(180deg, transparent 0%, transparent 98.5%, #513f3f 100%);
  background-repeat: repeat-x,repeat-y;
  background-size: 8px 100%, 100% 3em;
  line-height: 3em; }

.top-access-map__txt a {
  font-weight: bold;
  color: #c94984; }

@media screen and (max-width: 768px) {
  .top-access .contents {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding-top: 30px; }

  .top-access .ttl-l2 {
    margin-right: 10px; }

  .top-access .ttl-l2 span {
    left: 40px; }

  .top-access-map {
    display: block; }

  .top-access-map-detail {
    align-items: flex-start;
    width: auto;
    padding: 17px 10px 30px;
    border-radius: 10px; }

  .top-access-map-detail__img {
    margin-bottom: 15px; }

  .top-access-map-detail p {
    letter-spacing: 0.1em; }

  .top-access-map-detail p .tel {
    font-size: 14px;
    font-size: 0.875rem; }

  .top-access-map__txt {
    margin: 20px 0;
    font-size: 14px;
    font-size: 0.875rem;
    background-size: 4px 100%, 100% 3em; } }
/*----------------------------------------------------
	保育園について
----------------------------------------------------*/
.-philosophy {
  background: #fff; }

.section-ttl-group {
  position: relative;
  max-width: 895px;
  margin: 0 auto 95px; }

.section-ttl-group:before, .section-ttl-group:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; }

.section-ttl-group:before {
  left: 0;
  width: 51px;
  height: 87px;
  background-image: url(../img/share/candol.png); }

.section-ttl-group:after {
  right: 0;
  width: 70px;
  height: 84px;
  background-image: url(../img/share/star.png); }

@media screen and (max-width: 768px) {
  .section-ttl-group {
    max-width: 100%;
    margin: 0 auto 35px; }

  .section-ttl-group .ttl-l2 {
    margin-bottom: 20px; }

  .section-ttl-group .headline {
    text-indent: -.5em; }

  .section-ttl-group:before, .section-ttl-group:after {
    top: 5px;
    transform: translateY(0%); }

  .section-ttl-group:before {
    left: 25px;
    width: calc(51px / 2);
    height: calc(87px / 2); }

  .section-ttl-group:after {
    right: 25px;
    width: calc(70px / 2);
    height: calc(84px / 2); } }
.policy {
  max-width: 920px;
  margin: 0 auto; }

.policy-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 85px; }

.policy-section-detail {
  order: 2;
  width: calc(100% - 46.3% - 30px); }

.policy-section-detail p {
  padding: 0 15px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 2.6; }

.policy-section__ttl {
  margin-bottom: calc(40px - (((30px * 1.5) - 30px) / 2));
  padding-bottom: calc(32px - (((30px * 1.5) - 30px) / 2));
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.025em;
  text-align: center;
  border-bottom: 1px dashed #d84993;
  font-family: 'Jun 501', sans-serif; }

.policy-section__ttl span {
  color: #d84993; }

.policy-section__ttl .num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 30px;
  font-size: 36px;
  font-size: 2.25rem;
  color: #d84993;
  background: url(../img/philosophy/bg_num.svg) center no-repeat;
  background-size: 100px auto; }

.policy-section__img {
  order: 1;
  position: relative;
  flex-shrink: 0;
  width: 46.3%; }

.policy-section__img img {
  position: relative;
  border-radius: 40px; }

.policy-section__img:before {
  position: absolute;
  top: 40px;
  left: -30px;
  z-index: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffe7e7;
  border-radius: 40px; }

.policy-section:nth-of-type(2) .policy-section-detail {
  order: 1; }

.policy-section:nth-of-type(2) .policy-section__img {
  order: 2; }

@media screen and (max-width: 768px) {
  .policy {
    max-width: 100%; }

  .policy-section {
    display: block;
    margin-bottom: 50px; }

  .policy-section-detail {
    width: auto;
    margin-bottom: 20px; }

  .policy-section-detail p {
    font-size: 14px;
    font-size: 0.875rem; }

  .policy-section__ttl {
    margin-bottom: calc(16px - (((18px * 1.5) - 18px) / 2));
    padding-bottom: calc(16px - (((18px * 1.5) - 18px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.075em; }

  .policy-section__ttl .num {
    height: 50px;
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.125rem;
    background-size: 50px auto; }

  .policy-section__img {
    width: auto;
    padding-left: 20px; }

  .policy-section__img img {
    position: relative;
    border-radius: 23px; }

  .policy-section__img:before {
    top: 22px;
    left: 0;
    width: calc(100% - 23px);
    border-radius: 23px; }

  .policy-section:nth-of-type(2) .policy-section__img {
    padding: 0;
    padding-right: 23px; }

  .policy-section:nth-of-type(2) .policy-section__img:before {
    left: auto;
    right: 0; }

  .policy-section:last-child {
    margin-bottom: 0; } }
.section.-goals {
  padding-top: 0; }

.section.-goals .ttl-l2:before {
  content: "";
  display: block;
  width: 480px;
  height: 150px;
  margin: 0 auto 20px;
  background: url(../img/share/flag.png) center no-repeat;
  background-size: contain; }

@media screen and (max-width: 768px) {
  .section.-goals .contents {
    margin: 0 17px; }

  .section.-goals .ttl-l2:before {
    width: calc(435px / 2);
    height: calc(136px / 2);
    margin: 0 auto 15px; } }
.goals-intro {
  max-width: 1050px;
  margin: 0 auto; }

.goals-intro__img img {
  border-radius: 40px; }

.goals-intro-txt {
  margin-top: calc(60px - (((22px * 3) - 22px) / 2));
  margin-bottom: calc(120px - (((22px * 3) - 22px) / 2)); }

.goals-intro-txt p {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  background: #ffeeee;
  background-image: linear-gradient(90deg, transparent 0%, transparent 49%, #ffeeee 50%, #ffeeee 100%), linear-gradient(180deg, transparent 0%, transparent 98.5%, #c84983 100%);
  background-repeat: repeat-x,repeat-y;
  background-size: 8px 100%, 100% 3em;
  line-height: 3em; }

.goals-intro-txt p strong {
  color: #d84993;
  font-weight: normal; }

.goals-hope .headline {
  margin-bottom: 100px; }

.goals-hope .headline span {
  color: inherit;
  font-family: 'Jun 501', sans-serif; }

.goals-hope .headline:before {
  content: "";
  display: block;
  width: 293px;
  height: 120px;
  margin: 0 auto;
  background: url(../img/share/rainbow.png) center no-repeat;
  background-size: contain; }

.goals-hope-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px; }

.goals-hope-list-item {
  position: relative;
  width: calc(100% / 3 - 6px);
  padding: 27px 20px 60px;
  border: 2px solid #d84993;
  background: #fff;
  border-radius: 50px;
  counter-increment: counter; }

.goals-hope-list-item:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  content: counter(counter,decimal-leading-zero);
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffa392; }

.goals-hope-list-item:after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  content: "";
  display: block;
  width: 55px;
  height: 35px;
  background: #fff;
  border-radius: 12px; }

.goals-hope-list-item-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 0 20px;
  font-size: 24px;
  font-size: 1.5rem;
  border-radius: 30px 30px 0 0;
  background: #fff3f3;
  color: #c84983;
  text-align: center;
  font-weight: bold;
  line-height: 2;
  font-family: 'Jun 501', sans-serif; }

.goals-hope-list-item-ttl span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #ffa392;
  font-family: 'Jun 201', sans-serif; }

.goals-hope-list-item-ttl img {
  margin-bottom: 20px; }

.goals-hope-list-item p {
  padding: 0 15px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2; }

.goals-hope-list-item p span {
  color: #ffa392; }

.goals-hope-message p {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.025em;
  margin-bottom: 80px;
  background: #ffeeee;
  background-image: linear-gradient(90deg, transparent 0%, transparent 49%, #ffeeee 50%, #ffeeee 100%), linear-gradient(180deg, transparent 0%, transparent 98.5%, #c84983 100%);
  background-repeat: repeat-x,repeat-y;
  background-size: 8px 100%, 100% 3em;
  line-height: 3em;
  text-align: center; }

.goals-hope-message p .goals-hope-message__txt {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #ffa392;
  font-weight: bold;
  font-family: 'Jun 501', sans-serif; }

.goals-hope-message p .goals-hope-message__txt span {
  color: #c84983; }

.goals-hope-message__img img {
  border-radius: 40px; }

@media screen and (max-width: 768px) {
  .goals-intro {
    max-width: 100%; }

  .goals-intro__img {
    margin: 0 -17px;
    width: calc(100% + 34px);
    padding-top: 83.92%;
    background: url(../img/philosophy/img_goals01_sp.jpg) no-repeat;
    background-size: contain; }

  .goals-intro__img img {
    display: none; }

  .goals-intro-txt {
    margin-top: calc(30px - (((14px * 3) - 14px) / 2));
    margin-bottom: calc(30px - (((14px * 3) - 14px) / 2)); }

  .goals-intro-txt p {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    background-size: 4px 100%, 100% 3em; }

  .goals-hope .headline {
    margin-bottom: 45px;
    font-size: 24px;
    font-size: 1.5rem; }

  .goals-hope .headline span {
    color: inherit; }

  .goals-hope .headline:before {
    width: calc(324px / 2);
    height: calc(133px / 2); }

  .goals-hope-list {
    display: block;
    margin-bottom: 30px; }

  .goals-hope-list-item {
    width: 80.7%;
    margin: 0 auto 35px;
    padding: 13px 10px 30px;
    border-radius: 25px; }

  .goals-hope-list-item:before {
    font-size: 18px;
    font-size: 1.125rem; }

  .goals-hope-list-item:after {
    width: 30px;
    height: 17px; }

  .goals-hope-list-item-ttl {
    margin-bottom: 18px;
    padding: 10px 0 15px;
    font-size: 18px;
    font-size: 1.125rem;
    border-radius: 15px 15px 0 0; }

  .goals-hope-list-item-ttl span {
    font-size: 12px;
    font-size: 0.75rem; }

  .goals-hope-list-item-ttl img {
    height: 40px;
    margin-bottom: 5px; }

  .goals-hope-list-item p {
    padding: 0 5px;
    font-size: 14px;
    font-size: 0.875rem; }

  .goals-hope-message {
    margin-bottom: -60px; }

  .goals-hope-message p {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 30px;
    padding: 0 10px;
    background-size: 4px 100%, 100% 3em;
    line-height: 3;
    text-align: left; }

  .goals-hope-message p .goals-hope-message__txt {
    display: block;
    margin: 0 -10px;
    margin-bottom: calc(-1.5em - 15px);
    padding-bottom: 15px;
    background: #ffeeee;
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
    white-space: nowrap; }

  .goals-hope-message__img {
    margin: 0 -17px;
    width: calc(100% + 34px);
    padding-top: 83.92%;
    background: url(../img/philosophy/img_goals02_sp.jpg) no-repeat;
    background-size: contain; }

  .goals-hope-message__img img {
    display: none; } }
.info-table {
  max-width: 835px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px dashed #d84993;
  border-left: 1px dashed #d84993; }

.info-table th, .info-table td {
  padding: 30px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed #d84993;
  border-right: 1px dashed #d84993; }

.info-table th {
  width: 23.52%;
  background: #ffdcdf; }

.info-table td {
  padding: 30px 50px;
  background: #fff3f3; }

.info-table td dl {
  line-height: 2.6; }

.info-table td dl dt {
  float: left;
  clear: left;
  width: 6em;
  line-height: 2.6; }

.info-table td dl dd {
  line-height: 2.6; }

.info-table td dl:nth-of-type(2) {
  margin-top: 2em; }

.info-table td dl:nth-of-type(2) > dt {
  float: none;
  font-weight: bold; }

@media screen and (max-width: 768px) {
  .info-table {
    border-left: 0; }

  .info-table * {
    display: block;
    width: 100%; }

  .info-table td, .info-table th {
    padding: 15px;
    font-size: 14px;
    font-size: 0.875rem;
    border-left: 1px dashed #d84993; }

  .info-table th {
    width: 100%; }

  .info-table td {
    padding: 15px 30px;
    text-align: center; }

  .info-table td.-left {
    text-align: left; }

  .info-table td dl {
    text-align: left;
    width: 65%;
    margin: 0 auto; }

  .info-table td dl:nth-of-type(2) {
    margin-top: 1em; }

  .info-table td dl:nth-of-type(2) dl {
    width: auto; } }
/*----------------------------------------------------
	園の一日
----------------------------------------------------*/
.schedule {
  display: flex;
  justify-content: space-between;
  max-width: 1033px; }

.schedule-section {
  width: calc(100% / 2 - 16px); }

.schedule-section__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: calc(20px - (((30px * 1.5) - 30px) / 2));
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #d84993;
  font-family: 'Jun 501', sans-serif; }

.schedule-section__ttl img {
  width: 55px;
  margin-right: 20px; }

.schedule-section__mainimg {
  position: relative;
  margin-bottom: 60px; }

.schedule-section__mainimg img {
  border-radius: 40px; }

.schedule-section__mainimg .badge {
  position: absolute;
  right: 26px;
  bottom: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 142px;
  padding-left: .3em;
  background: url(../img/philosophy/bg_num.svg) center no-repeat;
  background-size: contain;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #d1498c;
  font-weight: bold;
  line-height: 1.2;
  text-align: center; }

.schedule-section__mainimg .badge span {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.14em;
  line-height: inherit; }

.schedule-section-times {
  position: relative;
  background: #fff;
  border-radius: 40px; }

.schedule-section-times .times-item {
  position: relative;
  padding: 24px 40px 100px 110px;
  border-top: 1px dashed #d84993; }

.schedule-section-times .times-item__time {
  position: absolute;
  top: 0;
  left: -23px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: url(../img/schedule/time.svg) center no-repeat;
  background-size: contain; }

.schedule-section-times .times-item__time > svg > use {
  stroke-width: 2px;
  paint-order: stroke;
  stroke-linejoin: round;
  stroke: #fff;
  fill: #d84993;
  font-size: 28px;
  font-size: 1.75rem;
  text-anchor: middle;
  dominant-baseline: alphabetic;
  font-weight: bold; }

@media screen and (max-width: 768px) {
  .schedule-section-times .times-item__time > svg > use {
    stroke-width: 3px;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.05em; } }
.schedule-section-times .times-item__step {
  display: flex;
  align-items: center;
  max-width: 320px;
  margin-top: calc(40px - (((28px * 1.5) - 28px) / 2));
  margin-bottom: calc(30px - (((28px * 1.5) - 28px) / 2));
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  color: #c84983; }

.schedule-section-times .times-item__step span {
  display: inline-block;
  margin: 0 16px; }

.schedule-section-times .times-item__step:before, .schedule-section-times .times-item__step:after {
  content: "";
  display: block;
  width: calc((100% - 3.2em - 16px) / 2);
  height: 2px;
  margin-top: .3em;
  background: #d84993; }

.schedule-section-times .times-item__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 2;
  color: #d84993;
  font-weight: bold;
  font-family: 'Jun 501', sans-serif; }

.schedule-section-times .times-item p {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 2; }

.schedule-section-times .times-item p + p {
  margin-top: 1em; }

.schedule-section-times .times-item__img {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -20px; }

.schedule-section-times .times-item__img img {
  max-width: 320px;
  border-radius: 16px; }

.schedule-section-times .times-item:nth-of-type(1) {
  padding-top: 10px;
  border-top: 0; }

.schedule-section-times .times-item:nth-of-type(1) .times-item__time {
  top: -23px;
  transform: translate(0, 0); }

.schedule-section-times .times-item.-t1000 {
  padding-bottom: 170px; }

.schedule-section-times .times-item.-t1200 {
  padding-bottom: 200px; }

.schedule-section-times .times-item.-t1500 {
  padding-bottom: 180px; }

@media screen and (max-width: 768px) {
  .schedule {
    display: block; }

  .schedule-section {
    width: auto; }

  .schedule-section__ttl {
    margin-bottom: calc(16px - (((18px * 1.5) - 18px) / 2));
    font-size: 18px;
    font-size: 1.125rem; }

  .schedule-section__ttl img {
    width: 33px;
    margin-right: 10px; }

  .schedule-section__mainimg {
    margin-bottom: 35px; }

  .schedule-section__mainimg img {
    border-radius: 20px; }

  .schedule-section__mainimg .badge {
    right: 20px;
    bottom: -15px;
    width: calc(148px / 2);
    height: calc(142px / 2);
    padding-left: .3em;
    font-size: 14px;
    font-size: 0.875rem; }

  .schedule-section__mainimg .badge span {
    font-size: 20px;
    font-size: 1.25rem; }

  .schedule-section-times {
    border-radius: 20px; }

  .schedule-section-times .times-item {
    padding: 40px 15px 50px; }

  .schedule-section-times .times-item__time {
    left: -6px;
    width: 60px;
    height: 60px; }

  .schedule-section-times .times-item__time > svg > use {
    stroke-width: 3px;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.05em; }

  .schedule-section-times .times-item__step {
    justify-content: center;
    max-width: 100%;
    margin-top: calc(30px - (((16px * 1.5) - 16px) / 2));
    margin-bottom: calc(20px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem; }

  .schedule-section-times .times-item__step span {
    margin: 0 8px; }

  .schedule-section-times .times-item__step:before, .schedule-section-times .times-item__step:after {
    width: calc(96px / 2); }

  .schedule-section-times .times-item__ttl {
    font-size: 14px;
    font-size: 0.875rem; }

  .schedule-section-times .times-item p {
    font-size: 14px;
    font-size: 0.875rem; }

  .schedule-section-times .times-item__img {
    margin-top: 0;
    margin-left: 0; }

  .schedule-section-times .times-item__img img {
    max-width: 100%; }

  .schedule-section-times .times-item:nth-of-type(1) .times-item__time {
    top: -16px; }

  .schedule-section-times .times-item.-t1000, .schedule-section-times .times-item.-t1200, .schedule-section-times .times-item.-t1500 {
    padding-bottom: 50px; }

  .schedule-section:nth-of-type(2) {
    margin-top: 50px; } }
/*----------------------------------------------------
	お知らせ
----------------------------------------------------*/
.news-list {
  border-top: 1px dashed #513f3f; }

.news-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #513f3f; }

.news-list li .cat {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 158px;
  height: 56px;
  margin-right: 40px;
  background: #fff;
  border: 1px solid #6d6d6d;
  border-radius: 30px;
  color: #6d6d6d;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-align: center; }

.news-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.2em; }

.news-list li a[href$=".pdf"]:before, .news-list li a[href$=".pdf"]:after,
.news-list li .link_url::before, .news-list li .link_url::after {
  position: absolute;
  right: 0;
  border-radius: 30px;
  transition: .3s; }

.news-list li a[href$=".pdf"]:after,
.news-list li .link_url::after {
  content: "PDF";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 56px;
  background: #ffc6cb;
  border: 1px solid #a34980;
  color: #c94984;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box; }

.news-list li .link_url::after {
  content: "→"; }

.news-list li a[href$=".pdf"]:before,
.news-list li .link_url::before {
  right: 1px;
  content: "";
  width: 126px;
  height: 52px;
  border-radius: 28px;
  border: 1px solid #fff;
  z-index: 1; }

.news-list li a[href$=".pdf"]:hover:after,
.news-list li .link_url:hover:after {
  background-color: #d84993;
  border-color: #ffc6cb;
  color: #fff; }

@media screen and (max-width: 768px) {
  .news-list {
    margin: 0 -25px; }

  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px; }

  .news-list li .cat {
    display: inline-flex;
    width: auto;
    height: auto;
    margin: 0 0 10px;
    padding: 5px 12px;
    font-size: 10px;
    font-size: 0.625rem; }

  .news-list li a {
    position: relative;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem; }

  .news-list li a[href$=".pdf"]:after,
  .news-list li a.link_url:after {
    width: 65px;
    height: 28px;
    font-size: 10px;
    font-size: 0.625rem; }

  .news-list li a[href$=".pdf"]:before,
  .news-list li a.link_url:before {
    width: 61px;
    height: 24px; } }
/*----------------------------------------------------
	報告関連・苦情解決
----------------------------------------------------*/
.complaint .contents {
  max-width: 1080px; }

.complaint .txt-note {
  max-width: 1000px;
  margin: 0 auto 60px; }

.complaint-list {
  padding: 80px;
  background: #fff;
  border-radius: 50px; }

.complaint-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #513f3f; }

.complaint-list li .date {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 56px;
  margin-right: 40px;
  background: #fff;
  border: 1px solid #6d6d6d;
  border-radius: 30px;
  color: #6d6d6d;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-align: center; }

.complaint-list li .ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 340px);
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  font-weight: bold; }

.complaint-list li .btn-detail {
  width: 130px;
  height: 56px;
  margin-left: auto;
  padding: 1px;
  background: #ffc6cb;
  border: 1px solid #a34980;
  border-radius: 30px;
  color: #c94984;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0em;
  text-align: center;
  box-sizing: border-box; }

.complaint-list li .btn-detail span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 30px; }

.complaint-list li .btn-detail span:after {
  content: "＋";
  margin-left: .5em;
  margin-right: -.5em; }

.complaint-list li .btn-detail.-active span:after {
  content: "ー"; }

.complaint-list-item-detail {
  margin: 16px 0;
  padding: 40px;
  background: #f4f4f4; }

.complaint-list-item-detail dl dt {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #513f3f;
  font-weight: bold; }

.complaint-list-item-detail dl dd {
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 3; }

.complaint-list-item-detail dl dd:last-child {
  margin: 0; }

@media screen and (max-width: 768px) {
  .complaint .txt-note {
    max-width: 100%;
    margin-bottom: 30px; }

  .complaint-list {
    margin: 0 -25px;
    padding: 0;
    border-radius: 0; }

  .complaint-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px; }

  .complaint-list li .date {
    display: inline-flex;
    width: auto;
    height: auto;
    margin: 0 0 10px;
    padding: 5px 12px;
    font-size: 10px;
    font-size: 0.625rem; }

  .complaint-list li .ttl {
    width: auto;
    font-size: 14px;
    font-size: 0.875rem; }

  .complaint-list li .btn-detail {
    width: 65px;
    height: 28px;
    font-size: 10px;
    font-size: 0.625rem;
    margin-left: 20px; }

  .complaint-list-item-detail {
    margin: 15px -10px -15px;
    padding: 20px 10px; }

  .complaint-list-item-detail dl dt {
    margin-bottom: 15px;
    padding-bottom: 15px; }

  .complaint-list-item-detail dl dd {
    margin-bottom: 30px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2; }

  .complaint-list-item-detail dl dd:last-child {
    margin: 0; } }
/*----------------------------------------------------
	年間行事
----------------------------------------------------*/
.event .contents {
  max-width: 1033px; }

.event-section {
  margin-bottom: 100px; }

.event-section__ttl {
  margin-bottom: calc(26px - (((30px * 1.5) - 30px) / 2));
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  color: #d84993;
  font-family: 'Jun 501', sans-serif; }

.event-section-mainImg {
  position: relative;
  margin-bottom: 34px; }

.event-section-mainImg img {
  border-radius: 40px; }

.event-section-mainImg:after {
  content: "";
  display: block;
  width: 262px;
  height: 82px;
  margin: 0 auto;
  background: url(../img/share/flag.png) center no-repeat;
  background-size: contain; }

.event-section-mainImg:before {
  position: absolute;
  top: -70px;
  right: 35px;
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }

.event-section-mainImg.spring:before {
  right: 50px;
  width: 161px;
  height: 146px;
  background-image: url(../img/event/icon01.svg); }

.event-section-mainImg.summer:before {
  top: -56px;
  right: 50px;
  width: 158px;
  height: 161px;
  background-image: url(../img/event/icon02.svg); }

.event-section-mainImg.autumun:before {
  width: 170px;
  height: 156px;
  background-image: url(../img/event/icon03.svg); }

.event-section-mainImg.winter:before {
  width: 165px;
  height: 130px;
  background-image: url(../img/event/icon04.svg); }

.event-section-detail {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
  padding: 50px 90px;
  background: #fff;
  border-radius: 40px; }

.event-section-detail-item {
  position: relative;
  width: calc(100% / 2); }

.event-section-detail-item__ttl {
  position: absolute;
  top: -20px;
  left: -113px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: url(../img/schedule/time.svg) center no-repeat;
  background-size: contain; }

.event-section-detail-item__ttl > svg > use {
  stroke-width: 2px;
  paint-order: stroke;
  stroke-linejoin: round;
  stroke: #fff;
  fill: #d84993;
  font-size: 28px;
  font-size: 1.75rem;
  text-anchor: middle;
  dominant-baseline: alphabetic;
  font-weight: bold; }

@media screen and (max-width: 768px) {
  .event-section-detail-item__ttl > svg > use {
    stroke-width: 3px;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.05em; } }
.event-section-detail-item:nth-of-type(2) {
  padding-left: 120px; }

.event-section-detail-item:nth-of-type(2) .event-section-detail-item__ttl {
  left: -10px; }

.event-section-detail-item:last-child {
  width: 100%;
  margin-top: 65px;
  padding-top: 65px;
  border-top: 1px dashed #c84983; }

.event-section-detail-item:last-child .event-section-detail-item__ttl {
  top: 65px; }

.event-section-img-list {
  display: flex;
  justify-content: space-between; }

.event-section-img-list li {
  width: calc(100% / 3 - 24px); }

.event-section-img-list li img {
  border-radius: 16px; }

.event-section:last-child .event-section-detail {
  padding: 50px 20px; }

.event-list {
  padding: 0 20px;
  color: #d84993;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: bold; }

.event-list li {
  line-height: 2; }

.event-list-other {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em; }

.event-list-other dt, .event-list-other dd {
  padding: 0 40px;
  line-height: 2;
  font-weight: bold; }

.event-list-other dt {
  color: #d84993; }

.event-list-other dt:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1; }

.event-list-other dt:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1; }

.event-list-other dd:nth-of-type(1) {
  grid-column: 1;
  grid-row: 2; }

.event-list-other dd:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2; }

@media screen and (max-width: 768px) {
  .event .contents {
    max-width: 100%; }

  .event-section {
    margin-bottom: 65px; }

  .event-section__ttl {
    margin-bottom: calc(20px - (((18px * 1.5) - 18px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.075em; }

  .event-section-mainImg {
    margin-bottom: 18px; }

  .event-section-mainImg span {
    display: block;
    width: 100%;
    padding-top: 92.59%;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }

  .event-section-mainImg img {
    display: none; }

  .event-section-mainImg:after {
    width: calc(262px / 2);
    height: calc(82px / 2); }

  .event-section-mainImg:before {
    position: absolute;
    top: -40px;
    right: 10px !important; }

  .event-section-mainImg.spring span {
    background-image: url(../img/event/img01_01_sp.jpg); }

  .event-section-mainImg.spring:before {
    top: -50px;
    width: calc(184px / 2);
    height: calc(167px / 2); }

  .event-section-mainImg.summer span {
    background-image: url(../img/event/img02_01_sp.jpg); }

  .event-section-mainImg.summer:before {
    top: -45px;
    width: calc(182px / 2);
    height: calc(186px / 2); }

  .event-section-mainImg.autumun span {
    background-image: url(../img/event/img03_01_sp.jpg); }

  .event-section-mainImg.autumun:before {
    top: -15px;
    width: calc(194px / 2);
    height: calc(180px / 2); }

  .event-section-mainImg.winter span {
    background-image: url(../img/event/img04_01_sp.jpg); }

  .event-section-mainImg.winter:before {
    width: calc(190px / 2);
    height: calc(148px / 2); }

  .event-section-detail {
    display: block;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px; }

  .event-section-detail-item {
    width: auto;
    margin-bottom: 0;
    padding-bottom: 50px;
    border-bottom: 1px dashed #c84983; }

  .event-section-detail-item__ttl {
    position: static;
    margin-top: -30px;
    margin-left: -26px;
    margin-bottom: 20px;
    transform: translateY(0%);
    width: 60px;
    height: 60px; }

  .event-section-detail-item__ttl text {
    font-size: 18px;
    font-size: 1.125rem; }

  .event-section-detail-item:nth-of-type(2) {
    padding-left: 0; }

  .event-section-detail-item:last-child {
    margin: 0;
    padding: 0;
    border: 0; }

  .event-section-img-list {
    display: block;
    width: calc(100% + 50px);
    margin: 0 -25px; }

  .event-section-img-list li {
    width: auto;
    padding: 0 8px; }

  .event-section-img-list li img {
    border-radius: 16px; }

  .event-section-img-list .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 0; }

  .event-section-img-list .slick-arrow:before {
    content: "";
    display: block;
    width: 15px;
    height: 30px;
    background: url(../img/icon/arrow_2.svg) center no-repeat;
    background-size: contain; }

  .event-section-img-list .slick-arrow.slick-prev {
    left: 10px;
    transform: translateY(-50%) rotate(180deg); }

  .event-section-img-list .slick-arrow.slick-next {
    right: 10px; }

  .event-section:last-child {
    margin: 0;
    padding-top: 0;
    border: 0; }

  .event-section:last-child .event-section-detail {
    padding: 20px; }

  .event-list {
    padding: 0;
    font-size: 14px;
    font-size: 0.875rem; }

  .event-list-other {
    display: block;
    font-size: 14px;
    font-size: 0.875rem; }

  .event-list-other dt, .event-list-other dd {
    padding: 0; } }
/*----------------------------------------------------
	施設紹介
----------------------------------------------------*/
.facility {
  padding-top: 90px; }

.facility .contents {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 50px;
  background: rgba(255, 179, 162, 0.3) url(../img/facility/bg.png); }

.facility__lead {
  margin-bottom: calc(70px - (((22px * 1.5) - 22px) / 2));
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center; }

.facility-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1050px;
  margin: 0 auto; }

.facility-section-map {
  position: relative;
  width: 57.14%; }

.facility-section-map__ttl {
  position: absolute;
  top: 0;
  right: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 80px;
  padding-left: .2em;
  background: url(../img/facility/map_ttl.svg) center no-repeat;
  background-size: contain;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: #d84993;
  font-weight: bold; }

.facility-section-map svg a path {
  transition: .3s; }

.facility-section-map svg a {
  display: block; }

.facility-section-map svg a:hover path {
  fill: #d1498c; }

.facility-section-photo {
  width: 40.95%;
  margin-top: 118px;
  padding: 30px;
  background: #fff;
  border-radius: 24px; }

.facility-section-photo__ttl {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.075em;
  text-align: center;
  font-weight: bold; }

.facility-section-photo__ttl:before {
  content: "";
  display: block;
  width: 19px;
  height: 15px;
  margin: 0 auto 5px;
  background: url(../img/facility/camera.svg) center no-repeat;
  background-size: contain; }

.facility-section-photo-list {
  display: flex;
  flex-wrap: wrap; }

.facility-section-photo-list li {
  width: calc(100% / 4 - 15px);
  margin: 0 7.5px 15px; }

.facility-section-photo-list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: .3s; }

.facility-section-photo-list li a:after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  background: url(../img/facility/link.svg) center no-repeat;
  background-size: contain; }

.facility-section-photo-list li a:hover {
  opacity: .7; }

.facility-section-photo-list li span {
  display: block;
  margin-bottom: 5px; }

.facility-section-photo-list li img {
  margin-top: auto; }

.facility-section-photo-list li:nth-of-type(6) {
  width: calc((100% / 4) * 3 - 15px); }

.facility-section-photo-list li:nth-of-type(6) a {
  width: 29.72%; }

.facility-section:nth-of-type(2) {
  margin-top: 130px; }

.facility-section:nth-of-type(2) .facility-section-map__ttl {
  top: -66px;
  right: 15px; }

.facility-section:nth-of-type(2) .facility-section-photo {
  margin-top: 43px;
  padding-right: 68px;
  padding-left: 68px; }

.facility-section:nth-of-type(2) .facility-section-photo-list {
  justify-content: center; }

.facility-section:nth-of-type(2) .facility-section-photo-list li {
  width: 26.03%; }

.facility-section:nth-of-type(2) .facility-section-photo-list li span {
  white-space: nowrap; }

.facility-section:nth-of-type(2) .facility-section-photo-list li:nth-of-type(6) {
  width: 26.03%; }

.facility-section:nth-of-type(2) .facility-section-photo-list li:nth-of-type(6) a {
  width: auto; }

@media screen and (max-width: 768px) {
  .facility {
    padding-top: 44px; }

  .facility .contents {
    margin-bottom: 40px;
    padding: 0; }

  .facility__lead {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem; }

  .facility-section {
    display: block;
    padding: 50px 10px; }

  .facility-section-map {
    position: relative;
    width: auto; }

  .facility-section-map__ttl {
    top: -20px;
    right: 15px;
    width: calc(135px / 2);
    height: calc(130px / 2);
    font-size: 16px;
    font-size: 1rem; }

  .facility-section-map svg {
    max-width: 100%;
    height: auto; }

  .facility-section-photo {
    width: calc(100% + 20px);
    margin: 40px -10px 0;
    padding: 20px 10px;
    border-radius: 0;
    border: 1px dashed #ffb3a2; }

  .facility-section-photo__ttl {
    margin-bottom: 10px; }

  .facility-section-photo-list li span {
    font-size: 12px;
    font-size: 0.75rem; }

  .facility-section:nth-of-type(2) {
    margin-top: 0;
    padding-bottom: 0; }

  .facility-section:nth-of-type(2) .facility-section-map__ttl {
    top: -70px;
    right: 15px; }

  .facility-section:nth-of-type(2) .facility-section-photo {
    margin-top: 43px; } }
/*loading*/
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999999; }
  #loading .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%); }
    #loading .inner .rainbow {
      position: absolute;
      display: block;
      width: 20%;
      left: 50%;
      transform: translate(-50%, -100%); }
    #loading .inner .loadLine {
      display: block;
      margin: 40px auto 20px;
      width: 0;
      height: 3px;
      border-radius: 20px;
      background: #d4498c; }
    #loading .inner .loadNum {
      text-align: center; }

@media screen and (max-width: 768px) {
  #loading .inner {
    width: 90%; }
    #loading .inner .rainbow {
      width: 60%; } }
/*# sourceMappingURL=common.css.map */
