@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

body {
	font-family: 'Sawarabi Mincho', 'Oswald', Arial, sans-serif;	
	color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
	overflow-y: auto;
}

header {
    background-color: #222;
    color: #fff;
    padding: 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 0px;
}

header .logo img {
    margin-left: 20px;
    width: auto;
	height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
    padding: 0; /* 不要な余白を削除 */
}

header nav ul li {
    margin-left: 10px; /* メニュー項目間のスペースを狭める */
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px; /* リンクの周りのパディングを調整 */
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #999;
}

.hero {
    background-image: url('https://picsum.photos/1920/1080');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    margin-top: 80px;
}

.hero + .content {
    margin-top: 40px; /* 適当なスペースを空ける */
}

.hero h1 {
	font-size: 54px;
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border: 1px solid #fff; /* 枠線を白に設定 */
    background-color: transparent; /* 背景を透明に設定 */
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: rgba(255, 255, 255, 0.3); /* マウスを乗せたとき、背景を半透明に設定 */
}

.row {
    display: flex;
    justify-content: space-between;
}

.col-6 {
    width: 48%;
}

.col-6 img {
    width: 100%; /* 画像の幅を100%に設定 */
}

section:not(.hero) {
    margin-left: 300px; /* 両端に300pxのマージンを空ける */
    margin-right: 300px;
}

.contents_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.menu-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
}

.bg-image {
    background-size: cover;
    background-position: center;
}

.bg-scale {
    transition: transform 0.3s ease-in-out;
}

.bg-scale:hover {
    transform: scale(1.05);
}

.recommended {
    background-image: url('https://cdn.pixabay.com/photo/2022/10/24/12/20/mountains-7543273_1280.jpg');
    height: 300px;
}

.access {
    background-image: url('https://cdn.pixabay.com/photo/2023/09/21/01/20/sugar-blader-8265868_1280.jpg');
    height: 150px;
}

.column {
    background-image: url('https://cdn.pixabay.com/photo/2019/09/21/22/19/old-4499936_1280.jpg');
    height: 150px;
}

.title-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.title_std {
    font-size: 24px;
    margin-bottom: 10px;
}

.ff_cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.btn.detail {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.btn.detail:hover {
    background-color: rgba(255, 255, 255, 1);
}

.half-box {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-right: 2%;
}

.half-box:last-child {
    margin-right: 0;
}

.contact-form {
    padding: 40px 20px;
    background-color: #f5f5f5;
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-form .btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border: 1px solid #1a2a6c; /* 枠線をネイビーに設定 */
    background-color: #1a2a6c; /* 背景をネイビーに設定 */
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    cursor: pointer; /* ボタンにカーソルを表示 */
}

.contact-form .btn:hover {
    background-color: #16225a; /* マウスを乗せたとき、背景を少し暗いネイビーに設定 */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* イベント情報セクションのスタイル */
.event-info {
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 20px;
    text-align: center;
}

.event-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.events {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch; /* 各ボックスの高さを揃える */
}

.event {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    width: 30%;
    display: flex;
    flex-direction: column;
}

.event .image {
    overflow: hidden;
    flex-shrink: 0; /* 画像の縮小を防ぐ */
}

.event .image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.event .image img:hover {
    transform: scale(1.05);
}

.event .title {
    font-size: 18px;
    color: #333;
    padding: 10px 15px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.event .title a {
    text-decoration: none;
    color: inherit;
}

.event .date, .event .btn-more {
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
}

.event .btn-more {
    margin-top: auto; /* ボタンを下部に配置 */
    text-align: right;
}

.event .btn-more img {
    width: 48px;
    height: auto;
}

.triangle-wrapper {
	position: relative;
}

.triangle {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid #1F2D60;
	border-top: 30px solid transparent;
	border-bottom: 30px solid #1F2D60;
}

.triangle-wrapper i {
	position: absolute;
	color: white;	
	bottom: 10px;
	right: 10px;	
}
