@charset "UTF-8";
/*------------------------------------------------------------
  変数設定
  ------------------------------------------------------------*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
}

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

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote,
q {
  quotes: none;
}

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

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

[type="button"],
[type="reset"],
[type="submit"],
a,
a img,
button {
  transition: 0.3s;
}

input,
textarea {
  border: none;
  background-color: #fff;
  border-radius: 0;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  padding: 2rem;
  border-radius: 7px;
}

@media screen and (max-width: 991px) {
  input,
  textarea {
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 0;
  }
}

input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #CDAF53;
}

input::placeholder,
textarea::placeholder {
  color: #D0C0B8;
}

textarea {
  min-height: 150px;
}

@media screen and (max-width: 991px) {
  textarea {
    min-height: 170px;
  }
}

.required::after {
  content: "必須";
  color: #E9482C;
  font-size: 1.4rem;
  position: absolute;
  right: 1.5rem;
  top: 0.3rem;
}

@media screen and (max-width: 991px) {
  .required::after {
    right: inherit;
    top: 4px;
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
}

.any::after {
  content: "任意";
  color: #808077;
}

div.submit {
  display: flex;
  gap: 5rem;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  div.submit {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

div.submit input[type="submit"] {
  font-size: 2rem;
  font-size: 2rem;
  color: #fff;
  background: #231815;
  padding: 2rem 0;
  display: block;
  border-radius: 0;
  max-width: 350px;
}

@media screen and (max-width: 991px) {
  div.submit input[type="submit"] {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 991px) {
  div.submit input[type="submit"] {
    width: 80%;
    max-width: inherit;
    padding: 1.5rem 0;
  }
}

div.submit input[type="submit"]:hover {
  opacity: 1 !important;
  color: #fff !important;
  background: #202C86 !important;
}

div.submit input[type="submit"]:active, div.submit input[type="submit"]:focus {
  outline: none !important;
  box-shadow: none !important;
  color: #fff !important;
}

input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1;
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  border-color: #997C67;
}

input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 1px;
  width: 22px;
  height: 10px;
  border-left: 3px solid #231815;
  border-bottom: 3px solid #231815;
  transform: rotate(-45deg);
}

span.mwform-checkbox-field-text {
  margin-top: -0.2rem;
}

.mwform-radio-field {
  display: block;
  margin-left: 0 !important;
}

.mwform-radio-field label {
  margin: 0.5em 0;
  margin-right: 2rem;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .mwform-radio-field label {
    margin-right: 1rem;
  }
}

.mwform-radio-field label input[type='radio'] {
  position: absolute;
  opacity: 0;
}

.mwform-radio-field label input[type='radio'] + .mwform-radio-field-text {
  position: relative;
  padding-left: 2rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .mwform-radio-field label input[type='radio'] + .mwform-radio-field-text {
    padding-left: 2.5rem;
  }
}

.mwform-radio-field label input[type='radio'] + .mwform-radio-field-text:before {
  content: '';
  background: #EEEEEE;
  border-radius: 100%;
  border: 1px solid #EEEEEE;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mwform-radio-field label input[type='radio']:checked + .mwform-radio-field-text:before {
  background-color: #5B6D60;
  box-shadow: inset 0 0 0 3px #fff;
}

.mwform-radio-field label input[type='radio']:focus + .mwform-radio-field-text:before {
  border: 1px solid #231815;
}

.mwform-radio-field label input[type='radio']:disabled + .mwform-radio-field-text:before {
  box-shadow: inset 0 0 0 4px #fff;
  border: #231815;
  background: #231815;
}

.mwform-radio-field label input[type='radio'] + .radio-label:empty:before {
  margin-right: 0;
}

.error {
  color: #cc3300;
  width: 100%;
  font-size: 1.4rem;
  margin-top: 1rem;
  display: block;
  line-height: initial;
}

/*------------------------------------------------------------
	サイト基礎
  ------------------------------------------------------------*/
body {
  color: #231815;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  font-feature-settings: "palt";
  font-family: "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.4rem;
  }
}

body a {
  transition: 0.3s;
  color: #231815;
  text-decoration: none;
}

body a:hover {
  color: #CDAF53;
  text-decoration: none;
  opacity: 0.8 !important;
}

body img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

body .inner {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
}

body .inner-xl {
  max-width: 1600px;
  margin: 0 auto;
}

