@php
use App\Enums\TypeFace;
@endphp
{{ $title }}
@stack('styles')
@php
$backgroundReservationButton = $project->reservation_button_color
? '#' . $project->reservation_button_color
: '#ceb4a9';
$gradationReservationButton = $project->reservation_button_gradation_color
? '#' . $project->reservation_button_gradation_color
: $backgroundReservationButton;
$backgroundPlanButton = $project->plan_button_color ? '#' . $project->plan_button_color : '#fff';
$gradationPlanButton = $project->plan_button_gradation_color
? '#' . $project->plan_button_gradation_color
: $backgroundPlanButton;
$fontFamily = "baskerville-urw, \"YuGothic Medium\", \"Yu Gothic Medium\", noto-sans-cjk-jp";
if ($project->typeface == TypeFace::MINCHO) {
$fontFamily =
'"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif';
if ($lang == \App\Enums\MultiLangMode::ENGLISH) {
$fontFamily = '"Times New Roman", serif';
}
}
@endphp
@include('include.hotels.banner')
@include('include.hotels.nav')
@yield('content')
@include('include.hotels.modalDatePicker')
@include('include.hotels.modalBookingInfo')
@include('include.preview.' . $designTemplate . '.footer')
@stack('javascript')