@charset "UTF-8";
/******************************************************************
** Stylesheet: Main Stylesheet
******************************************************************/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
/******************************************************************
** Base
******************************************************************/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
/******************************************************************
** Links
******************************************************************/
a {
  background: transparent;
}
a:active, a:hover {
  outline: 0;
}
/******************************************************************
** Typography
******************************************************************/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 0.1rem dotted;
}
b, strong, .strong {
  font-weight: bold;
}
dfn, em, .em {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
pre {
  margin: 0;
}
code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "“" "”" "‘" "’";
}
q:before, q:after {
  content: "";
  content: none;
}
small, .small {
  font-size: 75%;
}
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/******************************************************************
** Lists
******************************************************************/
dl, menu {
  margin: 1em 0;
}
dd {
  margin: 0;
}
menu {
  padding: 0 0 0 4rem;
}
ol, ul {
  margin: 0 0 1.5em;
  padding: 0;
  padding-left: 1em;
}
ol li, ul li {
  margin-bottom: 0.3em;
}
ol {
  list-style: decimal;
}
ul {
  list-style: disc;
}
nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}
/******************************************************************
** Embedded content
******************************************************************/
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
svg:not(:root) {
  overflow: hidden;
}
/******************************************************************
** Figures
******************************************************************/
figure {
  margin: 0;
}
/******************************************************************
** Forms
******************************************************************/
fieldset {
  border: 0.1rem solid #c0c0c0;
  margin: 0 0.2rem;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button, input {
  line-height: normal;
}
button, select {
  text-transform: none;
}
button, html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}
input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled], html input[disabled] {
  cursor: default;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
/******************************************************************
** Tables
******************************************************************/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after, .comment-respond:before, .comment-respond:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}
/******************************************************************
** INPUTS (Refactored)
******************************************************************/
input[type="text"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="text"]:focus, input[type="text"]:active {
  background-color: #f7f8fa;
}
input[type="text"].error, input[type="text"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="text"].success, input[type="text"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="text"][disabled], input[type="text"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="password"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="password"]:focus, input[type="password"]:active {
  background-color: #f7f8fa;
}
input[type="password"].error, input[type="password"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="password"].success, input[type="password"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="password"][disabled], input[type="password"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="password"][disabled]:focus, input[type="password"][disabled]:active, input[type="password"].is-disabled:focus, input[type="password"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="datetime"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="datetime"]:focus, input[type="datetime"]:active {
  background-color: #f7f8fa;
}
input[type="datetime"].error, input[type="datetime"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="datetime"].success, input[type="datetime"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="datetime"][disabled], input[type="datetime"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="datetime"][disabled]:focus, input[type="datetime"][disabled]:active, input[type="datetime"].is-disabled:focus, input[type="datetime"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="datetime-local"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="datetime-local"]:focus, input[type="datetime-local"]:active {
  background-color: #f7f8fa;
}
input[type="datetime-local"].error, input[type="datetime-local"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="datetime-local"].success, input[type="datetime-local"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="datetime-local"][disabled], input[type="datetime-local"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="datetime-local"][disabled]:focus, input[type="datetime-local"][disabled]:active, input[type="datetime-local"].is-disabled:focus, input[type="datetime-local"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="date"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="date"]:focus, input[type="date"]:active {
  background-color: #f7f8fa;
}
input[type="date"].error, input[type="date"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="date"].success, input[type="date"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="date"][disabled], input[type="date"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="date"][disabled]:focus, input[type="date"][disabled]:active, input[type="date"].is-disabled:focus, input[type="date"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="month"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="month"]:focus, input[type="month"]:active {
  background-color: #f7f8fa;
}
input[type="month"].error, input[type="month"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="month"].success, input[type="month"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="month"][disabled], input[type="month"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="month"][disabled]:focus, input[type="month"][disabled]:active, input[type="month"].is-disabled:focus, input[type="month"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="time"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="time"]:focus, input[type="time"]:active {
  background-color: #f7f8fa;
}
input[type="time"].error, input[type="time"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="time"].success, input[type="time"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="time"][disabled], input[type="time"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="time"][disabled]:focus, input[type="time"][disabled]:active, input[type="time"].is-disabled:focus, input[type="time"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="week"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="week"]:focus, input[type="week"]:active {
  background-color: #f7f8fa;
}
input[type="week"].error, input[type="week"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="week"].success, input[type="week"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="week"][disabled], input[type="week"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="week"][disabled]:focus, input[type="week"][disabled]:active, input[type="week"].is-disabled:focus, input[type="week"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="number"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="number"]:focus, input[type="number"]:active {
  background-color: #f7f8fa;
}
input[type="number"].error, input[type="number"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="number"].success, input[type="number"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="number"][disabled], input[type="number"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="number"][disabled]:focus, input[type="number"][disabled]:active, input[type="number"].is-disabled:focus, input[type="number"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="email"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="email"]:focus, input[type="email"]:active {
  background-color: #f7f8fa;
}
input[type="email"].error, input[type="email"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="email"].success, input[type="email"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="email"][disabled], input[type="email"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="email"][disabled]:focus, input[type="email"][disabled]:active, input[type="email"].is-disabled:focus, input[type="email"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="url"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="url"]:focus, input[type="url"]:active {
  background-color: #f7f8fa;
}
input[type="url"].error, input[type="url"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="url"].success, input[type="url"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="url"][disabled], input[type="url"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="url"][disabled]:focus, input[type="url"][disabled]:active, input[type="url"].is-disabled:focus, input[type="url"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="search"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="search"]:focus, input[type="search"]:active {
  background-color: #f7f8fa;
}
input[type="search"].error, input[type="search"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="search"].success, input[type="search"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="search"][disabled], input[type="search"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="search"][disabled]:focus, input[type="search"][disabled]:active, input[type="search"].is-disabled:focus, input[type="search"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="tel"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="tel"]:focus, input[type="tel"]:active {
  background-color: #f7f8fa;
}
input[type="tel"].error, input[type="tel"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="tel"].success, input[type="tel"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="tel"][disabled], input[type="tel"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="tel"][disabled]:focus, input[type="tel"][disabled]:active, input[type="tel"].is-disabled:focus, input[type="tel"].is-disabled:active {
  background-color: #d5edf8;
}
input[type="color"] {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
input[type="color"]:focus, input[type="color"]:active {
  background-color: #f7f8fa;
}
input[type="color"].error, input[type="color"].is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
input[type="color"].success, input[type="color"].is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
input[type="color"][disabled], input[type="color"].is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="color"][disabled]:focus, input[type="color"][disabled]:active, input[type="color"].is-disabled:focus, input[type="color"].is-disabled:active {
  background-color: #d5edf8;
}
select, textarea, .field {
  display: block;
  height: 5.5rem;
  padding: 1rem;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0.5rem;
  vertical-align: middle;
  box-shadow: none;
  border: 0.1rem solid #e0e1ea;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
select:focus, select:active, textarea:focus, textarea:active, .field:focus, .field:active {
  background-color: #f7f8fa;
}
select.error, select.is-invalid, textarea.error, textarea.is-invalid, .field.error, .field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: white;
  outline-color: #fbe3e4;
}
select.success, select.is-valid, textarea.success, textarea.is-valid, .field.success, .field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: white;
  outline-color: #e6efc2;
}
select[disabled], select.is-disabled, textarea[disabled], textarea.is-disabled, .field[disabled], .field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
select[disabled]:focus, select[disabled]:active, select.is-disabled:focus, select.is-disabled:active, textarea[disabled]:focus, textarea[disabled]:active, textarea.is-disabled:focus, textarea.is-disabled:active, .field[disabled]:focus, .field[disabled]:active, .field.is-disabled:focus, .field.is-disabled:active {
  background-color: #d5edf8;
}
input[type="password"] {
  letter-spacing: 0.3em;
}
textarea {
  max-width: 100%;
  min-height: 12rem;
  line-height: 1.5em;
}
select {
  -webkit-appearance: none;
}
/******************************************************************
** GENERAL STYLES
******************************************************************/
html {
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html * {
  word-break: break-all;
  box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000;
  background: #fff;
  margin: 0;
}
body * {
  hyphens: none;
}
#container {
  overflow: clip;
}
/******************************************************************
** H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}
h1, .h1 {
  font-size: 2.5em;
}
h2, .h2 {
  font-size: 1.75em;
  margin-bottom: 0.375em;
}
h3, .h3 {
  font-size: 1.125em;
}
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}
h5, .h5 {
  font-size: 0.846em;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
/******************************************************************
** HEADER STYLES
******************************************************************/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
}
.header .logo {
  max-width: 20rem;
}
body.home .header, body.lp .header {
  background: transparent;
}
#inner-header {
  padding: 3.1rem 5rem;
  padding-right: 10rem !important;
}
#inner-header .inner {
  display: flex;
  align-items: center;
}
body.home #inner-header, body.lp #inner-header {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  #inner-header {
    padding: 2rem;
    padding-right: 8rem !important;
  }
  body.home #inner-header, body.lp #inner-header {
    padding: 3rem;
  }
}
.logo {
  width: 100%;
  margin: 0;
  line-height: 0;
}
.logo a, .logo img {
  display: block;
  width: 100%;
}
.logo img {
  height: auto;
  transition: all 0.4s;
}
.logo a:hover img {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .logo {
    max-width: 20rem;
  }
}
@media screen and (max-width: 320px) {
  .logo {
    max-width: 18rem;
  }
}
.header-notice-section {
  position: relative;
  background: #fff url(../images/page/bg_notice-section01.webp) no-repeat center center/cover;
  padding: 2.6rem 0;
  box-shadow: 0 0.8rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.header-notice-section .notice-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.header-notice-section .notice-wrap .section-label {
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.1rem;
  color: #323979;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0;
  margin-right: 2em;
  white-space: nowrap;
  display: inline-block;
}
.header-notice-section .notice-wrap ul.notice-list {
  padding-top: 0.3em;
}
@media screen and (max-width: 768px) {
  .header-notice-section .notice-wrap {
    display: block;
  }
  .header-notice-section .notice-wrap .section-label {
    display: block;
  }
  .header-notice-section .notice-wrap ul.notice-list {
    margin-top: 1.5rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .header-notice-section {
    padding: 2.3rem 0;
  }
}
/******************************************************************
** NAVIGATION STYLES
******************************************************************/
.footer-nav-wrap ul.nav {
  list-style: none;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding: 0;
}
.footer-nav-wrap ul.nav > li {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  display: inline-block;
  vertical-align: top;
  margin: 1em 1.5em;
}
.footer-nav-wrap ul.nav > li a {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
}
.footer-nav-wrap ul.nav > li a:hover {
  opacity: 0.7;
}
#nav-drawer {
  position: relative;
  z-index: 9999;
}
.nav-unshown {
  display: none;
}
#nav-open {
  position: fixed;
  top: 3.8rem;
  right: 3.5rem;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 10000;
}
#nav-open .line-wrap {
  position: relative;
  width: 3.5rem;
  height: 2rem;
  display: block;
  box-sizing: border-box;
  z-index: 10000;
}
#nav-open .line-wrap span {
  box-sizing: border-box;
  z-index: 10000;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #fff;
  transition: all 0.4s;
}
#nav-open .line-wrap span:nth-of-type(1) {
  top: 0;
}
#nav-open .line-wrap span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, -50%);
}
#nav-open .line-wrap span:nth-of-type(3) {
  bottom: 0;
}
#nav-open.active .line-wrap span {
  background: #323979;
}
#nav-open.active .line-wrap span:nth-of-type(1) {
  transform: translateY(0.95rem) rotate(-45deg);
}
#nav-open.active .line-wrap span:nth-of-type(2) {
  opacity: 0;
}
#nav-open.active .line-wrap span:nth-of-type(3) {
  transform: translateY(-0.95rem) rotate(45deg);
}
#nav-open.scrolled .line-wrap span {
  background: #323979;
}
body.home #nav-open, body.lp #nav-open {
  top: 4.5rem;
  right: 4.5rem;
}
@media screen and (max-width: 768px) {
  #nav-open {
    top: 2.6rem;
    right: 2rem;
  }
  body.home #nav-open, body.lp #nav-open {
    top: 3rem;
    right: 3rem;
  }
}
@media screen and (max-width: 480px) {
  #nav-open {
    top: 2.4rem;
  }
}
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 90%;
  max-width: 30rem;
  height: 100%;
  background: #fff;
  padding: 10rem 2rem 15rem;
  transition: all 0.4s;
  transform: translateX(105%);
  opacity: 0;
}
#nav-content .logo {
  text-align: center;
  margin: 0 auto;
  max-width: 20rem;
}
#nav-content ul.nav {
  text-align: center;
  list-style: none;
  margin: 4rem 0 0;
  padding: 0;
  display: block;
}
#nav-content ul.nav > li {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.15em;
  display: table;
  margin: 0 auto 2em;
}
#nav-content ul.nav > li:last-child {
  margin-bottom: 0;
}
#nav-content ul.nav > li a {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #000;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
}
#nav-content ul.nav > li a:hover {
  opacity: 0.7;
}
#nav-content .search-btn {
  position: relative;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  display: block;
  width: 100%;
  max-width: 22rem;
  background: #323979;
  margin: 3rem auto 0;
  padding: 0.9em 3.4em 1.1em;
  transition: all 0.4s;
}
#nav-content .search-btn:before {
  position: absolute;
  top: 50%;
  right: 1.4em;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: transparent url(../images/common/icon_out01_wh.webp) no-repeat center center/contain;
}
#nav-content .search-btn .btn-text {
  margin: 0 auto;
}
#nav-content .search-btn .btn-text .text {
  letter-spacing: 0.15em;
  display: block;
}
#nav-content .search-btn .btn-text .text.text_jp {
  font-size: 1.5rem;
}
#nav-content .search-btn .btn-text .text.text_en {
  font-size: 1rem;
  margin-top: 0.8em;
}
#nav-content .search-btn:hover {
  opacity: 0.7;
}
#nav-content ul.sns-list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #nav-content {
    padding: 8rem 2rem 20rem;
  }
}
#nav-input:checked ~ #nav-content {
  transform: translateX(0);
  opacity: 1;
}
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  cursor: pointer;
  transition: all 0.4s;
}
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.9;
}
/******************************************************************
** PAGE NAVI STYLES
******************************************************************/
.pagination {
  margin: 4rem auto 0;
  padding: 0;
  text-align: center;
  display: block;
}
.pagination ul.page-numbers {
  margin: 0 auto;
  padding: 0;
  display: table;
}
.pagination ul.page-numbers > li {
  text-decoration: none;
  margin: 0.35rem;
  display: inline-flex;
  vertical-align: middle;
}
.pagination ul.page-numbers > li:first-child {
  margin-left: 0;
}
.pagination ul.page-numbers > li:last-child {
  margin-right: 0;
}
.pagination ul.page-numbers > li a, .pagination ul.page-numbers > li .current {
  height: 3.5rem;
  width: 3.5rem;
  line-height: 3.5rem;
  text-decoration: none;
  display: block;
}
.pagination ul.page-numbers > li a {
  color: #000;
  background: #f7f7fa;
  transition: all 0.4s;
}
.pagination ul.page-numbers > li .current, .pagination ul.page-numbers > li a:hover {
  background: #323979;
  color: #fff;
}
.pagination ul.page-numbers > li .prev, .pagination ul.page-numbers > li .next {
  position: relative;
}
.pagination ul.page-numbers > li .prev:before, .pagination ul.page-numbers > li .next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.pagination ul.page-numbers > li .prev::before {
  content: "";
}
.pagination ul.page-numbers > li .next::before {
  content: "";
}
/******************************************************************
** SIDEBARS & ASIDES
******************************************************************/
.no-widgets {
  background-color: white;
  padding: 1.5em;
  text-align: center;
  border: 0.1rem solid #cccccc;
  border-radius: 0.2rem;
  margin-bottom: 1.5em;
}
/******************************************************************
** FOOTER STYLES
******************************************************************/
.footer {
  clear: both;
  color: #fff;
}
.footer .footer-inner.footer-inner01 {
  padding: 5rem 0;
  background: #323979;
}
.footer .footer-inner.footer-inner01 .row > div {
  margin: 0;
}
.footer .footer-inner.footer-inner01 .logo {
  max-width: 20rem;
}
.footer .footer-inner.footer-inner01 .info-wrap .text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .footer .footer-inner.footer-inner01 .row {
    align-items: center;
  }
  .footer .footer-inner.footer-inner01 .row > div {
    height: 100%;
  }
  .footer .footer-inner.footer-inner01 .logo {
    text-align: right;
    margin: 0 3rem 0 auto;
  }
  .footer .footer-inner.footer-inner01 .info-wrap {
    padding: 0.5rem 0 0.5rem 3rem;
    border-left: 0.1rem solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-inner.footer-inner01 {
    padding: 3.5rem 0 3rem;
  }
  .footer .footer-inner.footer-inner01 .logo {
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer-inner.footer-inner01 .info-wrap {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 0.1rem solid #fff;
  }
  .footer .footer-inner.footer-inner01 .info-wrap .text {
    display: table;
    margin: 0 auto;
  }
}
.footer .footer-inner.footer-inner02 {
  padding: 3rem 0 3.5rem;
  background: #292f5e;
}
@media screen and (max-width: 768px) {
  .footer .footer-inner.footer-inner02 {
    padding: 2.4rem 0;
  }
}
.footer ul.sns-list {
  margin-top: 1.5rem;
}
.footer ul.sns-list > li a img {
  opacity: 0.8;
}
.footer ul.sns-list > li a:hover img {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer ul.sns-list {
    margin-top: 0;
  }
}
.footer .copyright-wrap {
  background: #fff;
  padding: 1.5rem 0;
}
.footer .copyright-wrap .copyright {
  font-size: 1rem;
  color: #323979;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.15em;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .footer .copyright-wrap {
    padding-bottom: 5.5rem;
  }
  .footer .copyright-wrap .copyright {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-nav-wrap {
    display: none;
  }
}
.fixed-search-btn {
  position: fixed;
  bottom: 50%;
  right: 0;
  transform: translate(0, 50%);
  width: 10rem;
  z-index: 10;
}
.fixed-search-btn:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.fixed-search-btn a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #323979;
  border: 0.1rem solid #fff;
  border-right: none;
  transition: all 0.4s;
}
.fixed-search-btn a .btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  padding-bottom: 1.9em;
  width: 100%;
}
.fixed-search-btn a .btn-text:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: transparent url(../images/common/icon_out01_wh.webp) no-repeat center center/contain;
}
.fixed-search-btn a .btn-text .text {
  letter-spacing: 0.15em;
  display: block;
}
.fixed-search-btn a .btn-text .text.text_jp {
  font-size: 1.5rem;
}
.fixed-search-btn a .btn-text .text.text_en {
  font-size: 1rem;
  margin-top: 1em;
}
.fixed-search-btn a:hover {
  opacity: 0.7;
}
body.lp .fixed-search-btn {
  width: 13.5rem;
}
body.lp .fixed-search-btn .text--bestrate {
  position: absolute;
  bottom: calc(100% + 0.6em);
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.3rem;
  color: #323979;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 auto;
  display: table;
  white-space: nowrap;
  pointer-events: none;
}
body.lp .fixed-search-btn .text--bestrate:before, body.lp .fixed-search-btn .text--bestrate:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 0.1rem;
  height: 1.1em;
  background: #323979;
  display: block;
}
body.lp .fixed-search-btn .text--bestrate:before {
  right: calc(100% + 0.45em);
  transform: translate(0, -50%) rotate(-20deg);
}
body.lp .fixed-search-btn .text--bestrate:after {
  left: calc(100% + 0.55em);
  transform: translate(0, -50%) rotate(20deg);
}
@media screen and (max-width: 768px) {
  .fixed-search-btn {
    bottom: 6.5rem;
    transform: initial;
    width: 8.5rem;
  }
  .fixed-search-btn a .btn-text .text.text_jp {
    font-size: 1.2rem;
  }
  body.lp .fixed-search-btn {
    width: 11rem;
  }
  body.lp .fixed-search-btn .text--bestrate {
    font-size: 0.8rem;
  }
}
#page_top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}
#page_top a {
  position: relative;
  font-size: 1em;
  background: #323979;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 0.1rem solid #323979;
  width: 4.5rem;
  height: 4.5rem;
  display: block;
  transition: all 0.4s;
}
#page_top a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
#page_top a:hover {
  color: #323979;
  background: #fff;
  text-decoration: none;
}
/******************************************************************
** frontpage
******************************************************************/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #fff;
}
.mv .mv-video-wrap, .mv .mv-video-wrap .video-area {
  position: absolute;
}
.mv .mv-video-wrap {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 4.8rem);
  height: calc(100% - 2.4rem);
}
.mv .mv-video-wrap .video-area {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mv .mv-video-wrap .video-area video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.mv .scroll-down {
  position: absolute;
  left: 3.5%;
  bottom: 0;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  display: inline-block;
  margin: 0;
  padding-bottom: 11.5rem;
}
.mv .scroll-down::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: block;
  width: 0.1rem;
  height: 10rem;
  background: #fff;
  animation: scrolldown 3s ease 0s infinite normal;
}
@media screen and (max-width: 768px) {
  .mv .mv-video-wrap {
    width: calc(100% - 2.4rem);
    height: calc(100% - 1.2rem);
  }
  .mv .scroll-down {
    left: 2rem;
  }
}
@keyframes scrolldown {
  0% {
    height: 10rem;
  }
  100% {
    height: 0;
  }
}
.slide-wrap--plan, .slide-wrap--about, .slide-wrap--topics, .slide-wrap--room02, .slide-wrap--ird, .slide-wrap--activity, .slide-wrap--room {
  position: relative;
}
.slide-wrap--plan .splide__pagination, .slide-wrap--about .splide__pagination, .slide-wrap--topics .splide__pagination, .slide-wrap--room02 .splide__pagination, .slide-wrap--ird .splide__pagination, .slide-wrap--activity .splide__pagination, .slide-wrap--room .splide__pagination {
  position: absolute;
  bottom: -3.5rem;
  padding: 0;
}
.slide-wrap--plan .splide__pagination .splide__pagination__page, .slide-wrap--about .splide__pagination .splide__pagination__page, .slide-wrap--topics .splide__pagination .splide__pagination__page, .slide-wrap--room02 .splide__pagination .splide__pagination__page, .slide-wrap--ird .splide__pagination .splide__pagination__page, .slide-wrap--activity .splide__pagination .splide__pagination__page, .slide-wrap--room .splide__pagination .splide__pagination__page {
  background: #323979;
  margin: 0.6rem;
  opacity: 0.15;
}
.slide-wrap--plan .splide__pagination .splide__pagination__page.is-active, .slide-wrap--about .splide__pagination .splide__pagination__page.is-active, .slide-wrap--topics .splide__pagination .splide__pagination__page.is-active, .slide-wrap--room02 .splide__pagination .splide__pagination__page.is-active, .slide-wrap--ird .splide__pagination .splide__pagination__page.is-active, .slide-wrap--activity .splide__pagination .splide__pagination__page.is-active, .slide-wrap--room .splide__pagination .splide__pagination__page.is-active {
  background: #323979;
  transform: scale(1);
  opacity: 1;
}
.slide-wrap--plan .splide__arrow, .slide-wrap--about .splide__arrow, .slide-wrap--topics .splide__arrow, .slide-wrap--room02 .splide__arrow, .slide-wrap--ird .splide__arrow, .slide-wrap--activity .splide__arrow, .slide-wrap--room .splide__arrow {
  background: transparent;
  border-radius: initial;
  opacity: 1;
  width: 2rem;
  height: 3.74rem;
  z-index: 2;
  transition: all 0.4s;
}
.slide-wrap--plan .splide__arrow svg, .slide-wrap--about .splide__arrow svg, .slide-wrap--topics .splide__arrow svg, .slide-wrap--room02 .splide__arrow svg, .slide-wrap--ird .splide__arrow svg, .slide-wrap--activity .splide__arrow svg, .slide-wrap--room .splide__arrow svg {
  display: none !important;
}
.slide-wrap--plan .splide__arrow:before, .slide-wrap--about .splide__arrow:before, .slide-wrap--topics .splide__arrow:before, .slide-wrap--room02 .splide__arrow:before, .slide-wrap--ird .splide__arrow:before, .slide-wrap--activity .splide__arrow:before, .slide-wrap--room .splide__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.slide-wrap--plan .splide__arrow:hover, .slide-wrap--about .splide__arrow:hover, .slide-wrap--topics .splide__arrow:hover, .slide-wrap--room02 .splide__arrow:hover, .slide-wrap--ird .splide__arrow:hover, .slide-wrap--activity .splide__arrow:hover, .slide-wrap--room .splide__arrow:hover {
  opacity: 0.7 !important;
}
.slide-wrap--plan .splide__arrow--prev, .slide-wrap--about .splide__arrow--prev, .slide-wrap--topics .splide__arrow--prev, .slide-wrap--room02 .splide__arrow--prev, .slide-wrap--ird .splide__arrow--prev, .slide-wrap--activity .splide__arrow--prev, .slide-wrap--room .splide__arrow--prev {
  left: 4rem;
}
.slide-wrap--plan .splide__arrow--prev:before, .slide-wrap--about .splide__arrow--prev:before, .slide-wrap--topics .splide__arrow--prev:before, .slide-wrap--room02 .splide__arrow--prev:before, .slide-wrap--ird .splide__arrow--prev:before, .slide-wrap--activity .splide__arrow--prev:before, .slide-wrap--room .splide__arrow--prev:before {
  background: transparent url("../images/common/icon_arrow_l02_bl.svg") no-repeat center center/contain;
}
.slide-wrap--plan .splide__arrow--next, .slide-wrap--about .splide__arrow--next, .slide-wrap--topics .splide__arrow--next, .slide-wrap--room02 .splide__arrow--next, .slide-wrap--ird .splide__arrow--next, .slide-wrap--activity .splide__arrow--next, .slide-wrap--room .splide__arrow--next {
  right: 4rem;
}
.slide-wrap--plan .splide__arrow--next:before, .slide-wrap--about .splide__arrow--next:before, .slide-wrap--topics .splide__arrow--next:before, .slide-wrap--room02 .splide__arrow--next:before, .slide-wrap--ird .splide__arrow--next:before, .slide-wrap--activity .splide__arrow--next:before, .slide-wrap--room .splide__arrow--next:before {
  background: transparent url("../images/common/icon_arrow_r02_bl.svg") no-repeat center center/contain;
}
.top-section--about {
  position: relative;
  padding-top: 10rem;
}
.top-section--about .text-wrap .heading {
  position: relative;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.15em;
  margin: 0 auto 1.5em;
  padding-bottom: 1em;
}
.top-section--about .text-wrap .heading:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: block;
  width: 12rem;
  height: 0.1rem;
  background: #323979;
  opacity: 0.3;
}
.top-section--about .text-wrap .text {
  font-size: 1.5rem;
  text-align: center;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.top-section--about .text-wrap .text.text02 {
  margin-top: 4.5em;
}
.top-section--about .img-section .img-wrap {
  height: 100%;
}
.top-section--about .img-section .img-wrap img {
  height: 100%;
  object-fit: cover;
}
.top-section--about .img-section .img-wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 1rem 1rem #fff;
}
.top-section--about .slide-wrap--about {
  margin-top: 10rem;
}
.top-section--about .slide-wrap--about .splide__list .splide__slide .img-wrap:before {
  content: "";
  display: block;
  padding-top: 43.75%;
}
.top-section--about .slide-wrap--about .splide__list .splide__slide .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .top-section--about .slide-wrap--about {
    pointer-events: none;
  }
  .top-section--about .row > div {
    margin: 0 2rem;
  }
  .top-section--about .row > div:first-child {
    margin-left: 0;
  }
  .top-section--about .row > div:last-child {
    margin-right: 0;
  }
  .top-section--about .text-wrap {
    padding: 4rem 0;
  }
  .top-section--about .img-section .img-wrap {
    height: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .top-section--about .text-wrap .heading {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-section--about .row {
    flex-direction: column;
  }
  .top-section--about .row > div {
    margin: 0 0 5rem;
  }
  .top-section--about .row > div:last-child {
    margin-bottom: 0;
  }
  .top-section--about .img-section .img-wrap {
    height: 57rem;
  }
}
@media screen and (max-width: 768px) {
  .top-section--about {
    padding-top: 9rem;
  }
  .top-section--about .row > div {
    margin-bottom: 0;
  }
  .top-section--about .text-wrap .heading {
    font-size: 1.8rem;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .top-section--about .text-wrap .heading:after {
    display: none;
  }
  .top-section--about .img-section {
    display: none;
  }
  .top-section--about .slide-wrap--about {
    margin-top: 4rem;
  }
  .top-section--about .slide-wrap--about .splide__list .splide__slide .img-wrap:before {
    padding-top: 66.6666666667%;
  }
}
@media screen and (max-width: 480px) {
  .top-section--about {
    padding-top: 8rem;
  }
  .top-section--about .text-wrap .heading {
    font-size: 1.5rem;
  }
  .top-section--about .text-wrap .text {
    font-size: 1.3rem;
  }
}
.top-section--topics {
  padding-top: 15rem;
}
@media screen and (max-width: 768px) {
  .top-section--topics {
    padding-top: 10rem;
  }
  .top-section--topics .link-btn_arrow01 {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .top-section--topics {
    padding-top: 8rem;
  }
}
.slide-wrap--topics .splide__pagination {
  bottom: -5.5rem;
}
.slide-wrap--topics .splide__arrow--prev {
  left: 4rem;
}
.slide-wrap--topics .splide__arrow--next {
  right: 4rem;
}
.slide-wrap--topics.news-list-wrap ul > li a:hover .img-wrap {
  box-shadow: 0 0 1.4rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .slide-wrap--topics .splide__arrow--prev {
    left: 2rem;
  }
  .slide-wrap--topics .splide__arrow--next {
    right: 2rem;
  }
}
.top-section--room {
  padding-top: 5.5rem;
}
.top-section--room .splide__pagination {
  bottom: -4rem;
}
.top-section--room .link-btn_arrow01 {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .top-section--room {
    padding-top: 10rem;
  }
  .top-section--room .heading_sub01 {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .top-section--room {
    padding-top: 8rem;
  }
  .top-section--room .link-btn_arrow01 {
    margin-top: 7rem;
  }
}
.slide-wrap--room02.room-list-wrap ul > li a:hover {
  box-shadow: 0 0 1.4rem rgba(0, 0, 0, 0.2);
}
.slide-wrap--room02 .splide__track {
  overflow: visible;
}
.top-section--facility {
  padding-bottom: 20rem;
}
.top-section--facility .img-section {
  position: relative;
  margin: 0 0 0 auto;
  width: 75%;
  height: 35rem;
}
.top-section--facility .img-section .img-wrap img {
  height: 100%;
  object-fit: cover;
}
.top-section--facility .img-section .img-wrap.img-wrap01 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.top-section--facility .img-section .img-wrap.img-wrap01 .label {
  position: absolute;
  top: 0;
  right: calc(100% + 1rem);
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.8rem;
  color: #323979;
  line-height: 1;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  margin: 0;
  opacity: 0.3;
}
.top-section--facility .img-section .img-wrap02 {
  position: absolute;
  bottom: -13.5rem;
  left: -13.5rem;
  width: 27rem;
}
.top-section--facility .img-section .img-wrap02 .img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  border: 0.2rem solid #fff;
}
.top-section--facility .img-section .img-wrap02 .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.top-section--facility .img-section .img-wrap02 .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top-section--facility {
    padding-bottom: 17rem;
  }
  .top-section--facility .img-section {
    height: 30rem;
  }
  .top-section--facility .img-section .img-wrap.img-wrap01 .label {
    font-size: 1.5rem;
  }
  .top-section--facility .img-section .img-wrap02 {
    bottom: -11rem;
    left: -11rem;
    width: 22rem;
  }
}
@media screen and (max-width: 568px) {
  .top-section--facility {
    padding-bottom: 14rem;
  }
  .top-section--facility .img-section {
    width: 85.3333333333%;
    height: 25rem;
  }
  .top-section--facility .img-section .img-wrap.img-wrap01 .label {
    font-size: 1.2rem;
  }
  .top-section--facility .img-section .img-wrap02 {
    bottom: -8.5rem;
    left: -2rem;
    width: 17rem;
  }
}
.top-section--sauna .row > div {
  margin: 0;
}
.top-section--sauna .img-wrap {
  height: 35rem;
}
.top-section--sauna .img-wrap img {
  height: 100%;
  object-fit: cover;
}
.top-section--sauna .img-wrap .label {
  position: absolute;
  top: 0;
  left: calc(100% + 1rem);
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.8rem;
  color: #323979;
  line-height: 1;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  margin: 0;
  opacity: 0.3;
}
.top-section--sauna .text-wrap {
  padding: 0 2rem;
}
.top-section--sauna .text-wrap .link-btn_arrow01 {
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .top-section--sauna .row {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .top-section--sauna .img-wrap {
    width: 85.3333333333%;
    height: 30rem;
  }
  .top-section--sauna .img-wrap .label {
    font-size: 1.5rem;
  }
  .top-section--sauna .text-wrap .link-btn_arrow01 {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 568px) {
  .top-section--sauna .img-wrap {
    height: 25rem;
  }
  .top-section--sauna .img-wrap .label {
    font-size: 1.2rem;
  }
}
.top-section--restaurant .img-wrap {
  height: 35rem;
}
.top-section--restaurant .img-wrap img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-section--restaurant .img-wrap {
    height: 30rem;
  }
}
@media screen and (max-width: 568px) {
  .top-section--restaurant .img-wrap {
    height: 25rem;
  }
}
.slide-wrap--ird, .slide-wrap--activity {
  padding-bottom: 6rem;
}
.slide-wrap--ird:before, .slide-wrap--activity:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 39.9515738499%;
  background: linear-gradient(0deg, #323979 0%, rgba(58, 65, 126, 0.97) 2.87%, rgba(127, 132, 172, 0.71) 29.41%, rgba(182, 185, 207, 0.47) 53.33%, rgba(222, 223, 233, 0.26) 73.81%, rgba(246, 246, 249, 0.1) 90.04%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.1;
}
.slide-wrap--ird .splide__list .splide__slide .box, .slide-wrap--activity .splide__list .splide__slide .box {
  position: relative;
  color: #000;
  text-decoration: none;
  display: block;
}
.slide-wrap--ird .splide__list .splide__slide .box .img-wrap, .slide-wrap--activity .splide__list .splide__slide .box .img-wrap {
  overflow: hidden;
}
.slide-wrap--ird .splide__list .splide__slide .box .img-wrap:before, .slide-wrap--activity .splide__list .splide__slide .box .img-wrap:before {
  content: "";
  display: block;
  padding-top: 71%;
}
.slide-wrap--ird .splide__list .splide__slide .box .img-wrap img, .slide-wrap--activity .splide__list .splide__slide .box .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.slide-wrap--ird .splide__list .splide__slide .box .text-wrap, .slide-wrap--activity .splide__list .splide__slide .box .text-wrap {
  transition: all 0.4s;
}
.slide-wrap--ird .splide__list .splide__slide .box .text-wrap .heading, .slide-wrap--activity .splide__list .splide__slide .box .text-wrap .heading {
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.8em;
}
.slide-wrap--ird .splide__list .splide__slide .box .text-wrap .text, .slide-wrap--activity .splide__list .splide__slide .box .text-wrap .text {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.slide-wrap--ird .splide__list .splide__slide .box .text-wrap .text.text02, .slide-wrap--activity .splide__list .splide__slide .box .text-wrap .text.text02 {
  margin-top: 1em;
}
.slide-wrap--ird .splide__list .splide__slide .box:hover .img-wrap img, .slide-wrap--activity .splide__list .splide__slide .box:hover .img-wrap img {
  transform: scale(1.1);
}
.slide-wrap--ird .splide__list .splide__slide .box:hover .text-wrap, .slide-wrap--activity .splide__list .splide__slide .box:hover .text-wrap {
  opacity: 0.7;
}
.slide-wrap--ird .splide__pagination, .slide-wrap--activity .splide__pagination {
  bottom: -3.5rem;
}
.slide-wrap--ird .splide__arrow, .slide-wrap--activity .splide__arrow {
  background: transparent;
  border-radius: initial;
  opacity: 1;
  width: 2rem;
  height: 3.74rem;
  z-index: 2;
  transition: all 0.4s;
}
.slide-wrap--ird .splide__arrow svg, .slide-wrap--activity .splide__arrow svg {
  display: none !important;
}
.slide-wrap--ird .splide__arrow:before, .slide-wrap--activity .splide__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.slide-wrap--ird .splide__arrow:hover, .slide-wrap--activity .splide__arrow:hover {
  opacity: 0.7 !important;
}
.slide-wrap--ird .splide__arrow--prev, .slide-wrap--activity .splide__arrow--prev {
  left: 4rem;
}
.slide-wrap--ird .splide__arrow--prev:before, .slide-wrap--activity .splide__arrow--prev:before {
  background: transparent url("../images/common/icon_arrow_l02_bl.svg") no-repeat center center/contain;
}
.slide-wrap--ird .splide__arrow--next, .slide-wrap--activity .splide__arrow--next {
  right: 4rem;
}
.slide-wrap--ird .splide__arrow--next:before, .slide-wrap--activity .splide__arrow--next:before {
  background: transparent url("../images/common/icon_arrow_r02_bl.svg") no-repeat center center/contain;
}
.slide-wrap--ird .splide__arrow--prev, .slide-wrap--activity .splide__arrow--prev {
  left: 2rem;
}
.slide-wrap--ird .splide__arrow--next, .slide-wrap--activity .splide__arrow--next {
  right: 2rem;
}
@media screen and (max-width: 1024px) {
  .slide-wrap--ird, .slide-wrap--activity {
    padding-bottom: 5rem;
  }
  .slide-wrap--ird .splide__arrow, .slide-wrap--activity .splide__arrow {
    width: 1.5rem;
    height: 2.8rem;
  }
  .slide-wrap--ird .splide__arrow--prev, .slide-wrap--activity .splide__arrow--prev {
    left: 1.5rem;
  }
  .slide-wrap--ird .splide__arrow--next, .slide-wrap--activity .splide__arrow--next {
    right: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .slide-wrap--ird .splide__list .splide__slide .box .text-wrap .heading, .slide-wrap--activity .splide__list .splide__slide .box .text-wrap .heading {
    font-size: 1.7rem;
  }
  .slide-wrap--ird .splide__arrow, .slide-wrap--activity .splide__arrow {
    width: 1.3rem;
    height: 2.43rem;
  }
}
.top-section--ird .link-btn_arrow01, .top-section--activity .link-btn_arrow01 {
  margin-top: 2.5em;
}
.top-section--access > .row > div {
  margin: 0;
}
.top-section--access .text-wrap {
  padding: 4rem 13.8888888889%;
}
.top-section--access .text-wrap .inner-text {
  line-height: 2;
  letter-spacing: 0.1em;
  display: table;
  margin: 0 auto;
}
.top-section--access .text-wrap .inner-text.inner-text02 {
  margin-top: 2.5em;
}
.top-section--access .text-wrap .btn-wrap {
  margin-top: 4rem;
}
.top-section--access .text-wrap .btn-wrap .link-btn_arrow01 {
  margin-top: 0;
}
.top-section--access .img-wrap img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .top-section--access > .row {
    align-items: center;
  }
  .top-section--access .text-wrap .btn-wrap {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
  }
  .top-section--access .img-wrap {
    height: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .top-section--access .text-wrap {
    padding: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-section--access > .row {
    flex-direction: column;
  }
  .top-section--access > .row > div {
    margin: 0;
  }
  .top-section--access .text-wrap {
    padding: 0 4rem;
  }
  .top-section--access .img-wrap {
    height: 35rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-section--access .text-wrap .btn-wrap .row > div {
    margin: 0 0 2.5rem;
  }
  .top-section--access .text-wrap .btn-wrap .row > div:last-child {
    margin-bottom: 0;
  }
  .top-section--access .img-wrap {
    height: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .top-section--access .text-wrap {
    padding: 0 2rem;
  }
  .top-section--access .img-wrap {
    height: 25rem;
  }
}
.top-section--news {
  margin-top: 15rem;
}
.top-section--news > .row > div {
  margin: 0;
}
@media screen and (min-width: 769px) {
  .top-section--news > .row {
    align-items: center;
  }
  .top-section--news .text-wrap {
    padding-right: 2rem;
  }
  .top-section--news .text-wrap .link-btn_arrow01 {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-section--news {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 769px) {
  .slide-wrap--topics:before, .slide-wrap--topics:after, .slide-wrap--room02:before, .slide-wrap--room02:after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 9.7222222222%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.11) 88.85%, rgba(255, 255, 255, 0) 100%);
  }
  .slide-wrap--topics:after, .slide-wrap--room02:after {
    right: 0;
    background: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0.11) 88.85%, rgba(255, 255, 255, 0) 100%);
  }
}
/******************************************************************
** POSTS & CONTENT STYLES
******************************************************************/
@media screen and (min-width: 481px) {
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
}
/******************************************************************
** pages
******************************************************************/
.page-mv {
  position: relative;
  height: 55rem;
}
.page-mv img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.page-mv .mv__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 4rem 5rem;
  padding-top: 9.5rem;
  z-index: 1;
}
.page-mv .mv__inner .container1040 {
  padding-left: 0;
  padding-right: 0;
}
.page-mv .ttl {
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.5384615385rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0rem 0rem 1.4rem #1b1464;
}
@media screen and (max-width: 1024px) {
  .page-mv {
    height: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .page-mv {
    height: 45rem;
  }
  .page-mv .mv__inner {
    padding: 7.3rem 2rem 4rem;
  }
  .page-mv .ttl {
    font-size: 2.3076923077rem;
  }
}
@media screen and (max-width: 480px) {
  .page-mv {
    height: 40rem;
  }
  .page-mv .mv__inner {
    padding-top: 6.9rem;
  }
  .page-mv .ttl {
    font-size: 2.0769230769rem;
  }
}
@media screen and (max-width: 375px) {
  .page-mv {
    height: 35rem;
  }
}
.page-text {
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.page-text.page-text02 {
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  .page-text {
    letter-spacing: 0;
  }
  .page-text.page-text02 {
    font-size: 1.4rem;
  }
}
.info-section.info-section01 .row > div {
  margin: 0;
}
.info-section.info-section01 .logo {
  width: 90%;
  max-width: 20rem;
}
.info-section.info-section01 .info-wrap .text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .info-section.info-section01 .row {
    align-items: center;
  }
  .info-section.info-section01 .row > div {
    height: 100%;
  }
  .info-section.info-section01 .logo {
    text-align: right;
    margin: 0 3rem 0 auto;
  }
  .info-section.info-section01 .info-wrap {
    padding: 0.5rem 0 0.5rem 3rem;
    border-left: 0.1rem solid #323979;
  }
}
@media screen and (max-width: 768px) {
  .info-section.info-section01 .logo {
    text-align: center;
    margin: 0 auto;
  }
  .info-section.info-section01 .info-wrap {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 0.1rem solid #323979;
  }
  .info-section.info-section01 .info-wrap .text {
    display: table;
    margin: 0 auto;
  }
}
.contact-box.contact-box01 {
  border: 0.1rem solid #000;
  margin: 5rem auto 0;
  padding: 2.7rem 0;
  max-width: 60rem;
}
.contact-box.contact-box01 .row > div {
  margin: 0;
}
.contact-box.contact-box01 .heading-wrap, .contact-box.contact-box01 .tel-box.tel-box01 {
  padding: 1.5rem 2rem;
}
.contact-box.contact-box01 .heading-wrap .heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.contact-box.contact-box01 .tel-box.tel-box01 {
  margin: 0;
  background: transparent;
}
@media screen and (min-width: 769px) {
  .contact-box.contact-box01 .row {
    align-items: center;
  }
  .contact-box.contact-box01 .row .tel-box.tel-box01 {
    border-left: 0.1rem solid #000;
  }
}
@media screen and (max-width: 768px) {
  .contact-box.contact-box01 {
    margin-top: 4.5rem;
    padding: 2.4rem 0;
  }
  .contact-box.contact-box01 .heading-wrap, .contact-box.contact-box01 .tel-box.tel-box01 {
    padding: 0 1rem;
  }
  .contact-box.contact-box01 .tel-box.tel-box01 {
    margin-top: 1.2rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .contact-box.contact-box01 .heading-wrap .heading {
    font-size: 1.3rem;
  }
}
/******************************************************************
** pages activity
******************************************************************/
.activity-section {
  position: relative;
}
.activity-section .section-heading {
  position: relative;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.1em;
  display: table;
  margin: 0;
  padding-bottom: 0.5em;
}
.activity-section .section-heading:before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 300rem;
  height: 0.1rem;
  background: #000;
}
.activity-section .img-wrap img {
  height: auto;
}
.activity-section.activity-section01 {
  margin-top: 12rem;
  padding-bottom: 5rem;
}
.activity-section.activity-section01:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 48.9795918367%;
  background: linear-gradient(0deg, #323979 0%, rgba(58, 65, 126, 0.97) 2.87%, rgba(127, 132, 172, 0.71) 29.41%, rgba(182, 185, 207, 0.47) 53.33%, rgba(222, 223, 233, 0.26) 73.81%, rgba(246, 246, 249, 0.1) 90.04%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.1;
}
.activity-section.activity-section01 .text-wrap {
  margin-top: 4rem;
}
.activity-section.activity-section01 .text-wrap .text {
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
}
.activity-section.activity-section01 .text-wrap .text.text02 {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .activity-section .section-heading {
    font-size: 2.1rem;
  }
  .activity-section.activity-section01 {
    margin-top: 10rem;
  }
  .activity-section.activity-section01 .row > div {
    margin: 0;
  }
  .activity-section.activity-section01 .text-wrap {
    margin-top: 4rem;
  }
  .activity-section.activity-section01 .img-wrap {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .activity-section .section-heading {
    font-size: 1.8rem;
  }
  .activity-section.activity-section01 {
    margin-top: 8rem;
    padding-bottom: 4rem;
  }
  .activity-section.activity-section01 .text-wrap {
    margin-top: 3.5rem;
  }
  .activity-section.activity-section01 .img-wrap {
    margin-top: 3.5rem;
  }
}
/******************************************************************
** pages facility
******************************************************************/
.img-section_facility {
  position: relative;
}
.img-section_facility.img-section_facility01 {
  height: 50rem;
  margin-top: 4rem;
}
.img-section_facility.img-section_facility01 img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .img-section_facility.img-section_facility01 {
    height: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .img-section_facility.img-section_facility01 {
    height: 40rem;
  }
}
@media screen and (max-width: 480px) {
  .img-section_facility.img-section_facility01 {
    height: 35rem;
  }
}
@media screen and (max-width: 375px) {
  .img-section_facility.img-section_facility01 {
    height: 30rem;
  }
}
.information-section_facility01 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.information-section_facility01 .section__inner {
  max-width: 60rem;
  margin: 0 auto;
}
.information-section_facility01 .section__inner .inner-text {
  line-height: 2;
  margin: 0;
}
.information-section_facility01 .section__inner .inner-text.inner-text02 {
  margin-top: 2em;
}
.detail-section_facility {
  position: relative;
}
.detail-section_facility.detail-section_facility01 {
  margin-top: 15rem;
}
.detail-section_facility.detail-section_facility01 .heading_sub01 {
  margin-top: 0;
}
.detail-section_facility.detail-section_facility01 .img-wrap:before {
  content: "";
  display: block;
  padding-top: 62%;
}
.detail-section_facility.detail-section_facility01 .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}
.detail-section_facility.detail-section_facility01 .text-wrap {
  margin-top: 2rem;
}
.detail-section_facility.detail-section_facility01 .text-wrap .text {
  letter-spacing: 0.05em;
  margin: 0;
}
.detail-section_facility.detail-section_facility01 .text-wrap .text.text02 {
  margin-top: 1em;
}
.detail-section_facility.detail-section_facility01 .text-wrap table.table_brd01 {
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .detail-section_facility.detail-section_facility01 .text-wrap table.table_brd01 th, .detail-section_facility.detail-section_facility01 .text-wrap table.table_brd01 td {
    padding-left: 0;
    padding-right: 0;
  }
  .detail-section_facility.detail-section_facility01 .text-wrap table.table_brd01 th {
    padding-right: 1em;
    width: 30%;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .detail-section_facility.detail-section_facility01 {
    margin-top: 10rem;
  }
  .detail-section_facility.detail-section_facility01 .row > div {
    margin: 0 0 7rem;
  }
  .detail-section_facility.detail-section_facility01 .row > div:last-child {
    margin-bottom: 0;
  }
  .detail-section_facility.detail-section_facility01 .img-wrap, .detail-section_facility.detail-section_facility01 .text-wrap {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.detail-section_facility.detail-section_facility02 {
  background: #fff;
  padding: 5rem 2rem;
}
@media screen and (max-width: 768px) {
  .detail-section_facility.detail-section_facility02 {
    padding: 4.5rem 2rem;
  }
}
/******************************************************************
** pages in room dining
******************************************************************/
.img-section_ird {
  position: relative;
}
.img-section_ird .heading {
  position: relative;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
}
.img-section_ird .heading.heading01 {
  font-size: 2.0769230769rem;
  margin-bottom: 2em;
  padding-right: 20rem;
  padding-bottom: 0.45em;
  display: table;
}
.img-section_ird .heading.heading01:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 300rem;
  height: 0.1rem;
  display: block;
  background: #000;
}
.img-section_ird .heading.heading01 .text {
  display: inline-block;
  vertical-align: middle;
}
.img-section_ird .heading.heading01 .text.text_en {
  line-height: 1;
}
.img-section_ird .heading.heading01 .text.text_jp {
  font-size: 1.5rem;
  line-height: 1.75;
  margin-left: 1em;
}
.img-section_ird .heading.heading02 {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 2.5em;
  padding-left: 2.5rem;
  display: table;
}
.img-section_ird .heading.heading02:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(45deg);
  content: "";
  width: 0.1rem;
  height: 3.37rem;
  display: block;
  background: #000;
}
.img-section_ird.img-section_ird01 {
  margin-top: 12rem;
}
.img-section_ird.img-section_ird01 .img-wrap_ird01 {
  margin-top: 5rem;
}
.img-section_ird.img-section_ird01 .img-wrap_ird01:before {
  content: "";
  display: block;
  padding-top: 62%;
}
.img-section_ird.img-section_ird01 .img-wrap_ird01 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}
.img-section_ird.img-section_ird02 {
  margin-top: 15rem;
}
.img-section_ird.img-section_ird02 .section__inner.section__inner02 {
  margin-top: 6rem;
}
.img-section_ird.img-section_ird02 .text-wrap {
  margin-top: 3rem;
}
.img-section_ird.img-section_ird02 .text-wrap .text {
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
}
.img-section_ird.img-section_ird02 .img-wrap_ird02 img {
  height: auto;
}
.img-section_ird.img-section_ird03 {
  margin-top: 5rem;
}
.img-section_ird.img-section_ird03 .img-wrap:before {
  content: "";
  display: block;
  padding-top: 62%;
}
.img-section_ird.img-section_ird03 .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}
.img-section_ird.img-section_ird03 .section__inner {
  margin-top: 1.5rem;
}
.img-section_ird.img-section_ird04 {
  margin-top: 1.5rem;
  padding: 4rem;
  background: #fff;
}
.img-section_ird.img-section_ird04 .img-wrap img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .img-section_ird.img-section_ird03 .row > div {
    margin: 0 0.75rem;
  }
  .img-section_ird.img-section_ird03 .row > div:first-child {
    margin-left: 0;
  }
  .img-section_ird.img-section_ird03 .row > div:last-child {
    margin-right: 0;
  }
  .img-section_ird.img-section_ird04 .row > div {
    margin: 0 2rem;
  }
  .img-section_ird.img-section_ird04 .row > div:first-child {
    margin-left: 0;
  }
  .img-section_ird.img-section_ird04 .row > div:last-child {
    margin-right: 0;
  }
  .img-section_ird.img-section_ird04 .text-wrap table.table_brd01 th, .img-section_ird.img-section_ird04 .text-wrap table.table_brd01 td {
    padding-left: 0;
    padding-right: 0;
  }
  .img-section_ird.img-section_ird04 .text-wrap table.table_brd01 th {
    padding-right: 1em;
    width: 32%;
  }
}
@media screen and (max-width: 1024px) {
  .img-section_ird .heading.heading01 {
    padding-right: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .img-section_ird .heading.heading01 {
    font-size: 2.4rem;
    padding-right: 5rem;
  }
  .img-section_ird .heading.heading01 .text {
    display: block;
  }
  .img-section_ird .heading.heading01 .text.text_jp {
    margin-left: 0;
    margin-top: 1em;
  }
  .img-section_ird .heading.heading02 {
    font-size: 2.1rem;
    margin-bottom: 2em;
  }
  .img-section_ird.img-section_ird01 {
    margin-top: 10rem;
  }
  .img-section_ird.img-section_ird01 .img-wrap_ird01 {
    margin-top: 4.5rem;
  }
  .img-section_ird.img-section_ird02 {
    margin-top: 10rem;
  }
  .img-section_ird.img-section_ird02 .row > div {
    margin: 0;
  }
  .img-section_ird.img-section_ird02 .section__inner.section__inner02 {
    margin-top: 7rem;
  }
  .img-section_ird.img-section_ird02 .text-wrap, .img-section_ird.img-section_ird02 .img-wrap_ird02 {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
  .img-section_ird.img-section_ird02 .text-wrap {
    margin-top: 0;
  }
  .img-section_ird.img-section_ird02 .img-wrap_ird02 {
    margin-top: 3.5rem;
  }
  .img-section_ird.img-section_ird03 {
    max-width: 50rem;
    margin: 4.5rem auto 0;
  }
  .img-section_ird.img-section_ird03 .row > div {
    margin: 0 0 1.5rem;
  }
  .img-section_ird.img-section_ird03 .row > div:last-child {
    margin-bottom: 0;
  }
  .img-section_ird.img-section_ird04 .row > div {
    margin: 0;
  }
  .img-section_ird.img-section_ird04 .img-wrap {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .img-section_ird .heading.heading01 {
    font-size: 2.1rem;
    padding-right: 2rem;
  }
  .img-section_ird .heading.heading01 .text.text_jp {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .img-section_ird .heading.heading02 {
    font-size: 1.8rem;
    padding-left: 2rem;
  }
  .img-section_ird .heading.heading02:before {
    height: 2.5rem;
  }
  .img-section_ird.img-section_ird01 {
    margin-top: 8rem;
  }
  .img-section_ird.img-section_ird01 .img-wrap_ird01 {
    margin-top: 4rem;
  }
  .img-section_ird.img-section_ird02 {
    margin-top: 8rem;
  }
  .img-section_ird.img-section_ird03 {
    margin: 4rem auto 0;
  }
  .img-section_ird.img-section_ird04 {
    padding: 3rem 2rem;
  }
  .img-section_ird.img-section_ird04 .img-wrap {
    margin-top: 3rem;
  }
}
/******************************************************************
** pages restaurant
******************************************************************/
.course-section.course-section01 .box {
  background: #f7f7fa;
}
.course-section.course-section01 .box .img-wrap img {
  height: auto;
}
.course-section.course-section01 .box .text-wrap {
  padding: 3rem;
}
.course-section.course-section01 .box .text-wrap .course-name {
  font-size: 2.1rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.course-section.course-section01 .box .text-wrap .price {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 auto;
  margin-top: 1.2em;
}
.course-section.course-section01 .box .text-wrap .detail-wrap {
  border-top: 0.1rem solid #000;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
.course-section.course-section01 .box .text-wrap .detail-wrap .heading {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 auto 1em;
}
.course-section.course-section01 .box .text-wrap .detail-wrap .text {
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .course-section.course-section01 .box {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .course-section.course-section01 {
    max-width: 50rem;
    margin: 0 auto;
  }
  .course-section.course-section01 .row > div {
    margin: 0 0 5rem;
  }
  .course-section.course-section01 .row > div:last-child {
    margin-bottom: 0;
  }
  .course-section.course-section01 .box .text-wrap {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .course-section.course-section01 .box .text-wrap .course-name {
    font-size: 1.8rem;
  }
}
.table-wrap_restaurant01 {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .table-wrap_restaurant01 {
    margin-top: 7rem;
  }
}
/******************************************************************
** pages faq / contact
******************************************************************/
.faq-section {
  position: relative;
}
.faq-section.faq-section01 {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .faq-section.faq-section01 {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .faq-section.faq-section01 {
    margin-top: 4rem;
  }
}
.acd__toggle {
  display: none;
}
.acd__toggle:checked + .acd__label + .acd__content {
  height: auto;
  padding-top: 2rem;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .acd__toggle:checked + .acd__label + .acd__content {
    padding-top: 1.5rem;
  }
}
.acd__toggle:checked + .acd__label:after {
  transform: translate(0, -50%) rotate(-180deg);
}
.acd__label {
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1em 5rem;
  border-bottom: 0.1rem solid #000;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  cursor: pointer;
  transition: all 0.4s;
}
.acd__label:before {
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.1rem;
  color: #323979;
  line-height: 1;
  content: "Q";
}
.acd__label:after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  transition: all 0.4s;
}
.acd__label:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .acd__label {
    padding: 1em 3rem 1em 3.5rem;
  }
  .acd__label:before {
    top: 1.45rem;
    left: 1rem;
    font-size: 1.8rem;
  }
  .acd__label:after {
    right: 0.5rem;
  }
}
.acd__content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.4s;
  height: 0;
  margin-bottom: 1.5em;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  overflow: hidden;
}
.acd__content .text {
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}
.acd__content .text.text02 {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .acd__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.form-section {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.form-section .section__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.form-section .text_contact {
  position: relative;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.form-section .text_contact.text_contact02 {
  margin-top: 2em;
}
/******************************************************************
** pages access
******************************************************************/
.map-wrap {
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  display: block;
}
.map-wrap.map-wrap01 {
  margin-top: 5rem;
}
.map-wrap.map-wrap01 iframe {
  height: 50rem;
}
@media screen and (max-width: 1024px) {
  .map-wrap.map-wrap01 iframe {
    height: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .map-wrap.map-wrap01 iframe {
    height: 40rem;
  }
}
@media screen and (max-width: 480px) {
  .map-wrap.map-wrap01 iframe {
    height: 35rem;
  }
}
@media screen and (max-width: 375px) {
  .map-wrap.map-wrap01 iframe {
    height: 30rem;
  }
}
.access-section {
  position: relative;
}
.access-section.access-section01 {
  background: #fff;
  padding: 6.5rem 2rem;
}
.access-section.access-section01 .section__inner {
  max-width: 70rem;
  margin: 0 auto;
}
.access-section.access-section01 ul.access-list {
  margin-top: 4.5rem;
}
.access-section.access-section02 .img-wrap:before {
  content: "";
  display: block;
  padding-top: 40%;
}
.access-section.access-section02 .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}
.access-section .text--check, .access-section .inner-text {
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.access-section .text--check {
  padding-left: 1.8rem;
  display: table;
}
.access-section .text--check:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  background: transparent url(../images/common/icon_check01.svg) no-repeat center center/contain;
}
.access-section .text--check.text--check02 {
  margin-top: 1.5em;
}
.access-section .inner-text {
  color: #323979;
  line-height: 2;
}
.access-section .inner-text.inner-text01 {
  margin-top: 1.6em;
}
.access-section .text--caution {
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.access-section .text--caution.text--caution01 {
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  .access-section.access-section01 {
    padding: 5.5rem 2rem;
  }
  .access-section.access-section02 .row > div {
    margin: 0 0 4rem;
  }
  .access-section.access-section02 .row > div:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .access-section .text--check, .access-section .inner-text {
    font-size: 1.3rem;
  }
  .access-section.access-section01 {
    padding: 4.5rem 2rem;
  }
}
ul.access-list, ul.access-list > li {
  position: relative;
  display: block;
  margin: 0;
}
ul.access-list {
  list-style: none;
  padding: 0;
}
ul.access-list > li {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
ul.access-list > li:last-child {
  margin-bottom: 0;
}
ul.access-list > li .item-wrap {
  position: relative;
  padding: 1rem 0 1rem 6rem;
}
ul.access-list > li .item-wrap .label-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 100%;
  padding: 1.5rem 0;
  background: #5c6290;
}
ul.access-list > li .item-wrap .label-wrap .inner {
  position: relative;
  height: 100%;
}
ul.access-list > li .item-wrap .label-wrap .inner:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  width: 0.1rem;
  height: 100%;
  display: block;
  background: #fff;
}
ul.access-list > li .item-wrap .label-wrap .img-wrap, ul.access-list > li .item-wrap .label-wrap .label {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #5c6290;
}
ul.access-list > li .item-wrap .label-wrap .img-wrap {
  top: 0;
  padding-bottom: 1.5rem;
  width: 100%;
}
ul.access-list > li .item-wrap .label-wrap .img-wrap img {
  height: auto;
}
ul.access-list > li .item-wrap .label-wrap .label {
  bottom: 0;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  writing-mode: vertical-rl;
  margin: 0;
  padding-top: 1.5rem;
}
ul.access-list > li .item-wrap .heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.8em;
}
ul.access-list > li .item-wrap ol, ul.access-list > li .item-wrap ul {
  margin: 0;
}
ul.access-list > li .item-wrap ol > li:last-child, ul.access-list > li .item-wrap ul > li:last-child {
  margin-bottom: 0;
}
ul.access-list > li.car .item-wrap .img-wrap {
  max-width: 2.3rem;
}
ul.access-list > li.train .item-wrap .img-wrap {
  max-width: 1.69rem;
}
@media screen and (max-width: 768px) {
  ul.access-list > li .item-wrap .heading {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  ul.access-list > li {
    font-size: 1.3rem;
  }
  ul.access-list > li .item-wrap {
    padding-left: 5.5rem;
  }
  ul.access-list > li .item-wrap .label-wrap {
    width: 3.5rem;
  }
  ul.access-list > li .item-wrap .label-wrap .label {
    font-size: 1.2rem;
  }
  ul.access-list > li .item-wrap .heading {
    font-size: 1.6rem;
  }
}
/******************************************************************
** pages 404
******************************************************************/
.section--404 {
  padding: 18rem 0 10rem;
}
.section--404 .heading {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.section--404 .text {
  line-height: 2.5;
  margin: 0 auto;
}
.section--404 .link-btn--404 {
  position: relative;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1.8;
  width: 100%;
  max-width: 24rem;
  border: 0.1rem solid #000;
  background: #fff;
  display: block;
  margin: 0 auto;
  margin-top: 3em;
  padding: 0.95em 1em;
  transition: all 0.4s;
}
.section--404 .link-btn--404:hover {
  color: #fff;
  background: #000;
}
@media screen and (min-width: 769px) {
  .section--404 .text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .section--404 {
    padding: 16rem 0 8rem;
  }
}
@media screen and (max-width: 480px) {
  .section--404 .heading {
    font-size: 2.1rem;
  }
}
/******************************************************************
** article
******************************************************************/
.main--archive {
  background: #f7f7fa;
  padding-top: 2.5rem;
  padding-bottom: 12rem;
}
.main--archive #breadcrumb {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .main--archive {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .main--archive {
    padding-bottom: 8rem;
  }
}
.entry-section--archive {
  margin-top: 6rem;
}
.entry-section--archive .content-wrap--archive.bg_wh {
  padding-left: 4rem;
  padding-right: 4rem;
}
.entry-section--archive .content-wrap--archive .content-wrap__inner {
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .entry-section--archive {
    margin-top: 4rem;
  }
  .entry-section--archive .content-wrap--archive.bg_wh {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .entry-section--archive .content-wrap--archive.bg_wh {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}
ul.notice-list {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  list-style: none;
  padding: 0;
}
ul.notice-list > li {
  position: relative;
  display: block;
  margin: 0 0 1.5em;
  width: 100%;
}
ul.notice-list > li:last-child {
  margin-bottom: 0;
}
ul.notice-list > li a {
  position: relative;
  color: #000;
  text-decoration: none;
  display: block;
  padding-right: 6.5rem;
  transition: all 0.4s;
}
ul.notice-list > li a:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  width: 5rem;
  height: 0.85rem;
  display: block;
  background: transparent url(../images/common/icon_arrow_r01.svg) no-repeat center center/contain;
  transition: all 0.4s;
}
ul.notice-list > li a:hover {
  opacity: 0.7;
}
ul.notice-list > li a:hover:after {
  right: -0.5rem;
}
ul.notice-list > li .item-wrap {
  display: flex;
  align-items: baseline;
  width: 100%;
}
ul.notice-list > li .item-wrap .date, ul.notice-list > li .item-wrap .ttl {
  letter-spacing: 0.1em;
  display: inline-block;
}
ul.notice-list > li .item-wrap .date {
  color: #808080;
  min-width: 7.5rem;
  margin-right: 2em;
}
ul.notice-list > li .item-wrap .ttl {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  ul.notice-list > li {
    font-size: 1.2rem;
  }
  ul.notice-list > li a {
    font-size: 1.2rem;
    padding-right: 5rem;
  }
  ul.notice-list > li a:after {
    width: 4rem;
    height: 0.68rem;
  }
  ul.notice-list > li .item-wrap {
    display: block;
  }
  ul.notice-list > li .item-wrap .date, ul.notice-list > li .item-wrap .ttl {
    display: block;
    margin: 0;
  }
  ul.notice-list > li .item-wrap .ttl {
    margin-top: 0.5em;
  }
}
ul.article-list {
  display: block;
  margin: 0;
  list-style: none;
  padding: 0;
}
ul.article-list > li {
  display: block;
  margin: 0;
  border-top: 0.1rem solid #e0e2ea;
}
ul.article-list > li:last-child {
  border-bottom: 0.1rem solid #e0e2ea;
}
ul.article-list > li a {
  color: #000;
  text-decoration: none;
  padding: 3.3rem 0;
  display: block;
}
ul.article-list > li a .img-wrap {
  overflow: hidden;
}
ul.article-list > li a .img-wrap:before {
  content: "";
  display: block;
  padding-top: 71%;
}
ul.article-list > li a .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
ul.article-list > li a .text-wrap {
  transition: all 0.4s;
}
ul.article-list > li a .text-wrap .ttl {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.8;
  display: block;
}
ul.article-list > li a .text-wrap .info-wrap {
  font-size: 0;
  margin-top: 3rem;
}
ul.article-list > li a .text-wrap .info-wrap .post-date, ul.article-list > li a .text-wrap .info-wrap .post-cat {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
ul.article-list > li a .text-wrap .info-wrap .post-cat {
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: 0.1rem solid #000;
}
ul.article-list > li a:hover .img-wrap img {
  transform: scale(1.1);
}
ul.article-list > li a:hover .text-wrap {
  opacity: 0.7;
}
@media screen and (min-width: 569px) {
  ul.article-list > li .row {
    flex-direction: row;
  }
  ul.article-list > li .row > div {
    margin: 0 1.5rem;
  }
  ul.article-list > li .row > div:first-child {
    margin-left: 0 !important;
  }
  ul.article-list > li .row > div:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  ul.article-list > li a .text-wrap .ttl {
    font-size: 1.8rem;
  }
  ul.article-list > li a .text-wrap .info-wrap {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 568px) {
  ul.article-list > li .row, ul.article-list > li .row > div {
    display: block;
  }
  ul.article-list > li .row > div {
    margin: 0;
  }
  ul.article-list > li a .img-wrap {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  ul.article-list > li a .img-wrap {
    margin-bottom: 2rem;
  }
  ul.article-list > li a .text-wrap .ttl {
    font-size: 1.5rem;
  }
  ul.article-list > li a .text-wrap .info-wrap {
    margin-top: 2rem;
  }
}
.news-list-wrap ul > li a {
  color: #000;
  text-decoration: none;
  display: block;
}
.news-list-wrap ul > li a .img-wrap {
  overflow: hidden;
  transition: all 0.4s;
}
.news-list-wrap ul > li a .img-wrap:before {
  content: "";
  display: block;
  padding-top: 71%;
}
.news-list-wrap ul > li a .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.news-list-wrap ul > li a .text-wrap {
  margin-top: 1.5rem;
  transition: all 0.4s;
}
.news-list-wrap ul > li a .text-wrap .ttl {
  font-weight: 400;
  line-height: 1.8;
  display: block;
}
.news-list-wrap ul > li a .text-wrap .info-wrap {
  font-size: 0;
  display: table;
  margin: 2rem 0 0 auto;
}
.news-list-wrap ul > li a .text-wrap .info-wrap .post-date, .news-list-wrap ul > li a .text-wrap .info-wrap .post-cat {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.news-list-wrap ul > li a .text-wrap .info-wrap .post-cat {
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: 0.1rem solid #000;
}
.news-list-wrap ul > li a:hover .img-wrap img {
  transform: scale(1.1);
}
.news-list-wrap ul > li a:hover .text-wrap {
  opacity: 0.7;
}
ul.news-list {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  list-style: none;
  padding: 0;
}
ul.news-list > li {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  border-top: 0.1rem solid #dcdcdd;
}
ul.news-list > li:last-child {
  border-bottom: 0.1rem solid #dcdcdd;
}
ul.news-list > li a {
  position: relative;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 2.5em 1.5em;
  transition: all 0.4s;
}
ul.news-list > li a:hover {
  opacity: 0.7;
}
ul.news-list > li .item-wrap {
  display: flex;
  align-items: baseline;
  width: 100%;
}
ul.news-list > li .item-wrap .date, ul.news-list > li .item-wrap .ttl {
  letter-spacing: 0.1em;
  display: inline-block;
}
ul.news-list > li .item-wrap .date {
  color: #808080;
  min-width: 7.5rem;
  margin-right: 2em;
}
ul.news-list > li .item-wrap .ttl {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  ul.news-list > li {
    font-size: 1.2rem;
  }
  ul.news-list > li a {
    font-size: 1.2rem;
    padding: 1.5em;
  }
  ul.news-list > li .item-wrap {
    display: block;
  }
  ul.news-list > li .item-wrap .date, ul.news-list > li .item-wrap .ttl {
    display: block;
    margin: 0;
  }
  ul.news-list > li .item-wrap .ttl {
    margin-top: 0.5em;
  }
}
/******************************************************************
** article room
******************************************************************/
.anchor-list--room01 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 375px) {
  .anchor-list--room01 {
    margin-bottom: 7rem;
  }
}
ul.room-list {
  display: block;
  margin: 0;
  list-style: none;
  padding: 0;
}
ul.room-list > li {
  display: block;
  margin: 0 0 9rem;
}
ul.room-list > li:last-child {
  margin-bottom: 0;
}
ul.room-list > li .ttl {
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5em;
}
ul.room-list > li .catch-wrap {
  display: table;
  margin: 0 auto 4.5rem;
}
ul.room-list > li .catch-wrap .text_catch {
  line-height: 2;
  margin: 0;
}
ul.room-list > li .slide-wrap--room {
  padding-bottom: 6rem;
}
ul.room-list > li .slide-wrap--room:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 39.9515738499%;
  background: linear-gradient(0deg, #323979 0%, rgba(58, 65, 126, 0.97) 2.87%, rgba(127, 132, 172, 0.71) 29.41%, rgba(182, 185, 207, 0.47) 53.33%, rgba(222, 223, 233, 0.26) 73.81%, rgba(246, 246, 249, 0.1) 90.04%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.1;
}
ul.room-list > li .slide-wrap--room .splide__pagination {
  bottom: -3.5rem;
}
ul.room-list > li .slide-wrap--room .splide__arrow {
  background: transparent;
  border-radius: initial;
  opacity: 1;
  width: 2rem;
  height: 3.74rem;
  z-index: 2;
  transition: all 0.4s;
}
ul.room-list > li .slide-wrap--room .splide__arrow svg {
  display: none !important;
}
ul.room-list > li .slide-wrap--room .splide__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
ul.room-list > li .slide-wrap--room .splide__arrow:hover {
  opacity: 0.7 !important;
}
ul.room-list > li .slide-wrap--room .splide__arrow--prev {
  left: 4rem;
}
ul.room-list > li .slide-wrap--room .splide__arrow--prev:before {
  background: transparent url("../images/common/icon_arrow_l02_bl.svg") no-repeat center center/contain;
}
ul.room-list > li .slide-wrap--room .splide__arrow--next {
  right: 4rem;
}
ul.room-list > li .slide-wrap--room .splide__arrow--next:before {
  background: transparent url("../images/common/icon_arrow_r02_bl.svg") no-repeat center center/contain;
}
ul.room-list > li .slide-wrap--room .splide__arrow--prev {
  left: 2rem;
}
ul.room-list > li .slide-wrap--room .splide__arrow--next {
  right: 2rem;
}
ul.room-list > li .slide-wrap--room .img-wrap:before {
  content: "";
  display: block;
  padding-top: 71%;
}
ul.room-list > li .slide-wrap--room .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  ul.room-list > li .slide-wrap--room .splide__arrow {
    width: 1.5rem;
    height: 2.8rem;
  }
  ul.room-list > li .slide-wrap--room .splide__arrow--prev {
    left: 1.5rem;
  }
  ul.room-list > li .slide-wrap--room .splide__arrow--next {
    right: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  ul.room-list > li {
    margin-bottom: 6rem;
  }
  ul.room-list > li .slide-wrap--room {
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 480px) {
  ul.room-list > li {
    margin-bottom: 5rem;
  }
  ul.room-list > li .ttl {
    font-size: 2.1rem;
  }
  ul.room-list > li .catch-wrap {
    margin-bottom: 3.5rem;
  }
  ul.room-list > li .slide-wrap--room .splide__arrow {
    width: 1.3rem;
    height: 2.43rem;
  }
}
.room-list-wrap ul > li a {
  color: #000;
  text-decoration: none;
  display: block;
  box-shadow: 0 0 1.4rem rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.4s;
}
.room-list-wrap ul > li a:hover .box .img-wrap img {
  transform: scale(1.1);
}
.room-list-wrap ul > li .box {
  position: relative;
  width: 100%;
}
.room-list-wrap ul > li .box:before {
  content: "";
  display: block;
  padding-top: 71%;
}
.room-list-wrap ul > li .box .img-wrap, .room-list-wrap ul > li .box .text-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.room-list-wrap ul > li .box .img-wrap {
  left: 0;
  overflow: hidden;
}
.room-list-wrap ul > li .box .img-wrap img {
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.room-list-wrap ul > li .box .text-wrap {
  right: 0;
  background: #fff;
  max-width: 20rem;
  padding: 5rem 2rem 1.5rem;
}
.room-list-wrap ul > li .box .text-wrap .num, .room-list-wrap ul > li .box .text-wrap .name {
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  color: #323979;
  line-height: 1;
  display: block;
}
.room-list-wrap ul > li .box .text-wrap .num {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.8em;
}
.room-list-wrap ul > li .box .text-wrap .name {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
.room-list-wrap ul > li .box .text-wrap table.info-table {
  margin-top: 3rem;
}
.room-list-wrap ul > li .box .text-wrap table.info-table th, .room-list-wrap ul > li .box .text-wrap table.info-table td {
  font-size: 1.2rem;
  font-weight: 400;
  vertical-align: top;
}
.room-list-wrap ul > li .box .text-wrap table.info-table th {
  color: #959595;
  line-height: 1;
  letter-spacing: 0.15em;
}
.room-list-wrap ul > li .box .text-wrap table.info-table td {
  padding-top: 0.1em;
  line-height: 1.65;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .room-list-wrap ul > li .box .text-wrap table.info-table th, .room-list-wrap ul > li .box .text-wrap table.info-table td {
    text-align: center;
    display: block;
    width: 100%;
    padding: 1em;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table th {
    padding-bottom: 0.3em;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table td {
    padding-top: 0.3em;
  }
}
@media screen and (max-width: 1024px) {
  .room-list-wrap ul > li .box .text-wrap {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .room-list-wrap ul > li a {
    height: 100%;
  }
  .room-list-wrap ul > li .box::before {
    display: none;
  }
  .room-list-wrap ul > li .box .img-wrap, .room-list-wrap ul > li .box .text-wrap {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    max-width: 100%;
  }
  .room-list-wrap ul > li .box .img-wrap:before {
    content: "";
    display: block;
    padding-top: 71%;
  }
  .room-list-wrap ul > li .box .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
  }
  .room-list-wrap ul > li .box .text-wrap {
    padding: 2rem;
  }
  .room-list-wrap ul > li .box .text-wrap .name-wrap {
    display: table;
  }
  .room-list-wrap ul > li .box .text-wrap .name-wrap .num, .room-list-wrap ul > li .box .text-wrap .name-wrap .name {
    display: inline-block;
    vertical-align: baseline;
  }
  .room-list-wrap ul > li .box .text-wrap .name-wrap .num {
    margin-right: 0.5em;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table {
    margin-top: 0.5rem;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table th, .room-list-wrap ul > li .box .text-wrap table.info-table td {
    text-align: left;
    padding: 0.5em 0;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table th {
    line-height: 1.65;
    padding-right: 2em !important;
    width: 26%;
  }
}
@media screen and (max-width: 480px) {
  .room-list-wrap ul > li .box .text-wrap .name-wrap .num {
    font-size: 1.3rem;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table th, .room-list-wrap ul > li .box .text-wrap table.info-table td {
    font-size: 1rem;
  }
  .room-list-wrap ul > li .box .text-wrap table.info-table th {
    padding-right: 1em !important;
    width: 33%;
  }
}
/******************************************************************
** single
******************************************************************/
.main--single {
  background: #f7f7fa;
  padding-top: 2.5rem;
  padding-bottom: 15rem;
}
.main--single #breadcrumb {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .main--single {
    padding-bottom: 10rem;
  }
}
.entry-section--single {
  margin-top: 9rem;
}
.entry-section--single .content-wrap--single.bg_wh {
  padding-left: 4rem;
  padding-right: 4rem;
}
.entry-section--single .content-wrap--single .content-wrap__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.entry-section--single .content-wrap--single .info-wrap--single {
  font-size: 0;
  margin-bottom: 4.5rem;
}
.entry-section--single .content-wrap--single .info-wrap--single .post-date, .entry-section--single .content-wrap--single .info-wrap--single .post-cat {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.entry-section--single .content-wrap--single .info-wrap--single .post-cat {
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: 0.1rem solid #000;
}
.entry-section--single .content-wrap--single .eyecatch--single img {
  height: auto;
}
.entry-section--single .content-wrap--single .entry-content {
  margin-top: 5rem;
}
.entry-section--single .content-wrap--single .entry-content > *:first-child {
  margin-top: 0 !important;
}
.entry-section--single .content-wrap--single .link-section--single01 {
  margin-top: 7rem;
  border-top: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
  padding: 1.5rem 0;
}
.entry-section--single .content-wrap--single .link-section--single01 .row > div {
  margin: 0;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap a {
  position: relative;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 1.5em 2em;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap a:after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  content: "";
  width: 5rem;
  height: 0.85rem;
  display: block;
  transition: all 0.4s;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_prev a {
  padding-left: 8rem;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_prev a:after {
  left: 0;
  background: transparent url(../images/common/icon_arrow_l01_bk.svg) no-repeat center center/contain;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_prev a:hover:after {
  left: -0.5rem;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_next a {
  padding-right: 8rem;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_next a:after {
  right: 0;
  background: transparent url(../images/common/icon_arrow_r01_bk.svg) no-repeat center center/contain;
}
.entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_next a:hover:after {
  right: -0.5rem;
}
@media screen and (min-width: 769px) {
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap {
    border-left: 0.1rem solid #000;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .row > div:first-child .link-wrap {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .entry-section--single .content-wrap--single .link-section--single01 {
    padding: 0;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap {
    border-top: 0.1rem solid #000;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .row > div:first-child .link-wrap {
    border-top: none;
  }
}
@media screen and (max-width: 480px) {
  .entry-section--single .content-wrap--single .content-wrap--single.bg_wh {
    padding: 5rem 2rem;
  }
  .entry-section--single .content-wrap--single .info-wrap--single {
    margin-bottom: 3rem;
  }
  .entry-section--single .content-wrap--single .entry-content {
    margin-top: 4rem;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap {
    font-size: 1.2rem;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap a {
    padding: 1.5em;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap a:after {
    width: 4rem;
    height: 0.68rem;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_prev a {
    padding-left: 6.5rem;
  }
  .entry-section--single .content-wrap--single .link-section--single01 .link-wrap.link-wrap_next a {
    padding-right: 6.5rem;
  }
}
.single-title, .page-title, .entry-title {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 2em;
}
body.single .entry-content > *:first-child {
  margin-top: 0;
}
body.single .entry-content > *:last-child {
  margin-bottom: 0;
}
body.single .entry-content p {
  line-height: 2;
  margin: 1.5em 0;
}
body.single .entry-content img, body.single .entry-content iframe {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: block;
}
body.single .entry-content img {
  height: auto;
}
body.single .entry-content iframe {
  max-width: 100%;
}
body.single .entry-content table {
  width: 100%;
  margin-bottom: 4rem;
}
body.single .entry-content table th, body.single .entry-content table td {
  text-align: left;
  border: 0.1rem solid #ddd;
  padding: 0.8em 1em;
  background: #fff;
  vertical-align: top;
}
body.single .entry-content table th {
  font-weight: 700;
  width: 25%;
  background: #f2f2f2;
}
body.single .entry-content table thead th {
  text-align: center;
}
body.single .entry-content h2, body.single .entry-content h3, body.single .entry-content h4 {
  font-weight: 400;
  line-height: 1.8;
}
body.single .entry-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5em;
  margin-bottom: 1.5em;
  padding: 0.9em 0;
  border-top: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
}
body.single .entry-content h3 {
  font-size: 1.7rem;
  margin: 0;
  margin-top: 2.5em;
  margin-bottom: 1.5em;
  padding-bottom: 0.6em;
  border-bottom: 0.2rem solid #000;
}
body.single .entry-content h4 {
  font-size: 1.6rem;
  margin-top: 2.5em;
  margin-bottom: 1.5em;
  padding-left: 0.8em;
  border-left: 0.5rem solid #000;
}
body.single .post-linkbtn-wrap {
  margin-top: 10rem;
}
body.single .post-linkbtn-wrap .link-btn_arrow01 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  body.single .post-linkbtn-wrap {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 480px) {
  body.single .entry-content table tbody th {
    width: 30%;
  }
}
/******************************************************************
** single room
******************************************************************/
.room-name--single {
  position: relative;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4.1538461538rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 0 1em;
}
.room-name--single .name, .room-name--single .num {
  display: inline-block;
  vertical-align: baseline;
}
.room-name--single .num {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .room-name--single {
    font-size: 3.4615384615rem;
  }
  .room-name--single .num {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .room-name--single {
    font-size: 2.7692307692rem;
  }
  .room-name--single .num {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .room-name--single {
    font-size: 2.0769230769rem;
  }
  .room-name--single .num {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .room-name--single {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 320px) {
  .room-name--single {
    font-size: 2.1rem;
  }
  .room-name--single .num {
    font-size: 1.3rem;
  }
}
.main-carousel-wrap .img-wrap, .thumbnail-carousel-wrap .img-wrap {
  position: relative;
  width: 100%;
}
.main-carousel-wrap .img-wrap:before, .thumbnail-carousel-wrap .img-wrap:before {
  content: "";
  display: block;
}
.main-carousel-wrap .img-wrap img, .thumbnail-carousel-wrap .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
}
.main-carousel-wrap .img-wrap:before {
  padding-top: 71%;
}
.main-carousel-wrap .splide__arrow {
  background: transparent;
  border-radius: initial;
  opacity: 1;
  width: 2rem;
  height: 3.74rem;
  z-index: 2;
  transition: all 0.4s;
  left: initial !important;
  right: calc(100% + 1.5rem) !important;
}
.main-carousel-wrap .splide__arrow svg {
  display: none !important;
}
.main-carousel-wrap .splide__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.main-carousel-wrap .splide__arrow:hover {
  opacity: 0.7 !important;
}
.main-carousel-wrap .splide__arrow--prev {
  left: 4rem;
}
.main-carousel-wrap .splide__arrow--prev:before {
  background: transparent url("../images/common/icon_arrow_l02_bl.svg") no-repeat center center/contain;
}
.main-carousel-wrap .splide__arrow--next {
  right: 4rem;
}
.main-carousel-wrap .splide__arrow--next:before {
  background: transparent url("../images/common/icon_arrow_r02_bl.svg") no-repeat center center/contain;
}
.main-carousel-wrap .splide__arrow--next {
  left: calc(100% + 1.5rem) !important;
  right: initial !important;
}
@media screen and (max-width: 1024px) {
  .main-carousel-wrap .splide__arrow {
    width: 1.5rem;
    height: 2.8rem;
    left: 1.5rem !important;
    right: initial !important;
  }
  .main-carousel-wrap .splide__arrow--next {
    left: initial !important;
    right: 1.5rem !important;
  }
}
@media screen and (max-width: 480px) {
  .main-carousel-wrap .splide__arrow {
    width: 1.3rem;
    height: 2.43rem;
  }
}
.thumbnail-carousel-wrap {
  margin-top: 1.5rem;
}
.thumbnail-carousel-wrap #thumbnail-carousel {
  padding: 0 4rem;
}
.thumbnail-carousel-wrap .splide__list {
  font-size: 0;
}
.thumbnail-carousel-wrap .splide__list > .splide__slide {
  display: flex;
}
.thumbnail-carousel-wrap .splide__list > .splide__slide.is-active {
  border: 0.2rem solid #323979 !important;
}
.thumbnail-carousel-wrap .splide__arrow {
  bottom: 0;
  background: #fff;
  border-radius: initial;
  opacity: 1;
  width: 2.5rem;
  height: 100%;
  border: 0.1rem solid #323979;
  transition: all 0.4s;
}
.thumbnail-carousel-wrap .splide__arrow svg {
  display: none !important;
}
.thumbnail-carousel-wrap .splide__arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 0.55rem;
  height: 1rem;
  display: block;
}
.thumbnail-carousel-wrap .splide__arrow:hover {
  opacity: 0.7 !important;
}
.thumbnail-carousel-wrap .splide__arrow--prev {
  left: 0 !important;
}
.thumbnail-carousel-wrap .splide__arrow--prev:before {
  background: transparent url(../images/common/icon_arrow_l02_bl.svg) no-repeat center center/contain;
}
.thumbnail-carousel-wrap .splide__arrow--next {
  right: 0 !important;
}
.thumbnail-carousel-wrap .splide__arrow--next:before {
  background: transparent url(../images/common/icon_arrow_r02_bl.svg) no-repeat center center/contain;
}
.thumbnail-carousel-wrap .img-wrap:before {
  padding-top: 71%;
}
.thumbnail-carousel-wrap .splide__arrow {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .thumbnail-carousel-wrap {
    margin-top: 0.7rem;
  }
}
.desc--single {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
  display: table;
  margin: 6.5rem auto 0;
}
.info-section--room {
  position: relative;
}
.info-section--room.info-section--room01 {
  margin-top: 8rem;
}
.info-section--room.info-section--room02 {
  margin-top: 6rem;
}
.info-section--room .box {
  position: relative;
  background: #f7f7fa;
}
.info-section--room .box.box01 {
  padding: 4rem;
}
.info-section--room .box.box01 .heading_sub02 {
  margin-top: 0;
}
.info-section--room .box .box-text {
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
}
.info-section--room .box .text_sup {
  font-size: 1.2rem;
  margin: 0;
}
.info-section--room .box .text_sup.text_sup02 {
  margin-top: 2em;
}
@media screen and (min-width: 769px) {
  .info-section--room .box {
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .info-section--room.info-section--room02 .row {
    flex-direction: column;
  }
  .info-section--room.info-section--room02 .row > div {
    margin: 0 0 6rem;
  }
  .info-section--room.info-section--room02 .row > div:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .info-section--room.info-section--room01 {
    margin-top: 6rem;
  }
  .info-section--room.info-section--room02 {
    margin-top: 5rem;
  }
  .info-section--room.info-section--room02 .row > div {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .info-section--room.info-section--room02 {
    margin-top: 4rem;
  }
  .info-section--room.info-section--room02 .row > div {
    margin-bottom: 4rem;
  }
  .info-section--room .heading_sub02 .sub {
    padding-left: 5rem;
  }
  .info-section--room .heading_sub02 .sub:before {
    width: 3.5rem;
  }
  .info-section--room .box.box01 {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 350px) {
  .info-section--room .heading_sub02 .sub {
    padding-left: 0;
  }
}
.img-wrap--layout img {
  height: auto;
}
.link-btn-wrap--room {
  max-width: 44rem;
  margin: 0 auto;
}
.link-btn-wrap--room.link-btn-wrap--room01 {
  margin-top: 10rem;
}
.link-btn-wrap--room.link-btn-wrap--room02 {
  margin-top: 7rem;
}
.link-btn-wrap--room .link-btn_arrow01 {
  margin-top: 0;
}
.link-btn-wrap--room .link-btn_arrow01.btn--search {
  color: #fff;
  background: #323979;
  border: 0.1rem solid #323979;
  padding-left: 3.4em;
  padding-right: 3.4em;
}
.link-btn-wrap--room .link-btn_arrow01.btn--search:before {
  position: absolute;
  top: 50%;
  right: 1.4em;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: transparent url(../images/common/icon_out01_wh.webp) no-repeat center center/contain;
}
.link-btn-wrap--room .link-btn_arrow01.btn--search:after {
  display: none;
}
@media screen and (min-width: 769px) {
  .link-btn-wrap--room .row > div {
    margin: 0 2rem;
  }
  .link-btn-wrap--room .row > div:first-child {
    margin-left: 0;
  }
  .link-btn-wrap--room .row > div:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .link-btn-wrap--room.link-btn-wrap--room01 {
    margin-top: 7rem;
  }
  .link-btn-wrap--room .row > div {
    margin: 0 0 2rem;
  }
  .link-btn-wrap--room .row > div:last-child {
    margin-bottom: 0;
  }
}
/******************************************************************
** tel
******************************************************************/
.tel-box {
  position: relative;
  text-align: center;
  background: #f7f7fa;
  margin: 0 auto;
}
.tel-box.tel-box01 {
  max-width: 35rem;
  margin-top: 3rem;
  padding: 3.5rem 2rem;
}
.tel-box .tel {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #323979;
  margin: 0 auto;
  display: table;
}
.tel-box .tel .num {
  font-size: 2.4rem;
}
.tel-box .box-text {
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.tel-box .box-text.box-text02 {
  line-height: 1;
  margin-top: 1em;
}
@media screen and (max-width: 480px) {
  .tel-box .tel {
    font-size: 1.5rem;
  }
  .tel-box .tel .num {
    font-size: 2.1rem;
  }
  .tel-box .box-text {
    font-size: 1.2rem;
  }
}
/******************************************************************
** link section
******************************************************************/
.link-section01 .row > div {
  margin: 0;
}
.link-section01 .box {
  position: relative;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 30rem;
  overflow: hidden;
}
.link-section01 .box:before, .link-section01 .box .inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.link-section01 .box:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.link-section01 .box img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.link-section01 .box .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.link-section01 .box .heading_sub01 {
  color: #fff;
  margin: 0;
  z-index: 2;
}
.link-section01 .box .heading_sub01:after {
  background: #fff;
}
.link-section01 .box:hover img {
  transform: scale(1.1);
}
@media screen and (min-width: 769px) {
  .link-section01 .row > div {
    border-right: 0.1rem solid #fff;
  }
  .link-section01 .row > div:last-child {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .link-section01 .row > div {
    border-bottom: 0.1rem solid #fff;
  }
  .link-section01 .row > div:last-child {
    border-bottom: none;
  }
  .link-section01 .box {
    height: 25rem;
  }
}
@media screen and (max-width: 480px) {
  .link-section01 .box {
    height: 20rem;
  }
}
/******************************************************************
** sns
******************************************************************/
ul.sns-list {
  list-style: none;
  font-size: 0;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
ul.sns-list > li {
  font-size: 1em;
  margin: 0 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
ul.sns-list > li:first-child {
  margin-left: 0;
}
ul.sns-list > li:last-child {
  margin-right: 0;
}
ul.sns-list > li a {
  text-decoration: none;
  display: block;
  width: 1.7rem;
}
ul.sns-list > li a img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  transition: all 0.4s;
}
/******************************************************************
** breadcrumb
******************************************************************/
#breadcrumb {
  line-height: 1;
  margin-top: 2.5rem;
}
#breadcrumb ul {
  list-style: none;
  font-size: 0;
  padding: 0;
  line-height: 1;
}
#breadcrumb ul > li, #breadcrumb ul > li a {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
#breadcrumb ul > li {
  position: relative;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  margin-right: 3em;
}
#breadcrumb ul > li:after {
  position: absolute;
  top: 50%;
  right: -1.7em;
  transform: translate(0, -50%);
  content: "";
  width: 0.49rem;
  height: 0.9rem;
  display: block;
  background: transparent url(../images/common/icon_arrow_r02_bk.svg) no-repeat center center/contain;
}
#breadcrumb ul > li:last-child {
  margin-right: 0;
}
#breadcrumb ul > li:last-child:after {
  display: none;
}
#breadcrumb ul > li a {
  text-decoration: none;
}
#breadcrumb ul > li a:hover {
  opacity: 0.7;
}
/******************************************************************
** display
******************************************************************/
.disp--pc01, .disp--pc02, .disp--pc03 {
  display: block !important;
}
.disp--tab01, .disp--tab02, .disp--sp01 {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .disp--pc01 {
    display: none !important;
  }
  .disp--tab01 {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .disp--pc02 {
    display: none !important;
  }
  .disp--tab02 {
    display: block !important;
  }
}
@media screen and (max-width: 480px) {
  .disp--pc03 {
    display: none !important;
  }
  .disp--sp01 {
    display: block !important;
  }
}
/******************************************************************
** layout
******************************************************************/
.container500, .container600, .container700, .container800, .container900, .container1000, .container1040, .container1100, .container1200 {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.container500 {
  max-width: 50rem;
}
@media screen and (max-width: 540px) {
  .container500 {
    padding: 0 2rem;
  }
}
.container600 {
  max-width: 60rem;
}
@media screen and (max-width: 640px) {
  .container600 {
    padding: 0 2rem;
  }
}
.container700 {
  max-width: 70rem;
}
@media screen and (max-width: 740px) {
  .container700 {
    padding: 0 2rem;
  }
}
.container800 {
  max-width: 80rem;
}
@media screen and (max-width: 840px) {
  .container800 {
    padding: 0 2rem;
  }
}
.container900 {
  max-width: 90rem;
}
@media screen and (max-width: 940px) {
  .container900 {
    padding: 0 2rem;
  }
}
.container1000 {
  max-width: 100rem;
}
@media screen and (max-width: 1040px) {
  .container1000 {
    padding: 0 2rem;
  }
}
.container1040 {
  max-width: 104rem;
}
@media screen and (max-width: 1080px) {
  .container1040 {
    padding: 0 2rem;
  }
}
.container1100 {
  max-width: 110rem;
}
@media screen and (max-width: 1140px) {
  .container1100 {
    padding: 0 2rem;
  }
}
.container1200 {
  max-width: 120rem;
}
@media screen and (max-width: 1240px) {
  .container1200 {
    padding: 0 2rem;
  }
}
.row {
  display: flex;
}
@media screen and (min-width: 769px) {
  .row {
    flex-wrap: wrap;
  }
  .row > div {
    margin: 0 3rem;
  }
  .row > div:first-child {
    margin-left: 0 !important;
  }
  .row > div:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .row .order-1 {
    order: 2;
  }
  .row .order-2 {
    order: 1;
  }
}
.col-1 {
  flex: 1;
}
.col-2 {
  flex: 2;
}
.col-3 {
  flex: 3;
}
.col-4 {
  flex: 4;
}
.col-5 {
  flex: 5;
}
.col-6 {
  flex: 6;
}
.col-7 {
  flex: 7;
}
.col-8 {
  flex: 8;
}
.col-9 {
  flex: 9;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
/******************************************************************
** background
******************************************************************/
.bg_wh {
  position: relative;
  background: #fff;
}
.bg_wh01, .bg_bl01 {
  padding: 10rem 0;
}
.bg_wh02, .bg_bl02 {
  padding: 10rem 0 8rem;
}
.bg_wh03, .bg_bl03 {
  padding: 10rem 0;
}
.bg_wh04, .bg_bl04 {
  padding: 6rem 0;
}
.bg_wh05, .bg_bl05 {
  padding: 8rem 0;
}
.bg_wh06, .bg_bl06 {
  padding: 8rem 0 10rem;
}
.bg_bl {
  position: relative;
  background: #f7f7fa;
}
@media screen and (max-width: 1024px) {
  .bg_wh01, .bg_bl01 {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .bg_wh01, .bg_bl01 {
    padding: 6rem 0;
  }
  .bg_wh02, .bg_bl02 {
    padding: 8rem 0 6rem;
  }
  .bg_wh03, .bg_bl03 {
    padding: 7rem 0;
  }
  .bg_wh04, .bg_bl04 {
    padding: 4rem 0;
  }
  .bg_wh05, .bg_bl05 {
    padding: 6rem 0;
  }
  .bg_wh06, .bg_bl06 {
    padding: 6rem 0 8rem;
  }
}
/******************************************************************
** text
******************************************************************/
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}
.c_bl {
  color: #323979 !important;
}
.c_red {
  color: #bd272d !important;
}
@media screen and (min-width: 769px) {
  .ta-l_pc {
    text-align: left;
  }
  .ta-c_pc {
    text-align: center;
  }
  .ta-r_pc {
    text-align: right;
  }
}
/******************************************************************
** heading
******************************************************************/
.heading_mid01 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.15em;
  margin: 5em 0 2.5em;
}
@media screen and (max-width: 768px) {
  .heading_mid01 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  .heading_mid01 {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
.heading_mid02 {
  position: relative;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 4em 0 2em;
}
@media screen and (max-width: 768px) {
  .heading_mid02 {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 480px) {
  .heading_mid02 {
    font-size: 1.8rem;
  }
}
.heading_sub01 {
  position: relative;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 4.8em auto 1.6em;
  padding-bottom: 1.3em;
}
.heading_sub01:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  width: 3rem;
  height: 0.1rem;
  display: block;
  background: #000;
}
.heading_sub01 .sub {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 1.3em;
}
@media screen and (max-width: 768px) {
  .heading_sub01 {
    font-size: 2.1rem;
  }
  .heading_sub01 .sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .heading_sub01 .sub {
    letter-spacing: 0;
  }
}
.heading_sub02 {
  position: relative;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 6em 0 2em;
  display: table;
}
.heading_sub02 .sub {
  position: relative;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  padding-left: 8.5rem;
}
.heading_sub02 .sub:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  width: 6.5rem;
  height: 0.1rem;
  display: block;
  background: #000;
}
@media screen and (max-width: 768px) {
  .heading_sub02 {
    font-size: 2.1rem;
  }
  .heading_sub02 .sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 350px) {
  .heading_sub02 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .heading_sub02 .sub {
    display: block;
    margin-left: 0;
    margin-top: 1.2em;
    padding-left: 0;
  }
  .heading_sub02 .sub:before {
    display: none;
  }
}
.heading-wrap01 {
  margin-bottom: 6rem;
}
.heading-wrap01 .heading-wrap__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.heading-wrap01 .heading_sub02 {
  margin: 0;
}
.heading-wrap01 .link-btn_arrow01 {
  display: table;
  margin: 0 0 0 auto;
  min-width: 20rem;
}
@media screen and (min-width: 769px) and (max-width: 940px) {
  .heading-wrap01 .container900 {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .heading-wrap01 {
    margin-bottom: 5rem;
  }
  .heading-wrap01 .link-btn_pc {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .heading-wrap01 {
    margin-bottom: 4rem;
  }
}
/******************************************************************
** link
******************************************************************/
.link-btn_arrow01 {
  position: relative;
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1.65;
  letter-spacing: 0.1em;
  background: #fff;
  border: 0.1rem solid #000;
  display: block;
  max-width: 20rem;
  margin: 3.5em auto 0;
  padding: 1.05em 1em;
  transition: all 0.4s;
}
.link-btn_arrow01:after {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translate(0, -50%);
  content: "";
  width: 5rem;
  height: 0.85rem;
  display: block;
  background: transparent url(../images/common/icon_arrow_r01_bk.svg) no-repeat center center/contain;
  transition: all 0.4s;
}
.link-btn_arrow01:hover {
  opacity: 0.7;
}
.link-btn_arrow01:hover:after {
  right: -3rem;
}
.link-btn_reserve01 {
  position: relative;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #323979;
  display: block;
  max-width: 67.5rem;
  margin: 10rem auto 0;
  padding: 1.48em 1em;
  transition: all 0.4s;
}
.link-btn_reserve01 .inner {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 0 5rem;
}
.link-btn_reserve01 .inner:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  width: 0.8rem;
  height: 1.46rem;
  display: block;
  background: transparent url(../images/common/icon_arrow_r02_wh.svg) no-repeat center center/contain;
  transition: all 0.4s;
}
.link-btn_reserve01 .inner .text {
  text-align: center;
  display: block;
}
.link-btn_reserve01 .inner .text.text_en {
  font-family: "playfair-display", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  margin-top: 1em;
}
.link-btn_reserve01:hover {
  opacity: 0.7;
}
.link-btn_reserve01:hover .inner:after {
  right: -0.5rem;
}
@media screen and (max-width: 768px) {
  .link-btn_reserve01 {
    margin-top: 7rem;
  }
  .link-btn_reserve01 .inner {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 350px) {
  .link-btn_reserve01 {
    font-size: 1.6rem;
  }
  .link-btn_reserve01 .inner {
    padding: 0 2.5rem;
  }
}
ul.link-list > li .btn {
  position: relative;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.1em;
  display: block;
  padding: 1em 2rem;
  border-bottom: 0.1rem solid #000;
  transition: all 0.4s;
}
ul.link-list > li .btn:after {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  content: "";
  width: 0.55rem;
  height: 1.03rem;
  display: block;
  background: transparent url(../images/common/icon_arrow_r02_bk.svg) no-repeat center center/contain;
  transition: all 0.4s;
}
ul.link-list > li .btn:hover {
  opacity: 0.7;
}
ul.link-list > li .btn:hover:after {
  right: 0.5rem;
}
@media screen and (max-width: 375px) {
  ul.link-list > li .btn {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.anchor-point {
  position: relative;
  display: block;
}
.anchor-point.anchor-point01 {
  top: -10rem;
}
/******************************************************************
** list
******************************************************************/
ul.list_col3, ul.list_col4 {
  list-style: none;
  font-size: 0;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
ul.list_col3 > li, ul.list_col4 > li {
  font-size: 1.3rem;
  margin: 2.5%;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 569px) {
  ul.list_col3 > li, ul.list_col4 > li {
    width: 30%;
  }
  ul.list_col3 > li:nth-child(1), ul.list_col3 > li:nth-child(2), ul.list_col3 > li:nth-child(3), ul.list_col4 > li:nth-child(1), ul.list_col4 > li:nth-child(2), ul.list_col4 > li:nth-child(3) {
    margin-top: 0;
  }
  ul.list_col3 > li:nth-child(3n + 1), ul.list_col4 > li:nth-child(3n + 1) {
    margin-left: 0;
  }
  ul.list_col3 > li:nth-child(3n), ul.list_col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  ul.list_col3 > li, ul.list_col4 > li {
    width: 21.2%;
  }
  ul.list_col3 > li:nth-child(3n + 1), ul.list_col4 > li:nth-child(3n + 1) {
    margin-left: 2.5%;
  }
  ul.list_col3 > li:nth-child(3n), ul.list_col4 > li:nth-child(3n) {
    margin-right: 2.5%;
  }
  ul.list_col3 > li:nth-child(4n + 1), ul.list_col4 > li:nth-child(4n + 1) {
    margin-left: 0;
  }
  ul.list_col3 > li:nth-child(4n), ul.list_col4 > li:nth-child(4n) {
    margin-right: 0;
  }
  ul.list_col3 > li:nth-child(1), ul.list_col3 > li:nth-child(2), ul.list_col3 > li:nth-child(3), ul.list_col3 > li:nth-child(4), ul.list_col4 > li:nth-child(1), ul.list_col4 > li:nth-child(2), ul.list_col4 > li:nth-child(3), ul.list_col4 > li:nth-child(4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 568px) {
  ul.list_col3 > li, ul.list_col4 > li {
    width: 47.5%;
  }
  ul.list_col3 > li:nth-child(1), ul.list_col3 > li:nth-child(2), ul.list_col4 > li:nth-child(1), ul.list_col4 > li:nth-child(2) {
    margin-top: 0;
  }
  ul.list_col3 > li:nth-child(odd), ul.list_col4 > li:nth-child(odd) {
    margin-left: 0;
  }
  ul.list_col3 > li:nth-child(even), ul.list_col3 > li:last-child, ul.list_col4 > li:nth-child(even), ul.list_col4 > li:last-child {
    margin-right: 0;
  }
}
/******************************************************************
** image
******************************************************************/
.img-wrap {
  position: relative;
  line-height: 0;
}
.img-wrap img {
  width: 100%;
  margin: 0;
  display: block;
  pointer-events: none;
}
/******************************************************************
** table
******************************************************************/
table.table_brd01 {
  width: 100%;
}
table.table_brd01 tr {
  border-top: 0.1rem solid #e0e2ea;
}
table.table_brd01 tr:last-child {
  border-bottom: 0.1rem solid #e0e2ea;
}
table.table_brd01 th, table.table_brd01 td {
  text-align: left;
  background: transparent;
  border: none;
  vertical-align: top;
  padding: 2em 1.5em;
}
table.table_brd01 th {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  table.table_brd01 th {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  table.table_brd01 th, table.table_brd01 td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  table.table_brd01 th {
    font-weight: 700;
    padding-bottom: 0.2em;
  }
  table.table_brd01 td {
    padding-top: 0.2em;
  }
}
table.table_brd02 {
  width: 100%;
}
table.table_brd02 th, table.table_brd02 td {
  text-align: left;
  background: transparent;
  border: none;
  vertical-align: top;
  padding: 1em 0;
}
table.table_brd02 th {
  font-weight: 400;
  color: #959595;
  letter-spacing: 0.15em;
}
table.table_brd02 td {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  table.table_brd02 th {
    padding-right: 2.5em;
    border-right: 0.1rem solid #959595;
    width: 18%;
  }
  table.table_brd02 td {
    padding-left: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  table.table_brd02 tr {
    border-top: 0.1rem solid #959595;
  }
  table.table_brd02 tr:last-child {
    border-bottom: 0.1rem solid #959595;
  }
  table.table_brd02 th, table.table_brd02 td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  table.table_brd02 th {
    font-weight: 700;
    padding-bottom: 0.2em;
  }
  table.table_brd02 td {
    padding-top: 0.2em;
  }
}
table.table_tr {
  width: 100%;
  background: transparent !important;
  border: 0 !important;
}
table.table_tr tr, table.table_tr th, table.table_tr td {
  background: transparent !important;
  border: 0 !important;
}
table.table_tr th, table.table_tr td {
  font-weight: 400;
  text-align: left;
  padding: 1em 0;
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  table.table_tr th {
    width: 30%;
    padding-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  table.table_tr th, table.table_tr td {
    width: 100%;
    display: block;
  }
  table.table_tr th {
    padding-right: 0;
    padding-bottom: 0.3em;
  }
  table.table_tr td {
    padding-top: 0.3em;
  }
}
/******************************************************************
** form
******************************************************************/
.form-wrap {
  margin-top: 4.5rem;
}
.form-wrap .required {
  color: #bd272d;
  line-height: 1;
  display: inline-block;
  margin-left: 0.2em;
}
.form-wrap input[type="submit"] {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  display: block;
  margin: 4rem auto 0;
  padding: 1.35em 1em 1.25em;
  width: 100%;
  max-width: 25rem;
  background: #323979;
  border: 0.1rem solid #323979;
  transition: all 0.4s;
}
.form-wrap input[type="submit"]:hover {
  color: #323979;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .form-wrap table.table_tr th, .form-wrap table.table_tr td {
    vertical-align: middle;
  }
  .form-wrap table.table_tr th {
    width: 30%;
  }
  .form-wrap table.table_tr .va_t th, .form-wrap table.table_tr .va_t td {
    vertical-align: top;
  }
  .form-wrap table.table_tr .va_t th {
    padding-top: 2em;
  }
}
@media screen and (max-width: 768px) {
  .form-wrap {
    margin-top: 2rem;
  }
}
/******************************************************************
** margin
******************************************************************/
.m-0 {
  margin: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-10 {
  margin-top: 1rem !important;
}
.mt-20 {
  margin-top: 2rem !important;
}
.mt-30 {
  margin-top: 3rem !important;
}
.mt-40 {
  margin-top: 4rem !important;
}
.mt-50 {
  margin-top: 5rem !important;
}
.mt-60 {
  margin-top: 6rem !important;
}
.mt-70 {
  margin-top: 7rem !important;
}
.mt-80 {
  margin-top: 8rem !important;
}
.mt-90 {
  margin-top: 9rem !important;
}
.mt-100 {
  margin-top: 10rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-10 {
  margin-bottom: 1rem !important;
}
.mb-20 {
  margin-bottom: 2rem !important;
}
.mb-30 {
  margin-bottom: 3rem !important;
}
.mb-40 {
  margin-bottom: 4rem !important;
}
.mb-50 {
  margin-bottom: 5rem !important;
}
.mb-60 {
  margin-bottom: 6rem !important;
}
.mb-70 {
  margin-bottom: 7rem !important;
}
.mb-80 {
  margin-bottom: 8rem !important;
}
.mb-90 {
  margin-bottom: 9rem !important;
}
.mb-100 {
  margin-bottom: 10rem !important;
}
/******************************************************************
** animation
******************************************************************/
.fadein {
  opacity: 0;
  transition: 0.7s all;
}
.fadein.ttb {
  transform: translate(0, -4rem);
}
.fadein.btt {
  transform: translate(0, 4rem);
}
.fadein.ltr {
  transform: translate(-4rem, 0);
}
.fadein.rtl {
  transform: translate(4rem, 0);
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0) !important;
}
.fadein02 {
  transition-delay: 200ms;
}
.fadein03 {
  transition-delay: 400ms;
}
.fadein04 {
  transition-delay: 600ms;
}
.fadein05 {
  transition-delay: 800ms;
}
.fadein06 {
  transition-delay: 1000ms;
}
@media screen and (max-width: 768px) {
  .fadein02, .fadein03, .fadein04, .fadein05, .fadein06 {
    transition-delay: 0s;
  }
}
/******************************************************************
** LARGE VIEWING SIZE
******************************************************************/
