@charset "UTF-8";

/* font-size [SCSS] */
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.c-animation__focus {
  opacity: 0;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  opacity: 0;
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  filter: blur(50px);
}

.c-animation__focus.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-animation__focus--l {
  transform: translate(-10vw, 0);
  opacity: 0;
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  filter: blur(50px);
}

.c-animation__focus--l.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-animation__focus--b {
  transform: translate(0, 10vw);
  opacity: 0;
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  filter: blur(50px);
}

.c-animation__focus--b.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-animation__focus--r {
  transform: translate(10vw, 0);
  opacity: 0;
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  filter: blur(50px);
}

.c-animation__focus--r.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-animation__focus--bl {
  transform: translate(-10vw, 10vw);
  opacity: 0;
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  filter: blur(50px);
}

.c-animation__focus--bl.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-animation__focus--br {
  transform: translate(10vw, 10vw);
  opacity: 0;
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  filter: blur(50px);
}

.c-animation__focus--br.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-animation__zoomFocus {
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: filter, transform, opacity, visibility;
  transform: translate(0, 0) scale(1.8);
  filter: blur(200px);
}

.c-animation__zoomFocus.isActive {
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
  opacity: 1;
}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin-top: -1em;
  top: -60px;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb {
    top: 0;
    margin-top: -1em;
    margin-bottom: 40px;
  }
}

.c-breadcrumb__item {
  position: relative;
}

.c-breadcrumb__item:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #4C627D;
  border-right: 1px solid #4C627D;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: calc(100% + 15px);
}

.c-breadcrumb__item a {
  text-decoration: underline;
}

.c-breadcrumb__item:last-child:after {
  content: none;
}

.c-btn {
  color: #ffffff;
  background: #4C627D;
  border-radius: 100px;
  padding: 20px 80px 20px 50px;
  box-sizing: border-box;
  font-size: 1rem;
  letter-spacing: 0.08rem;
  position: relative;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .c-btn {
    padding: 20px 100px 20px 90px;
  }
}

.c-btn.is-center {
  margin: 0 auto;
}

.c-btn.is-right {
  margin-left: auto;
}

.c-btn:hover {
  opacity: 0.5;
}

.c-btn:hover b::before {
  transform: translate(15px, 0);
  opacity: 0;
}

.c-btn:hover b::after {
  transform: translate(0px, 0);
  opacity: 1;
}

.c-btn b {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background: #ffffff;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-btn b::before {
  width: 10px;
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-btn b::after {
  width: 10px;
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transform: translate(-30px, 0);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.c-card {
  padding: 30px 0;
  border-bottom: 1px solid rgba(76, 98, 125, 0.6);
  font-family: "Shippori Mincho B1";
}

.c-card__time {
  margin-bottom: 10px;
  display: block;
  opacity: 0.8;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.c-card__title {
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .c-card__title {
    font-size: 0.9375rem;
  }
}

.c-card__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #4C627D;
  opacity: 0.8;
  margin-top: 20px;
  font-size: 0.875rem;
}

.c-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.c-column__img,
.c-column__detail {
  width: calc(100% / 2 - 40px * (2 - 1) / 2);
}

@media screen and (max-width: 768px) {

  .c-column__img,
  .c-column__detail {
    width: 100%;
  }
}

.c-column__detail {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-edit p {
  margin: 30px 0;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.c-edit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  height: auto;
}

.c-edit h1 {
  font-family: "Shippori Mincho B1";
  font-size: 2rem;
  margin-top: 80px;
  margin-bottom: 40px;
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.1em;
}

.c-edit h1:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .c-edit h1 {
    font-size: 1.75rem;
  }
}

.c-edit h1:before {
  content: "";
  background: url(../img/page/title_icon.svg) center center no-repeat;
  background-size: contain;
  width: 0.7em;
  height: 0.7em;
  display: block;
  left: 0;
  top: 0.3em;
  position: absolute;
}

.c-edit h2 {
  position: relative;
  font-family: "Shippori Mincho B1";
  margin-top: 60px;
  font-size: 1.75rem;
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid rgba(76, 98, 125, 0.6);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .c-edit h2 {
    font-size: 1.5rem;
  }
}

.c-edit h3 {
  font-family: "Shippori Mincho B1";
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .c-edit h3 {
    font-size: 1.25rem;
  }
}

.c-edit h4 {
  position: relative;
  font-family: "Shippori Mincho B1";
  margin-top: 40px;
  font-size: 1.25rem;
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid rgba(76, 98, 125, 0.6);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .c-edit h4 {
    font-size: 1.125rem;
  }
}

.c-edit h5 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: "Shippori Mincho B1";
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .c-edit h5 {
    font-size: 1rem;
  }
}

.c-edit h6 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .c-edit h6 {
    font-size: 1rem;
  }
}

.c-edit ul.wp-block-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.c-edit ul.wp-block-list li {
  line-height: 1.8;
  position: relative;
  padding-left: 1em;
}

.c-edit ul.wp-block-list li:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #4DC4DC;
  border-radius: 50%;
  top: 0.7em;
}

.c-edit ol.wp-block-list {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 1em;
}

.c-edit ol.wp-block-list li {
  line-height: 1.8;
  position: relative;
  list-style: decimal;
}

.c-edit a {
  color: #4DC4DC;
  text-decoration: underline;
}

.c-edit .wp-element-caption {
  margin-top: 10px;
}

.c-edit .wp-block-columns {
  margin: 30px 0;
}

.c-edit .wp-block-column {
  flex: 1;
}

.c-edit .wp-block-image {
  margin: 30px 0;
}

.c-edit .wp-block-image:first-child {
  margin-top: 0;
}

.c-edit .wp-block-image:last-child {
  margin-bottom: 0;
}

