@charset "UTF-8";
/******************************************************************************/
/* 共通用                                                                     */
/******************************************************************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f5f7fa;
  color: #333;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  height: 100%;
}

/*
utility
*/
.u-mt--0 {
  margin-top: 0 !important;
}

.u-mt--auto {
  margin-top: auto !important;
}

.u-mt--sm {
  margin-top: 0.5rem !important;
}

.u-mt--md {
  margin-top: 1rem !important;
}

.u-mt--lg {
  margin-top: 1.5rem !important;
}

.u-mt--xl {
  margin-top: 3rem !important;
}

/******************************************************************************/
/* 公開サイト用                                                                */
/******************************************************************************/
header {
  background: #ffffff;
  color: #0d47a1;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 1px;
}
header img {
  width: 240px;
  height: 75px;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}
.container h2 {
  margin-bottom: 20px;
}

.container-term {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

.container-pp {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.tool-box {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 240px;
  transition: 0.2s;
}
.tool-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.tool-box h3 {
  margin-bottom: 10px;
}
.tool-box p {
  font-size: 0.9em;
  color: #666;
  height: 80px;
}
.tool-box a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #0d47a1;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

footer {
  margin-top: 60px;
  padding: 20px;
  background: #f5f7fa;
  text-align: center;
  font-size: 0.9em;
}
footer a {
  margin: 0 12px;
  color: #0d47a1;
  text-decoration: none;
}

#dropzone {
  border: 2px dashed #888;
  padding: 20px;
  margin: 30px auto;
  background: #f9f9f9;
  min-height: 240px;
  text-align: center;
  border-radius: 8px;
}

#fileList {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.file-item {
  width: 120px;
  border: 1px solid #ccc;
  padding: 5px;
  background: #fff;
  text-align: center;
  position: relative;
  border-radius: 4px;
}

.file-item canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #f44336;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  cursor: pointer;
}

.file-number {
  font-weight: bold;
  margin-top: 4px;
}

.primary-button {
  background: #0d47a1;
  color: white;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

.primary-button:hover {
  background: #0b3c87;
}

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

input[type=file] {
  margin-top: 8px;
  padding: 8px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

button.primary-button {
  padding: 10px 24px;
  font-size: 1rem;
}

#dropzone {
  border: 2px dashed #888;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  background: #f9f9f9;
  min-height: 150px;
  cursor: pointer;
}

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

input[type=file] {
  margin-top: 8px;
  padding: 8px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

button.primary-button {
  padding: 10px 24px;
  font-size: 1rem;
}

#dropzone {
  border: 2px dashed #888;
  padding: 30px;
  text-align: center;
  background: #f9f9f9;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#dropzone.dragover {
  background-color: #e3f2fd;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ============================================================================
問合せ画面
============================================================================ */
/* ============================================================================
STYLE INDEX
01 : 基本設定
02 : .is-visible .is-hidden
03 : @keyframes
04 : cssハック
============================================================================ */
/* ============================================================================
01 : 基本設定
============================================================================ */
* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", sans-serif;
  box-sizing: border-box;
}

/* arrange font size "1rem" to "1px" */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  color: #343434;
  line-height: 1.5;
  font-size: 1.5rem;
  height: 100%;
}

.a_tag_button_change {
  border-style: solid;
  border-color: #0d47a1;
  border-width: 1px;
  background-color: white;
  color: #0d47a1;
  /*     background-color: #018755; */
  border-radius: 30px;
  font-weight: bold;
  /*     color: #FFF; */
  padding: 7px 17px;
  display: inline-block;
}

.a_tag_button_change:hover {
  border-style: solid;
  border-color: #0d47a1;
  border-width: 1px;
  background-color: #0d47a1;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  padding: 7px 17px;
  display: inline-block;
}

.padding_under_10 {
  padding: 0px 0px 10px;
}

.padding_left_20 {
  padding: 10px 0px 0px 10px;
}

