.site-title a img.site-logo,
img.site-logo {
max-height: 25px !important;
height: 25px !important;
width: auto !important;
display: block;
}
body {
font-family: serif;
background-color: #fafafa;
margin-top: 0px;   
} .site-header {
background: #ffffff;
position: relative;
z-index: 1000;
}
.site-branding-title {
text-align: center;
padding-left: 10px;
}
.site-icon {
height: 50px;
width: 50;
} .site-title a {
display: flex; 
flex-direction: column; 
align-items: center;
text-decoration: none;
color: inherit;
}
.logo-text {
font-family: 'Times New Roman', serif;
font-size: 7px;
font-weight: normal;
letter-spacing: 0.5px;
margin-bottom: -5px;
}
.logo-my {
font-family: 'Times New Roman', serif;
font-size: 28px;
font-style: italic;
font-weight: 400;
margin-top: -5px;
}
.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
min-height: 70px;
} .site-branding {
flex-shrink: 0;
}
.site-title {
margin-left: 25px;
font-size: 24px;
font-weight: 600;
}
.site-title a {
text-decoration: none;
color: #000000;
transition: color 0.3s ease;
} .main-navigation {
display: block;
} .main-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 40px;
align-items: center;
} .main-navigation li {
margin: 0;
} .main-navigation a {
color: #000000;
display: inline-block;
padding: 10px 0;
font-size: 16px;
text-decoration: none;
transition: color 0.3s ease;
white-space: nowrap;
}
.main-navigation a:hover {
color: #333333;
} .menu-toggle {
display: none;
} @media (min-width: 769px) {
#primary-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 40px;
align-items: center;
}
#primary-menu > li {
position: relative;
margin: 0;
}
#primary-menu > li > a {
display: inline-block;
text-decoration: none;
color: #000000;
padding: 10px 0;
font-size: 16px;
transition: color 0.3s ease;
white-space: nowrap;
}
#primary-menu > li > a:hover {
color: #333333;
} #primary-menu .sub-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
background: #ffffff;
box-shadow: 0 3px 10px rgba(0,0,0,0.15);
border-radius: 4px;
list-style: none;
padding: 0;
margin: 0;
z-index: 9999;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
} #primary-menu li:hover > .sub-menu {
display: block;
opacity: 1;
visibility: visible;
transform: translateY(0);
}
#primary-menu .sub-menu li {
border-bottom: 1px solid #f0f0f0;
width: 100%;
margin: 0;
}
#primary-menu .sub-menu li:last-child {
border-bottom: none;
}
#primary-menu .sub-menu a {
padding: 12px 20px;
font-size: 14px;
color: #666666;
white-space: nowrap;
display: block;
transition: all 0.3s ease;
}
#primary-menu .sub-menu a:hover {
background: #fafafa;
color: #000000;
}
#primary-menu .menu-item-has-children:hover > a::after {
transform: rotate(180deg);
}
} @media (max-width: 768px) {
.site-header {
height: 60px;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}
.header-container {
height: 60px; 
min-height: unset;
}
.site-branding {
display: flex;
flex-direction: column;
align-items: center;
}
.site-branding-icon {
margin: 0;
}
.logo-text {
font-size: 6px;
margin-bottom: -4px;
}
.logo-my {
font-size: 24px;
margin-top: -9px;
}
.site-branding-title {
font-size: 9px;
padding-left: 0;
text-align: center;
margin-top: -2px;
} .menu-toggle {
display: flex;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
width: 30px;
height: 14px;
justify-content: space-between;
z-index: 1001;
position: relative;
}
.hamburger-line {
width: 85%;
height: 1px;
background: #333333;
border-radius: 2px;
transition: all 0.3s ease;
position: absolute;
left: 0;
}
.hamburger-line:nth-child(1) {
top: 0;
}
.hamburger-line:nth-child(2) {
top: 50%;
transform: translateY(-50%);
}
.hamburger-line:nth-child(3) {
bottom: 0;
} .menu-toggle.active .hamburger-line:nth-child(1) {
top: 50%;
transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.active .hamburger-line:nth-child(2) {
opacity: 0;
}
.menu-toggle.active .hamburger-line:nth-child(3) {
bottom: 50%;
transform: translateY(50%) rotate(-45deg);
} .main-navigation {
position: fixed;
top: 0;
right: 0;
width: 280px;
height: 100vh;
background: #fafafa;
transform: translateX(100%);
transition: transform 0.3s ease;
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
.main-navigation.active {
transform: translateX(0);
} .main-navigation ul {
flex-direction: column;
gap: 0;
padding: 50px 20px 20px;
height: 100%;
align-items: flex-start;
margin-top: 50px;
}
.main-navigation li {
border-bottom: 1px solid #e0e0e0;
width: 100%;
}
.main-navigation a {
color: #000000;
display: block;
padding: 15px 0;
font-size: 15px;
width: 100%;
} .main-navigation .menu-item-has-children > a {
display: flex;
justify-content: space-between;
align-items: center;
}
.main-navigation .menu-item-has-children > a::after {
content: '+';
font-size: 12px;
transition: transform 0.3s ease;
transform: rotate(0deg);
}
.main-navigation .submenu-open::after {
transform: rotate(45deg);
} .main-navigation .sub-menu {
display: none;
background: #fafafa;
padding-left: 20px;
list-style: none;
margin: 0;
padding-top: 0;
padding-bottom: 0;
}
.main-navigation .sub-menu.open {
display: block;
}
.main-navigation .sub-menu li {
border-bottom: 1px solid #e0e0e0;
width: 100%;
}
.main-navigation .sub-menu a {
color: #000000;
padding: 10px 0 10px 20px;
font-size: 15px;
}
.main-navigation .sub-menu a:hover {
color: #ffffff;
background: #666666;
}
}.site-logo {
max-height: 25px; 
width: auto;
display: block;
}
.site-footer {
background-color: #ffffff;
color: #666666;
padding: 3rem 0 1.5rem;
margin-top: 80px;
border-top: 1px solid #e0e0e0;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
} .footer-section {
text-align: left;
}
.footer-section-title {
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.1em;
color: #000000;
margin-bottom: 1.5rem;
padding-bottom: 0;
} .footer-nav-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.8rem 2rem;
} .footer-plan-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.8rem 2rem;
} .footer-nav-link {
color: #666666;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
display: inline-block;
}
.footer-nav-link:hover {
color: #000000;
} .footer-brand {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #e0e0e0;
}
.footer-brand a {
text-decoration: none;
color: inherit;
transition: opacity 0.3s ease;
}
.footer-brand a:hover {
opacity: 0.7;
}
.footer-brand-icon {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-brand-icon .logo-text {
font-size: 6px; color: #000000;
font-weight: 300;
}
.footer-brand-icon .logo-my {
font-family: 'Times New Roman', serif;
font-size: 28px;
font-style: italic;
color: #000000;
font-weight: 400;
line-height: 1;
} .footer-bottom {
padding-top: 1.5rem;
margin-top: 1.5rem;
}
.copyright {
text-align: center;
color: #666666;
font-size: 0.8rem;
margin: 0;
} .line-floating-btn-sp,
.line-floating-btn-pc {
position: fixed;
bottom: 20px;
right: 20px; z-index: 9999;
display: block;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.line-floating-btn-sp:hover,
.line-floating-btn-pc:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.line-floating-btn-sp img,
.line-floating-btn-pc img {
display: block;
height: 36px;
width: auto;
} .footer-heading{
color: #000000;
margin-bottom: 5px;
}
.footer-col-line {
background: #fafafa;
padding: 25px;
border-radius: 8px;
text-align: center;
border: 1px solid #f0f0f0;
}
.footer-line-text {
font-size: 13px;
color: #666666;
line-height: 1.8;
margin-bottom: 20px;
}
.footer-line-btn {
display: inline-block;
transition: transform 0.3s ease;
}
.footer-line-btn:hover {
transform: translateY(-2px);
}
.footer-line-btn img {
height: 36px;
width: auto;
display: block;
margin-bottom: 10px;
} .line-floating-btn-sp { display: none; }
.line-floating-btn-pc { display: block; } @media (max-width: 768px) {
.line-floating-btn-sp { display: block; }
.line-floating-btn-pc { display: none; }
} @media (max-width: 768px) {
.footer-col-line {
order: -1;
}
} @media (min-width: 768px) and (max-width: 1023px) {
.site-footer {
padding: 2.5rem 0 1.5rem;
}
.footer-inner {
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.footer-nav-grid {
grid-template-columns: 1fr 1fr;
gap: 0.6rem 1.5rem;
}
} @media (max-width: 767px) {
.line-floating-btn-sp,
.line-floating-btn-pc {
bottom: 15px;
right: 15px;
}
.line-floating-btn-sp img,
.line-floating-btn-pc img {
height: 60px;
}
.site-footer {
padding: 2rem 0 1rem;
margin-top: 60px;
}
.footer-inner {
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section {
text-align: left;
}
.footer-section-title {
margin-bottom: 1rem;
}
.footer-nav-grid {
grid-template-columns: 1fr 1fr;
gap: 0.6rem 1rem;
}
.footer-plan-list {
grid-template-columns: 1fr 1fr;
gap: 0.6rem 1rem;
}
.footer-nav-link {
font-size: 12px; }
.footer-brand {
padding-top: 1.5rem;
}
.footer-brand-icon .logo-my {
font-size: 24px;
margin-top: -5px;
}
.footer-heading{
margin-top: 10px;
}
} @media (max-width: 375px) {
.site-footer {
padding: 1.5rem 0 1rem;
}
.footer-content {
padding: 0 15px;
}
.footer-nav-grid {
grid-template-columns: 1fr 1fr;
gap: 0.5rem 0.8rem;
}
.footer-plan-list {
grid-template-columns: 1fr 1fr;
gap: 0.5rem 0.8rem;
}
.footer-nav-link {
font-size: 0.8rem;
}
.footer-section-title {
font-size: 0.85rem;
}
.copyright {
font-size: 0.75rem;
}
} @media (min-width: 1024px) {
.site-footer {
padding: 3.5rem 0 2rem;
margin-top: 100px;
}
.footer-inner {
grid-template-columns: 1fr 1fr;
gap: 4rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
margin-bottom: 3rem;
}
.footer-nav-grid {
gap: 0.8rem 3rem;
}
.footer-nav-link {
font-size: 0.95rem;
}
} .footer-nav-link:focus {
outline: 2px solid #e0e0e0;
outline-offset: 2px;
border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
.footer-nav-link,
.footer-brand a {
transition: none;
}
}.pd-wrapper {
max-width: 100%;
margin: 0 auto;
} .pd-hero-section {
position: relative;
height: 60vh;
min-height: 400px;
overflow: hidden;
background-color: #f0f0f0;
}
.pd-hero-image-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.pd-hero-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}
.pd-hero-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 40px;
background: linear-gradient(transparent, rgba(0,0,0,0.7));
color: white;
text-align: center;
}
.pd-main-title {
font-size: 3rem;
margin: 0;
font-weight: bold;
line-height: 1.2;
} .pd-shooting-desc {
padding-top: 120px;
padding-bottom: 120px;
text-align: center;
max-width: 800px;
margin: 0 auto;
line-height: 1.8;    
height: 100%;
font-size: 15px;
font-weight: 400;
letter-spacing: 0.19em; display: flex;
justify-content: center;
line-height: 2.1;
} .pd-plans-wrapper {
padding: 60px 20px;
}
.pd-container {
max-width: 1200px;
margin: 0 auto;
}
.pd-section-heading {
text-align: center;
font-size: 25px; margin-top: 200px;
color: #000000;
font-weight: bold;
} .pd-plans-special .pd-plans-layout {
display: flex;
flex-direction: column;
gap: 60px;
max-width: 900px;
margin: 0 auto;
} .pd-plans-special .pd-plan-item {
background: transparent;
border-radius: 0;
box-shadow: none;
overflow: visible;
}
.pd-plans-special .pd-plan-item:hover {
transform: none;
box-shadow: none;
} .pd-plans-special .pd-plan-thumbnail {
width: 100%;
height: 0;
padding-bottom: 66.666%; position: relative;
overflow: hidden;
background-color: #f0f0f0;
}
.pd-plans-special .pd-plan-thumbnail img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: none;
}
.pd-plans-special .pd-plan-item:hover .pd-plan-thumbnail img {
transform: none;
} .pd-plans-special .pd-plan-body {
display: flex;
align-items: center; justify-content: flex-start;
gap: 25px;
padding: 40px 30px;
}
.pd-plan-body > *:last-child {
margin-left: auto;
} .pd-plans-special .pd-plan-label {
font-family: 'Cormorant Garamond', serif;
font-size: 0.7rem;
letter-spacing: 0.2em;
color: #000000;
border-right: 1px solid #000000;
padding-right: 5px;
flex-shrink: 0;
writing-mode: vertical-rl;
text-orientation: mixed;
height: 60px; 
display: flex;
align-items: center;
justify-content: center;
} .pd-plans-special .pd-plan-info-area {
text-align: left;
}
.pd-plans-special .pd-plan-heading {
border-bottom: none; }
.pd-plans-special .pd-plan-title {
font-size: 24px;
margin: 0;
color: #000000;
font-weight: 500;
letter-spacing: 0.15em;
}
.pd-plans-special .pd-plan-subtitle {
font-size: 12px;
margin: 5px 0 0 0;
color: #666666;
letter-spacing: 0.15em;
text-transform: uppercase;
} .pd-plans-special .pd-plan-pricing { text-align: left;
}
.pd-plans-special .pd-price-amount {
font-size: 24px;
font-weight: 400;
color: #000000;
letter-spacing: 0.05em;
}
.pd-plans-special .pd-price-tax {
font-size: 14px;
color: #666666;
margin-left: 5px;
} .pd-plans-special .pd-plan-info { margin-top: 0px;
padding: 0;
background-color: transparent;
border-radius: 0;
}
.pd-plans-special .pd-info-row {
text-align: left;
justify-content: flex-start;
padding: 0;
border-bottom: none;
}
.pd-plans-special .pd-info-label {
font-size: 13px;
color: #666666;
font-weight: 400;
}
.pd-plans-special .pd-info-value {
font-size: 13px;
color: #666666;
font-weight: 400;
} .pd-plans-special .pd-plan-special {
grid-column: auto;
}
.pd-plans-special .pd-plan-special .pd-plan-thumbnail {
height: 0;
padding-bottom: 66.666%;
} .pd-options-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
} .pd-options .pd-plan-item {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.pd-options .pd-plan-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}
.pd-options .pd-plan-body {
display: block;
padding: 30px;
}
.pd-options .pd-plan-heading {
border-bottom: 2px solid #f0f0f0;
}
.pd-options .pd-plan-title {
font-size: 20px;
margin: 0 0 8px 0;
color: #000000;
font-weight: bold;
}
.pd-options .pd-plan-pricing {
margin: 10px 0;
text-align: center;
}
.pd-options .pd-price-tax {
font-size: 13px;
color: #000000;
margin-left: 5px;
} .pd-plan-info {
margin: 3px 0;
border-radius: 8px;
}
.pd-info-row {
text-align: center;
justify-content: space-between;
border-bottom: 1px solid #e0e0e0;
}
.pd-info-row:last-child {
border-bottom: none;
}
.pd-info-label {
font-size: 13px;
color: #000000;
font-weight: 500;
}
.pd-info-value {
font-size: 13px;
color: #666666;
} .pd-plan-features {
margin-top: 12px;
margin-bottom: 12px;
}
.pd-features-heading {
font-size: 1.2rem;
margin: 0 0 15px 0;
color: #000000;
font-weight: bold;
}
.pd-features-list {
list-style: none;
padding: 0;
margin: 0;
}
.pd-notes-content{
margin-top: 40px;
padding-left: 15px;
}
.pd-note-item{
font-weight: 400;
font-size: 12px;
}
.pd-note-item a {
color: #000000;
border-bottom: 1px solid transparent;
transition: all 0.3s ease;
}
.pd-option-description{
font-size: 12px;
}
.divider {
width: auto;
height: 1px;
background: #000000; margin-bottom: 80px;
}
.pd-page-title {
text-align: center;
font-size: 24px;
font-weight: 500;
color: #000000;
letter-spacing: 10px;
margin-top: 60px;
margin-bottom: 10px;
}
.pd-page-title::after {
content: '';         
display: block;       
width: 80px;        
height: 1px;     
background: #000000;  
margin: 10px auto 0; 
} .line-reservation{
margin-top: 50px;
margin-bottom: 100px;
}
.line-reservation-btn {
display: block;
width: 80%;
max-width: 300px;
margin: 0 auto;
background: #ffffff;
color: #000000;
text-decoration: none;
text-align: center;
padding: 10px 30px;
border-radius: 50px;
border: 1px solid #e0e0e0;
transition: all 0.3s ease;
}
.line-reservation-btn:hover {
background: #000000;
color: #ffffff;
border-color: #000000;
}
.line-reservation-text {
font-size: 14px;
font-weight: 500;
letter-spacing: 1px;
} @media (max-width: 768px) {
.pd-page-title {
font-size: 18px;
margin-top: 40px;
margin-bottom: 10px;
}
.pd-note-item{
font-size: 9px;
}
.pd-option-description{
font-size: 9px;
}
.pd-main-title {
font-size: 2rem;
}
.pd-section-heading {
font-size: 20px;
margin-top: 100px;
} .pd-plans-special .pd-plans-layout {
gap: 50px;
} .pd-plans-special .pd-plan-thumbnail {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
padding-bottom: calc((100% + 40px) * 2 / 3);
} .pd-plans-special .pd-plan-body {
padding: 30px 20px;
gap: 20px;
}
.pd-plans-special .pd-plan-label {
padding-right: 20px;
font-size: 0.65rem;
}
.pd-plans-special .pd-plan-title {
font-size: 17px;
}
.pd-plans-special .pd-price-amount {
font-size: 14px;
}
.pd-plans-special .pd-price-tax {
font-size: 12px;
}
.pd-plans-special .pd-info-label,
.pd-plans-special .pd-info-value {
font-size: 11px;
} .pd-options-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.pd-options .pd-plan-body {
padding: 20px;
}
.pd-options .pd-plan-title {
font-size: 12px;
text-align: center;
}
.pd-shooting-desc{
font-size: 12px;
padding-top: 80px;
padding-bottom: 0px;
}
.divider{
margin-bottom: 50px;
}
}
@media (max-width: 480px) {
.pd-hero-section {
height: 100vh;
min-height: 300px;
}
.pd-hero-overlay {
padding: 20px;
}
.pd-main-title {
font-size: 1.5rem;
}
.pd-plans-special .pd-plans-layout {
gap: 70px;
}
.pd-plans-special .pd-plan-body {
padding: 15px 10px;
gap: 15px;
}
.pd-plans-special .pd-plan-label {
padding-right: 5px;
font-size: 0.6rem;
}
.pd-plans-special .pd-plan-title {
font-size: 14px;
}
.pd-plans-special .pd-price-amount {
font-size: 16px;
}
}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}