@charset "UTF-8";
/* ---------------------------------------------------------
    共通パーツ
--------------------------------------------------------- */
.local-header {
  padding-top: 100px;
  padding-bottom: 80px;
}

.page-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  color: #f48f9f;
}

.page-heading::after {
  content: attr(data-en);
  display: block;
  margin-top: 0.75em;
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 43.75%;
}

@media (max-width: 767px) {
  .page-heading {
    font-size: 28px;
  }
}

.btn-main {
  display: flex;
}

.btn-main--center {
  justify-content: center;
}

.btn-main__button {
  width: fit-content;
  padding: 0.8em 2.2em;
  border: 4px solid #F5E9F3;
  border-radius: 100px;
  background: #f48f9f;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .3s;
  transition-property: border, background-color, color;
  transition-duration: .3s;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

.btn-main__button--wide {
  width: auto;
  min-width: 300px;
  padding: 1em 2em;
}

.btn-main__button:hover {
  background: #fff;
  border: 4px solid #f48f9f;
  color: #f48f9f;
}

@media (max-width: 767px) {
  .local-header {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .btn-main__button {
    font-size: 16px;
  }
  .btn-main__button--wide {
    width: 60%;
    min-width: auto;
  }
}

/* ---------------------------------------------------------
    animetion
--------------------------------------------------------- */
.loadFadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.loadFadeInTrigger {
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* スクロールその場で */
.scrollFadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.scrollFadeInTrigger {
  opacity: 0;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #696969;
  background: #fff9f2;
  overflow-x: hidden;
}

main {
  margin-top: 120px;
}

@media (max-width: 1280px) {
  main {
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  main {
    margin-top: 80px;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

.no-scroll {
  overflow: hidden;
}

.reservation {
  z-index: 10 !important;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.fixed-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.fixed-header__inner {
  max-width: 1920px;
  height: 120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-header__logo {
  flex-grow: 1;
}

.fixed-header__logo-image {
  width: 390px;
}

.fixed-header__logo-link {
  text-decoration: none;
  color: #f48f9f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fixed-header__logo-link:hover {
  opacity: 0.75;
}

.fixed-header__content {
  flex: 1 0 auto;
}

.fixed-header__content-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.fixed-header__nav {
  flex-grow: 1;
  padding-top: 25px;
}

.fixed-header__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixed-header__sns > div {
  margin-bottom: 0.5em;
  color: #f48f9f;
}

.fixed-header__info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  text-align: center;
}

.fixed-header__tel {
  color: #f48f9f;
  font-size: 24px;
}

.fixed-header__tel > span {
  font-size: 58.3%;
}

.nav__list {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__item {
  position: relative;
}

.nav__item.show .submenu {
  visibility: visible;
  opacity: 1;
}

.nav__link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.2em;
  text-decoration: none;
  color: #696969;
  position: relative;
}

.nav__link::after {
  content: attr(data-entitle);
  display: block;
  font-size: 12px;
  color: #f48f9f;
}

.nav__link:hover {
  opacity: 0.75;
}

.nav__submenu-button {
  display: none;
  width: 2em;
  height: 2em;
  cursor: pointer;
}

.nav__submenu-button > img {
  width: 1em;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.has-submenu::before {
  content: '';
  width: 10px;
  height: 5px;
  background-image: url("/wp-content/themes/hirano-angel03/asset/images/common/icon_arrow_bottom.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -1em;
  left: calc(50% - 5px);
}

.snslist {
  list-style: none;
  display: flex;
  gap: 10px;
}

.snslist__item {
  width: 40px;
  height: 40px;
}

.snslist__link:hover {
  opacity: 0.75;
}

.reserve-button {
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f48f9f;
  color: #fff;
  border-radius: 10px;
}

.reserve-button::before {
  content: '';
  width: 3em;
  height: 2.3em;
  background-image: url("/wp-content/themes/hirano-angel03/asset/images/common/icon_calendar.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reserve-button:hover {
  opacity: 0.75;
}

.submenu {
  visibility: hidden;
  opacity: 0;
  width: auto;
  min-width: 200px;
  padding: 25px 15px 15px;
  border-radius: 10px;
  background-color: #fff;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translate(-50%, -2%);
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: opacity .25s, transform .25s;
}

.submenu::before {
  content: '';
  width: 100%;
  height: 25px;
  position: absolute;
  top: -25px;
  left: 0;
}

.submenu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid #fff;
}

.submenu__title {
  color: #f48f9f;
}

.submenu__list + .submenu__title {
  margin-top: 10px;
}

.submenu__list {
  margin-top: 10px;
}

.submenu__item {
  padding-left: 5px;
  border-bottom: 1px solid #f48f9f;
}

.submenu__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.65em 0;
  text-decoration: none;
  font-size: 14px;
  color: #696969;
}

.submenu__link::before {
  content: '';
  background-image: url("/wp-content/themes/hirano-angel03/asset/images/common/icon_arrow_right.svg");
  width: 7px;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.submenu__link:hover {
  opacity: 0.75;
}

.sp-btns {
  display: none;
  align-items: center;
}

.sp-btns__link {
  width: 36px;
  height: 36px;
  background: #f48f9f;
  border: 2px solid #F5E9F3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sp-btns__link:hover {
  opacity: 0.75;
}

.sp-btns__link > img {
  width: 50%;
}

.sp-btns__reservation {
  width: 116px;
  height: 36px;
  background: #f48f9f;
  border: 2px solid #F5E9F3;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
}

.sp-btns__reservation:hover {
  opacity: 0.75;
}

.hamburger_icon {
  display: block;
  position: relative;
  /* position: fixed;
    top: 35px;
    right: 10px;
    z-index: 99; */
  width: 46px;
  height: 46px;
  background: #f48f9f;
  border: 2px solid #F5E9F3;
  border-radius: 50%;
  cursor: pointer;
}

.hamburger_icon.active span:nth-of-type(1) {
  top: 18px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

.hamburger_icon.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger_icon.active span:nth-of-type(3) {
  top: 30px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.hamburger_icon span {
  display: inline-block;
  width: 60%;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.hamburger_icon span:nth-last-of-type(1) {
  top: 15px;
}

.hamburger_icon span:nth-last-of-type(2) {
  top: 23px;
}

.hamburger_icon span:nth-last-of-type(3) {
  top: 31px;
}

@media (max-width: 1536px) {
  .fixed-header__logo-image {
    width: 80px;
  }
  .nav {
    padding-right: 0;
  }
}

@media (max-width: 1280px) {
  .fixed-header__inner {
    height: 90px;
  }
  .fixed-header__content {
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    left: auto;
    transition: right .25s;
  }
  .fixed-header__content-wrap {
    display: block;
    padding: 80px 0;
  }
  .fixed-header__content.panelactive {
    right: 0;
  }
  .fixed-header__sns {
    margin-top: 50px;
  }
  .fixed-header__info {
    margin-top: 50px;
    align-items: center;
  }
  .nav__item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__submenu-button {
    display: block;
  }
  .has-submenu::before {
    display: none;
  }
  .snslist {
    margin-top: 1em;
  }
  .reserve-button {
    margin-top: 1em;
    padding: 0.5em 2em 0.5em 1em;
  }
  .submenu {
    visibility: visible;
    display: none;
    opacity: 1;
    width: 100%;
    border-radius: 0;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
    overflow: hidden;
  }
  .submenu::before, .submenu::after {
    display: none;
  }
  .submenu__list + .submenu__title {
    margin-top: 3em;
  }
  .submenu__item {
    padding: 1em 5px;
  }
  .submenu.active {
    height: 100%;
  }
  .sp-btns {
    display: flex;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .fixed-header__inner {
    height: 80px;
  }
  .fixed-header__logo-image {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .sp-btns__reservation {
    width: 80px;
  }
}

@media (max-width: 375px) {
  .sp-btns__btn {
    display: none;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer_container .footer {
  padding: 35px 40px 20px;
  background: #f48f9f;
}

.footer_container .footer .footer_inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer_container .footer .footer_inner .l_content {
  width: 40%;
}

.footer_container .footer .footer_inner .l_content .footer_logo {
  width: 100%;
}

.footer_container .footer .footer_inner .l_content .address {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}

.footer_container .footer .footer_inner .l_content .number {
  margin-top: 30px;
  font-size: 32px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.footer_container .footer .footer_inner .l_content .number .min {
  font-size: 14px;
}

.footer_container .footer .footer_inner .l_content .time {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.footer_container .footer .footer_inner .r_content {
  width: 40%;
}

.footer_container .footer .copy {
  max-width: 1000px;
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #fff;
  margin: 60px auto 0;
}

@media (max-width: 1280px) {
  .footer_container {
    padding-left: 0;
  }
  .footer_container .footer .footer_inner {
    gap: 20px;
  }
  .footer_container .footer .footer_inner .l_content {
    width: 45%;
  }
  .footer_container .footer .footer_inner .r_content {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .footer_container .footer {
    padding: 35px 30px 20px 30px;
  }
  .footer_container .footer .footer_inner {
    max-width: none;
    margin: auto;
    display: block;
  }
  .footer_container .footer .footer_inner .l_content {
    width: 100%;
  }
  .footer_container .footer .footer_inner .l_content .footer_logo {
    max-width: 340px;
  }
  .footer_container .footer .footer_inner .r_content {
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
  }
  .footer_container .footer .copy {
    max-width: none;
    text-align: center;
    margin: 20px auto 0;
  }
}

.page_top {
  width: 12px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.page_top .link {
  position: absolute;
  inset: 0;
}

.page_top .pc {
  display: block;
}

.page_top .sp {
  display: none;
}

@media (max-width: 767px) {
  .page_top {
    width: 50px;
    position: fixed;
    bottom: 15px;
    right: 10px;
    z-index: 5;
  }
  .page_top .pc {
    display: none;
  }
  .page_top .sp {
    display: block;
  }
}

.ai_chatbot {
  width: 192px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  right: 40px;
  bottom: 30px;
  z-index: 99;
  overflow: hidden;
  transition: all .3s;
}

.ai_chatbot.hidden {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .ai_chatbot {
    width: 110px;
    right: 20px;
    bottom: 70px;
  }
}

/* ---------------------------------------------------------
    taxonomy
--------------------------------------------------------- */
.inner {
  max-width: 930px;
  padding: 0 20px;
  margin: auto;
}

.footer_container {
  margin-top: 100px;
}

@media (max-width: 1280px) {
  .container {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .footer_container {
    margin-top: 140px;
  }
}

/* ---------------------------------------------------------
    taxonomy
--------------------------------------------------------- */
.page_visual {
  width: 100%;
}

.page_visual .site_logo {
  display: none;
}

.page_visual .visual_image {
  background-color: #fff;
}

.page_visual .visual_image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 19 / 10;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .page_visual {
    width: 100%;
    position: relative;
    /* .site_logo {
            display: block;
            width: 110px;/*250px
            padding:5px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            .link {
                position: absolute;
                inset: 0;
            }
        } */
  }
}

@media (max-width: 767px) {
  .page_visual .site_logo {
    width: 60px;
    /*130px*/
  }
  .page_visual .visual_image img {
    aspect-ratio: 106 / 55;
  }
}

/* ---------------------------------------------------------
    taxonomy
--------------------------------------------------------- */
.page_ttl {
  margin-top: 100px;
  font-size: 32px;
  color: #f48f9f;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page_ttl .en {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.read {
  margin-top: 70px;
  font-size: 15px;
  text-align: center;
  line-height: 2;
}

@media (max-width: 767px) {
  .page_ttl {
    margin-top: 70px;
    font-size: 28px;
    gap: 10px;
  }
  .read {
    margin-top: 50px;
    font-size: 15px;
    text-align: justify;
    padding: 0 20px;
  }
}

/* ---------------------------------------------------------
    taxonomy
--------------------------------------------------------- */
.angelnote_list_info {
  margin-top: 70px;
}

.angelnote_list_info h2 {
  line-height: 1.75;
  font-weight: 500;
  color: #f48f9f;
  font-size: 26px;
  letter-spacing: .04em;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.angelnote_list_info h2::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: #f48f9f;
  position: absolute;
  bottom: 0;
}

.angelnote_list_info h2 span {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.sect_post {
  margin-top: 50px;
}

.sect_post .card {
  max-width: 700px;
  margin: 80px auto 0;
}

.sect_post .card:first-of-type {
  margin-top: 0;
}

.sect_post .card .heading {
  color: #f48f9f;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 20px;
}

.sect_post .card .heading h2 {
  font-weight: 400;
  display: flex;
  align-items: baseline;
}

.sect_post .card .heading h2 .epi {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: .16rem;
  position: relative;
  margin-right: 4px;
}

.sect_post .card .heading h2 .epi::after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: #f48f9f;
  margin-top: 3px;
}

.sect_post .card .heading h2 .num {
  font-size: 70px;
  font-weight: 300;
  transform: translateY(6px);
}

.sect_post .card .heading .date {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  transform: translateY(3px);
}

.sect_post .card .summary {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #FFFAF4 50%, #FFFAF4 100%), linear-gradient(180deg, #ccc 1px, transparent 1px);
  background-size: 4px 100%, 100% 3rem;
  line-height: 3rem;
  padding-bottom: 1px;
  letter-spacing: 0;
  text-align: justify;
  font-size: 15px;
}

.sect_post .card .tags {
  display: flex;
  margin-top: 10px;
}

.sect_post .card .tags .link {
  font-size: 14px;
  color: #f48f9f;
  margin-right: 24px;
}

.sect_post .card .tags .link:hover {
  text-decoration: none;
}
