@charset "UTF-8";

/* ----------------------------------------
	variables
---------------------------------------- */
:root {
  --fw-normal: 400;
  --fw-bold: 700;
  --color-main: #ff8b8c;
  --color-main-light: #ffeced;
  --color-main-pale: #fffafa;
  --color-main-border: #ffc3c4;
  --color-main-dark: #fb3234;
  --color-main-deep: #ff6465;
  --color-red: #f11b0c;
  --color-blue: #005fc5;
  --color-blue-light: #e8f4fa;
  --color-blue-dark: #0043a3;
  --color-yellow-light: #ffffe6;
}

/* ----------------------------------------
	reset
---------------------------------------- */
html,
body,
div,
p,
table,
tr,
th,
td,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
img,
a,
address {
  border: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ----------------------------------------
	setting
---------------------------------------- */
body {
  background: #fff8f8;
  color: #222;
  font-size: 19px;
  font-weight: var(--fw-normal);
  line-height: 1.85;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", Meiryo, Osaka, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "メイリオ", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
}

a {
  color: var(--color-blue);
  text-decoration: underline;
  outline: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

/* ----------------------------------------
	utilities
---------------------------------------- */
.red {
  color: var(--color-red);
}

.blue {
  color: var(--color-blue);
}

.bold {
  font-weight: var(--fw-bold) !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.small {
  font-size: 0.9em !important;
}

.large {
  font-size: 1.1em !important;
}

.w-small {
  width: 80%;
  margin: auto;
}

.box {
  padding: 8px 15px;
  background: var(--color-yellow-light);
  line-height: 1.5;
}

/* ----------------------------------------
	container / KV
---------------------------------------- */
#container {
  width: 960px;
  background: #fff;
  margin: auto;
  padding-bottom: 30px;
}

h1 {
  padding: 15px 0 20px;
  text-align: center;
  font-size: 1.8em;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  background: var(--color-main);
}

img {
  display: block;
  width: 100%;
}

/* ----------------------------------------
	section
---------------------------------------- */
.section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border: 1px solid var(--color-main);
}

h1+.section {
  margin-top: 60px;
}

.no-border {
  border: none !important;
}

.no-border h3 {
  border: 1px solid var(--color-main);
  border-bottom: 0;
}

.section_inner {
  padding: 20px 30px;
}

h3 {
  padding: 10px 0;
  color: #fff;
  background: var(--color-main);
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: var(--fw-bold);
  text-align: center;
}

h3 span {
  line-height: 1.5;
}

.line {
  margin: 0 auto 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ccc;
}

/* ----------------------------------------
	tables
---------------------------------------- */
.section table {
  width: 100%;
  border: 0;
  margin-bottom: 10px;
}

.section th,
.section td {
  padding: 12px 15px;
  border: 1px solid var(--color-main);
}

.section th {
  background: var(--color-main-pale);
}

.section .price {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 10px;
  line-height: 1.5;
}

.section .price th,
.section .price td {
  height: auto;
  padding: 10px 5px;
  border: 1px solid var(--color-main);
  text-align: center;
  line-height: 1.6;
}

.price .price-dep {
  background: var(--color-main-light);
  font-weight: var(--fw-bold);
  font-size: 0.9em;
}

.price .price-flight {
  font-weight: var(--fw-normal);
  background: var(--color-main-pale);
  font-size: 0.9em;
  line-height: 1.6;
}

.section table.list {
  margin: 5px auto 15px;
  border: 1px solid var(--color-main);
  font-size: 0.95em;
}

.section table.list th,
.section table.list td {
  border-bottom: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
  padding: 10px 12px;
  line-height: 1.6;
}

.section table.list td {
  background: #fff;
}

/* ----------------------------------------
	hotel
---------------------------------------- */
.hotel ul {
  display: flex;
  margin: 0 auto 10px;
}

.hotel li {
  flex: 1;
  text-align: center;
  line-height: 1.5;
}

.hotel li img {
  width: auto;
  margin: 5px auto;
  max-width: 100%;
  max-height: 250px;
  border-radius: 6px;
}

/* ----------------------------------------
	entry / button
---------------------------------------- */
.entry {
  width: 550px;
  margin: 100px auto;
  padding: 15px;
  border-radius: 10px;
  background: var(--color-main-pale);
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
  font-weight: var(--fw-bold);
}

.entry_start a {
  position: relative;
  display: block;
  width: 500px;
  color: #fff;
  background: var(--color-main-deep);
  padding: 16px 0;
  margin: 90px auto;
  text-decoration: none;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  border-radius: 100vw;
  box-shadow: 0 4px 14px rgba(204, 111, 112, 0.35);
  opacity: 1;
  transition: all 0.3s;
}

.entry_start a::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
}