body .inner-l {
  max-width: 1200px;
  margin: 0 auto;
}

body .inner-m {
  max-width: 1000px;
  margin: 0 auto;
}

body .inner-s {
  max-width: 800px;
  margin: 0 auto;
}

body .telLink {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

body .telLink :root .selector,
body .telLink _:-ms-fullscreen {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  body .telLink {
    pointer-events: auto;
    letter-spacing: 0.02em;
  }
}

body .readTxt {
  line-height: 2;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  body .readTxt {
    font-size: 1.2rem;
  }
}

body section {
  padding: 10rem 0 15rem;
}

@media screen and (max-width: 991px) {
  body section {
    padding: 7rem 1.5rem 5rem;
    overflow: hidden;
  }
}

body h1.baseTtl {
  font-size: 2.8rem;
}

@media screen and (max-width: 991px) {
  body h1.baseTtl {
    font-size: 1.8rem;
  }
}

body h2.baseTtl {
  font-size: 5rem;
  margin-bottom: 3rem;
  color: #CDAF53;
  font-family: "Poller One", serif;
}

@media screen and (max-width: 991px) {
  body h2.baseTtl {
    font-size: 2.6rem;
    line-height: 1.6;
  }
}

body h2.baseTtl span {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
  display: block;
  margin-top: 2.5rem;
}

@media screen and (max-width: 991px) {
  body h2.baseTtl span {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

body h3.baseTtl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  display: table;
  margin: 0 auto;
  padding-bottom: 0.5rem;
  margin-bottom: 5rem;
}

@media screen and (max-width: 991px) {
  body h3.baseTtl {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}

body h3.borderTtl {
  color: #CDAF53;
  font-size: 2.5rem;
  border-top: 2px solid #CDAF53;
  border-bottom: 2px solid #CDAF53;
  display: inline-block;
  padding: 0.5rem 0 0.7rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 991px) {
  body h3.borderTtl {
    font-size: 1.1rem;
    padding: 0.7rem 0 0.9rem;
    border-top: 1px solid #CDAF53;
    border-bottom: 1px solid #CDAF53;
  }
}

body .arcDetail h1 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 991px) {
  body .arcDetail h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 991px) {
  body .arcDetail h1 {
    padding-bottom: 1.5rem;
  }
}

body .arcDetail .arcInner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 6rem 0;
}

@media screen and (max-width: 991px) {
  body .arcDetail .arcInner {
    padding: 1.5rem 0 3rem 0;
  }
}

body .arcDetail .arcInner img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  width: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  body .arcDetail .arcInner img {
    margin-bottom: 1.5rem;
  }
}

body .arcDetail .arcInner h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
  body .arcDetail .arcInner h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  body .arcDetail .arcInner h2 {
    margin-bottom: 1.5rem;
  }
}

body .arcDetail .arcInner a {
  color: #359450;
  text-decoration: underline;
}

body .arcDetail .arcInner p {
  margin-bottom: 1.5rem;
}

body .arcDetail .linkBack {
  text-align: center;
}

body .arcDetail .linkBack a {
  color: #359450;
  font-weight: bold;
}

body .arcDetail .linkBack a:hover {
  opacity: 0.8;
}

body .pcNone {
  display: none;
}

@media screen and (max-width: 991px) {
  body .pcNone {
    display: block;
  }
}

body .lmBlock {
  /* 1366px */
  display: none !important;
}

@media screen and (max-width: 1366px) {
  body .lmBlock {
    display: block !important;
  }
}