.c-edit .wp-block-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-edit .is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.c-edit .is-content-justification-center {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.c-edit .wp-block-buttons {
  margin: 60px 0;
}

.c-edit .wp-block-button__link {
  color: #ffffff;
  background: #4C627D;
  border-radius: 100px;
  padding: 20px 80px 20px 50px;
  box-sizing: border-box;
  font-size: 1rem;
  letter-spacing: 0.08rem;
  position: relative;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .c-edit .wp-block-button__link {
    padding: 20px 100px 20px 90px;
  }
}

.c-edit .wp-block-button__link.is-center {
  margin: 0 auto;
}

.c-edit .wp-block-button__link.is-right {
  margin-left: auto;
}

.c-edit .wp-block-button__link:hover {
  opacity: 0.5;
}

.c-edit .wp-block-button__link:hover b::before {
  transform: translate(15px, 0);
  opacity: 0;
}

.c-edit .wp-block-button__link:hover b::after {
  transform: translate(0px, 0);
  opacity: 1;
}

.c-edit .wp-block-button__link b {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background: #ffffff;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-edit .wp-block-button__link b::before {
  width: 10px;
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-edit .wp-block-button__link b::after {
  width: 10px;
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transform: translate(-30px, 0);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.c-edit .wp-block-table {
  margin: 60px 0;
}

.c-edit .wp-block-table table {
  border: 1px solid #4C627D;
}

.c-edit .wp-block-table table thead {
  background: #30B8D9;
  color: #ffffff;
}

.c-edit .wp-block-table table th,
.c-edit .wp-block-table table td {
  padding: 10px 20px;
  line-height: 1.6;
  border: 1px solid #4C627D;
}

.c-edit .wp-block-table table td {
  background: #ffffff;
}

.c-inner,
.c-inner__sm {
  width: 90%;
  max-width: 1098px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 768px) {

  .c-inner,
  .c-inner__sm {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-inner__sm {
  max-width: 900px;
}

.c-keyVisual {
  background: linear-gradient(117.16deg, #30B8D9 4.37%, #30B8D9 16.32%, #69D1E2 58.03%, #7CDACA 67.69%, #FADB8B 90.05%, #FADB8B 96.31%);
  padding: 220px 0 21vw 0;
  max-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .c-keyVisual {
    padding: 160px 0 31vw 0;
  }
}

.c-keyVisual__h1 {
  font-family: "Shippori Mincho B1";
  color: #ffffff;
  font-size: 2.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .c-keyVisual__h1 {
    font-size: 2rem;
  }
}

.c-keyVisual__en {
  position: absolute;
  left: -1em;
  top: -130px;
  opacity: 0.3;
  font-size: 11.25rem;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1500px) {
  .c-keyVisual__en {
    left: -0.5em;
  }
}

@media screen and (max-width: 768px) {
  .c-keyVisual__en {
    left: -10px;
    top: -50px;
    font-size: 5rem;
  }
}

.c-keyVisual__nextContents {
  position: relative;
  background: #EEFDFC;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .c-keyVisual__nextContents {
    padding-bottom: 80px;
  }
}

.c-keyVisual__nextContents:before {
  content: "";
  width: 100%;
  height: 26vw;
  position: absolute;
  display: block;
  z-index: 0;
  left: 0;
  top: -20vw;
  background: url(../img/page/kv-next_bg.svg) no-repeat;
  background-size: cover;
}

.c-lead {
  font-family: "Shippori Mincho B1";
  text-align: center;
  line-height: 2.2;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .c-lead {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-list__item {
  line-height: 1.8;
  position: relative;
  padding-left: 1em;
  margin-bottom: 10px;
}

.c-list__item a {
  color: #4DC4DC;
  text-decoration: underline;
}

.c-list__item:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #4DC4DC;
  border-radius: 50%;
  top: 0.7em;
}

.c-list__item.is-pdf:after {
  content: "PDF";
  background: #4DC4DC;
  color: #ffffff;
  padding: 3px 5px;
  display: inline-block;
  line-height: 1;
  font-size: 0.6875rem;
  margin-left: 10px;
  position: relative;
  top: -2px;
}

.c-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 5px 5px;
  font-family: "Noto Sans", serif;
  padding: 5px 10px;
  border-radius: 40px;
}

@media screen and (max-width: 768px) {
  .c-pager {
    font-size: 0.875rem;
  }
}

.c-pager__wrap {
  margin-top: 40px;
}

.c-pager__wrap--top {
  position: absolute;
  right: 0;
  top: 25px;
}

@media screen and (max-width: 768px) {
  .c-pager__wrap--top {
    display: none;
  }
}

.c-pager__item.is-current {
  pointer-events: none;
  font-weight: bold;
}

.c-pager__item.is-current a {
  background: #4C627D;
  color: #ffffff !important;
}

.c-pager__link,
.c-pager .is-current {
  line-height: 1;
  font-weight: 500;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {

  .c-pager__link,
  .c-pager .is-current {
    width: 25px;
    height: 25px;
  }
}

.c-pager__prev,
.c-pager__next {
  opacity: 0.2;
  pointer-events: none;
}

.c-pager__prev.js-active,
.c-pager__next.js-active {
  opacity: 1;
  pointer-events: inherit;
}

.c-pager__prev {
  margin-right: 5px;
}

.c-pager__next {
  margin-left: 5px;
}

.c-pager__prevLink {
  background: url(../img/arr-b.svg) center no-repeat;
  background-size: 10px;
  transform: rotate(180deg);
}

.c-pager__nextLink {
  background: url(../img/arr-b.svg) center no-repeat;
  background-size: 10px;
}

.c-pager__prevLink,
.c-pager__nextLink {
  display: block;
  width: 28px;
  border-radius: 50%;
  height: 28px;
  background-color: rgba(76, 98, 125, 0.2);
  margin-top: -1px;
}

@media screen and (max-width: 768px) {

  .c-pager__prevLink,
  .c-pager__nextLink {
    width: 22px;
    height: 22px;
  }
}

.c-pager__link {
  color: #999;
  font-weight: normal;
}

.c-tab {
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 20px;
}

.c-tab__list {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.c-tab__listItem {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .c-tab__listItem {
    font-size: 0.875rem;
  }
}

.c-tab__listItem:hover::before {
  background: #4C627D;
  opacity: 0.1;
}

.c-tab__listItem b {
  position: relative;
  z-index: 10;
  color: #4C627D;
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.c-tab__listItem::before {
  width: 97%;
  height: 82%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  content: "";
  background: linear-gradient(117deg, #30B8D9 4.37%, #30B8D9 16.32%, #69D1E2 58.03%, #7CDACA 67.69%, #FADB8B 90.05%, #FADB8B 96.31%);
  border-radius: 3px;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

@media (max-width: 768px) {
  .c-tab__listItem::before {
    width: 95%;
    height: 92%;
  }
}

.c-tab__listItem::after {
  width: 1px;
  height: 60%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: #4C627D;
  margin: auto;
  opacity: 0.2;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-tab__listItem:last-child::after {
  display: none;
}

.c-tab__listItem.is-active:hover::before {
  background: linear-gradient(117deg, #30B8D9 4.37%, #30B8D9 16.32%, #69D1E2 58.03%, #7CDACA 67.69%, #FADB8B 90.05%, #FADB8B 96.31%);
  opacity: 1;
}

.c-tab__listItem.is-active::before {
  opacity: 1;
}

.c-tab__listItem.is-active b {
  color: #ffffff;
  opacity: 1;
}

.tab-btns {
  position: relative;
  background: #ffffff;
  border-radius: 3px;
}

.tab-btns ul {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.tab-btns ul li {
  width: 33.3333%;
  text-align: center;
  padding: 15px 0;
  position: relative;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tab-btns ul li {
    font-size: 0.875rem;
  }
}

.tab-btns ul li:hover::before {
  background: #4C627D;
  opacity: 0.1;
}

.tab-btns ul li b {
  position: relative;
  z-index: 10;
  color: #4C627D;
  opacity: 0.6;
}

.tab-btns ul li::before {
  width: 97%;
  height: 82%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  content: "";
  background: linear-gradient(117deg, #30B8D9 4.37%, #30B8D9 16.32%, #69D1E2 58.03%, #7CDACA 67.69%, #FADB8B 90.05%, #FADB8B 96.31%);
  border-radius: 3px;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

@media (max-width: 768px) {
  .tab-btns ul li::before {
    width: 95%;
    height: 92%;
  }
}

.tab-btns ul li::after {
  width: 1px;
  height: 60%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: #4C627D;
  margin: auto;
  opacity: 0.2;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tab-btns ul li:last-child::after {
  display: none;
}

.c-title {
  font-family: "Shippori Mincho B1";
  font-size: 2.125rem;
  margin-bottom: 40px;
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.75rem;
  }
}

.c-title:before {
  content: "";
  background: url(../img/page/title_icon.svg) center center no-repeat;
  background-size: contain;
  width: 0.7em;
  height: 0.7em;
  line-height: 1.6;
  display: block;
  left: 0;
  top: 0.5em;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .c-title:before {
    width: 0.7em;
    height: 0.7em;
  }
}

.c-title__md {
  position: relative;
  font-family: "Shippori Mincho B1";
  font-size: 1.5rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(76, 98, 125, 0.6);
  padding-left: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .c-title__md {
    font-size: 1.25rem;
  }
}

.c-title__md:before {
  content: "";
  background: linear-gradient(90deg, #74D9EF 0%, #FFDE9D 100%);
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  display: block;
  left: 0;
  top: 0.5em;
  position: absolute;
}

.c-title__sm {
  font-family: "Shippori Mincho B1";
  border-bottom: 1px solid;
  font-size: 1.5rem;
  padding-bottom: 0.6em;
  line-height: 1.6;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .c-title__sm {
    font-size: 1.25rem;
  }
}

.c-txt {
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-about {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.p-aboutOverview__block {
  margin-top: 50px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .p-aboutOverview__block {
    justify-content: center;
    gap: 20px;
  }
}

.p-aboutOverview__blockDetail {
  width: calc(100% - 160px);
}

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

.p-aboutOverview__blockImg {
  width: 125px;
}

.p-aboutLinks {
  background: linear-gradient(110deg, #DDF6F4 2.25%, #BEE9E6 119.85%);
  padding: 20px 0;
}

.p-aboutLinks__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.p-aboutLinks__listItem {
  width: calc(100% / 3 - 0px * (3 - 1) / 3);
  text-align: center;
  padding: 10px;
  letter-spacing: 0.1em;
  border-right: 1px solid rgba(76, 98, 125, 0.2);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.p-aboutLinks__listItem:after {
  content: "";
  margin: auto 0;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/page/ico_arrow.svg) center center no-repeat;
  background-size: contain;
}

.p-aboutLinks__listItem:last-child {
  border-right: none;
}

.p-aboutBoard {
  padding: 120px 0 80px;
  position: relative;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-aboutBoard {
    padding: 80px 0 60px;
  }
}

.p-aboutBoard:after {
  content: "";
  display: block;
  width: 100%;
  height: 15vw;
  top: 100%;
  left: 0;
  position: absolute;
  background: url(../img/page/wave-wh_b.svg) center bottom no-repeat;
  background-size: cover;
}

.p-aboutBoard__table {
  margin-top: -1em;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-aboutBoard__table {
    margin-bottom: 60px;
  }
}

.p-aboutBoard__table__dl {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.1em;
  padding: 20px 0;
  line-height: 1.8;
  border-bottom: 1px solid rgba(76, 98, 125, 0.4);
}

.p-aboutBoard__table__dt {
  width: 200px;
  font-size: 1.25rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-aboutBoard__table__dt {
    width: 80px;
    font-size: 1.125rem;
  }
}

.p-aboutBoard__table__dd {
  width: calc(100% - 200px);
  padding-top: 0.2em;
}

@media screen and (max-width: 768px) {
  .p-aboutBoard__table__dd {
    width: calc(100% - 80px);
  }
}

.p-aboutBoard__organization {
  background: #F2F5F5;
  padding: 40px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .p-aboutBoard__organization {
    padding: 15px;
  }
}

.p-aboutBoard__organizationImg {
  display: block;
  width: 100%;
}

.p-aboutHistory {
  padding: calc(15vw + 40px) 0 calc(21vw + 80px) 0;
  background: linear-gradient(160.57deg, rgba(255, 255, 255, 0.8) 5.32%, rgba(255, 255, 255, 0) 40.03%), linear-gradient(117.16deg, #30B8D9 4.37%, #30B8D9 16.32%, #69D1E2 58.03%, #7CDACA 67.69%, #FADB8B 90.05%, #FADB8B 96.31%);
}

.p-aboutHistory__listWrap {
  position: relative;
}

.p-aboutHistory__listWrap:before {
  content: "";
  width: 300px;
  height: 300px;
  pointer-events: none;
  position: absolute;
  top: -100px;
  right: -30px;
  background: url(../img/about/illust.png) center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__listWrap:before {
    width: 200px;
    right: -60px;
    top: -120px;
  }
}

.p-aboutHistory__listWrap:after {
  content: "";
  width: 450px;
  height: 200px;
  pointer-events: none;
  position: absolute;
  bottom: -100px;
  right: -100px;
  background: url(../img/about/illust2.png) center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__listWrap:after {
    width: 300px;
  }
}

.p-aboutHistory__list {
  background: #ffffff;
  border-radius: 10px;
  padding: 60px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__list {
    padding: 40px 20px;
  }
}

.p-aboutHistory__listItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-aboutHistory__year {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  width: 160px;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__year {
    width: 122px;
  }
}

.p-aboutHistory__yearNumber {
  font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__yearNumber {
    font-size: 2.25rem;
  }
}

.p-aboutHistory__jpYear {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-aboutHistory__jpYear--number {
  font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__jpYear--number {
    font-size: 0.625rem;
  }
}

.p-aboutHistory__jpYear--txt {
  font-family: "Shippori Mincho B1";
  font-weight: 600;
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__jpYear--txt {
    font-size: 0.875rem;
  }
}

.p-aboutHistory__listItem:first-child .p-aboutHistory__dotted:before {
  content: "";
  position: absolute;
  height: 4000vh;
  width: 1px;
  transform: translateX(-50%);
  left: 50%;
  top: 50%;
  background: #4C627D;
}

.p-aboutHistory__dotted {
  width: 13px;
  height: 13px;
  position: relative;
  border-radius: 50%;
}

.p-aboutHistory__detail {
  width: calc(100% - 220px);
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .p-aboutHistory__detail {
    width: calc(100% - 160px);
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.p-aboutCharter {
  position: relative;
  background: #EEFDFC;
  padding-bottom: 120px;
}

.p-aboutCharter:before {
  content: "";
  width: 100%;
  height: 26vw;
  position: absolute;
  display: block;
  z-index: 0;
  left: 0;
  top: -20vw;
  background: url(../img/page/kv-next_bg.svg) no-repeat;
  background-size: cover;
}

.p-aboutCharter__dl:nth-of-type(1) {
  border-top: 1px solid #4C627D;
}

.p-aboutCharter__dt {
  border-bottom: 1px solid #4C627D;
  font-family: "Shippori Mincho B1";
  font-size: 1.25rem;
  font-weight: 500;
  padding: 35px 40px 35px 0;
  letter-spacing: 0.1em;
  position: relative;
  cursor: pointer;
}

.p-aboutCharter__dd {
  padding: 35px 0 60px;
  line-height: 1.8;
  display: none;
  border-bottom: 1px solid #4C627D;
}

.p-aboutCharter__toggle {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-aboutCharter__toggle:before,
.p-aboutCharter__toggle:after {
  content: "";
  width: 60%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4C627D;
}

.p-aboutCharter__toggle:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-aboutCharter__dt.js-active .p-aboutCharter__toggle:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-aboutCharter__dt.js-active+.p-aboutCharter__dd {
  display: block;
}

.aniv-cont01 {
  z-index: 2;
  overflow: initial;
}

.aniv-cont01 .in {
  padding: 0vw 0 9.0714vw;
}

.aniv-cont01 .in .intro--title {
  font-size: 2.25rem;
  text-align: center;
  line-height: 1.8;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
  /* アニメーション終了位置 */
  width: initial;
}

@media (max-width: 768px) {
  .aniv-cont01 .in .intro--title {
    font-size: 2rem;
  }
}

.aniv-cont01 .in .intro--txt {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.2;
  margin-top: 40px;
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
  /* アニメーション終了位置 */
}

@media (max-width: 768px) {
  .aniv-cont01 .in .intro--txt {
    font-size: 0.84375rem;
    line-height: 2.1875rem;
    letter-spacing: 1.4px;
    margin-top: 46px;
  }
}

.aniv-cont01 .in .intro--txt .mid {
  font-size: 1.4375rem;
}

@media (max-width: 768px) {
  .aniv-cont01 .in .intro--txt .mid {
    font-size: 1rem;
  }
}

.aniv-cont01 .in .intro--txt .big {
  font-size: 1.625rem;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .aniv-cont01 .in .intro--txt .big {
    font-size: 1.2rem;
  }
}

.aniv-cont01 .aniv-sou-img1 {
  max-width: 238px;
  position: absolute;
  left: -1%;
  top: -12.798%;
  z-index: 2;
  width: 17%;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-sou-img1 {
    width: 30vw;
    top: -5%;
  }
}

.aniv-cont01 .aniv-sou-img2 {
  max-width: 102px;
  position: absolute;
  right: 7%;
  top: -12.3%;
  width: 8%;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-sou-img2 {
    width: 22vw;
    top: 0%;
  }
}

.aniv-cont01 .aniv-sou-img3 {
  max-width: 88px;
  position: absolute;
  right: 22%;
  top: -4.3%;
  width: 7%;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-sou-img3 {
    width: 16vw;
    top: 10%;
    right: 44%;
  }
}

.aniv-cont01 .aniv-sou-img4 {
  max-width: 30px;
  position: absolute;
  left: 15.6%;
  top: 23.34%;
  z-index: 1;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-sou-img4 {
    width: 16vw;
    left: 8%;
    top: 19%;
  }
}

.aniv-cont01 .aniv-sou-img5 {
  max-width: 191px;
  position: absolute;
  right: 12%;
  z-index: 1;
  top: 23%;
  width: 14%;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-sou-img5 {
    width: 25vw;
    top: 18%;
  }
}

.aniv-cont01 .aniv-sou-img6 {
  max-width: 191px;
  position: absolute;
  left: 20.7%;
  top: 47.2%;
  z-index: 1;
  width: 14%;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-sou-img6 {
    width: 25vw;
    left: 60%;
    top: 53%;
  }
}

.aniv-cont01 .aniv-intro-img1 {
  max-width: 222px;
  position: absolute;
  left: 12.429%;
  top: 0;
  z-index: 1;
  width: 16vw;
}

@media (max-width: 1000px) {
  .aniv-cont01 .aniv-intro-img1 {
    left: 6%;
  }
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-intro-img1 {
    width: 49vw;
    left: 0;
  }
}

.aniv-cont01 .aniv-intro-img2 {
  max-width: 265px;
  position: absolute;
  right: 0;
  top: -2.123%;
  width: 19vw;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-intro-img2 {
    width: 40vw;
    top: 5%;
  }
}

.aniv-cont01 .aniv-intro-img3 {
  max-width: 327px;
  position: absolute;
  left: 0;
  top: 9%;
  width: 24vw;
}

@media (max-width: 1000px) {
  .aniv-cont01 .aniv-intro-img3 {
    top: 10%;
  }
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-intro-img3 {
    width: 54vw;
    top: 14%;
  }
}

.aniv-cont01 .aniv-intro-img4 {
  max-width: 151px;
  position: absolute;
  left: 17.786%;
  top: 35%;
  width: 11vw;
}

@media (max-width: 1200px) {
  .aniv-cont01 .aniv-intro-img4 {
    left: 15%;
  }
}

@media (max-width: 1000px) {
  .aniv-cont01 .aniv-intro-img4 {
    left: 7%;
  }
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-intro-img4 {
    width: 40vw;
    top: 50%;
    max-width: initial;
    left: 3%;
  }
}

.aniv-cont01 .aniv-intro-img5 {
  max-width: 287px;
  position: absolute;
  right: 9.643%;
  top: 35%;
  width: 21vw;
}

@media (max-width: 1200px) {
  .aniv-cont01 .aniv-intro-img5 {
    right: 6%;
  }
}

@media (max-width: 1000px) {
  .aniv-cont01 .aniv-intro-img5 {
    right: 0%;
  }
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv-intro-img5 {
    width: 54vw;
    top: 58%;
  }
}

.aniv-cont01 .aniv01_div {
  background: linear-gradient(110deg, #DDF6F4 2.25%, #BEE9E6 119.85%);
  margin: 18.58% auto 0;
  padding: 3.644% 3.644% 5.83%;
  position: relative;
  max-width: 900px;
  width: 90%;
}

@media (max-width: 768px) {
  .aniv-cont01 .aniv01_div {
    margin: 110vw auto 0;
    padding: 32px 5%;
  }
}

.aniv-cont01 .aniv01_div:before {
  position: absolute;
  content: "";
  background: url(../img/anniversary/wood4.png) center top no-repeat;
  background-size: contain;
  width: 13%;
  height: 100px;
  max-width: 76px;
  left: -5.667%;
  bottom: -10.787%;
  pointer-events: none;
}

.aniv-cont01 .aniv01_div:after {
  position: absolute;
  content: "";
  background: url(../img/anniversary/wood1.png) center bottom no-repeat;
  background-size: contain;
  width: 10%;
  height: 67px;
  max-width: 34px;
  right: 9.334%;
  top: -9.06%;
}

.aniv-cont01 .aniv01_div .c-title {
  font-size: 2.25rem;
  margin-bottom: 30px;
}

.aniv-cont01 .aniv01_div .text {
  line-height: 170%;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
}

.aniv-cont02 {
  padding: 120px 0 168px;
  background: #FFFFFF;
}

@media (max-width: 768px) {
  .aniv-cont02 {
    padding: 80px 0 60px;
  }
}

.aniv-cont02 .c-text {
  margin: 0 auto 67px;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
  line-height: 170%;
  font-size: 1rem;
  letter-spacing: 0.07em;
}

@media (max-width: 768px) {
  .aniv-cont02 .c-text {
    margin: 0 auto 40px;
  }
}

@media (max-width: 768px) {
  .aniv-cont02 .c-column {
    position: relative;
    padding-bottom: 70px;
  }
}

.aniv-cont02 .c-column .c-txt {
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 190%;
  font-weight: 500;
}

.aniv-cont02 .c-btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0;
  max-width: 224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

@media (max-width: 768px) {
  .aniv-cont02 .c-btn {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.aniv-cont02 .c-btn b {
  width: 26px;
  height: 26px;
  right: 11px;
}

.aniv-cont03 {
  padding: 140px 0 178px;
  background: #D9F7F7;
}

@media (max-width: 768px) {
  .aniv-cont03 {
    padding: 80px 0 60px;
  }
}

@media (max-width: 768px) {
  .aniv-cont03 .c-title {
    font-size: 1.6rem;
  }
}

.aniv-cont03 .c-text {
  line-height: 170%;
  font-size: 1rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 58px;
}

@media (max-width: 768px) {
  .aniv-cont03 .c-text {
    margin-bottom: 0px;
  }
}

.aniv03-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  overflow: hidden;
}

.aniv03-list li {
  max-width: 284px;
  width: 32%;
  margin-top: 64px;
}

@media (max-width: 768px) {
  .aniv03-list li {
    max-width: initial;
    width: 49%;
    margin-top: 40px;
  }
}

.aniv03-list li:nth-child(1),
.aniv03-list li:nth-child(2),
.aniv03-list li:nth-child(3) {
  margin-top: 0;
}

@media (max-width: 768px) {

  .aniv03-list li:nth-child(1),
  .aniv03-list li:nth-child(2),
  .aniv03-list li:nth-child(3) {
    margin-top: 40px;
  }
}

.aniv03-list li .img {
  width: 100%;
  margin-bottom: 24px;
}

.aniv03-list li .img img {
  width: 100%;
}

.aniv03-list li h3 {
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.375rem;
  line-height: 150%;
  letter-spacing: 0.01em;
}

@media (max-width: 1000px) {
  .aniv03-list li h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .aniv03-list li h3 {
    font-size: 0.96rem;
  }
}

.aniv03-list li p {
  margin: 24px 0 13px;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 190%;
  font-weight: 500;
  /* font-family: "Noto Sans", serif; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 768px) {
  .aniv03-list li p {
    margin: 13px 0 10px;
    font-size: 0.75rem;
  }
}

.aniv03-list li .c-btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0;
  max-width: 224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

@media (max-width: 768px) {
  .aniv03-list li .c-btn {
    justify-content: flex-start;
    padding-left: 16px;
  }
}

.aniv03-list li .c-btn b {
  width: 26px;
  height: 26px;
  right: 11px;
}

.aniv-cont04 {
  padding: 140px 0 79px;
}

@media (max-width: 768px) {
  .aniv-cont04 {
    padding: 80px 0 10px;
  }
}

@media (max-width: 768px) {
  .aniv-cont04 .c-title {
    font-size: 1.6rem;
  }
}

.aniv-cont04 .c-text {
  margin: 0 auto 72px;
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
  line-height: 170%;
  font-size: 1rem;
  letter-spacing: 0.07em;
}

@media (max-width: 768px) {
  .aniv-cont04 .c-text {
    margin: 0 auto 50px;
  }
}

.aniv-cont04 .aniv-cont04-div.aniv-cont04-div1 {
  margin-bottom: 133px;
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div.aniv-cont04-div1 {
    margin: 0 auto 50px;
  }
}

.aniv-cont04 .aniv-cont04-div.aniv-cont04-div1 .img {
  max-width: 734.27px;
  margin: 0 auto;
}

.aniv-cont04 .aniv-cont04-div.aniv-cont04-div2 {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div.aniv-cont04-div2 {
    margin: 0 auto 50px;
  }
}

.aniv-cont04 .aniv-cont04-div.aniv-cont04-div3 {
  margin-bottom: 48px;
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 {
  background: #fff;
  padding: 24px 3.723% 36px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .c-title__md {
    font-size: 1.2rem;
  }
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .img3 {
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .yt {
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
  max-height: 384px;
  height: 47vw;
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .yt iframe {
  width: 100%;
  height: 100%;
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex {
    flex-direction: column;
  }
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex .img1 {
  width: 66.867%;
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex .img1 {
    width: 100%;
  }
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex .img2 {
  width: 32.894%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex .img2 {
    width: 100%;
    flex-direction: initial;
  }
}

@media (max-width: 768px) {
  .aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex .img2 .img21 {
    width: 49%;
    margin-top: 2%;
  }
}

.aniv-cont04 .aniv-cont04-div .aniv-cont04-div21 .flex .img2 .img21:last-child {
  margin-top: auto;
}

.aniv-cont04 .aniv-cont04-div .text {
  line-height: 190%;
  font-size: 0.875rem;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 20px;
}

.aniv-cont04 .c-btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0;
  max-width: 236px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.aniv-cont04 .c-btn b {
  width: 26px;
  height: 26px;
  right: 11px;
}

.aniv-cont05 {
  padding: 51px 0 133px;
}

@media (max-width: 768px) {
  .aniv-cont05 {
    padding: 50px 0 60px;
  }
}

.aniv-cont05 .aniv05-div {
  position: relative;
  padding: 82px 0 65px;
  background: linear-gradient(110deg, #DDF6F4 2.25%, #BEE9E6 119.85%);
}

@media (max-width: 768px) {
  .aniv-cont05 .aniv05-div {
    padding: 50px 0 40px;
  }
}

.aniv-cont05 .aniv05-div.aniv05-div1 {
  margin: 0 auto 23px;
}

.aniv-cont05 .aniv05-div.aniv05-div1:before {
  position: absolute;
  content: "";
  background: url(../img/anniversary/sakana-1.png) center bottom no-repeat;
  background-size: contain;
  max-width: 293px;
  width: 21%;
  height: 133px;
  left: 3.929%;
  top: -14%;
}

@media (max-width: 768px) {
  .aniv-cont05 .aniv05-div.aniv05-div1:before {
    width: 33%;
    top: -24%;
  }
}

.aniv-cont05 .aniv05-div.aniv05-div2:before {
  position: absolute;
  content: "";
  background: url(../img/anniversary/sakana-2.png) center no-repeat;
  background-size: contain;
  max-width: 293px;
  width: 21%;
  height: 133px;
  right: 5.358%;
  bottom: -20.666%;
}

@media (max-width: 768px) {
  .aniv-cont05 .aniv05-div.aniv05-div2:before {
    width: 33%;
  }
}

.aniv-cont05 .aniv05-div .c-title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 26px;
}

.aniv-cont05 .aniv05-div .text {
  line-height: 190%;
  font-size: 0.875rem;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}

.aniv-cont05 .aniv05-div .flex {
  display: flex;
  justify-content: space-between;
  max-width: 572px;
  width: 100%;
  margin: 37px auto 0;
}

@media (max-width: 768px) {
  .aniv-cont05 .aniv05-div .flex {
    flex-direction: column;
    margin: 20px auto 0;
  }
}

.aniv-cont05 .aniv05-div .flex .c-btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  max-width: 280px;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

@media (max-width: 768px) {
  .aniv-cont05 .aniv05-div .flex .c-btn {
    width: 100%;
    margin: 8px auto 0;
    height: 60px;
  }
}

.aniv-cont05 .aniv05-div .flex .c-btn b {
  width: 26px;
  height: 26px;
  right: 11px;
}

@media (max-width: 768px) {
  .c-keyVisual__h1.small {
    font-size: 1.7rem;
  }

  .p-aboutLinks.aniv-Links .p-aboutLinks__list {
    align-items: center;
  }

  .p-aboutLinks.aniv-Links .p-aboutLinks__list .p-aboutLinks__listItem {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 0.9rem;
  }
}

.p-archive__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-archive__contents {
  width: calc(100% - 216px - 80px);
}

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

.p-archive__sideNav {
  width: 216px;
}

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

.p-archive__sideNav .c-title__sm {
  font-size: 1.125rem;
}

.p-archive__sideNav__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.p-archive__sideNav__tagListItem {
  color: #4C627D;
  opacity: 0.8;
  font-size: 0.8125rem;
}

.p-archive__sideNav__select {
  display: block;
  margin-bottom: 40px;
  position: relative;
}

.p-archive__sideNav__select:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
  top: 50%;
  border-bottom: 1px solid #4C627D;
  border-right: 1px solid #4C627D;
}

.p-archive__sideNav__selectBox {
  width: 100%;
  padding: 13px 20px;
  letter-spacing: 0.1em;
  background: #ffffff;
  display: block;
}

.p-clean {
  width: 100%;
}

.p-cleanOverview {
  position: relative;
}

.p-cleanOverview__title {
  font-family: "Shippori Mincho B1";
  text-align: center;
  font-size: 2.125rem;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-cleanOverview__title {
    font-size: 1.625rem;
  }
}

.p-cleanOverview__img1 {
  width: 250px;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .p-cleanOverview__img1 {
    width: 150px;
    top: 40px;
  }
}

.p-cleanOverview__img2 {
  width: 400px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: -200px;
  z-index: 5;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .p-cleanOverview__img2 {
    width: 220px;
    bottom: -120px;
  }
}

.p-cleanContents__box {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .p-cleanContents__box {
    padding: 10px;
    margin-top: 20px;
  }
}

.p-cleanContents__boxImg {
  display: block;
  width: 100%;
}

.p-cleanBanner {
  padding: 60px 0;
}

.p-cleanBanner__box {
  padding: 60px;
  border-radius: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: url(../img/clean/banner.png) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .p-cleanBanner__box {
    padding: 20px;
  }
}

.p-cleanBanner__title {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .p-cleanBanner__title {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-cleanBanner__text {
    font-size: 0.9375rem;
  }
}

.p-cleanBanner__text,
.p-cleanBanner__title {
  color: white;
  line-height: 1.6;
  font-family: "Shippori Mincho B1";
}

@media screen and (max-width: 768px) {
  .p-cleanBanner .c-btn {
    padding: 20px 70px 20px 20px;
  }
}

.p-guide {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p-guide .p-guideMv {
  margin-top: 88px;
  position: relative;
  background: linear-gradient(177.76deg, rgba(197, 243, 255, 0) 34.96%, rgba(197, 243, 255, 0.914611) 40.89%, rgba(197, 243, 255, 0.864021) 37.1%, #C5F3FF 51.04%);
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv {
    margin-top: 0;
    background: linear-gradient(177.76deg, rgba(197, 243, 255, 0) 23.96%, rgba(197, 243, 255, 0.914611) 29.89%, rgba(197, 243, 255, 0.864021) 37.1%, #C5F3FF 51.04%);
  }
}

.p-guide .p-guideMv__img1 {
  position: absolute;
  left: -200px;
  z-index: -1;
  top: 20%;
  width: 360px;
}

.p-guide .p-guideMv__img1 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__img1 {
    left: 0;
    top: 11%;
    width: 20%;
  }
}

.p-guide .p-guideMv__img2 {
  position: absolute;
  right: -100px;
  z-index: -1;
  top: 800px;
  width: 300px;
}

.p-guide .p-guideMv__img2 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__img2 {
    top: 25%;
    right: 0;
    width: 15%;
  }
}

.p-guide .p-guideMv__img3 {
  position: absolute;
  left: 0px;
  z-index: -1;
  top: 1100px;
  width: 250px;
}

.p-guide .p-guideMv__img3 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__img3 {
    top: 35%;
    width: 40%;
    max-width: 250px;
  }
}

.p-guide .p-guideMv__img4 {
  position: absolute;
  top: 480px;
  right: 0px;
  z-index: -1;
  width: 120px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__img4 {
    right: 2%;
    top: 15%;
    width: 9%;
  }
}

.p-guide .p-guideMv__img4 img {
  width: 100%;
}

.p-guide .p-guideMv__img5 {
  position: absolute;
  top: 910px;
  left: 0px;
  z-index: -1;
  width: 100px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__img5 {
    left: 5%;
    top: 25%;
    width: 9%;
  }
}

.p-guide .p-guideMv__img5 img {
  width: 100%;
}

.p-guide .p-guideMv__img6 {
  position: absolute;
  top: 1130px;
  right: 40px;
  z-index: -1;
  width: 35px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__img6 {
    right: 20%;
    top: 35%;
    width: 5%;
  }
}

.p-guide .p-guideMv__img6 img {
  width: 100%;
}

.p-guide .p-guideMv .c-inner {
  padding-top: 140px;
  padding-bottom: calc(20vw + 60px);
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv .c-inner {
    padding-top: 140px;
  }
}

.p-guide .p-guideMv:before {
  content: "";
  width: 510px;
  height: 355.06px;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  background: url(../img/guide/guide-kv_left.svg) no-repeat left top;
  background-size: contain;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv:before {
    width: 80%;
  }
}

.p-guide .p-guideMv:after {
  content: "";
  width: 540.19px;
  height: 443.7px;
  top: 0px;
  right: 0;
  z-index: -1;
  display: block;
  background: url(../img/guide/guide-kv_right.svg) no-repeat right top;
  background-size: contain;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv:after {
    width: 80%;
  }
}

.p-guide .p-guideMv__title {
  width: 100%;
  max-width: 562px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__title {
    width: 85%;
    max-width: 400px;
  }
}

.p-guide .p-guideMv__lead {
  font-size: 1.1875rem;
  line-height: 2.8125rem;
  letter-spacing: 0.178125rem;
  text-align: center;
  margin-top: 76px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__lead {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-guide .p-guideMv__h2 {
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__h2 {
    margin-top: 250px;
  }
}

.p-guide .p-guideMv__step {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
  background: url(../img/guide/step-bg.jpg) center center;
  background-size: 100% 100%;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__step {
    background: none;
  }
}

.p-guide .p-guideMv__stepItem {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__stepItem {
    width: 100%;
    flex: initial;
    position: relative;
  }

  .p-guide .p-guideMv__stepItem:nth-child(1) {
    background: #CFF68A;
    padding-bottom: 20px;
  }

  .p-guide .p-guideMv__stepItem:nth-child(1):after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    aspect-ratio: 1/0.8660254038;
    background: #CFF68A;
    width: 100%;
    height: 20px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }

  .p-guide .p-guideMv__stepItem:nth-child(2) {
    background: #ECF590;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .p-guide .p-guideMv__stepItem:nth-child(2):after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    aspect-ratio: 1/0.8660254038;
    background: #ECF590;
    width: 100%;
    height: 20px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }

  .p-guide .p-guideMv__stepItem:nth-child(3) {
    background: #FFF89B;
    padding-top: 60px;
  }
}

.p-guide .p-guideMv__stepItem__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.21em;
  text-align: center;
}

.p-guide .p-guideMv__stepItem__img {
  height: 15vw;
  max-height: 204px;
  display: block;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideMv__stepItem__img {
    height: 50vw;
  }
}

.p-guide .p-guideMv__stepItem__txt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-guide .p-guideActionWrap {
  position: relative;
  background: linear-gradient(163.75deg, #9CE6F7 13.98%, #9CE6F7 50.87%, #C0E77D 80.32%, #FADB8B 90.71%);
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideActionWrap {
    background: linear-gradient(163.75deg, #9CE6F7 13.98%, #9CE6F7 50.87%, #C0E77D 85.32%, #FADB8B 98.71%);
  }
}

.p-guide .p-guideActionWrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 15vw;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: url(../img/guide/wave.svg) top center no-repeat;
  background-size: cover;
}

.p-guide .p-guideAction {
  padding-bottom: 20vw;
}

.p-guide .p-guideAction__mt {
  position: absolute;
  left: 0;
  top: -15vw;
  width: 20%;
}

.p-guide .p-guideAction__mt img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideAction__mt {
    width: 40%;
    top: -25vw;
  }
}

.p-guide .p-guideAction__tree {
  position: absolute;
  right: 5%;
  top: -9vw;
  width: 7%;
}

.p-guide .p-guideAction__tree img {
  width: 100%;
}

.p-guide .p-guideAction__h2 {
  text-align: center;
  margin-bottom: 20px;
}

.p-guide .p-guideAction__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.p-guide .p-guideAction__listItem {
  width: calc(100% / 3 - 20px * (3 - 1) / 3);
  background: #ffffff;
  border: 4px solid #E9E9E9;
  border-radius: 16px;
  padding: 20px 20px 80px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 980px) {
  .p-guide .p-guideAction__listItem {
    width: calc(100% / 2 - 20px * (2 - 1) / 2);
  }
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideAction__listItem {
    width: calc(100% / 1 - 20px * (1 - 1) / 1);
    padding: 20px 20px 60px;
  }
}

.p-guide .p-guideAction__listItem__number {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideAction__listItem__number {
    font-size: 2rem;
    left: 15px;
    top: 15px;
  }
}

.p-guide .p-guideAction__listItem__number::before {
  content: "#";
  color: #DBED75;
  padding-top: 0.1em;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-guide .p-guideAction__listItem__img {
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 40px auto 20px;
  height: 30vw;
  max-height: 173px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideAction__listItem__img {
    height: 40vw;
    max-height: 250px;
    margin: 10px auto 5px;
  }
}

.p-guide .p-guideAction__listItem__txt {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.4375rem;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideAction__listItem__txt {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-guide .p-guideAction__listItem__link {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #DBED75;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 0.08em;
  padding: 14px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideAction__listItem__link {
    font-size: 0.875rem;
    padding: 10px;
  }
}

.p-guide .p-guideAction__listItem__link:hover {
  opacity: 0.8;
}

.p-guide .p-guideAction__listItem__link:hover b::before {
  transform: translate(15px, 0);
  opacity: 0;
}

.p-guide .p-guideAction__listItem__link:hover b::after {
  transform: translate(0px, 0);
  opacity: 1;
}

.p-guide .p-guideAction__listItem__link b {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background: #ffffff;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p-guide .p-guideAction__listItem__link b::before {
  width: 10px;
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p-guide .p-guideAction__listItem__link b::after {
  width: 10px;
  height: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transform: translate(-30px, 0);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.p-guide .p-guideRecommend {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.5));
}

.p-guide .p-guideRecommend__illust1 {
  position: absolute;
  left: -20px;
  width: 110px;
  top: -40px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideRecommend__illust1 {
    width: 15%;
    left: 10px;
    top: -15vw;
  }
}

.p-guide .p-guideRecommend__illust1 img {
  width: 100%;
}

.p-guide .p-guideRecommend__illust2 {
  position: absolute;
  left: -100px;
  width: 110px;
  bottom: -100px;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideRecommend__illust2 {
    width: 10%;
    left: 10px;
    bottom: -10vw;
  }
}

.p-guide .p-guideRecommend__illust2 img {
  width: 100%;
}

.p-guide .p-guideRecommend:before {
  background: url(../img/guide/wave-recommend.svg) top center no-repeat;
  background-size: cover;
  content: "";
  width: 100%;
  height: 15vw;
  display: block;
  bottom: 100%;
  left: 0;
  position: absolute;
}

.p-guide .p-guideRecommend:after {
  background: url(../img/guide/wave-recommend.svg) bottom center no-repeat;
  background-size: cover;
  content: "";
  width: 100%;
  height: 10vw;
  display: block;
  left: 0;
  top: 100%;
  position: absolute;
}

.p-guide .p-guideRecommend__h2 {
  text-align: center;
}

.p-guide .p-guideRecommend__subTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 40px;
}

.p-guide .p-guideRecommend .box-panel {
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
  font-family: "Shippori Mincho B1", serif;
}

.p-guide .p-guideRecommend .box-panel .com--btn-2 {
  margin-top: 70px;
}

.p-guide .p-guideRecommend .box-panel .list-wrap {
  height: 0px;
  overflow: hidden;
  position: relative;
  visibility: hidden;
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .p-guide .p-guideRecommend .box-panel .list-wrap .flexs {
    gap: 36px;
  }
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item {
  width: 30%;
}

@media (max-width: 768px) {
  .p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item {
    width: 100%;
  }
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item:hover .in-img {
  transform: scale(1.1);
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item .bigImg {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item .bigImg {
    margin-bottom: 15px;
  }
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item .bigImg .in-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  will-change: transform;
  transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item .bigImg .in-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item .data {
  font-size: 0.75rem;
  letter-spacing: 0.0375rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item .data {
    margin-bottom: 8px;
  }
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item h6 {
  font-size: 1.125rem;
  letter-spacing: 0.05625rem;
  line-height: 1.9125rem;
  padding-bottom: 20px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item h6 {
    font-size: 1rem;
  }
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item h6:hover {
  text-decoration: underline;
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item ol {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item ol li {
  font-size: 0.9375rem;
  display: inline-block;
  padding-left: 13px;
  position: relative;
  margin-right: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item ol li {
    font-size: 0.875rem;
    margin-right: 18px;
  }
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item ol li:hover {
  opacity: 0.5;
}

.p-guide .p-guideRecommend .box-panel .list-wrap .flexs .list-item ol li::before {
  content: "#";
  position: absolute;
  left: 0;
  top: 0;
}

.p-guide .p-guideRecommend .box-panel .active-list {
  height: auto;
  visibility: visible;
}

.p-guide .p-guideRecommend .box-panel .active-list .flexs {
  opacity: 1;
  transform: translate(0, 0);
}

.p-guide .p-guideOneAction {
  padding-top: 15vw;
  padding-bottom: 10vw;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideOneAction {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
}

.p-guide .p-guideOneAction__illust {
  position: absolute;
  right: -70px;
  top: -18vw;
  width: 7%;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideOneAction__illust {
    right: 5%;
    width: 13%;
    top: -25vw;
  }
}

.p-guide .p-guideOneAction__illust img {
  width: 100%;
}

.p-guide .p-guideOneAction .p-guideAction__listItem {
  padding-bottom: 40px;
}

.p-guide .p-guideOneAction__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.p-guide .p-guideOneAction__snsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideOneAction__snsList {
    gap: 30px;
  }
}

.p-guide .p-guideOneAction__snsListItem {
  width: 55px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideOneAction__snsListItem {
    width: 40px;
  }
}

.p-guide .p-guideOneAction__snsTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
  position: relative;
}

.p-guide .p-guideOneAction__snsTitle:before,
.p-guide .p-guideOneAction__snsTitle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 2px;
  height: 1.2em;
  background: #4C627D;
}

.p-guide .p-guideOneAction__snsTitle:before {
  right: calc(100% + 18px);
  transform: translateY(-50%) rotate(-25deg);
}

.p-guide .p-guideOneAction__snsTitle:after {
  left: calc(100% + 18px);
  transform: translateY(-50%) rotate(25deg);
}

.p-guide .p-guideOneAction__snsTxt {
  margin-top: 30px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideOneAction__snsTxt {
    font-size: 1rem;
  }
}

.p-guide .p-guideSns {
  background: linear-gradient(182deg, rgba(197, 243, 255, 0.45) 15%, #c5f3ff 40%);
  text-align: center;
  padding-top: 40px;
  padding-bottom: 70px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideSns {
    background: linear-gradient(186deg, rgba(197, 243, 255, 0.45) 10%, #c5f3ff 40%);
  }
}

.p-guide .p-guideSns:before {
  background: url(../img/guide/sns-bg.svg) top center no-repeat;
  background-size: cover;
  content: "";
  width: 100%;
  height: 10vw;
  display: block;
  bottom: 100%;
  left: 0;
  position: absolute;
}

.p-guide .p-guideSns__txt {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideSns__txt {
    font-size: 1.125rem;
  }
}

.p-guide .p-guideSns__illust1 {
  position: absolute;
  left: 0;
  z-index: 4;
  top: -150px;
  width: 120px;
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideSns__illust1 {
    left: 20px;
    width: 20%;
    top: -25vw;
  }
}

.p-guide .p-guideSns__illust1 img {
  width: 100%;
}

.p-guide .p-guideSns__illust2 {
  position: absolute;
  right: 0;
  z-index: 4;
  bottom: -80px;
  width: 120px;
}

@media screen and (max-width: 1000px) {
  .p-guide .p-guideSns__illust2 {
    right: -80px;
  }
}

@media screen and (max-width: 768px) {
  .p-guide .p-guideSns__illust2 {
    right: 0;
    width: 20%;
  }
}

.p-guide .p-guideSns__illust2 img {
  width: 100%;
}

.p-guide .l-guideSns2 {
  background: #C5F3FF;
}

.p-guide .sns-share {
  background: none;
}

@media screen and (max-width: 768px) {
  .p-guide+footer {
    background: #C5F3FF;
    margin-top: -23%;
  }
}

.c-keyVisual__nextContents.loginContainer {
  /* member */
}

.c-keyVisual__nextContents.loginContainer .log_cont .log_text {
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.9;
  letter-spacing: 0.06em;
  margin-bottom: 46px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .c-keyVisual__nextContents.loginContainer .log_cont .log_text {
    font-size: 0.89rem;
  }
}

.c-keyVisual__nextContents.loginContainer .log_cont dl {
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .c-keyVisual__nextContents.loginContainer .log_cont dl {
    margin: 0 auto 20px;
  }
}

.c-keyVisual__nextContents.loginContainer .log_cont dl dt {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .c-keyVisual__nextContents.loginContainer .log_cont dl dt {
    font-size: 1rem;
  }
}

.c-keyVisual__nextContents.loginContainer .log_cont dl dd .log_input {
  background: #fff;
  border: 1px solid #4C627D;
  border-radius: 8px;
  height: 53px;
  width: 100%;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .c-keyVisual__nextContents.loginContainer .log_cont dl dd .log_input {
    height: 40px;
  }
}

.c-keyVisual__nextContents.loginContainer .log_cont .login {
  margin: 64px auto 0;
}

@media (max-width: 768px) {
  .c-keyVisual__nextContents.loginContainer .log_cont .login {
    margin: 40px auto 0px;
  }
}

.c-keyVisual__nextContents.loginContainer .log_cont .login .check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .c-keyVisual__nextContents.loginContainer .log_cont .login .check {
    font-size: 1rem;
  }
}

.c-keyVisual__nextContents.loginContainer .log_cont .login .check input {
  margin-right: 8px;
  margin-top: 3px;
}

.c-keyVisual__nextContents.loginContainer .log_cont .login .c-btn {
  max-width: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 56px;
}

.c-keyVisual__nextContents.loginContainer .log_cont .login .c-btn b {
  width: 26px;
  height: 26px;
}

.c-keyVisual__nextContents.loginContainer .log_cont .login .c-btn .log_input2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.c-keyVisual__nextContents.loginContainer .log_cont .message {
  text-align: center;
  margin: 0px auto 0px;
  color: #ff1111;
}

.c-keyVisual__nextContents.loginContainer .member_div {
  margin: 0 auto 70px;
}

.c-keyVisual__nextContents.loginContainer .member_div:last-child {
  margin: 0 auto;
}

.c-keyVisual__nextContents.loginContainer .member_div ul li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.c-keyVisual__nextContents.loginContainer .member_div ul li:before {
  content: "●";
  color: #18A3BC;
  font-size: 0.5rem;
  font-weight: 500;
  margin-right: 6px;
  padding-top: 7px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.c-keyVisual__nextContents.loginContainer .member_div ul li a {
  color: #18A3BC;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.c-keyVisual__nextContents.loginContainer .member_det p {
  line-height: 1.74;
  letter-spacing: 0.01em;
  font-weight: 500;
  font-family: "Shippori Mincho B1", serif;
}

.c-keyVisual__nextContents.loginContainer .member_det p .big {
  font-weight: 700;
}

.c-keyVisual__nextContents.loginContainer .member_det a {
  color: #18A3BC;
  text-decoration: underline;
}

.c-keyVisual__nextContents.loginContainer .member_det .text {
  margin-bottom: 46px;
}

.mem_tit {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  border-bottom: 1px solid #4C627D;
  margin-bottom: 33px;
}

.member_list li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.member_list li:before {
  content: "●";
  color: #18A3BC;
  font-size: 0.5rem;
  font-weight: 500;
  margin-right: 6px;
  padding-top: 7px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.member_list li a {
  color: #18A3BC;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
}

.mon {
  font-family: "Montserrat", serif;
  font-weight: 800;
}

.p-map {
  background: #FFF6A2;
  font-family: "Noto Sans JP", serif;
}

.ma1920 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.sousyoku {
  width: 100%;
}

.sousyoku .sou {
  position: absolute;
}

.sousyoku .sou img {
  width: 100%;
}

.map_mv {
  padding: 116px 0 100px;
}

@media (max-width: 768px) {
  .map_mv {
    padding: 116px 0 60px;
    overflow: hidden;
  }
}

.map_mv .c-inner.c-breadcrumb {
  position: initial;
}

.map_mv .text_area {
  max-width: 554px;
  margin: 0 auto;
  width: 40%;
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) {
  .map_mv .text_area {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .map_mv .text_area {
    width: 100%;
    padding: 0px 20px 0;
  }
}

.map_mv .text_area .title {
  max-width: 554px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .map_mv .text_area .title {
    width: 90%;
  }
}

.map_mv .text_area .title img {
  width: 100%;
}

.map_mv .text_area .text {
  max-width: 386px;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin: 65px auto 0;
}

@media (max-width: 768px) {
  .map_mv .text_area .text {
    margin: 45px auto 0;
    font-size: 0.84375rem;
  }
}

.map_mv .sousyoku .sou1 {
  left: 19.3%;
  top: 10.6%;
  max-width: 120px;
  width: 9%;
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou1 {
    left: 10%;
    top: 15%;
  }
}

.map_mv .sousyoku .sou2 {
  left: 6.6%;
  top: 89%;
  max-width: 117px;
  width: 9%;
}

@media (max-width: 1000px) {
  .map_mv .sousyoku .sou2 {
    top: 70%;
  }
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou2 {
    left: 3%;
    top: 80%;
  }
}

.map_mv .sousyoku .sou3 {
  left: 22%;
  top: 95%;
  max-width: 112px;
  width: 8%;
}

@media (max-width: 1000px) {
  .map_mv .sousyoku .sou3 {
    left: 12%;
  }
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou3 {
    left: 4%;
    top: 100%;
  }
}

.map_mv .sousyoku .sou4 {
  right: 8.7%;
  top: 72%;
  max-width: 97px;
  width: 7%;
}

@media (max-width: 1000px) {
  .map_mv .sousyoku .sou4 {
    top: 50%;
  }
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou4 {
    top: 62%;
    right: 3%;
  }
}

.map_mv .sousyoku .sou5 {
  right: 23%;
  top: 86.3%;
  max-width: 77px;
  width: 6%;
}

@media (max-width: 1000px) {
  .map_mv .sousyoku .sou5 {
    top: 75%;
    right: 13%;
  }
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou5 {
    top: 100%;
    right: 4%;
  }
}

.map_mv .sousyoku .sou11 {
  left: 2.3%;
  top: 22.3%;
  max-width: 392px;
  width: 28%;
}

@media (max-width: 1000px) {
  .map_mv .sousyoku .sou11 {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou11 {
    left: 0%;
    width: 18%;
  }
}

.map_mv .sousyoku .sou12 {
  right: 5.6%;
  top: 10%;
  max-width: 363px;
  width: 26%;
}

@media (max-width: 1000px) {
  .map_mv .sousyoku .sou12 {
    width: 20%;
    right: 2%;
  }
}

@media (max-width: 768px) {
  .map_mv .sousyoku .sou12 {
    right: -2%;
    width: 18%;
  }
}

.map_all_wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 8%;
}

@media (max-width: 768px) {
  .map_all_wrap {
    padding-bottom: 40px;
  }
}

.map_all_wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 103%;
  background: url(../img/map/bg1.png) no-repeat top left;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .map_all_wrap:before {
    background: url(../img/map/bg1.png) no-repeat top;
    background-size: cover;
    background-position-x: 20%;
  }
}

.map_all_wrap .map_sec_wrap {
  background: url(../img/map/bg2.png) no-repeat top left;
  background-size: cover;
}

@media (max-width: 768px) {
  .map_all_wrap .map_sec_wrap {
    background-size: contain;
  }
}

.map_tit1 {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .map_tit1 {
    width: 90%;
  }
}

.map_tit1 img {
  width: 100%;
}

.map_inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .map_inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.map01 {
  padding: 219px 0 112px;
  position: relative;
  color: #34475E;
}

@media (max-width: 768px) {
  .map01 {
    padding: 120px 0 60px;
  }
}

.map01 .sousyoku .sou1 {
  left: 5.2%;
  top: 2.25%;
  max-width: 104px;
  width: 8%;
}

@media (max-width: 768px) {
  .map01 .sousyoku .sou1 {
    top: 0%;
  }
}

.map01 .sousyoku .sou2 {
  right: 0%;
  top: 5.1%;
  max-width: 371px;
  width: 27%;
}

@media (max-width: 768px) {
  .map01 .sousyoku .sou2 {
    top: 2%;
  }
}

.map01 .map_inner {
  max-width: 1022px;
}

.map01 .map_tit1 {
  max-width: 511px;
  margin: 0 auto 41px;
}

.map01 .map_text1 {
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 700;
  margin: 0 auto 62px;
}

@media (max-width: 768px) {
  .map01 .map_text1 {
    margin: 0 auto 40px;
    font-size: 0.9rem;
  }
}

.map01 .map_area .map_cont img {
  width: 100%;
  margin-bottom: 36px;
}

.map01 .map01_list {
  display: flex;
  align-items: center;
  margin: 22px auto 98px;
}

@media (max-width: 768px) {
  .map01 .map01_list {
    flex-direction: column;
    align-items: flex-start;
    margin: 14px auto 40px;
  }
}

.map01 .map01_list li {
  display: flex;
  align-items: baseline;
  margin-right: 32px;
}

@media (max-width: 768px) {
  .map01 .map01_list li {
    margin-top: 8px;
  }
}

.map01 .map01_list li .col {
  width: 54px;
  height: 20px;
  margin-right: 6px;
}

.map01 .map01_list li .col.col1 {
  background: #606060;
}

.map01 .map01_list li .col.col2 {
  background: #D9D9D9;
}

.map01 .map01_list li .col.col3 {
  background: #FFFFFF;
}

.map01 .map01_list li .text1 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.map01 .map01_div1 {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 31px 9% 33px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .map01 .map01_div1 {
    flex-direction: column;
    padding: 0px 12% 0px;
    max-width: 400px;
  }
}

.map01 .map01_div1::before {
  position: absolute;
  content: "";
  background: url(../img/map/co1_left.svg) no-repeat left center;
  background-size: contain;
  width: 82.78px;
  height: 100%;
  left: 0;
}

@media (max-width: 768px) {
  .map01 .map01_div1::before {
    width: 60px;
  }
}

.map01 .map01_div1::after {
  position: absolute;
  content: "";
  background: url(../img/map/co1_right.svg) no-repeat right center;
  background-size: contain;
  width: 82.78px;
  height: 100%;
  right: 0;
}

@media (max-width: 768px) {
  .map01 .map01_div1::after {
    width: 60px;
  }
}

.map01 .map01_div1 .text1 {
  font-size: 1.75rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
  margin-right: 3.573%;
}

@media (max-width: 768px) {
  .map01 .map01_div1 .text1 {
    font-size: 1.25rem;
  }
}

.map01 .map01_div1 .text2 {
  font-size: 3.125rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 900;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  z-index: 1;
}

.map01 .map01_div1 .text2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 25%;
  bottom: 7%;
  left: 0;
  background: #fff;
  z-index: -1;
}

.map01 .map01_div1 .text2 .big {
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

@media (max-width: 1000px) {
  .map01 .map01_div1 .text2 {
    font-size: 2.4rem;
  }

  .map01 .map01_div1 .text2 .big {
    font-size: 6.8rem;
  }
}

@media (max-width: 768px) {
  .map01 .map01_div1 .text2 {
    font-size: 2rem;
  }

  .map01 .map01_div1 .text2 .big {
    font-size: 5rem;
  }
}

.map02 {
  position: relative;
  padding: 251px 0 115px;
}

@media (max-width: 768px) {
  .map02 {
    padding: 120px 0 60px;
  }
}

.map02 .sousyoku .sou1 {
  left: 0%;
  top: 0%;
  max-width: 488px;
  width: 35%;
}

.map02 .sousyoku .sou2 {
  right: 8%;
  top: 0%;
  max-width: 48px;
  width: 4%;
}

.map02 .map_tit1 {
  max-width: 546px;
  margin: 0 auto 56px;
}

@media (max-width: 768px) {
  .map02 .map_tit1 {
    margin: 0 auto 40px;
  }
}

.map02 .map02_div1 {
  margin: 0 auto 80px;
}

@media (max-width: 768px) {
  .map02 .map02_div1 {
    margin: 0 auto 60px;
  }
}

.map02 .map02_div1 .map02_list1 li {
  margin: 0 auto 47px;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li {
    margin: 0 auto 50px;
  }
}

.map02 .map02_div1 .map02_list1 li:nth-child(2) {
  margin: 0 auto;
}

.map02 .map02_div1 .map02_list1 li .title_area {
  background: #fff;
  margin-bottom: 46px;
  height: 69px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .title_area {
    height: 60px;
  }
}

.map02 .map02_div1 .map02_list1 li .title_area:before {
  position: absolute;
  content: "";
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 18.5px solid #ffffff;
  border-bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.map02 .map02_div1 .map02_list1 li .title_area .title1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #34475E;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .title_area .title1 {
    font-size: 1.2rem;
  }
}

.map02 .map02_div1 .map02_list1 li .title_area .title1 img {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .title_area .title1 img {
    width: 30px;
  }
}

.map02 .map02_div1 .map02_list1 li .flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .flex {
    flex-direction: column-reverse !important;
  }
}

.map02 .map02_div1 .map02_list1 li .flex .img {
  max-width: 500px;
  width: 50%;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .flex .img {
    width: 100%;
    max-width: initial;
    margin: 30px auto 0px;
  }
}

.map02 .map02_div1 .map02_list1 li .flex .img img {
  width: 100%;
}

.map02 .map02_div1 .map02_list1 li .flex .text_area {
  max-width: 454px;
  width: 48%;
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .flex .text_area {
    width: 100%;
    max-width: initial;
  }
}

.map02 .map02_div1 .map02_list1 li .flex .text_area .title2 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #34475E;
  margin-top: -2%;
}

@media (max-width: 1000px) {
  .map02 .map02_div1 .map02_list1 li .flex .text_area .title2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .map02 .map02_div1 .map02_list1 li .flex .text_area .title2 {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
  }
}

.map02 .map02_div1 .map02_list1 li .flex .text_area .text1 {
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 17px;
}

.map02 .map02_div1 .map02_list1 li:nth-child(2) .flex {
  flex-direction: row-reverse;
}

.map02 .map02_div2 {
  border-radius: 24px;
  background: #CAE62E;
  padding: 47px 39px 46px;
  position: relative;
  margin: 0 auto 90px;
}

.map02 .map02_div2:before {
  position: absolute;
  content: "";
  background: url(../img/map/bg22.png) no-repeat center bottom;
  background-size: contain;
  width: 344px;
  height: 59px;
  left: 0;
  right: 0;
  margin: auto;
  top: 17px;
}

@media (max-width: 768px) {
  .map02 .map02_div2:before {
    width: 200px;
    height: 59px;
    top: -11px;
  }
}

.map02 .map02_div2 .map02_div21 {
  background: #fff;
  border-radius: 4px;
  padding: 8.136% 5.64% 8.894%;
}

@media (max-width: 768px) {
  .map02 .map02_div2 .map02_div21 {
    padding: 40px 20px 40px;
  }
}

.map02 .map02_div2 .map02_div21 .title1 {
  color: #34475E;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-size: 2.25rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .map02 .map02_div2 .map02_div21 .title1 {
    font-size: 1.75rem;
  }
}

.map02 .map02_div2 .map02_div21 .title1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 18px;
  background: #C2DC30;
  left: 0;
  bottom: 2%;
  z-index: -1;
}

.map02 .map02_div2 .map02_div21 .map02_list2 {
  margin: 49px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .map02 .map02_div2 .map02_div21 .map02_list2 {
    margin: 30px auto 0;
  }
}

.map02 .map02_div2 .map02_div21 .map02_list2 li {
  width: 24%;
  max-width: 186px;
  margin-top: 63px;
}

@media (max-width: 768px) {
  .map02 .map02_div2 .map02_div21 .map02_list2 li {
    width: 45%;
    margin-top: 10%;
    max-width: initial;
  }
}

.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(1),
.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(2),
.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(3),
.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(4) {
  margin-top: 0;
}

@media (max-width: 768px) {

  .map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(3),
  .map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(4) {
    margin-top: 10%;
  }
}

.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(17),
.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(18),
.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(19),
.map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(20) {
  margin-top: 15px;
}

@media (max-width: 768px) {

  .map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(17),
  .map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(18),
  .map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(19),
  .map02 .map02_div2 .map02_div21 .map02_list2 li:nth-child(20) {
    margin-top: 10%;
  }
}

.map02 .map02_div2 .map02_div21 .map02_list2 li .img {
  margin: 0 auto 10px;
}

.map02 .map02_div2 .map02_div21 .map02_list2 li .img img {
  width: 100%;
}

.map02 .map02_div2 .map02_div21 .map02_list2 li .name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1000px) {
  .map02 .map02_div2 .map02_div21 .map02_list2 li .name {
    font-size: 1rem;
  }
}

@media (max-width: 1000px) {
  .map02 .map02_div2 {
    padding: 47px 16px 16px;
  }
}

@media (max-width: 768px) {
  .map02 .map02_div2 {
    padding: 32px 2.5% 2.5%;
    border-radius: 10px;
    margin: 0 auto 60px;
  }
}

.map02 .map02_div3 .title1 {
  background: #CAE62E;
  border-radius: 8px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #34475E;
  margin: 0 auto 12px;
}

@media (max-width: 768px) {
  .map02 .map02_div3 .title1 {
    font-size: 1.75rem;
    height: 60px;
  }
}

.map02 .map02_div3 .map02_list3 li {
  background: rgba(255, 255, 255, 0.9294117647);
  position: relative;
  margin-bottom: 45px;
  border-radius: 8px;
  padding: 3% 6.3% 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1000px) {
  .map02 .map02_div3 .map02_list3 li {
    padding: 3% 3% 4%;
  }
}

@media (max-width: 768px) {
  .map02 .map02_div3 .map02_list3 li {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.map02 .map02_div3 .map02_list3 li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 18px solid #4c627d;
  border-bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -33px;
}

.map02 .map02_div3 .map02_list3 li:last-child {
  margin: 0 auto;
}

.map02 .map02_div3 .map02_list3 li:last-child:before {
  display: none;
}

.map02 .map02_div3 .map02_list3 li .img {
  max-width: 100px;
  width: 16%;
}

@media (max-width: 768px) {
  .map02 .map02_div3 .map02_list3 li .img {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.map02 .map02_div3 .map02_list3 li .img img {
  width: 100%;
}

.map02 .map02_div3 .map02_list3 li .text_area {
  max-width: 726px;
  width: 82%;
}

@media (max-width: 768px) {
  .map02 .map02_div3 .map02_list3 li .text_area {
    width: 100%;
    max-width: initial;
  }
}

.map02 .map02_div3 .map02_list3 li .text_area .step {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.map02 .map02_div3 .map02_list3 li .text_area .step span {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.map02 .map02_div3 .map02_list3 li .text_area .title2 {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .map02 .map02_div3 .map02_list3 li .text_area .title2 {
    line-height: 1.5;
    font-size: 1.38rem;
  }
}

.map02 .map02_div3 .map02_list3 li .text_area .text1 {
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 20px;
}

.map03 {
  background: #E9FB97;
  position: relative;
}

.map03 .ma1920 {
  padding: 102px 0 78px;
}

@media (max-width: 1000px) {
  .map03 .ma1920 {
    padding: 102px 0 120px;
  }
}

.map03 .ma1920:before {
  position: absolute;
  max-width: 280px;
  height: 267px;
  content: "";
  background: url(../img/map/co3_sou3.png) no-repeat bottom right;
  background-size: contain;
  right: 4.643%;
  bottom: 0;
  width: 20%;
}

@media (max-width: 1300px) {
  .map03 .ma1920:before {
    right: 0%;
    width: 18%;
  }
}

@media (max-width: 768px) {
  .map03 .ma1920:before {
    width: 30%;
  }
}

.map03 .title_area {
  margin: 0 auto 41px;
  width: 100%;
}

@media (max-width: 768px) {
  .map03 .title_area {
    margin: 0 auto 70px;
  }
}

.map03 .title_area .map_tit1 {
  max-width: 528px;
  position: relative;
}

.map03 .title_area .map_tit1:before {
  position: absolute;
  content: "";
  background: url(../img/map/co3_sou1.png) no-repeat center;
  background-size: contain;
  width: 20%;
  max-width: 101px;
  height: 65px;
  right: 103%;
  top: 0;
}

@media (max-width: 768px) {
  .map03 .title_area .map_tit1:before {
    left: -10px;
    right: auto;
    bottom: 100%;
    top: auto;
  }
}

.map03 .title_area .map_tit1:after {
  position: absolute;
  content: "";
  background: url(../img/map/co3_sou2.png) no-repeat center;
  background-size: contain;
  width: 25%;
  max-width: 130px;
  height: 73px;
  left: 105%;
  top: 0;
}

@media (max-width: 768px) {
  .map03 .title_area .map_tit1:after {
    right: -10px;
    left: auto;
    top: 100%;
    bottom: auto;
  }
}

.map03 .flex {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .map03 .flex {
    flex-direction: column;
  }
}

.map03 .flex .img {
  max-width: 347px;
  width: 53%;
}

@media (max-width: 1000px) {
  .map03 .flex .img {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .map03 .flex .img {
    width: 100%;
    margin: 0 auto 0px;
  }
}

.map03 .flex .img img {
  width: 100%;
}

.map03 .flex .text_area {
  max-width: 444px;
  width: 46%;
  padding: 30px 0 0;
}

@media (max-width: 1000px) {
  .map03 .flex .text_area {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .map03 .flex .text_area {
    width: 100%;
    margin: 0 auto 0px;
    max-width: initial;
  }
}

.map03 .flex .text_area .text {
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 48px;
}

@media (max-width: 1000px) {
  .map03 .flex .text_area .text {
    margin-bottom: 24px;
  }
}

.map03 .flex .text_area .map_btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 356px;
  height: 72px;
  width: 100%;
  background: #4C627D;
  color: #fff;
  border-radius: 56px;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  transition: 0.5s;
}

.map03 .flex .text_area .map_btn1.cs {
  background: #797979;

}

@media (max-width: 768px) {
  .map03 .flex .text_area .map_btn1 {
    margin: 0 auto;
  }
}

.map03 .flex .text_area .map_btn1 img {
  position: absolute;
  right: 40px;
}

.map03 .flex .text_area .map_btn1:last-child {
  margin-top: 12px;
}

.map03 .flex .text_area .map_btn1:hover {
  opacity: 0.7;
}

.map03 .flex .text_area .map_btn1.cs:hover {
  opacity: 1;
  cursor: default;
}

.map04 {
  padding: 140px 0 97px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .map04 {
    padding: 100px 0 60px;
  }
}

.map04 .map_tit1 {
  max-width: 519px;
  margin: 0 auto 47px;
}

@media (max-width: 768px) {
  .map04 .map_tit1 {
    margin: 0 auto 30px;
  }
}

.map04 .text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: center;
  margin: 0 auto 69px;
}

@media (max-width: 768px) {
  .map04 .text {
    font-size: 1rem;
    margin: 0 auto 40px;
  }
}

.map04 .map_btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 107px;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  background: #797979;
  color: #fff;
  border-radius: 16px;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  position: relative;
  transition: 0.5s;
}

@media (max-width: 768px) {
  .map04 .map_btn2 {
    font-size: 1.2rem;
    height: 60px;
  }
}

.map04 .map_btn2:hover {
  opacity: 1;
  cursor: default;
}

/* .map04 .map_btn2:hover b::before {
  transform: translate(15px, 0);
  opacity: 0;
}

.map04 .map_btn2:hover b::after {
  transform: translate(0px, 0);
  opacity: 1;
}
 */
.map04 .map_btn2 b {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .map04 .map_btn2 b {
    width: 36px;
    height: 36px;
  }
}

.map04 .map_btn2 b::before {
  width: 13px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.map04 .map_btn2 b::after {
  width: 13px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arr-b.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
  transform: translate(-30px, 0);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.map04 .map04_div {
  background: rgba(255, 255, 255, 0.9490196078);
  margin: 73px auto 0;
  padding: 136px 20px 131px;
  position: relative;
}

@media (max-width: 768px) {
  .map04 .map04_div {
    padding: 90px 20px 90px;
  }
}

.map04 .map04_div .sousyoku .sou1 {
  right: 62%;
  top: -7%;
  max-width: 576px;
  width: 58%;
}

@media (max-width: 768px) {
  .map04 .map04_div .sousyoku .sou1 {
    width: 56%;
    right: 58%;
    top: -6%;
  }
}

.map04 .map04_div .sousyoku .sou2 {
  left: 10.6%;
  top: 40.816%;
  max-width: 120px;
  width: 14%;
}

@media (max-width: 768px) {
  .map04 .map04_div .sousyoku .sou2 {
    left: 2%;
    top: 53%;
  }
}

.map04 .map04_div .sousyoku .sou3 {
  left: 3.4%;
  bottom: -2.735%;
  max-width: 223px;
  width: 23%;
}

@media (max-width: 768px) {
  .map04 .map04_div .sousyoku .sou3 {
    left: 2%;
  }
}

.map04 .map04_div .sousyoku .sou4 {
  right: 14.7%;
  top: 12%;
  max-width: 60px;
  width: 6%;
}

@media (max-width: 768px) {
  .map04 .map04_div .sousyoku .sou4 {
    right: 10%;
    top: 4%;
  }
}

.map04 .map04_div .sousyoku .sou5 {
  right: -3.4%;
  top: 32.51%;
  max-width: 289px;
  width: 29%;
}

@media (max-width: 768px) {
  .map04 .map04_div .sousyoku .sou5 {
    right: -5%;
    top: 50%;
    width: 25%;
  }
}

.map04 .map04_div .sousyoku .sou6 {
  right: 12.1%;
  bottom: 11.3%;
  max-width: 112px;
  width: 12%;
}

@media (max-width: 768px) {
  .map04 .map04_div .sousyoku .sou6 {
    right: 5%;
    bottom: 1%;
  }
}

.map04 .map04_div .text1 {
  max-width: 464px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.056;
  margin: 0 auto 71px;
}

@media (max-width: 768px) {
  .map04 .map04_div .text1 {
    margin: 0 auto 40px;
    font-size: 0.895rem;
  }
}

.map04 .map04_div .map04_div1 {
  max-width: 351px;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .map04 .map04_div .map04_div1 {
    max-width: 250px;
  }
}

.map04 .map04_div .map04_div1 .text2 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}

.map04 .map04_div .map04_div1 .text2 img {
  width: 100%;
}

.map04 .map04_div .map04_div1 .map04_list1 {
  display: flex;
  justify-content: center;
  margin: 25px auto 0;
  max-width: 272px;
  width: 78%;
}

@media (max-width: 768px) {
  .map04 .map04_div .map04_div1 .map04_list1 {
    width: 60%;
  }

  .map04 .map04_div .map04_div1 .map04_list1 li {
    width: 28%;
  }

  .map04 .map04_div .map04_div1 .map04_list1 li img {
    width: 100%;
  }
}

.map04 .map04_div .map04_div1 .map04_list1 li:nth-child(2) {
  margin: 0 auto;
}

.side_cont {
  display: block;
  position: fixed;
  z-index: 11;
  right: 2.45%;
  bottom: 5%;
  max-width: 80px;
  width: 7%;
  min-width: 50px;
}

@media (max-width: 768px) {
  .side_cont {
    right: 1%;
    bottom: 2%;
  }
}

.side_cont .side_btn {
  display: flex;
  align-items: center;
  margin-bottom: 25%;
  transition: 0.5s;
}

.side_cont .side_btn img {
  width: 100%;
}

.side_cont .side_btn .side_btn:last-child {
  margin-bottom: 0;
}

.side_cont .side_btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  footer.map_ft {
    background: #7ed6fe;
  }
}

.p-page {
  background: #EEFDFC;
  overflow: hidden;
}

.p-page .sns-share {
  background: none;
}

@media screen and (max-width: 768px) {
  .p-page+footer {
    background: #EEFDFC;
  }
}

.p-project {
  width: 100%;
}

.p-projectMenu {
  padding-bottom: 100px;
}

.p-projectMenu__flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-projectMenu__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-projectMenu__img {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-projectMenu__img {
    width: 80%;
  }
}

.p-projectMenu__img:before {
  position: absolute;
  height: 100%;
  z-index: 1;
  content: "";
  display: block;
  top: 40px;
}

@media screen and (max-width: 768px) {
  .p-projectMenu__img:before {
    top: 20px;
  }
}

.p-projectMenu__imgItem {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}

.p-projectMenu__detail {
  width: 50%;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 980px) {
  .p-projectMenu__detail {
    padding: 40px 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-projectMenu__detail {
    width: 80%;
    padding: 0;
    gap: 20px;
    margin: 40px auto 0;
  }
}

.p-projectMenu__detail__title {
  font-size: 2.125rem;
  line-height: 1.7;
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho B1";
  position: relative;
}

@media screen and (max-width: 980px) {
  .p-projectMenu__detail__title {
    font-size: 1.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-projectMenu__detail__title {
    font-size: 1.5rem;
  }
}

.p-projectMenu__detail__titleNum {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 2.5em;
  letter-spacing: 0.1em;
  z-index: -1;
  background: linear-gradient(117.16deg, #30B8D9 4.37%, #30B8D9 16.32%, #69D1E2 58.03%, #7CDACA 67.69%, #FADB8B 90.05%, #FADB8B 96.31%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media screen and (max-width: 768px) {
  .p-projectMenu__detail .c-btn {
    margin: 0 auto;
  }
}

.p-projectMenu__item:nth-child(even) .p-projectMenu__img {
  order: 1;
}

@media screen and (max-width: 768px) {
  .p-projectMenu__item:nth-child(even) .p-projectMenu__img {
    order: -1;
    margin-left: auto;
  }
}

.p-projectMenu__item:nth-child(even) .p-projectMenu__img:before {
  left: 20px;
  width: calc(100% + 60px);
  background: url(../img/project/item_bg2.svg) center center no-repeat;
  background-size: contain;
}

.p-projectMenu__item:nth-child(odd) .p-projectMenu__img {
  order: -1;
}

.p-projectMenu__item:nth-child(odd) .p-projectMenu__img:before {
  right: 0;
  width: calc(100% + 70px);
  background: url(../img/project/item_bg.svg) center center no-repeat;
  background-size: contain;
}

.p-single__contents {
  padding-bottom: 80px;
}

.p-single__time {
  margin-bottom: 10px;
  display: block;
  font-family: "Shippori Mincho B1";
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-single__categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #4C627D;
  opacity: 0.8;
  margin-bottom: 40px;
}

.sns-share {
  background: none;
}

@media (max-width: 768px) {
  .sns-share {
    width: 90%;
  }
}

footer .f-illust {
  pointer-events: none;
}

/*# sourceMappingURL=page.css.map */