*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 17px;
  letter-spacing: 0;
  background: var(--page-bg);
  color: var(--page-txt-color);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.75;
  position: relative;
}

html {
  scroll-padding-top: 95px;
}

body {
  padding-top: 55px;
}

h1 {
  color: var(--h1-c);
}

h2 {
  color: var(--h2-c);
}

h3 {
  color: var(--h3-c);
}

h4 {
  color: var(--h4-c);
}

h5 {
  color: var(--h5-c);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

h4 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0;
}

h5 {
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0;
}

pre, code, var, samp, kbd, .mono {
  font-family: monospace;
}

pre, code, var, samp, kbd {
  font-size: 0.9rem;
  line-height: 1.2;
}

p {
  margin: 1em 0;
}

p + p {
  margin-top: 0.75em;
}

a {
  -webkit-text-decoration: underline var(--text-link-underline);
          text-decoration: underline var(--text-link-underline);
  color: var(--text-link);
}
a:hover {
  color: var(--text-link-a);
}
a:active, a:focus {
  color: var(--text-link-af);
}

hr {
  border: none;
  border-top: 1px solid var(--border-color);
}

input[type=checkbox],
input[type=checkbox] + label,
input[type=radio],
input[type=radio] + label,
input[type=date],
input[type=date] + label,
input[type=datetime],
input[type=datetime] + label,
input[type=datetime-local],
input[type=datetime-local] + label,
select {
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=datetime],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime-local],
input[type=number],
textarea {
  padding: 7px 10px 6px 10px;
  border: none;
  background-color: var(--ip-bg);
  color: var(--ip-c);
  font-size: 1rem;
  min-height: 31px;
  border-radius: 2px;
}
input[type=text]:hover,
input[type=password]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=url]:hover,
input[type=email]:hover,
input[type=datetime]:hover,
input[type=date]:hover,
input[type=month]:hover,
input[type=week]:hover,
input[type=time]:hover,
input[type=datetime-local]:hover,
input[type=number]:hover,
textarea:hover {
  background-color: var(--ip-bg-h);
  color: var(--ip-c-h);
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=number]:focus,
input[type=number]:active,
textarea:focus,
textarea:active {
  outline: solid 2px var(--ip-border);
  caret-color: var(--caret-color);
  background-color: var(--ip-bg-af);
  color: var(--ip-c-af);
}
input[type=text]:focus-visible,
input[type=password]:focus-visible,
input[type=search]:focus-visible,
input[type=tel]:focus-visible,
input[type=url]:focus-visible,
input[type=email]:focus-visible,
input[type=datetime]:focus-visible,
input[type=date]:focus-visible,
input[type=month]:focus-visible,
input[type=week]:focus-visible,
input[type=time]:focus-visible,
input[type=datetime-local]:focus-visible,
input[type=number]:focus-visible,
textarea:focus-visible {
  border: none;
  outline: solid 2px var(--outline-color);
  outline-offset: 0;
}
input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--ip-place-holder);
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--ip-place-holder);
}
input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--ip-place-holder);
}
input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=datetime]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=month]::-ms-input-placeholder, input[type=week]::-ms-input-placeholder, input[type=time]::-ms-input-placeholder, input[type=datetime-local]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--ip-place-holder);
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=email]::placeholder,
input[type=datetime]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime-local]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: var(--ip-place-holder);
}

textarea {
  line-height: 1.75;
  display: block;
  height: auto;
}

input[type=datetime],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime-local] {
  padding: 4px 10px;
}

input[type=date] {
  width: 140px;
}

input[type=date]::-webkit-calendar-picker-indicator {
  margin: 0;
  cursor: pointer;
}