@media (max-width: 767.9px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media (max-width: 991.9px) {
  body.is-noscroll {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: auto;
  }
}
input,
select {
  font-size: 1.5rem;
}

/* removr list prefix marker */
ol,
ul {
  list-style: none;
}

p {
  line-height: 1.5em;
}

a {
  color: #0d47a1;
  transition: all 0.2s;
  text-decoration: none;
}

a:hover {
  outline: none;
}

@media (min-width: 768px) {
  a:hover {
    color: #0d47a1;
  }
}
@media (min-width: 768px) {
  a:hover img {
    opacity: 0.75;
  }
}
a img {
  transition: all 0.2s;
}

img {
  max-width: 100%;
}

/* ============================================================================
01 : .p-rsv
============================================================================ */
.p-rsv__inner {
  background: #fff;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-rsv__inner {
    width: 96%;
    max-width: 1200px;
    padding: 20px;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__inner {
    padding: 15px;
  }
}
@media (min-width: 768px) {
  .p-rsv__header {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__header {
    margin-bottom: 1em;
  }
}
.p-rsv__header__icon {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5em;
  background-color: #edf7f3;
}

@media (min-width: 768px) {
  .p-rsv__header__icon {
    width: 56px;
    height: 56px;
    border-radius: 28px;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__header__icon {
    width: 46px;
    height: 46px;
    border-radius: 23px;
  }
}
.p-rsv__header__icon svg {
  height: auto;
  fill: #0d47a1;
}

@media (min-width: 768px) {
  .p-rsv__header__icon svg {
    width: 24px;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__header__icon svg {
    width: 20px;
  }
}
.p-rsv__header__ttl {
  text-align: center;
}

@media (min-width: 768px) {
  .p-rsv__header__ttl__name {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__header__ttl__name {
    font-size: 1.4rem;
  }
}
.p-rsv__header__ttl__event {
  color: #0d47a1;
}

@media (min-width: 768px) {
  .p-rsv__header__ttl__event {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__header__ttl__event {
    font-size: 2rem;
  }
}
.p-rsv__lead {
  text-align: center;
}

@media (min-width: 768px) {
  .p-rsv__lead {
    margin-bottom: 2.4em;
  }
}
@media (min-width: 768px) {
  .p-rsv__useredit {
    max-width: 500px;
    margin: 0 auto 2em;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__useredit {
    margin-bottom: 2em;
  }
}
@media (min-width: 768px) {
  .p-rsv__useredit__item {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__useredit__item {
    margin-bottom: 1em;
  }
}
.p-rsv__useredit__item__ttl {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.p-rsv__useredit__item__txt__inner {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1em;
  background: #fafafa;
  border-radius: 5px;
}

.p-rsv__useredit__label {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.4em;
  margin-left: 0.5em;
  line-height: 1;
  background: #d6105f;
  color: #fff;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .p-rsv__btmbtns {
    -js-display: flex;
    display: flex;
    justify-content: space-between;
    width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 767.9px) {
  .p-rsv__btmbtn button {
    width: 100%;
    margin-bottom: 15px;
  }
}
.u-mb--xl {
  margin-bottom: 3rem !important;
}

.u-mb--7l {
  margin-bottom: 7rem !important;
}

.rsrv_select {
  line-height: initial;
  font-weight: bold;
  border: 1px solid #ccc;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2230%22%20viewBox%3D%220%200%2021%2030%22%20fill%3D%22%230d47a1%22%3E%3Cpath%20d%3D%22M1.41%2012h18.18a1.42%201.42%200%20001-2.43L11.5.42a1.4%201.4%200%2000-2%200L.42%209.57A1.42%201.42%200%20001.41%2012zm18.18%206H1.41a1.42%201.42%200%2000-1%202.43l9.09%209.15a1.4%201.4%200%20002%200l9.08-9.15a1.42%201.42%200%2000-.99-2.43z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: right 12px center;
  background-color: #fff;
}

.c-form__input {
  -webkit-appearance: none;
  transition: all 0.3s;
  outline: none;
  width: 100%;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1;
  padding: 0.75em;
}

.p-meeting__info__form--txt {
  font-weight: bold;
  border-color: #ccc;
}

.c-form__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0 2em;
  line-height: 46px;
  border-radius: 23px;
}

.c-form__button svg {
  position: relative;
  top: 2px;
  width: 14px;
  height: 14px;
  fill: white;
}

.c-form__button--default {
  border: 1px solid #ccc;
}

@media (min-width: 992px) {
  .c-form__button--default:hover {
    border-color: #0d47a1;
    color: #0d47a1;
  }
}
@media (min-width: 992px) {
  .c-form__button--default:hover svg {
    fill: #0d47a1;
  }
}
.c-form__button--default svg {
  fill: #ccc;
}

.c-form__button--primary {
  background-color: #0d47a1;
  color: #fff;
}

@media (min-width: 768px) {
  .c-form__button--szmd {
    min-width: 200px;
  }
}
.c-form__button--center {
  display: inline-block;
  padding: 20px;
}
.c-form--center {
  text-align: center;
}

.rsrv_req_new_line {
  white-space: pre-wrap;
}

.contact_complete {
  padding: 150px;
  font-size: 2rem;
}/*# sourceMappingURL=style.css.map */