@media screen and (max-width: 1366px) {
  body .lmNone {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  body .tbNone {
    display: none !important;
  }
}

body .tbBlock {
  display: none !important;
}

@media screen and (max-width: 991px) {
  body .tbBlock {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  body .spNone {
    display: none;
  }
}

body .readMore {
  color: #202C86;
  position: relative;
  border: 1px solid #202C86;
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  body .readMore {
    width: 18px;
    height: 18px;
  }
}

body .readMore::after {
  content: "";
  display: block;
  background: #202C86;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 18px;
  z-index: -1;
}

body .readMore.-bgBlue {
  border-color: transparent;
  color: #fff;
  background: #202C86;
}

body .viewLink {
  display: block;
  margin: 0 auto;
  width: 280px;
}

body .viewLink a {
  width: 280px;
  display: flex;
  align-items: center;
  border: 1px solid #202C86;
  padding: 0.3rem 1rem 0.3rem 2rem;
  color: #202C86;
  position: relative;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  body .viewLink a {
    font-size: 1.2rem;
    width: 65%;
    margin: 0 auto;
  }
}

body .viewLink a::after {
  content: "";
  display: block;
  background: #202C86;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}

body .viewLink a:hover {
  color: #fff;
}

body .viewLink a:hover::after {
  opacity: 1;
}

body .viewLink a .readMore {
  color: #fff;
  border-color: #fff;
}

body .viewLink a .readMore::after {
  opacity: 1;
}

body .viewLink.-bgBlue a {
  border-color: #fff;
  color: #fff;
}

body .viewLink.-bgBlue a::after {
  background: #fff;
  opacity: 0.3;
  z-index: -2;
}

body .viewLink.-bgBlue a:hover::after {
  opacity: 0;
}

body .viewLink.-bgBlue a:hover .readMore {
  color: #202C86;
}

body .viewLink.-bgBlue a:hover .readMore::after {
  background: #fff;
  opacity: 0.7;
}

body .viewLink.-bgBlue a .readMore {
  border-color: transparent;
}

body .viewLink.-bgBlue a .readMore::after {
  opacity: 1;
  background: #202C86;
}

body .viewLink.-btnBlue a {
  border: 1px solid #D3E4F5;
  color: #fff;
  font-weight: normal;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

body .viewLink.-btnBlue a::after {
  opacity: 1;
}

body .viewLink.-btnBlue a .readMore {
  border: none;
  color: #202C86;
  z-index: 1;
}

body .viewLink.-btnBlue a .readMore::after {
  background: #fff;
}

body .cate01 {
  background: #E88B8A;
}

body .cate02 {
  background: #009ABB;
}

body .cate03 {
  background: #B48B3E;
}

body .cate04 {
  background: #91B023;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.wrap {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/*------------------------------------------------------------
	ヘッダー
  ------------------------------------------------------------*/
header#header .navbar {
  padding: 0;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #202C86;
}

header#header .navbar::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

header#header .navbar .container-fluid {
  position: relative;
  z-index: 2;
  height: 100px;
  padding: 0 4rem 0 5rem;
  transition: 0.3s ease-in;
}

@media screen and (max-width: 1366px) {
  header#header .navbar .container-fluid {
    padding: 0 2rem 0 3rem;
  }
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid {
    height: 50px !important;
    padding: 0 0 0 2rem;
  }
}

header#header .navbar .container-fluid .navbar-brand {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-brand {
    width: 135px !important;
    margin-top: -0.7rem;
  }
}

header#header .navbar .container-fluid .navbar-brand img {
  margin-top: -0.5rem;
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-toggler {
    border: none;
    background: #202C86;
    border-radius: 0;
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-toggler:focus {
    box-shadow: none;
  }
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-toggler .navbar-toggler-icon {
    width: 3rem;
    height: 3rem;
  }
}

header#header .navbar .container-fluid .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L 24 24M24 6L6 24'/%3E%3C/svg%3E");
}

header#header .navbar .container-fluid .navbar-collapse {
  justify-content: end;
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-collapse {
    background: rgba(255, 255, 255, 0.8);
    margin-left: -2rem;
    padding: 2rem 0 2rem 2rem;
    height: auto;
    margin-top: 0;
  }
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav {
  gap: 3rem;
  align-items: center;
}

@media screen and (max-width: 1366px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav {
    gap: 0 1.5rem;
    flex-wrap: wrap;
    padding-left: 1.5rem;
    line-height: inherit;
  }
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav {
    display: block;
    padding-left: 0;
  }
}