.entry_start a:hover {
  opacity: 0.7;
}

#btnEntry {
  position: relative;
  display: block;
  margin: auto;
  padding: 10px 0;
  color: #fff;
  background: var(--color-main);
  text-decoration: none;
  font-size: 1.75em;
  font-weight: bold;
  border-radius: 100vw;
}

#btnEntry:not(.disabled)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #ff0;
  border-right: 3px solid #ff0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

#btnEntry.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ----------------------------------------
	schedule
---------------------------------------- */
.schedule-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 0 10px;
}

.schedule-day {
  margin-bottom: 32px;
  border: 1px solid var(--color-main);
  border-radius: 6px;
  overflow: hidden;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-main);
  color: #fff;
  padding: 14px 20px;
}

.day-date {
  font-size: 1.5em;
  font-weight: var(--fw-bold);
  white-space: nowrap;
  min-width: 75px;
  line-height: 1.2;
}

.day-date small {
  font-size: 0.65em;
  font-weight: var(--fw-normal);
  margin-left: 3px;
}

.day-hotel {
  flex: 1;
  font-size: 0.95em;
  line-height: 1.4;
}

.day-meals {
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.day-meals .meal {
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: var(--fw-bold);
}

.day-meals .meal.ok {
  background: #fff;
  color: var(--color-main);
}

.day-meals .meal.ng {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.day-content {
  padding: 20px 25px 16px;
}

.dep-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.dep-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--color-main-pale);
  border: 1px solid var(--color-main-border);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.95em;
  line-height: 1.65;
}

.dep-box.highlight {
  background: var(--color-yellow-light);
}

.dep-label {
  font-weight: var(--fw-bold);
  white-space: nowrap;
  flex-shrink: 0;
}

.dep-label.dep-time {
  min-width: 90px;
}

.dep-detail {
  flex: 1;
}

.sched-flow {
  padding-left: 24px;
  border-left: 3px solid var(--color-main-border);
  margin-left: 10px;
}

.sched-move {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95em;
  padding: 5px 0;
  line-height: 1.6;
}

.sched-time {
  display: inline-block;
  margin: 12px 0;
  min-width: 90px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: var(--fw-bold);
}

.sched-event-row {
  display: flex;
  align-items: top;
  gap: 10px;
}

.sched-event-row .sched-event {
  flex: 1;
}

.sched-event {
  margin: 12px 0;
  padding: 14px 20px;
  background: var(--color-main-light);
  border: 1px solid var(--color-main);
  border-radius: 5px;
  color: var(--color-main-dark);
  font-weight: var(--fw-bold);
  font-size: 1em;
  text-align: center;
  line-height: 1.6;
}

.sched-event.live {
  background: var(--color-blue-light);
  border-color: var(--color-blue);
  color: var(--color-blue-dark);
}

.sched-note {
  font-size: 0.9em;
  padding: 4px 0 8px 5px;
  line-height: 1.6;
}

.event-photos {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 6px 0 8px;
}

.event-photo {
  width: 35%;
  text-align: center;
  font-size: 0.9em;
  line-height: 1.5;
}

.event-photo img {
  width: auto;
  height: 200px;
  display: block;
  border-radius: 6px;
  margin-bottom: 5px;
}

.with-badge {
  display: inline-block;
  background: #ffe44d;
  font-size: 0.85em;
  font-weight: var(--fw-bold);
  padding: 4px;
  border-radius: 5px;
  margin: 0 4px;
  white-space: nowrap;
}

.sched-event,
.sched-move,
.sched-note,
.dep-box {
  position: relative;
}

.meal-tag {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.6;
}

.meal-tag.ok {
  color: var(--color-main);
  background: #fff;
  border: 1px solid var(--color-main);
}

.meal-tag.ng {
  color: #90aac8;
  background: #f0f6ff;
  border: 1px solid #c8dff0;
  text-decoration: line-through;
}