/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans CJK JP Thin"),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff) format('woff'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: local("Noto Sans CJK JP Light"),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff) format('woff'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format('woff'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans CJK JP Black"),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff) format('woff'),url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.otf) format('opentype');
}
*/
body, button, textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/*--------------------------------------

bese style

--------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

*:before, *:after {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-size: calc(1.285rem + 0.328125vw);
  line-height: 1.7;
}

body, button, textarea {
  color: #444444;
}

a {
  color: #3366ff;
}

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

p {
  line-height: 1.7;
}

li {
  list-style-type: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.ml15 {
  margin-left: 15px;
}

.ml30 {
  margin-left: 30px;
}

.pcOnly {
  display: none;
}

.spNone {
  display: none;
}

.blockCenter {
  margin-right: auto;
  margin-left: auto;
}

.centerBox {
  max-width: 990px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.centerBox--980 {
  max-width: 1010px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.centerBox--1180 {
  max-width: 1210px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/*--------------------------------------

header style

--------------------------------------*/

.headerWrap {
  position: relative;
}

.headerIcon {
  max-width: 280px;
  width: calc(100% - 100px);
  padding: 27px 15px 18px 15px;
}

.headerTopLink {
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}
.headerTopLink:hover {
  opacity: 0.8;
}

.navName {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  padding: 15px 0;
  cursor: pointer;
}

.navNameMin {
  padding: 0;
}

.navTreeWrap {
  display: none;
  padding: 0 0 0;
}

.navItem:hover .navName {
  color: #FFAE44;
}

.navTree {
  display: block;
  padding: 0 0 10px;
}

.navBranchLink {
  display: block;
  position: relative;
  transition: 0.3s;
  padding: 8px 0 8px 20px;
  text-decoration: none;
  color: #444;
}
.navBranchLink:hover {
  opacity: 0.8;
}
.navBranchLink::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #FFAE44;
  border-right: solid 3px #FFAE44;
  position: absolute;
  left: 0;
  top: 16px;
  transform: rotate(45deg);
}

.headFacilityBtn {
  cursor: pointer;
  padding: 10px 10px 6px;
  border: solid 1px #CCCCCC;
  background: #F9F9F9;
  border-radius: 4px;
  position: absolute;
  top: 13px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.headFacilityBtn.on {
  padding: 10px 10px 6px;
  border: solid 1px #CCCCCC;
  background: #F9F9F9;
  border-radius: 4px;
  position: fixed;
  top: 13px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.headSelstText {
  font-size: calc(1.255rem + 0.046875vw);
}

.headFacilityList {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.headFacilityList::before {
  content: "";
  height: 80px;
  width: 100%;
  background: #F2F2F2;
}

.headFacilityLink {
  display: block;
  background: #F2F2F2;
  color: #444;
  font-size: calc(1.255rem + 0.046875vw);
  line-height: 1.3;
  transition: 0.3s;
  text-decoration: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 10px;
}
.headFacilityLink:hover {
  color: #fff;
  background: #FFAE44;
}

.btnWrap {
  background: #FFAE44;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  position: relative;
  height: 20px;
  width: 25px;
}
.btn span {
  position: absolute;
  display: block;
  background: #fff;
  height: 2px;
  width: 25px;
  transition: 0.3s;
}
.btn span:nth-of-type(1) {
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
}
.btn span:nth-of-type(2) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn span:nth-of-type(3) {
  left: 50%;
  top: calc(50% - 10px);
  transform: translate(-50%, -50%);
}

.btn.on span:nth-of-type(1) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(405deg);
}
.btn.on span:nth-of-type(2) {
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
}
.btn.on span:nth-of-type(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-405deg);
}

nav {
  display: none;
}

.navList {
  border-top: solid 5px #FFAE44;
  border-left: solid 5px #FFAE44;
  border-right: solid 5px #FFAE44;
  background: #fff;
  padding: 15px;
}

.navItem {
  border-bottom: solid 1px #CCCCCC;
}

.navLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
  padding: 15px 0;
}
.navLink:hover {
  color: #FFAE44;
}
.navLink::after {
  content: "";
  background: url(../images/header_arrow.svg) no-repeat;
  background-size: contain;
  width: 21px;
  height: 21px;
}