@media screen and (max-width: 1200px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(1) {
    width: 30%;
  }
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(2) {
    order: 2;
    width: 30%;
  }
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(3) {
    order: 6;
    width: 30%;
  }
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(4) {
    order: 7;
    width: 30%;
  }
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(5) {
    order: 3;
  }
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(6) {
    order: 4;
  }
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a:nth-child(7) {
    order: 5;
  }
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link {
  color: #fff;
  position: relative;
  padding: 0;
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link {
    padding: 1.5rem 0;
    width: 100%;
    color: #231815;
  }
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 1px solid #202C86;
  width: 0%;
  left: 0;
  transition: 0.3s ease-in;
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link:hover {
  opacity: 1 !important;
  color: #CDAF53;
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link:hover::after {
  width: 100%;
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link.contact {
  width: 172px;
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link.contact:hover {
  opacity: 0.8 !important;
}

@media screen and (max-width: 1366px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link.contact {
    width: 130px;
  }
}

@media screen and (max-width: 1200px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.nav-link.contact {
    margin-bottom: -2.5rem;
  }
}

@media screen and (max-width: 1200px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.sns {
    margin-bottom: -2.5rem;
  }
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.sns i {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1;
}

header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.sns.insta {
  margin-right: -1rem;
}

@media screen and (max-width: 1366px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.sns.insta {
    margin-right: 0;
  }
}

@media screen and (max-width: 1200px) {
  header#header .navbar .container-fluid .navbar-collapse .navbar-nav a.sns.insta {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 991px) {
  header#header .navbar .container-fluid .spIcons {
    position: fixed;
    top: 1.3rem;
    right: 5rem;
    display: flex !important;
    gap: 0 1rem;
  }
  header#header .navbar .container-fluid .spIcons a {
    display: block;
  }
  header#header .navbar .container-fluid .spIcons a.sns {
    width: 18px;
  }
  header#header .navbar .container-fluid .spIcons a.contact {
    width: 85px;
    margin-top: 0;
  }
}

header#header .navbar.scrolldown {
  box-shadow: 0px 3px 10px -5px #231815;
}

header#header .navbar.scrolldown .container-fluid {
  height: 60px;
}

header#header .navbar.scrolldown .container-fluid a.navbar-brand {
  width: 200px;
}

header#header .rightFixedBox {
  position: fixed;
  right: 0;
  top: 100px;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  gap: 3%;
  padding-top: 0;
  white-space: nowrap;
  z-index: 999;
  transition: 0.3s ease-in;
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox {
    writing-mode: inherit;
    top: 1rem;
    gap: 0.6rem;
    padding-top: 0;
    right: 5.5rem;
  }
}

header#header .rightFixedBox.scrolldown {
  top: 60px;
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox.scrolldown {
    top: 1rem;
  }
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox .contact {
    order: 2;
  }
}

header#header .rightFixedBox .contact a {
  background: #202C86;
  color: #fff;
  display: block;
  padding: 2rem 1rem;
  letter-spacing: 0.3rem;
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox .contact a {
    background: #796A56;
    font-size: 1rem;
    text-align: center;
    padding: 0.3rem 0.5rem 0.4rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}

header#header .rightFixedBox .contact a span {
  position: relative;
  left: 4px;
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox .contact a span {
    font-size: 0;
    display: block;
    left: 0;
  }
}

header#header .rightFixedBox .insta a {
  display: block;
  padding-right: 1.1rem;
  font-weight: 600;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox .insta a {
    font-size: 1rem;
    text-align: center;
    padding-right: 0;
    padding-top: 0.3rem;
  }
}

header#header .rightFixedBox .insta a i {
  font-size: 2.2rem;
  color: #202C86;
  margin-bottom: 0.5rem;
  vertical-align: 2px;
}

@media screen and (max-width: 991px) {
  header#header .rightFixedBox .insta a i {
    margin-bottom: 0;
    display: block;
    font-size: 1.4rem;
  }
}

header#header .topFixedBox {
  position: fixed;
  right: 2rem;
  top: 1rem;
  z-index: 1000;
  font-size: 1.2rem;
  color: #231815;
  transition: 0.3s ease-in;
}

@media screen and (max-width: 991px) {
  header#header .topFixedBox {
    font-size: 1rem;
    right: 0.5rem;
    top: 5.5rem;
    white-space: nowrap;
    text-align: right;
    z-index: 998;
  }
}

header#header .topFixedBox.scrolldown {
  top: 0.5rem;
  font-size: 1rem;
}

@media screen and (max-width: 991px) {
  header#header .topFixedBox.scrolldown {
    top: 5.5rem;
    opacity: 0;
    height: 0;
  }
}

/*------------------------------------------------------------
	フッター
  ------------------------------------------------------------*/
.secAccess {
  background: #E7E7D3;
}

@media screen and (max-width: 991px) {
  .secAccess {
    padding: 5rem 0 4rem !important;
    width: 100% !important;
  }
}

