@charset "UTF-8";
/*
reset
------------------------------------*/
ul li {
  list-style: none;
}

/*
ブレイクポイント
------------------------------------*/
/*
カラー
------------------------------------*/
/*
font
------------------------------------*/
html {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #3d3d3d;
}
/*
width
------------------------------------*/
.w_content {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .w_content {
    width: 100%;
    padding: 0 1.6em;
    max-width: 736px;
  }
}

.w_nav {
  padding: 12px 20px;
  max-width: 1340px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .w_nav {
    width: 100%;
    padding: 0 1.6em;
    max-width: 736px;
  }
}

/*
padding/margin
------------------------------------*/
.pd_top {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .pd_top {
    padding-top: 50px;
  }
}

.pd_bottom {
  padding-bottom: 80px;
}
@media screen and (max-width: 1199px) {
  .pd_bottom {
    padding-bottom: 50px;
  }
}

/*
共通
------------------------------------*/
img {
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: #3d3d3d;
}
a:hover {
  opacity: .5;
  cursor: pointer;
}

figure {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}/*# sourceMappingURL=common.css.map */

/*
表示非表示
------------------------------------*/
.u-dp_pc{
  display: block;
}
@media screen and (max-width: 767px) {
  .u-dp_pc{
    display: none;
  }
}
.u-dp_sp{
  display: none;
}
@media screen and (max-width: 767px) {
  .u-dp_sp{
    display: block;
  }
}

/*
ボタン
------------------------------------*/
.mo_btn_normal {
  display: block;
  text-align: center;
  color: #d76492;
  border: 1px solid #d76492;
  background-color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 35px;
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, .2);
  justify-content: center;
  padding: 20px 0;
  position: relative;
  margin: 0 auto;
  font-size: 1.8rem;
  height: 3.6em;
  max-width: 400px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .mo_btn_normal {
    width: 100%;
    min-width: 288px;
    line-height: 1;
    font-size: 1.6rem;
  }
}

.mo_btn_normal:after {
  content: " ";
  vertical-align: middle;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2em;
  margin: auto;
  transform: rotate(45deg);
  color: #d76492;
  border-right: 1px solid #d76492;
  border-top: 1px solid #d76492;
}

.mo_btn_text {
  color: #3d3d3d;
  font-size: 14px;
  position: relative;
}

@media screen and (min-width: 767px) {
  .mo_btn_text:hover {
    color: #d76492;
  }
  header .mo_btn_text::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #d76492;
    top: 24px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  header .mo_btn_text:hover::after {
    transform: scale(1, 1);
  }
}