.subNuv {
  border-bottom: solid 5px #FFAE44;
  border-left: solid 5px #FFAE44;
  border-right: solid 5px #FFAE44;
  background: #fff;
  padding: 15px;
}

.subNuvLink {
  font-size: calc(1.265rem + 0.140625vw);
  position: relative;
  padding: 0 0 0 15px;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
}
.subNuvLink:hover {
  color: #FFAE44;
}
.subNuvLink span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.searchInner {
  position: relative;
}

.searchInputText {
  padding: 5px 30px 5px 10px;
  width: 100%;
  color: #CCCCCC;
}

.searchImg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.searchInputSubmit {
  display: none;
}

/*--------------------------------------

main style

--------------------------------------*/
.mainTop {
  padding: 0;
}

/*--------------------------------------

bread

--------------------------------------*/
.breadWrap {
  margin: 0 0 55px;
}

.bread {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  margin: 15px 0;
  padding: 5px;
}

.breadItem {
  display: flex;
  align-items: center;
  font-size: calc(1.265rem + 0.140625vw);
}

.breadItem a {
  color: #444444;
  text-decoration: none;
  font-size: calc(1.265rem + 0.140625vw);
  margin: 0 15px 0 0;
}
.breadItem a span {
  display: inline-block;
}

.breadItemIcon {
  margin: 0 15px 0 0;
}
.breadItemIcon img {
  min-width: 10px;
  height: 10px;
}

_:-ms-input-placeholder, :root .bread {
  overflow-y: hidden;
}

_:-ms-input-placeholder, :root .breadItem:last-of-type {
  padding: 3px 0 0;
}

.headFacilityLinkActive {
  background: #FFAE44;
  color: #fff;
}

/*--------------------------------------

footer style

--------------------------------------*/
.footerPageUp {
  padding: 50px 0 30px;
}

.footerUpLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  color: #444;
  font-weight: bold;
  text-decoration: none;
}
.footerUpLink:hover {
  opacity: 0.8;
}

.footerContent {
  background: #F9F9F9;
  padding: 40px 15px 40px;
}

.footerContentBg {
  max-width: 1180px;
  margin: 0 auto;
}

.footerLink {
  display: block;
  margin: 0 0 10px;
}

.footerTable {
  margin: 0 0 25px;
  max-width: 480px;
  width: 100%;
  border-top: solid 1px #CCCCCC;
}

.footerTableHead {
  display: block;
  width: 100%;
  text-align: left;
  vertical-align: top;
  padding: 10px 0 0;
}

.footerTableData {
  display: block;
  padding: 0 0 10px;
  border-bottom: solid 1px #CCCCCC;
}

.footerTime {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footerTimeTitle {
  margin-right: 7px;
}

.footerTel {
  display: flex;
  align-items: flex-start;
  font-size: calc(1.325rem + 0.703125vw);
  font-weight: bold;
}
.footerTel a {
  text-decoration: none;
  font-size: calc(1.325rem + 0.703125vw);
  font-weight: bold;
  color: #444;
}

.footerTelLink {
  margin: 0 0 0 10px;
}

.footerAddress {
  margin: 0 0 15px;
}

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

.footerOtherItem {
  margin: 0 10px 10px 0;
}

.otherImg01 img {
  max-width: 90px;
}

.otherImg02 img {
  max-width: 60px;
}

.otherImg03 img {
  max-width: 50px;
}

.otherImg04 img {
  max-width: 160px;
}

.footerGmap {
  position: relative;
  padding: 0 0 52%;
}
.footerGmap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 299px;
}

.footerSub {
  padding: 40px 15px 20px;
}