.secAccess .inner-l {
  justify-content: center;
  padding: 0 1.5rem;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

.secAccess .inner-l #gMap {
  width: 60%;
  aspect-ratio: 84.5/50;
}

@media screen and (max-width: 1200px) {
  .secAccess .inner-l #gMap {
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l #gMap {
    width: 100%;
    aspect-ratio: 320/190;
  }
}

.secAccess .inner-l #gMap iframe {
  width: 100%;
  height: 100%;
}

.secAccess .inner-l .txtBox {
  width: 40%;
  padding: 3rem 0rem 0rem 6rem;
}

@media screen and (max-width: 1200px) {
  .secAccess .inner-l .txtBox {
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox {
    width: 100%;
    padding: 2rem 0 0 0;
  }
}

.secAccess .inner-l .txtBox .ttl {
  width: 293px;
  margin-bottom: 4rem;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .ttl {
    width: 190px;
    margin-bottom: 2rem;
  }
}

.secAccess .inner-l .txtBox .ttl2 {
  margin-bottom: 1.5rem;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .ttl2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

.secAccess .inner-l .txtBox .address {
  margin-bottom: 1.5rem;
  line-height: 2.2;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .address {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 2;
  }
}

.secAccess .inner-l .txtBox .tel {
  font-size: 3.6rem;
  font-weight: var(--medium);
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .tel {
    font-size: 2.4rem;
  }
}

.secAccess .inner-l .txtBox .fax {
  margin-bottom: 3rem;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .fax {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .snsBox {
    text-align: center;
  }
}

.secAccess .inner-l .txtBox .snsBox a.sns:first-child {
  margin-right: 1.5rem;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .snsBox a.sns:first-child {
    margin-right: 2rem;
  }
}

.secAccess .inner-l .txtBox .snsBox a.sns i {
  font-size: 3.2rem;
}

@media screen and (max-width: 991px) {
  .secAccess .inner-l .txtBox .snsBox a.sns i {
    font-size: 3.8rem;
  }
}

.footer {
  text-align: center;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.footer .inner-l {
  padding: 8rem 0 3rem;
}

@media screen and (max-width: 991px) {
  .footer .inner-l {
    padding: 5rem 0 3rem;
  }
}

.footer .inner-l .group h2.baseTtl {
  margin-bottom: 7rem;
}

@media screen and (max-width: 991px) {
  .footer .inner-l .group h2.baseTtl {
    margin-bottom: 3rem;
  }
}

.footer .inner-l .group .ban {
  gap: 3rem;
  margin-bottom: 6rem;
  padding: 0 1.5rem;
}

@media screen and (max-width: 991px) {
  .footer .inner-l .group .ban {
    display: block;
  }
}

.footer .inner-l .group .ban a {
  width: calc(50% - 1.5rem);
}

@media screen and (max-width: 991px) {
  .footer .inner-l .group .ban a {
    width: 75%;
    display: block;
    margin: 0 auto 1.5rem;
  }
}

.footer .inner-l a.home {
  width: 293px;
  display: block;
  margin: 0 auto 5rem;
}

@media screen and (max-width: 991px) {
  .footer .inner-l a.home {
    width: 210px;
    margin: 0 auto 2rem;
  }
}

.footer .inner-l .links {
  margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
  .footer .inner-l .links {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
}

.footer .inner-l .links span {
  margin: 0 1rem;
}

@media screen and (max-width: 991px) {
  .footer .inner-l .copy {
    font-size: 1rem;
  }
}

body.about footer {
  background: #fff;
}

body.about footer .inner-l .links span {
  color: #231815;
}

body.about footer .inner-l .copy {
  color: #231815;
}

/*-- page top --*/
#go_pagetop {
  position: fixed;
  right: 1.7rem;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  #go_pagetop {
    right: 1rem;
  }
}

#go_pagetop a img {
  width: 69px;
}

@media screen and (max-width: 991px) {
  #go_pagetop a img {
    width: 42px;
  }
}

/*------------------------------------------------------------
	共通
  ------------------------------------------------------------*/
.-center {
  text-align: center;
}

.-flex {
  display: flex;
  flex-wrap: wrap;
}

.-white {
  color: #fff;
}

.-lh2 {
  line-height: 2;
}

:root {
  --medium: 500;
  --semiBold: 600;
  --black: 900;
}

/*# sourceMappingURL=base.css.map */