.mo_btn_smile {
  font-size: 1.8rem;
  padding: 16px 0;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .mo_btn_smile {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
2026.1追加　Base
========================================================================= */

.dosis {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

p {
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
  line-height: 1.8;
  word-break: break-all;
  line-break: strict;
  overflow-wrap: anywhere;
  text-align: justify;
}

/* 共通 */
h1,
h2,
h3,
h4,
h5 {
  color: #3d2707;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

ul li {
  color: #3d3d3d;
  list-style: none;
}

figure img {
  width: 100%;
}

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

/* テキスト装飾 */
.u-text--main {
  color: #3d3d3d;
}

.u-text--white {
  color: #fff;
}

.u-text--accent {
  color: #ff849c;
}

.u-text--accent-blue {
  color: #11447a;
}

.u-highlight {
  background-color: #ff849c;
  padding: .2em .5em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.u-highlight--blue {
  background-color: #11447a;
  box-decoration-break: clone;
  padding: 1px 8px;
}

/* 背景 */
.u-bg--white {
  background-color: #fff;
}

/* 余白調整 */
.u-mb--sm { 
  margin-bottom: 20px; 
}

.u-mb--md {
  margin-bottom: 40px;
}

.u-mb--lg { 
  margin-bottom: 80px; 
}

.u-p--md { 
  padding: 40px 0; 
}

.u-p--lg { 
  padding: 60px 0; 
}

.u-text--sm {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  p,
  figcaption {
    font-size: 14px;
    line-height: 1.8;
  }
  /* 共通 */
  h1,
  h2,
  h3,
  h4,
  h5 {
    color: #3d2707;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  .u-mb--md { 
    margin-bottom: 20px; 
  }
  .u-mb--lg { 
    margin-bottom: 40px; 
  }
  .u-mt--md {
    margin-top: 40px;
  }
  .u-p--lg {
    padding: 30px 0;
  }
  .u-text--center {
    text-align: left;
  }
  .u-text--sm {
    font-size: 10px;
  }
}

/* ==========================================================================
Layout
========================================================================== */
.l-section {
  padding: 160px 0;
}

.l-section--topOnly {
  padding-top: 160px;
}

.l-section--bottomOnly {
  padding-bottom: 160px;
}

.l-container {
  max-width: 1000px;
  margin: 0 auto;
}

.l-container--large {
  max-width: 1100px;
  margin: 0 auto;
}

.l-container--narrow {
  max-width: 850px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section--topOnly {
    padding-top: 80px;
  }
  .l-section--bottomOnly {
    padding-bottom: 80px;
  }
  .l-container, 
  .l-container--large, 
  .l-container--narrow {
    max-width: 90%;
  }
}

/* ==========================================================================
共通パーツ
========================================================================= */
/* セクションタイトル */
.c-section-title {
  margin-bottom: 40px;
}

.c-section-title__en {
  text-align: center;
  font-size: 18px;
  color: #ff849c;
  display: block;
}

.c-section-title__jp {
  font-size: 38px;
  text-align: center;
}

/* テキストボックス */
.c-text p:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .c-section-title {
    margin-bottom: 30px;
  }
  .c-section-title__en {
    font-size: 14px;
  }
  .c-section-title__jp {
    font-size: 22px;
  }
  .c-text p:not(:last-child) {
    margin-bottom: 15px;
  }
}

/* コンテンツ背景透過 (Glass Box) */
.c-glass-box {
  background-color: rgba(255, 255, 255, .3);
  border: 5px solid rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  backdrop-filter: blur(5px);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.c-link-text {
  color: #ff849c;
}

/* フォトフレーム */
.c-photo-frame {
  position: relative;
  border: 3px solid;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.c-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}

.c-photo-frame--green {
  border-color: #00a699;
}

.c-photo-frame--green .c-tap-label {
  background-color: #00a699;
}

.c-photo-frame--pink {
  border-color: #fdadb1;
}

.c-photo-frame--pink .c-tap-label {
  background-color: #fdadb1;
}

.c-tap-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-family: sans-serif;
  font-size: 12px;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 5px 0 5px 0;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
}

/* 2. tapラベルがあるもの限定のアクション */
.c-photo-frame:has(.c-tap-label) {
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

@media (hover: hover) {
  .c-photo-frame:has(.c-tap-label):hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .12);
  }
  .c-photo-frame:has(.c-tap-label):hover img {
    transform: scale(1.08);
  }
  .c-photo-frame:has(.c-tap-label):hover .c-tap-label {
    transform: scale(1.1);
    transition: transform .3s ease;
  }
}

/* ==========================================================================
個別セクション
========================================================================= */
/* 下層FV */
.p-sub-fv {
  position: relative;
  width: 90%;
  height: 550px; 
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.p-sub-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1;
}

.p-sub-fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.p-sub-fv__content {
  display: inline-block;
}

.p-sub-fv__en {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  letter-spacing: .1em;
}

.p-sub-fv__jp {
  font-size: 40px;
  letter-spacing: .05em;
  margin: 0;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .p-sub-fv {
    height: 60vh; 
  }

  .p-sub-fv__jp {
    font-size: 28px;
  }
}

/* ナビゲーションカードエリア */
.p-nav-cards {
  display: flex;
  gap: 60px;
  background-color: #fff;
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.p-nav-card {
  flex: 1;
  text-align: center;
}

.p-nav-card .c-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.p-nav-card__btn {
  align-items: center;
  border: 1px solid #ff849c;
  border-radius: 50px;
  color: #ff849c;
  transition: .3s;
  display: block;
  text-align: center;
  background-color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, .2);
  justify-content: center;
  padding: 16px 0;
  position: relative;
  margin: 0 auto;
  font-size: 1.8rem;
  max-width: 400px;
}

.p-nav-card__btn::after {
  content: " ";
  vertical-align: middle;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2em;
  margin: auto;
  transform: rotate(45deg);
  color: #ff849c;
  border-right: 1px solid #ff849c;
  border-top: 1px solid #ff849c;
}

.p-nav-card__btn:hover {
  background-color: #ff849c;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-nav-cards {
    flex-direction: column;
    padding: 40px 20px;
    gap: 50px;
  }
  .p-nav-card__btn {
    font-size: 1.4rem;
    width: 100%;
  }
  .p-nav-card .c-text p {
    font-size: 14px;
  }
}

/*
header
------------------------------------*/
.header {
  position: fixed;
  z-index: 100;
  height: auto;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 4px -5px rgba(0, 0, 0, .2);
}

.header_wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 100%;
  z-index: 100;
  min-width: 1000px;
  flex-wrap: wrap;
  gap: 5px;
}

.header_logo_box {
  display: flex;
  align-items: center;
}

.header_logo:last-child {
  margin-left: 18px;
}

.nav-pc {
  display: flex;
  position: static !important;
  transform: none;
  align-items: center;
  gap: 20px;
  right: 20px;
  top: 50%;
}

.nav-pc .mo_btn_text {
  margin-right: 0;
  font-size: 13px;
}

.nav-pc .header_btn_entry {
  height: 34px;
  background-color: #ff849c;
  color: #fff;
  padding: 0;
  line-height: 34px;
  width: 150px;
  min-width: 150px;
}

.nav-pc .header_btn_entry::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

.header_btn_group {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.header_btn {
  text-align: center;
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 40px;
  background-color: #fff;
  border: 2px solid #ff849c;
  color: #ff849c;
}

.nav-sp {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  padding-top: 60px;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
  background-color: #fff;
}

.nav-sp ul li a {
  display: block;
  padding: .8em 2em .8em 1.2em;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  position: relative;
}

.nav-sp ul li a:after {
  width: 6px;
  height: 6px;
  content: " ";
  transform: rotate(45deg);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2em;
}

.hamburger {
  display: none;
  position: absolute;
  right: 15px;
  top: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 99;
}

.hamburger_border {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger_border_top {
  top: 14px;
}

.hamburger_border_center {
  top: 20px;
}

.hamburger_border_bottom {
  top: 26px;
}

.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 20px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 20px;
}

.nav-open .nav-sp {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  transition: all .6s;
  z-index: 0;
  overflow-y: auto;
}

.nav-open .nav-sp ul li a {
  display: block;
  padding: .8em 2em .8em 1.2em;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.external_links::after {
  border: none!important;
  font-family: FontAwesome, "Noto Sans JP", "Yu Gothic", 游ゴシック, YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
  content: "\f08e"!important;
  font-weight: 900;
  transform: none!important;
  color: #d76492;
  top: -7px !important;
  right: 20px !important;
  position: absolute;
}

/*
logo
------------------------------------*/
.mo_logo img {
  width: 110px;
  display: block;
}

.mo_logo span {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  margin-top: 6px;
}

.smile_logo img {
  width: 180px;
}

.belta_logo img {
  width: 80px;
}

@media screen and (max-width: 1199px) {
  .header_wrap {
    min-width: 100%;
  }
}

@media screen  and (min-width: 767px) {
  .header {
    padding: 16px 20px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 61.11px;
    box-shadow: none;
  }
  .header_wrap {
    padding: 0;
    box-shadow: 0px 5px 4px -5px rgba(0, 0, 0, .5);
    flex-wrap: nowrap;
  }
  .header_logo {
    left: 20px;
  }
  .header_logo:last-child {
    margin-left: 12px;
  }
  .nav-pc {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .smile_logo img {
    width: 150px;
    margin-left: 20px;
  }
  .belta_logo img {
    width: 60px;
  }
  .header_btn_group {
    gap: 10px;
    flex-direction: column;
    margin: 20px 10px;
  }
  .header_btn {
    flex-direction: column;
    padding: 17px 15px;
    color: #d76492;
    height: 55px;
    margin-bottom: 5px;
  }
}

/*
footer
------------------------------------*/
.footer_bg {
  background-color: #f7e8ed;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 47px;
  padding-bottom: 47px;
  position: relative;
  margin: 0 auto;
  max-width: 1340px;
}

.footer_left_wrap,
.footer_center_wrap,
.footer_right_wrap {
  flex: 1;
}

.footer_left_wrap {
  display: flex;
}

.footer_left_wrap .header_logo_box {
  justify-content: center;
}

.footer_left_wrap .header_logo:last-child {
  margin-left: 12px;
}

.footer_left_wrap .belta_logo img {
  width: 72px;
}

.footer_left_wrap .mo_logo {
  display: table;
  text-align: center;
}

.footer_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_nav_list li {
  margin-bottom: 12px;
}

.footer_nav_list li a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

.footer_nav_title {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer_center_wrap .footer_nav_list li a::before {
  content: "ー";
  margin-right: .5em;
}

.footer_antique {
  display: flex;
  margin: 40px auto 20px;
  justify-content: center;
  gap: 80px;
}

.footer_copyright {
  display: block;
  color: #3d3d3d;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 35px;
  text-align: center;
}

.footer_copyright p {
  font-size: 12px;
}

.footer_btn_entry {
  color: #3d3d3d;
  display: table;
  font-size: 1.6rem;
  font-weight: normal;
  margin-left: 13px;
  padding-left: 13px;
  text-align: center;
}

.footer_btn_entry span {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.footer_btn_entry span::before {
  position: absolute;
  content: "|";
  left: -13px;
}

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

@media screen and (max-width: 768px) {
  .footer_wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 37px;
  }
  .footer_left_wrap,
  .footer_center_wrap,
  .footer_right_wrap {
    width: 100%;
    flex: none;
    display: block;
  }
  .header_logo_box {
    justify-content: center;
    margin-left: 20px;
  }
  .footer_left_wrap .smile_logo img {
    width: 180px;
    margin-left: 20px;
  }
  .footer_left_wrap .mo_logo {
    display: block;
    margin-bottom: 6px;
  }
  .footer_left_wrap .mo_logo img {
    margin: 0 auto;
  }
  .footer_center_wrap .footer_nav_list li a {
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .footer_nav_title {
    text-align: center;
  }
  .footer_copyright {
    width: 100%;
    margin-bottom: 35px;
  }
  .footer_btn_entry {
    display: none;
  }
  .footer_antique {
    margin: 40px auto 20px;
    gap: 14px;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }
}