.footerSubList {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footerSubItem {
  margin: 0 20px 10px 0;
}

.footerSubLink {
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
  font-size: calc(1.265rem + 0.140625vw);
}
.footerSubLink:hover {
  opacity: 0.8;
}
.footerSubLink span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footerCopy {
  background: #FFAE44;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

small {
  font-size: calc(1.265rem + 0.140625vw);
  color: #fff;
}

@media (min-width: 1000px) {
  body {
    font-size: 1.6rem;
  }
  .headSelstText {
    font-size: 1.3rem;
  }
  .headFacilityLink {
    font-size: 1.3rem;
  }
  .subNuvLink {
    font-size: 1.4rem;
  }
  .breadItem {
    font-size: 1.4rem;
  }
  .breadItem a {
    font-size: 1.4rem;
  }
  .footerTel {
    font-size: 2rem;
  }
  .footerTel a {
    font-size: 2rem;
  }
  .footerSubLink {
    font-size: 1.4rem;
  }
  small {
    font-size: 1.4rem;
  }
}

@media print {
  body {
    width: 960px;
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 500px) {
  .footerTableHead {
    display: table-cell;
    width: 130px;
    border-bottom: solid 1px #CCCCCC;
    padding: 15px 0;
  }
  .footerTableData {
    padding: 15px 0;
  }
  .footerTimeBefore {
    margin: 0 20px 0 0;
  }
  .footerSubList {
    justify-content: flex-end;
  }
}

@media print, screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
  .spNone {
    display: block;
  }
  .telLink {
    pointer-events: none;
    text-decoration: none;
  }
  .flex-row--768 {
    display: flex;
  }
  .flex-row-sb--768 {
    display: flex;
    justify-content: space-between;
  }
  .footerContent {
    padding: 60px 15px 40px;
  }
  .footerContentBg {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footerMain {
    width: 50%;
  }
  .footerMap {
    width: calc(50% - 10px);
  }
  .footerSub {
    padding: 30px 15px 20px;
  }
}

@media print, screen and (min-width: 960px) {
  .pcOnly {
    display: block;
  }
  .headerLine {
    position: relative;
    border-bottom: solid 5px #FFAE44;
    z-index: 1;
  }
  .headerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
  }
  .headerIcon {
    padding: 18px 0 18px 15px;
  }
  .headerMenu {
    margin: 0 0 0 10px;
  }
  .navName {
    padding: 0;
    border-left: solid 1px #CCCCCC;
    justify-content: center;
  }
  .navName span {
    display: none;
  }
  .navTreeWrap {
    padding: 20px 0 0 !important;
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 1;
  }
  .navTree {
    display: flex;
    align-items: flex-start;
    border: solid 1px #ccc;
    background: #fff;
    box-shadow: 4px 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    padding: 35px;
  }
  .navBranch {
    margin: 0 20px 0 0;
  }
  .navBranchLink {
    padding: 0 0 0 20px;
    display: inline-block;
  }
  .navBranchLink::before {
    top: 10px;
  }
  .headFacilityBtn {
    display: none;
  }
  .headFacilityBtn.on {
    display: none;
  }
  .headFacilityList {
    transform: translateX(0);
    background: transparent;
    position: static;
    display: flex !important;
    justify-content: space-between;
    margin: 60px 15px 0 0;
  }
  .headFacilityList::before {
    display: none;
  }
  .headFacilityItem:not(:last-of-type) {
    margin: 0 8px 0 0;
  }
  .headFacilityItem {
    display: flex;
    align-items: stretch;
  }
  .headFacilityLink {
    text-align: center;
    padding: 7px;
  }
  .btnWrap {
    display: none;
  }
  nav {
    display: block !important;
  }
  .navMain {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 5px);
  }
  .navList {
    display: flex;
    justify-content: space-between;
    max-width: 1180px;
    border-top: solid 0 #FFAE44;
    border-left: solid 0 #FFAE44;
    border-right: solid 0 #FFAE44;
    margin: 0 auto;
    background: transparent;
  }
  .navList .navItem:last-of-type .navName {
    border-right: solid 1px #CCCCCC;
  }
  .navItem {
    width: 100%;
    border-bottom: solid 0 #CCCCCC;
  }
  .navLink span {
    display: none;
  }
  .navLink {
    padding: 0;
    justify-content: center;
  }
  .navLink::after {
    display: none;
  }
  .subNuv {
    border-bottom: solid 0 #FFAE44;
    border-left: solid 0 #FFAE44;
    border-right: solid 0 #FFAE44;
    position: absolute;
    right: 0;
    top: 0;
  }
  .subNuvList {
    display: flex;
    align-items: center;
  }
  .subNuvItem {
    margin: 0 10px 0 0;
  }
  .searchInputText {
    width: auto;
  }
  .mainTop {
    padding: 57px 0 0;
  }
  .bread {
    margin: 0 0 50px;
  }
}

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