select {
  margin: 0;
  padding: 6px 10px;
  padding-right: 36px;
  border: solid 2px var(--ip-border);
  background: var(--ip-bg);
  color: var(--ip-c);
  font-size: 14px;
  border-radius: 2px;
  position: relative;
}
select:hover {
  border: solid 2px var(--ip-border-h);
  background: var(--ip-bg-h);
}
select:focus {
  border: solid 2px var(--ip-border-af);
  background: var(--ip-bg-af);
}
select:invalid {
  color: var(--select-invaild);
}
select:focus-visible {
  outline: solid;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-spacing: 0;
}

.btn-container,
.btn-container-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.btn-container-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}

.btn-container-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 6px;
}

.btn-def {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-def:hover {
  cursor: pointer;
}
.btn-def svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-def:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-def {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-def svg {
  color: #162e56;
}
.btn-def:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-def:hover svg {
  color: #162e56;
}
.btn-def:active, .btn-def:focus {
  background: #162e56;
  color: #fff;
}
.btn-def:active svg, .btn-def:focus svg {
  color: #fff;
}
.btn-def:focus-visible {
  outline-color: #0054e7;
}

.btn-defR {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-defR:hover {
  cursor: pointer;
}
.btn-defR svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-defR:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-defR {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-defR svg {
  color: #162e56;
}
.btn-defR:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-defR:hover svg {
  color: #162e56;
}
.btn-defR:active, .btn-defR:focus {
  background: #162e56;
  color: #fff;
}
.btn-defR:active svg, .btn-defR:focus svg {
  color: #fff;
}
.btn-defR:focus-visible {
  outline-color: #0054e7;
}
.btn-defR svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px -3px -2px 3px;
}

.btn-small {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-small:hover {
  cursor: pointer;
}
.btn-small svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-small:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-small {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-small svg {
  color: #162e56;
}
.btn-small:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-small:hover svg {
  color: #162e56;
}
.btn-small:active, .btn-small:focus {
  background: #162e56;
  color: #fff;
}
.btn-small:active svg, .btn-small:focus svg {
  color: #fff;
}
.btn-small:focus-visible {
  outline-color: #0054e7;
}
.btn-small {
  font-size: 12px;
  padding: 7px 8px 7px 7px;
}
.btn-small svg {
  display: block;
  width: 13px;
  height: 13px;
  margin: -3px 3px -3px 0;
}

.btn-smallR {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-smallR:hover {
  cursor: pointer;
}
.btn-smallR svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-smallR:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-smallR {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-smallR svg {
  color: #162e56;
}
.btn-smallR:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-smallR:hover svg {
  color: #162e56;
}
.btn-smallR:active, .btn-smallR:focus {
  background: #162e56;
  color: #fff;
}
.btn-smallR:active svg, .btn-smallR:focus svg {
  color: #fff;
}
.btn-smallR:focus-visible {
  outline-color: #0054e7;
}
.btn-smallR {
  font-size: 12px;
  padding: 7px 7px 7px 8px;
}
.btn-smallR svg {
  display: block;
  width: 13px;
  height: 13px;
  margin: -3px 0 -3px 3px;
}

.btn-extra-small {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-extra-small:hover {
  cursor: pointer;
}
.btn-extra-small svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-extra-small:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-extra-small {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-extra-small svg {
  color: #162e56;
}
.btn-extra-small:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-extra-small:hover svg {
  color: #162e56;
}
.btn-extra-small:active, .btn-extra-small:focus {
  background: #162e56;
  color: #fff;
}
.btn-extra-small:active svg, .btn-extra-small:focus svg {
  color: #fff;
}
.btn-extra-small:focus-visible {
  outline-color: #0054e7;
}
.btn-extra-small {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 8px;
}
.btn-header {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-header:hover {
  cursor: pointer;
}
.btn-header svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-header:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-header {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-header svg {
  color: #162e56;
}
.btn-header:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-header:hover svg {
  color: #162e56;
}
.btn-header:active, .btn-header:focus {
  background: #162e56;
  color: #fff;
}
.btn-header:active svg, .btn-header:focus svg {
  color: #fff;
}
.btn-header:focus-visible {
  outline-color: #0054e7;
}
.btn-header {
  padding: 8px 12px;
  font-size: 15px;
}
.btn-header svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: -2.5px 7px -2.5px -2px;
}

.btn-header-icon {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-header-icon:hover {
  cursor: pointer;
}
.btn-header-icon svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-header-icon:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-header-icon {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-header-icon svg {
  color: #162e56;
}
.btn-header-icon:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-header-icon:hover svg {
  color: #162e56;
}
.btn-header-icon:active, .btn-header-icon:focus {
  background: #162e56;
  color: #fff;
}
.btn-header-icon:active svg, .btn-header-icon:focus svg {
  color: #fff;
}
.btn-header-icon:focus-visible {
  outline-color: #0054e7;
}
.btn-header-icon {
  padding: 8px 12px;
  font-size: 15px;
}
.btn-header-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: -2.5px 0 -2.5px 0;
}

.btn-confirm {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-confirm:hover {
  cursor: pointer;
}
.btn-confirm svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-confirm:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-confirm {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-confirm svg {
  color: #162e56;
}
.btn-confirm:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-confirm:hover svg {
  color: #162e56;
}
.btn-confirm:active, .btn-confirm:focus {
  background: #162e56;
  color: #fff;
}
.btn-confirm:active svg, .btn-confirm:focus svg {
  color: #fff;
}
.btn-confirm:focus-visible {
  outline-color: #0054e7;
}
.btn-confirm {
  font-size: 16px;
  padding: 15px;
  min-width: 115px;
}
.btn-confirm.btn-c-Blue {
  font-weight: 600;
}

.btn-confirm-small {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-confirm-small:hover {
  cursor: pointer;
}
.btn-confirm-small svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-confirm-small:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-confirm-small {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-confirm-small svg {
  color: #162e56;
}
.btn-confirm-small:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-confirm-small:hover svg {
  color: #162e56;
}
.btn-confirm-small:active, .btn-confirm-small:focus {
  background: #162e56;
  color: #fff;
}
.btn-confirm-small:active svg, .btn-confirm-small:focus svg {
  color: #fff;
}
.btn-confirm-small:focus-visible {
  outline-color: #0054e7;
}
.btn-confirm-small {
  font-size: 15px;
  padding: 10px 15px;
  min-width: 115px;
}
.btn-confirm-small.btn-c-Blue {
  font-weight: 600;
}

.btn-confirm-large {
  margin: 0;
  padding: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
  font-size: 13px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.btn-confirm-large:hover {
  cursor: pointer;
}
.btn-confirm-large svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: -2px 3px -2px -3px;
}
.btn-confirm-large:focus-visible {
  outline: solid;
  outline-offset: 2px;
}
.btn-confirm-large {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-confirm-large svg {
  color: #162e56;
}
.btn-confirm-large:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-confirm-large:hover svg {
  color: #162e56;
}
.btn-confirm-large:active, .btn-confirm-large:focus {
  background: #162e56;
  color: #fff;
}
.btn-confirm-large:active svg, .btn-confirm-large:focus svg {
  color: #fff;
}
.btn-confirm-large:focus-visible {
  outline-color: #0054e7;
}
.btn-confirm-large {
  font-size: 16px;
  padding: 15px 40px;
  min-width: 150px;
  font-weight: 600;
}

.btn-c-def {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-c-def svg {
  color: #162e56;
}
.btn-c-def:hover {
  background: #eaf2ff;
  color: #162e56;
}
.btn-c-def:hover svg {
  color: #162e56;
}
.btn-c-def:active, .btn-c-def:focus {
  background: #162e56;
  color: #fff;
}
.btn-c-def:active svg, .btn-c-def:focus svg {
  color: #fff;
}
.btn-c-def:focus-visible {
  outline-color: #0054e7;
}

.btn-c-Primary {
  border: none;
  background: #0054e7;
  color: #fff;
}
.btn-c-Primary svg {
  color: #fff;
}
.btn-c-Primary:hover {
  background: rgb(27, 109.9090909091, 255);
  color: #fff;
}
.btn-c-Primary:hover svg {
  color: #fff;
}
.btn-c-Primary:active, .btn-c-Primary:focus {
  background: rgb(0, 65.4545454545, 180);
  color: #fff;
}
.btn-c-Primary:active svg, .btn-c-Primary:focus svg {
  color: #fff;
}

.btn-c-Secondary {
  border: none;
  background: #0054e7;
  color: #fff;
}
.btn-c-Secondary svg {
  color: #fff;
}
.btn-c-Secondary:hover {
  background: rgb(27, 109.9090909091, 255);
  color: #fff;
}
.btn-c-Secondary:hover svg {
  color: #fff;
}
.btn-c-Secondary:active, .btn-c-Secondary:focus {
  background: rgb(0, 65.4545454545, 180);
  color: #fff;
}
.btn-c-Secondary:active svg, .btn-c-Secondary:focus svg {
  color: #fff;
}

.btn-c-White-OL {
  padding: 8px;
  border: 1px solid;
}
.btn-c-White-OL.btn-small {
  padding: 6px 7px 6px 6px;
}
.btn-c-White-OL.btn-smallR {
  padding: 6px 6px 6px 7px;
}
.btn-c-White-OL.btn-confirm {
  padding: 14px;
}
.btn-c-White-OL {
  background: #fff;
  border-color: #efeff1;
  color: #162e56;
}
.btn-c-White-OL svg {
  color: #162e56;
}
.btn-c-White-OL:hover {
  background: rgb(27, 109.9090909091, 255);
  border-color: rgb(27, 109.9090909091, 255);
  color: #fff;
}
.btn-c-White-OL:hover svg {
  color: #fff;
}
.btn-c-White-OL:active, .btn-c-White-OL:focus {
  background: rgb(0, 65.4545454545, 180);
  border-color: rgb(0, 65.4545454545, 180);
  color: #fff;
}
.btn-c-White-OL:active svg, .btn-c-White-OL:focus svg {
  color: #fff;
}

.btn-c-Gray-Red {
  border: none;
  background: #efeff1;
  color: #162e56;
}
.btn-c-Gray-Red svg {
  color: #162e56;
}
.btn-c-Gray-Red:hover {
  background: #d12345;
  color: #fff;
}
.btn-c-Gray-Red:hover svg {
  color: #fff;
}
.btn-c-Gray-Red:active, .btn-c-Gray-Red:focus {
  background: #ae0027;
  color: #fff;
}
.btn-c-Gray-Red:active svg, .btn-c-Gray-Red:focus svg {
  color: #fff;
}

.btn-c-Inactive {
  border: none;
  background: #efeff1;
  color: #d5d5d5;
}
.btn-c-Inactive svg {
  color: #d5d5d5;
}
.btn-c-Inactive:hover {
  cursor: default;
  background: #efeff1;
  color: #d5d5d5;
}
.btn-c-Inactive:hover svg {
  color: #d5d5d5;
}
.btn-c-Inactive:active, .btn-c-Inactive:focus {
  background: #efeff1;
  color: #d5d5d5;
}
.btn-c-Inactive:active svg, .btn-c-Inactive:focus svg {
  color: #d5d5d5;
}

.header-bar {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(2);
}
@media screen and (max-width: 1125.5px) {
  .header-bar {
    padding: 0 25.5px;
  }
}

.header-bar-container {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1125.5px) {
  .header-bar-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header-bar-container .logo {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  padding: 1.5rem;
}
@media screen and (max-width: 1125.5px) {
  .header-bar-container .logo {
    padding: 1.5rem 0;
  }
}
.header-bar-container .logo a {
  color: var(--page-txt-color);
  text-decoration: none;
}
.header-bar-container .logo a:hover {
  color: var(--page-txt-color);
}
.header-bar-container .logo a:active, .header-bar-container .logo a:focus {
  color: var(--text-link-af);
}

.global-nav ul {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
}
.global-nav ul li {
  height: 100%;
}
.global-nav ul li a {
  height: 100%;
  padding: 1rem 1.5rem;
  color: #6a6b6c;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.global-nav ul li a span {
  margin: 2px 0 2px 0;
  padding: 0.4rem 0;
}
.global-nav ul li a.current {
  color: var(--page-txt-color);
  font-weight: 600;
}
.global-nav ul li a.current span {
  margin: 2px 0 0 0;
  border-bottom: 2px solid var(--page-txt-color);
}
.global-nav ul li a:hover {
  color: var(--page-txt-color);
}
.global-nav ul li a:hover span {
  margin: 2px 0 0 0;
  border-bottom: 2px solid var(--page-txt-color);
}
.global-nav ul li a:active, .global-nav ul li a:focus {
  color: #0054e7;
}
.global-nav ul li a:active span, .global-nav ul li a:focus span {
  margin: 2px 0 0 0;
  border-bottom: 2px solid #0054e7;
}
@media screen and (max-width: 1125.5px) {
  .global-nav {
    display: none;
  }
}
footer .footer-wave {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
footer .page-wrap {
  margin: 0;
  background: #ecf1fa;
}
footer .page-container {
  padding: 0;
  padding-top: 65px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .page-container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .page-container .left .cpr {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
footer .cpr-block {
  padding: 0 14px;
  border-left: 6px solid #0054e7;
}
footer .name {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
footer .address {
  margin: 0;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
footer .telfax {
  margin: 0;
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1em;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}
footer .telfax span {
  font-size: 18px;
  font-weight: 300;
  margin-right: 0.45em;
}
footer .telfax .tel a {
  text-decoration: none;
}
footer .telfax .tel a:hover {
  -webkit-text-decoration: underline var(--text-link-underline);
          text-decoration: underline var(--text-link-underline);
}
@media screen and (max-width: 1125.5px) {
  footer .page-container {
    padding-top: 25.5px;
  }
  footer .cpr-block {
    padding: 0 0 0 11px;
  }
  footer .name {
    font-size: 18px;
  }
  footer .address {
    font-size: 13px;
    margin-top: 13px;
  }
  footer .telfax {
    font-size: 16px;
    margin-top: 10px;
    gap: 0.5em;
  }
  footer .telfax span {
    font-size: 13px;
    margin-right: 0.2em;
  }
}
footer .update {
  font-size: 17px;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 1125.5px) {
  footer .update {
    font-size: 12px;
    margin-top: 25.5px;
  }
}
footer .copy-right {
  background: #212c36;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding: 1em;
}
footer .copy-right .page-container {
  padding: 0;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1125.5px) {
  footer .page-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bisday-cal {
  background: #fff;
  padding: 17px 21px 21px;
  border-radius: 6px;
}
@media screen and (max-width: 1125.5px) {
  .bisday-cal {
    margin-top: 25.5px;
    padding-left: 12.75px;
    padding-right: 12.75px;
  }
}
.bisday-title {
  margin: 0;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.bisday-title img {
  display: inline-block;
  height: 25px;
  margin-bottom: 2px;
  margin-right: 0.8em;
}
.bisday-title {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}

.closeday {
  margin-top: 18px;
}

table {
  width: 330px;
}
table th, table td {
  padding: 12px 14px;
  line-height: 1.2;
  border-top: 1px solid #558de0;
}
table tr:last-child th, table tr:last-child td {
  border-bottom: 1px solid #558de0;
}
table th {
  width: 78px;
  font-size: 15px;
  font-weight: 600;
}
table td {
  font-size: 16px;
  font-weight: 300;
  border-left: 1px solid #d5e0f4;
}
@media screen and (max-width: 1125.5px) {
  table {
    width: 100%;
  }
}
.page-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 1125.5px) {
  .page-wrap {
    padding: 0 25.5px;
  }
}
.page-container {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1125.5px) {
  .page-container {
    width: 100%;
  }
}
#head-mainvisual {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}

.head-mv-wp {
  position: relative;
  width: 100%;
  padding-bottom: 2%;
}

.head-mv-container {
  position: relative;
  overflow: hidden;
}

.head-mv {
  position: relative;
  display: block;
  aspect-ratio: 4000/876;
  width: 100%;
}
@media screen and (max-width: 1125.5px) {
  .head-mv {
    width: 129%;
  }
}
h1.head-mv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 490px;
  max-width: 90%;
}
h1.head-mv-title img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1125.5px) {
  h1.head-mv-title {
    max-width: 60%;
  }
}
.wave {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

p {
  color: #3e3e3e;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.88;
}

#pharmacy-list {
  margin-top: 40px;
}
#pharmacy-list h1 {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
#pharmacy-list h1 img {
  display: inline-block;
  height: 40px;
  margin-bottom: 2px;
  margin-right: 0.8em;
}
#pharmacy-list h1 {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 1125.5px) {
  #pharmacy-list h1 {
    margin-bottom: 20px;
    font-size: 19px;
  }
  #pharmacy-list h1 img {
    height: 24px;
    margin-right: 0.5em;
  }
  #pharmacy-list p {
    line-height: 1.7;
  }
}
.pharmacy-list {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1125.5px) {
  .pharmacy-list {
    margin-top: 30px;
  }
}
.pharmacy-list-links {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 23px;
  border-radius: 9px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fafafa;
}
.pharmacy-list-links p {
  text-decoration: none;
}
.pharmacy-list-links {
  color: #000;
}
.pharmacy-list-links:hover {
  -webkit-box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
}
.pharmacy-list-links:active, .pharmacy-list-links:focus {
  -webkit-box-shadow: 0px 5px 5px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 5px -6px rgba(0, 0, 0, 0.3);
  color: #000;
}
.pharmacy-list-links .name {
  margin: 0;
  padding: 10px 14px 10px 0;
  min-width: 295px;
  border-right: 1px solid #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 14px;
}
.pharmacy-list-links .name::before {
  content: "";
  display: block;
  width: 13px;
  height: 16px;
  background-image: url("../img/triangle.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pharmacy-list-links p.desc {
  margin: 0;
  padding: 0 0 0 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}
.pharmacy-list-links::after {
  content: "";
  display: block;
  width: 13px;
  min-width: 13px;
  height: 13px;
  min-height: 13px;
  background-image: url("../img/newwindow-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1125.5px) {
  .pharmacy-list-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 17px;
  }
  .pharmacy-list-links p {
    line-height: 1.3 !important;
  }
  .pharmacy-list-links p br.pc {
    display: none;
  }
  .pharmacy-list-links .name {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 0 15px 0;
  }
  .pharmacy-list-links .name::after {
    content: "";
    display: block;
    width: 13px;
    min-width: 13px;
    height: 13px;
    min-height: 13px;
    background-image: url("../img/newwindow-icon.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
  }
  .pharmacy-list-links p.desc {
    font-size: 16px;
    padding: 15px 0 0 0;
  }
  .pharmacy-list-links::after {
    display: none;
  }
}
.pharmacy-list-links.gairai {
  background: #fef9ec;
}
.pharmacy-list-links.gairai .name::before {
  background-image: url("../img/triangle-yellow.svg");
}
.pharmacy-list-links.zaitaku {
  background: #f1fbe9;
}
.pharmacy-list-links.zaitaku .name::before {
  background-image: url("../img/triangle-green.svg");
}
.pharmacy-list-links.other {
  background: #fef5ec;
}
.pharmacy-list-links.other .name::before {
  background-image: url("../img/triangle-orange.svg");
}
.pharmacy-list-links.night {
  background: #eaf5fd;
}
.pharmacy-list-links.night .name::before {
  background-image: url("../img/triangle-blue.svg");
}
.pharmacy-list-links.holiday {
  background: #fdf5fc;
}
.pharmacy-list-links.holiday .name::before {
  background-image: url("../img/triangle-pink.svg");
}
.pharmacy-list-links:active.gairai, .pharmacy-list-links:focus.gairai {
  background: #ffefc8;
}
.pharmacy-list-links:active.zaitaku, .pharmacy-list-links:focus.zaitaku {
  background: #d8f9c6;
}
.pharmacy-list-links:active.other, .pharmacy-list-links:focus.other {
  background: #ffe4ca;
}
.pharmacy-list-links:active.night, .pharmacy-list-links:focus.night {
  background: #c6e9fe;
}
.pharmacy-list-links:active.hihoken, .pharmacy-list-links:focus.hihoken {
  background: #ffd7f5;
}

a.pharmacy-list-links {
  text-decoration: none;
}

#pharmacy-map {
  margin-top: 100px;
  margin-bottom: 100px;
}
#pharmacy-map h1 {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
#pharmacy-map h1 img {
  display: inline-block;
  height: 42px;
  margin-bottom: 2px;
  margin-right: 0.8em;
}
#pharmacy-map h1 {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}
#pharmacy-map h2 {
  font-size: 24px;
}
#pharmacy-map h2 span {
  font-size: 16px;
}
#pharmacy-map iframe {
  border: none;
}
@media screen and (max-width: 1125.5px) {
  #pharmacy-map {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #pharmacy-map h1 {
    margin-bottom: 20px;
    font-size: 19px;
  }
  #pharmacy-map h1 img {
    height: 25px;
    margin-right: 0.5em;
  }
}
.pharmacy-map-list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (max-width: 1125.5px) {
  .pharmacy-map-list-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
a.print {
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 10px;
  margin-left: 10px;
  text-decoration: none;
}
a.print:hover {
  -webkit-text-decoration: underline var(--text-link-underline);
          text-decoration: underline var(--text-link-underline);
  background: #f0f0f0;
}
a.print img {
  height: 1.3em;
  display: block;
  margin-right: 0.4em;
}
@media screen and (max-width: 1125.5px) {
  a.print {
    margin: 0;
    margin-top: 10px;
    padding: 2px;
    border-radius: 4px;
    font-size: 14px;
  }
}
a.big-map {
  display: inline-block;
  margin: 0;
  margin-bottom: 0.5em;
  font-size: 20px;
  color: #000;
}
a.big-map::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 0.7em;
  min-width: 0.7em;
  height: 0.7em;
  min-height: 0.7em;
  background-image: url("../img/newwindow-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1125.5px) {
  a.big-map {
    font-size: 14px;
  }
}
.pharmacy-map-list ol {
  list-style: none;
  counter-reset: pml;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.pharmacy-map-list ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  width: 29%;
  min-width: 29%;
  max-width: 29%;
}
@media screen and (max-width: 1125.5px) {
  .pharmacy-map-list ol li {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 520px) and (max-width: 1125.5px) {
  .pharmacy-map-list ol li {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
  }
}
.pharmacy-map-list ol li a {
  text-decoration: none;
}
.pharmacy-map-list ol li a:hover {
  -webkit-text-decoration: underline var(--text-link-underline);
          text-decoration: underline var(--text-link-underline);
}
.pharmacy-map-list ol li::before {
  counter-increment: pml;
  content: counter(pml);
  font-size: 0.5em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.2em;
  height: 2.2em;
  background-color: #3c86cb;
  color: #fff;
  border-radius: 100%;
  margin-right: 0.8em;
}
/*# sourceMappingURL=style.css.map */