@charset "UTF-8";
/* ==================================================
    0. ベース
   ================================================== */
html {
  font-weight: 400;
  font-size: 62.5%;
  font-family: arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
html .ios-pre18 {
  font-family: arial, "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
}

:root {
  --scroll-bar-width: 0;
  --headerHeight: 128px;
}

* {
  outline: 0;
}

body {
  font-size: 1.6rem;
  color: #121212;
  min-width: 1024px;
  padding-top: 128px;
  padding-top: var(--headerHeight);
}
body.-fixed {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  padding-right: var(--scroll-bar-width);
  min-width: calc(1024px + var(--scroll-bar-width));
}
body.-fixed::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--scroll-bar-width);
  background: #FFFFFF;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* ==================================================
    1. モジュール
   ================================================== */
/* .Link 通常リンク
  ---------------------- */
.Link {
  color: #002E5D;
  text-decoration: underline;
}

/* .Link modifier status */
.Link.-Blank::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 14px;
  height: 12px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 14px 12px;
  vertical-align: middle;
}
.Link.-external::after, .Link[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 14px;
  height: 12px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 14px 12px;
  vertical-align: middle;
}
.Link.-external[href$=pdf]::after, .Link[target=_blank][href$=pdf]::after {
  position: relative;
  top: -1px;
  width: 17px;
  height: 20px;
  background-image: url(/image/cmn/ico_link_pdf.png);
  background-size: 17px 20px;
}
.Link.-modal {
  cursor: pointer;
}
.Link.-modal::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 16px;
  height: 14px;
  background: url(/image/cmn/ico_link_modal.png) no-repeat center;
  background-size: 16px 14px;
  vertical-align: middle;
}
.Link.-back {
  display: block;
  margin-top: 27px;
  text-align: center;
}

/* .LinkTransition 一覧遷移リンク
  ---------------------- */
.LinkTransition {
  display: inline-block;
  padding-left: 55px;
  background: url(/image/cmn/ico_link_transition.png) no-repeat left top 4px;
  background-size: 26px auto;
  font-size: 1.6rem;
  font-weight: 600;
  color: #002E5D;
  line-height: 1;
  transform: translateX(0);
  transition: 300ms easein;
  transition-property: transform;
}

/* .LinkTransition modifier size */
.LinkTransition.-assist {
  padding-left: 27px;
  font-size: 1.3rem;
  background-image: url(/image/cmn/ico_link_transition-assist.png);
  background-position-y: 2px;
  background-size: 17px auto;
}

/* .LinkTransition modifier status */

/* .LinkTransition 外部リンク */
.LinkTransition.-targetBlank::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 14px;
  height: 12px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 14px 12px;
}

/* .LinkAssist コンテンツ補助リンク
  ---------------------- */
.LinkAssist {
  color: #002E5D;
  text-decoration: underline;
}

/* .LinkAssist modifier status */
.LinkAssist.-arrowed::before {
  content: "";
  display: inline-block;
  margin-top: -2px;
  margin-right: 10px;
  width: 5px;
  height: 8px;
  background: url(/image/cmn/ico_breadcrumb.png) no-repeat center;
  background-size: 5px 8px;
  vertical-align: middle;
}
.LinkAssist.-external::after, .LinkAssist[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 11px;
  width: 14px;
  height: 12px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 14px 12px;
  vertical-align: middle;
}
.LinkAssist.-external[href$=pdf]::after, .LinkAssist[target=_blank][href$=pdf]::after {
  position: relative;
  top: -1px;
  width: 17px;
  height: 20px;
  background-image: url(/image/cmn/ico_link_pdf.png);
  background-size: 17px 20px;
}

/* .Btn 汎用ボタン
  ---------------------- */
.Btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  min-height: 30px;
  background: no-repeat #FFFFFF center;
  border-radius: 60px;
  color: #002E5D;
  width: 100%;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0px 2px 8px rgba(1, 71, 147, 0.3);
  transition: 300ms easein;
  transition-property: background, box-shadow;
}

/* .Btn modifier color */
.Btn.-primaryBlue {
  color: #FFFFFF;
  background-color: #2E8BF0;
}
.Btn.-primaryPink {
  color: #FFFFFF;
  background-color: #EF6363;
}
.Btn.-secondary {
  color: #FFFFFF;
  background-color: #002E5D;
}
.Btn.-assist {
  border: 1px solid #002E5D;
  box-shadow: none;
}
.Btn.-disabled {
  pointer-events: none;
  background-color: #EEEEEE !important;
  color: #CCCCCC !important;
}
.Btn.-lineGreen {
  color: #FFFFFF;
  background-color: #06C755;
}

/* .Btn modifier size */
.Btn.-ty {
  height: 38px;
  font-size: 1.5rem;
  padding: 5px 0;
}
.Btn.-sm {
  height: 36px;
}
.Btn.-md {
  padding: 12px 20px;
  height: auto;
  min-height: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.Btn.-lg {
  padding: 5px 30px;
  height: 60px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

/* .Btn modifier status */
.Btn.-external, .Btn[target=_blank] {
  position: relative;
  padding-left: 30px;
  padding-right: 44px;
}
.Btn.-external::after, .Btn[target=_blank]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  margin-left: 11px;
  width: 14px;
  height: 12px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 14px 12px;
}
.Btn.-external.-secondary::after, .Btn.-external.-primaryBlue::after, .Btn.-external.-primaryPink::after, .Btn.-external.-lineGreen::after, .Btn[target=_blank].-secondary::after, .Btn[target=_blank].-primaryBlue::after, .Btn[target=_blank].-primaryPink::after, .Btn[target=_blank].-lineGreen::after {
  background-image: url(/image/cmn/ico_link_external_white.png);
}
.Btn.-disabled, .Btn:disabled {
  background-color: #EEEEEE;
  border: none;
  color: #CCCCCC;
  box-shadow: none;
  pointer-events: none;
}
.Btn.-disabled.-external::after, .Btn.-disabled[target=_blank]::after, .Btn:disabled.-external::after, .Btn:disabled[target=_blank]::after {
  background-image: url(/image/cmn/ico_link_external_gray.png);
}

/* .Btn modifier withIco */
.Btn.-withIco {
  position: relative;
  padding-left: 30px;
}
.Btn.-line {
  width: 120px;
  padding-right: 0;
}
.Btn.-line::after {
  content: none;
}
.Btn.-back {
  padding-left: 10px;
}
.Btn.-next {
  padding-left: 0;
  padding-right: 10px;
}
.Btn.-pdf {
  padding-right: 0;
}
.Btn.-pdf::after {
  content: none;
}
.Btn.-inspection.-sm {
  max-width: 240px;
}

.Btn__ico {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: no-repeat center;
  background-size: 16px 16px;
  transform: translateY(-50%);
}
.Btn__ico.-search {
  background-image: url(/image/cmn/ico_btn_search.png);
}
.Btn:disabled .Btn__ico.-search, .Btn.-disabled .Btn__ico.-search {
  background-image: url(/image/cmn/ico_btn_search-gray.png);
}
.Btn__ico.-line {
  left: 10px;
  width: 21px;
  height: 20px;
  background-image: url(/image/cmn/ico_btn_line.png);
  background-size: 21px 20px;
}
.Btn__ico.-lineGreen {
  left: 20px;
  width: 48px;
  height: 48px;
  background-image: url(/image/cmn/ico_btn_line_02.png);
  background-size: 48px;
}
.Btn__ico.-modal {
  left: 15px;
  width: 16px;
  height: 14px;
  background-image: url(/image/cmn/ico_link_modal.png);
  background-size: 16px 14px;
}
.Btn__ico.-back {
  left: 19px;
  width: 5px;
  height: 8px;
  background-image: url(/image/cmn/ico_arrow_left.png);
  background-size: 5px 8px;
}
.Btn__ico.-next {
  left: auto;
  right: 19px;
  width: 5px;
  height: 8px;
  background-image: url(/image/cmn/ico_arrow_left.png);
  transform: translateY(-50%) rotate(180deg);
  background-size: 5px 8px;
}
.Btn__ico.-pdf {
  left: 19px;
  width: 17px;
  height: 20px;
  background-image: url(/image/cmn/ico_link_pdf.png);
  background-size: 17px 20px;
}
.Btn__ico.-inspection {
  height: 14px;
  background-image: url(/image/cmn/ico_btn_inspection.png);
  background-size: 16px 14px;
}
.Btn__ico.-count {
  z-index: 10;
  left: 40px;
  width: 24px;
  height: 24px;
  background-image: url(/image/cmn/ico_count.png);
  background-size: 24px 24px;
}

/* FormItem フォーム項目
  ---------------------- */
.FormItem + .FormItem {
  margin-top: 32px;
}

.FormItem__ttl {
  display: flex;
  align-items: flex-start;
  color: #002E5D;
  font-weight: 600;
  margin-bottom: 8px;
}
.FormItem__ttl::before {
  content: "任意";
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 40px;
  height: 18px;
  background: #DCE6F2;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #002E5D;
}
.FormItem__ttl.-large {
  font-size: 1.6rem;
}
.FormItem__body.-fat {
  margin-top: 20px;
  padding: 24px;
}
.FormItem__body.-white {
  background: #FFFFFF;
}
.FormItem__body.-checkboxList {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px 24px;
  margin-top: 5px;
  margin-left: -10px;
  border-radius: 10px;
  background: #FFFFFF;
}
.FormItem__body.-checkboxList .Checkbox {
  width: calc(33.33% - 20px);
  margin: 10px;
}
.FormItem__body + .FormItem__body {
  margin-top: 8px;
}
.FormItem__label {
  letter-spacing: 0.01em;
}
.FormItem.-section {
  margin-top: 60px;
}
.FormItem.-required .FormItem__ttl::before {
  content: "必須";
  color: #FFFFFF;
  background: #002E5D;
}
.FormItem.-anyRequired .FormItem__ttl::before {
  content: "いずれか必須";
  position: relative;
  top: -1px;
  width: 84px;
  color: #FFFFFF;
  background: #002E5D;
}
.FormItem.-none .FormItem__ttl::before {
  display: none;
}
.FormItem__errorTxt {
  width: 100%;
  color: #D84532;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 8px;
}
.FormItem__example {
  margin-top: 10px;
  font-size: 1.3rem;
}
.FormItem__example::before {
  content: "例：";
}
.FormItem__inputWrap {
  width: 100%;
}
.FormItem__inputWrap.-suffix {
  position: relative;
}
.FormItem__inputWrap.-suffix::after {
  content: attr(data-suffix);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -0.5em;
  line-height: 1;
  color: #8F9FB1;
}
.FormItem__inputWrap.-suffix input[type=text],
.FormItem__inputWrap.-suffix input[type=email],
.FormItem__inputWrap.-suffix input[type=tel],
.FormItem__inputWrap.-suffix input[type=number] {
  padding-right: 3em;
}

/* .FormItem modifier layout */
.FormItem.-confirm {
  display: flex;
  align-items: flex-start;
  padding-bottom: 11px;
  border-bottom: 1px solid #C3D3E6;
}
.FormItem.-confirm:not(:first-of-type) {
  padding-top: 11px;
}
.FormItem.-confirm .FormItem__ttl {
  margin-bottom: 0;
  padding-right: 20px;
  width: 200px;
  line-height: 1.71;
}
.FormItem.-confirm .FormItem__ttl::after {
  display: none;
}
.FormItem.-confirm .FormItem__body {
  flex: 1;
  word-break: break-all;
  width: 100%;
  line-height: 1.71;
}
.FormItem.-confirm .FormItem__body > img {
  margin: 4px 0;
}
.FormItem.-hideTitle {
  margin-top: 8px;
}
.FormItem.-hideTitle .FormItem__ttl {
  display: none;
}

.FormItem .ListNote {
  margin-top: 10px;
}

.FormCaption {
  margin-bottom: 40px;
}

.FormItemGroup + .FormItem {
  margin-top: 32px;
}

/* input[type="text"] テキストボックス
   input[type="email"]
   input[type="tel"]
   input[type="number"]
  ---------------------- */
input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding-left: 19px;
  padding-right: 19px;
  width: 100%;
  height: 56px;
  background-color: #FFFFFF;
  border: 1px solid #A6B9D0;
  border-radius: 6px;
  font-size: 1.8rem;
  color: #121212;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder {
  color: #CCCCCC;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder {
  color: #CCCCCC;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder {
  color: #CCCCCC;
}
input[type=text]::-ms-clear,
input[type=email]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear {
  display: none;
}

/* input[type="text"] modifier size */
input[type=text].-sm,
input[type=email].-sm,
input[type=tel].-sm,
input[type=number].-sm {
  padding-left: 14px;
  padding-right: 14px;
  height: 44px;
  font-size: 1.6rem;
}

/* input[type="text"] modifier status */
input[type=text].-error,
input[type=email].-error,
input[type=tel].-error,
input[type=number].-error {
  background-color: #FCF0EF;
  border-color: #D84532;
}
input[type=text].-disabled, input[type=text]:disabled,
input[type=email].-disabled,
input[type=email]:disabled,
input[type=tel].-disabled,
input[type=tel]:disabled,
input[type=number].-disabled,
input[type=number]:disabled {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
  color: #CCCCCC;
}

/* input[type="number"] スピナー非表示 */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* textarea テキストボックス
  ---------------------- */
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 19px;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #A6B9D0;
  border-radius: 6px;
  font-size: 1.8rem;
  color: #121212;
  resize: none;
}
textarea::-moz-placeholder {
  color: #CCCCCC;
}
textarea:-ms-input-placeholder {
  color: #CCCCCC;
}
textarea::placeholder {
  color: #CCCCCC;
}

/* textarea modifier size */
textarea.-sm {
  padding: 14px;
  font-size: 1.6rem;
}

/* textarea modifier status */
textarea.-error {
  background-color: #FCF0EF;
  border-color: #D84532;
}
textarea.-disabled, textarea:disabled {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
  color: #CCCCCC;
}

/* .SelectBox セレクトボックス
  ---------------------- */
.SelectBox {
  position: relative;
  font-size: 1.8rem;
}
.SelectBox select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 19px;
  padding-right: 46px;
  height: 56px;
  width: 100%;
  border-radius: 6px;
  color: #121212;
  cursor: pointer;
  z-index: 1;
}
.SelectBox select::-moz-placeholder {
  color: #CCCCCC;
}
.SelectBox select:-ms-input-placeholder {
  color: #CCCCCC;
}
.SelectBox select::placeholder {
  color: #CCCCCC;
}
.SelectBox select::-ms-expand {
  display: none;
}
.SelectBox__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  border: 1px solid #A6B9D0;
  border-radius: 6px;
}
.SelectBox__bg::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 27px;
  display: block;
  width: 8px;
  height: 5px;
  background: url(/image/cmn/ico_select_arrow.png) no-repeat center;
  background-size: 8px 5px;
}

/* .SelectBox modifier size */
.SelectBox.-sm {
  font-size: 1.6rem;
}
.SelectBox.-sm select {
  padding-left: 14px;
  padding-right: 36px;
  height: 44px;
}
.SelectBox.-sm .SelectBox__bg::after {
  right: 9px;
  top: 20px;
}

/* .SelectBox modifier status */
.SelectBox.-error .SelectBox__bg {
  background-color: #FCF0EF;
  border-color: #D84532;
}
.SelectBox select:disabled {
  color: #CCCCCC;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 1;
}
.SelectBox select:disabled::-moz-placeholder {
  color: #CCCCCC;
}
.SelectBox select:disabled:-ms-input-placeholder {
  color: #CCCCCC;
}
.SelectBox select:disabled::placeholder {
  color: #CCCCCC;
}
.SelectBox select:disabled ~ .SelectBox__bg {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
}
.SelectBox select:disabled ~ .SelectBox__bg::after {
  opacity: 0.2;
}

/* .RadioBtn ラジオボタン
  ---------------------- */
.RadioBtn {
  display: flex;
  align-items: center;
}
.RadioBtn__input {
  position: relative;
}
.RadioBtn__input input[type=radio] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}
.RadioBtn__input + label {
  margin-left: 16px;
}
.RadioBtn__symbol {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  border: 1px solid #A6B9D0;
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}
.RadioBtn__symbol::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #002E5D;
  opacity: 0;
}
input[type=radio]:checked ~ .RadioBtn__symbol::after {
  opacity: 1;
}

/* .RadioBtn modifier status */
.RadioBtn input[type=radio]:disabled {
  pointer-events: none;
}
.RadioBtn input[type=radio]:disabled ~ .RadioBtn__symbol {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
}
.RadioBtn input[type=radio]:disabled ~ .RadioBtn__symbol::after {
  background-color: #CCCCCC;
}

/* .RadioSwitch ラジオスイッチ
  ---------------------- */
.RadioSwitch {
  display: flex;
  padding: 3px;
  background-color: #FFFFFF;
  border: 1px solid #A6B9D0;
  border-radius: 6px;
  max-width: 280px;
}
.RadioSwitch__item {
  position: relative;
  width: 100%;
  height: 36px;
  flex-grow: 1;
}
.RadioSwitch input[type=radio] {
  position: absolute;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
}
.RadioSwitch__label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  font-weight: 600;
  color: #002E5D;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}
.RadioSwitch input[type=radio]:checked ~ .RadioSwitch__label {
  background-color: #E4EEFA;
}

/* .RadioSwitch modifier style */
.RadioSwitch.-cats input[type=radio]:checked ~ .RadioSwitch__label {
  background-color: #FFDDDF;
}

/* .RadioSwitch modifier status */
.RadioSwitch.-disabled {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
}
.RadioSwitch.-disabled .RadioSwitch__label {
  color: #CCCCCC;
  cursor: default;
}
.RadioSwitch.-disabled input[type=radio]:checked ~ .RadioSwitch__label {
  background-color: #CCCCCC;
  color: #EEEEEE;
}

/* .Checkbox チェックボックス
  ---------------------- */
.Checkbox {
  display: flex;
  align-items: center;
}
* > .Checkbox {
  display: flex;
}
* > .Checkbox + .Checkbox {
  margin-left: 40px;
}
.Checkbox__input {
  position: relative;
  align-self: flex-start;
}
.Checkbox__input input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}
.Checkbox__input + label {
  margin-left: 10px;
}
.Checkbox__symbol {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  border: 1px solid #A6B9D0;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
.Checkbox__symbol::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 16px;
  height: 12px;
  border-radius: 20px;
  background: url(/image/cmn/ico_checkbox_sky-blue-l.png) no-repeat center;
  background-size: 16px 12px;
  pointer-events: none;
}
input[type=checkbox]:checked ~ .Checkbox__symbol {
  background-color: #2E8BF0;
  border-color: #2E8BF0;
}
input[type=checkbox]:checked ~ .Checkbox__symbol::after {
  background-image: url(/image/cmn/ico_checkbox_white.png);
}

/* .Checkbox modifier size */
.Checkbox.-sm .Checkbox__input input[type=checkbox] {
  width: 24px;
  height: 24px;
}
.Checkbox.-sm .Checkbox__symbol::after {
  top: 6px;
  left: 4px;
  width: 14px;
  height: 10px;
  background-image: url(/image/cmn/ico_checkbox-s_sky-blue-l.png);
}
.Checkbox.-sm input[type=checkbox]:checked ~ .Checkbox__symbol::after {
  background-image: url(/image/cmn/ico_checkbox_white.png);
}
.Checkbox.-sm .Checkbox__input + label {
  font-size: 1.5rem;
}
input[type=checkbox]:checked:not(:disabled) ~ .Checkbox__symbol.-pink {
  background-color: #EF6363;
  border-color: #EF6363;
}

/* .Checkbox modifier status */
.Checkbox.-error .Checkbox__symbol {
  background-color: #FCF0EF;
  border-color: #D84532;
}
.Checkbox input[type=checkbox]:disabled {
  pointer-events: none;
}
.Checkbox input[type=checkbox]:disabled ~ .Checkbox__symbol {
  background-color: #EEEEEE;
  border-color: #EEEEEE;
}
.Checkbox input[type=checkbox]:disabled ~ .Checkbox__symbol::after {
  background-image: url(/image/cmn/ico_checkbox_gray.png);
  opacity: 0;
}
.Checkbox input[type=checkbox]:disabled:checked ~ .Checkbox__symbol::after {
  opacity: 1;
}
.Checkbox.-sm input[type=checkbox]:disabled:checked ~ .Checkbox__symbol::after {
  background-image: url(/image/cmn/ico_checkbox-s_gray.png);
}

/* .FormZipCode 住所
  ---------------------- */
.FormZipCode {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.FormZipCode__input[type=tel] {
  width: 50%;
}
.FormZipCode__btn {
  margin-left: 20px;
}

/* .FormImgFile 画像ファイル
  ---------------------- */
.FormImgFile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.FormImgFile__file {
  width: 200px;
  position: relative;
}
.FormImgFile__input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  opacity: 0;
  z-index: -1;
}
.FormImgFile__name {
  margin-left: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.FormImgFile__preview {
  order: 1;
  width: 100%;
}
.FormImgFile__preview img {
  margin-top: 20px;
}
.FormImgFile__listNote {
  order: 1;
  width: 100%;
}

/* .FormUploadFile 画像ファイル
  ---------------------- */
.FormUploadFile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.FormUploadFile.-file01 {
  margin-top: 20px;
}
.FormUploadFile.-file02 {
  margin-top: 10px;
}
.FormUploadFile__file {
  width: 200px;
  position: relative;
}
.FormUploadFile__input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.FormUploadFile__name {
  margin-left: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 220px);
}
.FormUploadFile:not(:first-child) {
  margin-top: 15px;
}

.FormRadio--category .RadioBtn:nth-child(4) {
  margin-left: 0px;
}
.FormRadio--category .RadioBtn:nth-child(n+4) {
  margin-top: 12px;
}

.FormCategory__content.-collaboration, .FormCategory__content.-media, .FormCategory__content.-mpp {
  margin-top: 60px;
}

/* .Table テーブル
  ---------------------- */
.Table {
  width: 100%;
  border: 1px solid #DCE6F2;
  border-bottom: none;
}
.Table tr, .Table__row {
  border-bottom: 1px solid #DCE6F2;
}
.Table__row {
  display: flex;
}
.Table th, .Table td, .Table__ttl, .Table__dec {
  padding: 19px;
  line-height: 1.5em;
  background: #FFFFFF;
}
.Table th, .Table__ttl {
  color: #002E5D;
  font-weight: 600;
  vertical-align: middle;
  background: #F3F6F9;
}
.Table tr th:nth-child(n+2),
.Table tr td:nth-child(n+2), .Table__dec {
  border-left: 1px solid #DCE6F2;
}
.Table tbody th:first-child, .Table__ttl {
  width: 240px;
  padding-right: 20px;
}
.Table__dec {
  width: calc(100% - 240px);
}

.Table__scroll {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.Table__scrollViewport {
  width: 100%;
  overflow: auto;
}

/* .Table modifier theme */
.Table.-list {
  border: none;
}
.Table.-list th {
  vertical-align: top;
}
.Table.-list th, .Table.-list td {
  background-color: transparent;
  padding: 12px 0;
}
.Table.-list th.-ellipsis, .Table.-list td.-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Table.-list tr th:nth-child(n+2),
.Table.-list tr td:nth-child(n+2) {
  border: none;
}
.Table.-list th:first-child {
  padding-left: 20px;
}
.Table.-list tbody th:first-child {
  width: 220px;
  padding-right: 20px;
}
.Table.-list.-bordergray tr th, .Table.-list.-bordergray tr td {
  border-color: #E8E3DE;
}
.Table.-highest th, .Table.-highest td {
  padding: 24px 0;
  font-size: 1.6rem;
}
.Table.-highest tbody th:first-child {
  width: 185px;
}
.Table.-higher th,
.Table.-higher td {
  padding: 20px 0;
  font-size: 1.4rem;
}
.Table.-higher tbody th:first-child {
  width: 140px;
  padding-left: 0px;
}
.Table.-higher tbody tr:last-child {
  border-bottom: none;
}
.Table.-rows tbody {
  display: flex;
  flex-wrap: wrap;
}
.Table.-rows tbody th:first-child {
  width: 140px;
}
.Table.-rows tr {
  width: 50%;
}

/* .Table modifier layout */
.Table.-tight {
  max-width: 800px;
}
.Table tbody th:first-child.-tight, .Table__ttl.-tight {
  padding-left: 15px;
  padding-right: 10px;
  width: 180px;
}
.Table tbody th:first-child.-small, .Table__ttl.-small {
  padding-left: 15px;
  padding-right: 10px;
  width: 151px;
}

/* .List 並列リスト
  ---------------------- */
.List > li, .List > .List__item {
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}
.List > li:before, .List > .List__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  display: block;
  width: 8px;
  height: 8px;
  background: #002E5D;
  border-radius: 4px;
}
.List > li + li, .List > .List__item + .List__item {
  margin-top: 12px;
}

/* .List modifier layout */
.List.-tight > li + li,
.List.-tight > .List__item + .List__item {
  margin-top: 8px;
}
.List > li.-red,
.List > .List__item.-red {
  color: #D84532;
}

/* .ListOrdered 順列リスト
  ---------------------- */
.ListOrdered {
  counter-set: ordered;
}
.ListOrdered > li, .ListOrdered > .ListOrdered__item {
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
  counter-increment: ordered;
}
.ListOrdered > li:before, .ListOrdered > .ListOrdered__item:before {
  content: counter(ordered) ".";
  position: absolute;
  left: 0;
  top: 0.2em;
  display: block;
  line-height: 1;
  font-family: "Roboto", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
}
.ListOrdered > li + li, .ListOrdered > .ListOrdered__item + .ListOrdered__item {
  margin-top: 8px;
}

/* .ListOrdered modifier layout */
.ListOrdered.-tight > li + li,
.ListOrdered.-tight > .ListOrdered__item + .ListOrdered__item {
  margin-top: 3px;
}
.ListOrdered.-brackets > li,
.ListOrdered.-brackets > .ListOrdered__item {
  padding-left: 2em;
}
.ListOrdered.-brackets > li:before,
.ListOrdered.-brackets > .ListOrdered__item:before {
  content: "(" counter(ordered) ")";
}

/* .ListCheck チェックリスト
  ---------------------- */
.ListCheck > li, .ListCheck > .ListCheck__item {
  position: relative;
  padding: 1px 0 0 30px;
  line-height: 1.7;
}
.ListCheck > li:before, .ListCheck > .ListCheck__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  display: block;
  width: 20px;
  height: 20px;
  background: url(/image/cmn/ico_list_check.png) no-repeat center #2E8BF0;
  background-size: 12px 8px;
  border-radius: 10px;
}
.ListCheck > li + li, .ListCheck > .ListCheck__item + .ListCheck__item {
  margin-top: 8px;
}

/* .ListCheck modifier color */
.ListCheck.-pink > li:before,
.ListCheck.-pink > .ListCheck__item:before {
  background-color: #EF6363;
}

/* .ListCheck modifier layout */
.ListCheck.-tight > li + li,
.ListCheck.-tight > .ListCheck__item + .ListCheck__item {
  margin-top: 3px;
}

/* .ListNote 注釈リスト
  ---------------------- */
.ListNote {
  margin-top: 15px;
}
.ListNote > li, .ListNote > .ListNote__item {
  position: relative;
  padding-left: calc(1em + 8px);
  line-height: 1.7;
  font-size: 1.3rem;
}
.ListNote > li:before, .ListNote > .ListNote__item:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.ListNote > li .-bold, .ListNote > .ListNote__item .-bold {
  font-weight: 600;
}
.ListNote > li + li, .ListNote > .ListNote__item + .ListNote__item {
  margin-top: 4px;
}

/* .ListNote modifier layout */
.ListNote.-numbered {
  counter-set: note;
}
.ListNote.-numbered > li, .ListNote.-numbered > .ListNote.-numbered__item {
  counter-increment: note;
  padding-left: calc(1.5em + 8px);
}
.ListNote.-numbered > li:before, .ListNote.-numbered > .ListNote.-numbered__item:before {
  content: "※" counter(note);
  position: absolute;
  left: 0;
  top: 0;
}
.ListNote > li.-red, .ListNote > .ListNote__item.-red {
  color: #D84532;
}
.ListNote.-attention > li {
  color: #D84532;
  font-weight: 600;
}

/* .ListTxt 小項目
  ---------------------- */
.ListTxt {
  margin-top: 3px;
}
.ListTxt > li, .ListTxt > .ListTxt__item {
  position: relative;
  padding-left: 1em;
  line-height: 1.7;
  font-size: 1.3rem;
}
.ListTxt > li:before, .ListTxt > .ListTxt__item:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

/* .ListCheckTitle チェック付きタイトル + 説明文
  ---------------------- */
.ListCheckTitle__item {
  margin-top: 15px;
}
.ListCheckTitle .ItemHeading__txt {
  padding-top: 1px;
  font-size: 1.6rem;
}
.ListCheckTitle__itemDesc {
  margin-top: 10px;
}
.ListCheckTitle .ListNote {
  margin-top: 8px;
}

/* .StepList ステップリスト
  ---------------------- */
.ListStep {
  display: flex;
  align-items: center;
}
.ListStep__item {
  display: flex;
  align-items: center;
}
.ListStep__step {
  color: #2E8BF0;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.ListStep__step--num {
  margin-left: 6px;
  font-size: 1.7rem;
}
.ListStep__step--break {
  display: inline-block;
}
.ListStep__itemContent {
  text-align: center;
}
.ListStep__txt {
  margin-top: 12px;
  color: #002E5D;
  font-size: 1.5rem;
  font-weight: 600;
}

/* .Ico icon
  ---------------------- */
.Ico {
  position: relative;
  display: block;
  max-width: 100%;
  font-style: normal;
}
.Ico::before {
  content: "";
  display: block;
  width: 100%;
  background: no-repeat top center;
  background-size: 100%;
}

.Ico.-slash {
  width: 10px;
  height: 10px;
}
.Ico.-slash::before {
  position: absolute;
  top: -3px;
  left: 5px;
  display: block;
  width: 2px;
  height: 14px;
  background-color: #002E5D;
  transform: rotate(45deg);
}
.Ico.-slash.-dogs::before {
  background-color: #2E8BF0;
}
.Ico.-slash.-cats::before {
  background-color: #EF6363;
}
.Ico.-detailPad {
  width: 42px;
}
.Ico.-detailPad::before {
  padding-top: 103%;
  background-image: url(/image/cmn/ico_heading_detail.svg);
}
.Ico.-detailPad.-cats::before {
  background-image: url(/image/cmn/ico_heading_detail_pink.svg);
}
.Ico.-detailBook {
  width: 48px;
}
.Ico.-detailBook::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_book.svg);
}
.Ico.-exclamation {
  width: 20px;
}
.Ico.-exclamation::before {
  padding-top: 90%;
  background-image: url(/image/cmn/ico_exclamation.png);
}
.Ico.-tel {
  width: 18px;
}
.Ico.-tel::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_tel.svg);
}
.Ico.-clock {
  width: 20px;
}
.Ico.-clock::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_clock.svg);
}
.Ico.-pets_for_dish {
  width: 20px;
}
.Ico.-pets_for_dish::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_pets_for_dish.svg);
}
.Ico.-scissors {
  width: 20px;
}
.Ico.-scissors::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_scissors.svg);
}
.Ico.-kindergarten {
  width: 20px;
}
.Ico.-kindergarten::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_kindergarten.svg);
}
.Ico.-check {
  width: 20px;
}
.Ico.-check::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_check_blue.svg);
}
.Ico.-check.cats {
  width: 20px;
}
.Ico.-check.cats::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_check_pink.svg);
}
.Ico.-news {
  width: 82px;
}
.Ico.-news::before {
  padding-top: 57%;
  background-image: url(/image/cmn/ico_heading_news.svg);
}
.Ico.-mission {
  width: 42px;
}
.Ico.-mission::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_mission.svg);
}
.Ico.-search {
  width: 64px;
}
.Ico.-search::before {
  padding-top: 71%;
  background-image: url(/image/cmn/ico_heading_search.svg);
}
.Ico.-service {
  width: 48px;
}
.Ico.-service::before {
  padding-top: 96%;
  background-image: url(/image/cmn/ico_heading_service.svg);
}
.Ico.-specials {
  width: 50px;
}
.Ico.-specials::before {
  padding-top: 92%;
  background-image: url(/image/cmn/ico_heading_specials.svg);
}
.Ico.-specials-blue {
  width: 60px;
}
.Ico.-specials-blue::before {
  padding-top: 92%;
  background-image: url(/image/cmn/ico_heading_specials-blue.svg);
}
.Ico.-breeder {
  width: 66px;
}
.Ico.-breeder::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_breeder.svg);
}
.Ico.-healthcare {
  width: 64px;
}
.Ico.-healthcare::before {
  padding-top: 94%;
  background-image: url(/image/cmn/ico_heading_healthcare.svg);
}
.Ico.-inspection {
  width: 67px;
}
.Ico.-inspection::before {
  padding-top: 95%;
  background-image: url(/image/cmn/ico_heading_inspection.svg);
}
.Ico.-bowl {
  width: 66px;
}
.Ico.-bowl::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_bowl.svg);
}
.Ico.-shelf {
  width: 63px;
}
.Ico.-shelf::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_shelf.svg);
}
.Ico.-syringe {
  width: 63px;
}
.Ico.-syringe::before {
  margin-top: -3px;
  width: 66px;
  padding-top: 66px;
  background-image: url(/image/cmn/ico_heading_syringe.svg);
}
.Ico.-microchip {
  width: 63px;
}
.Ico.-microchip::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_microchip.svg);
}
.Ico.-house {
  width: 48px;
}
.Ico.-house::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_house.svg);
}
.Ico.-stethoscope {
  width: 63px;
}
.Ico.-stethoscope::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_stethoscope.svg);
}
.Ico.-support {
  width: 66px;
}
.Ico.-support::before {
  padding-top: 92%;
  background-image: url(/image/cmn/ico_heading_support.svg);
}
.Ico.-training {
  width: 72px;
}
.Ico.-training::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_training.svg);
}
.Ico.-trimming {
  width: 66px;
}
.Ico.-trimming::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_trimming.svg);
}
.Ico.-shop {
  width: 46px;
}
.Ico.-shop::before {
  padding-top: 85%;
  background-image: url(/image/cmn/ico_heading_shop.svg);
}
.Ico.-shop-blue {
  width: 60px;
}
.Ico.-shop-blue::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_shop-blue.svg);
}
.Ico.-service-shop {
  width: 48px;
}
.Ico.-service-shop::befoer {
  padding-top: 96%;
  background-image: url(/image/cmn/ico_heading_service_shop.svg);
}
.Ico.-map {
  width: 46px;
}
.Ico.-map::before {
  padding-top: 90%;
  background-image: url(/image/cmn/ico_heading_map.svg);
}
.Ico.-voice {
  width: 42px;
}
.Ico.-voice::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_voice.svg);
}
.Ico.-feature {
  width: 46px;
}
.Ico.-feature::before {
  padding-top: 105%;
  background-image: url(/image/cmn/ico_heading_feature.svg);
}
.Ico.-breederHouse {
  width: 46px;
}
.Ico.-breederHouse::before {
  padding-top: 91%;
  background-image: url(/image/cmn/ico_heading_breeder_house.svg);
}
.Ico.-carry {
  width: 46px;
}
.Ico.-carry::before {
  padding-top: 92%;
  background-image: url(/image/cmn/ico_heading_carry.svg);
}
.Ico.-book {
  width: 42px;
}
.Ico.-book::before {
  padding-top: 81%;
  background-image: url(/image/cmn/ico_heading_book.svg);
}
.Ico.-pet {
  width: 62px;
}
.Ico.-pet::before {
  padding-top: 68%;
  background-image: url(/image/cmn/ico_heading_pet.svg);
}
.Ico.-new {
  position: relative;
  padding: 13px 17px 0 0;
  width: 81px;
  height: 45px;
  background: url(/image/pets/ico_new_particle_dogs.svg) no-repeat top right;
  background-size: 26px;
}
.Ico.-new::before {
  content: "New!";
  width: 64px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2E8BF0;
  border-radius: 16px 16px 0 16px;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  color: #FFFFFF;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.Ico.-new.-cats {
  background-image: url(/image/pets/ico_new_particle_cats.svg);
}
.Ico.-new.-cats::before {
  background: #EF6363;
}
.Ico.-movie {
  width: 16px;
}
.Ico.-movie::before {
  padding-top: 75%;
  background-image: url(/image/pets/ico_tag_movie.svg);
}
.Ico.-mail {
  width: 72px;
}
.Ico.-mail::before {
  padding-top: 53%;
  background-image: url(/image/pets/ico_mail.svg);
}
.Ico.-calc {
  width: 27px;
}
.Ico.-calc::before {
  padding-top: 119%;
  background-image: url(/image/cmn/ico_subheading_calc.svg);
}
.Ico.-pin {
  width: 28px;
}
.Ico.-pin::before {
  padding-top: 129%;
  background-image: url(/image/cmn/ico_subheading_pin.svg);
}
.Ico.-help {
  width: 24px;
}
.Ico.-help::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_help.svg);
}
.Ico.-credit {
  width: 28px;
}
.Ico.-credit::before {
  padding-top: 72%;
  background-image: url(/image/cmn/ico_credit.svg);
}
.Ico.-solidMail {
  width: 22px;
}
.Ico.-solidMail::before {
  padding-top: 73%;
  background-image: url(/image/cmn/ico_itemheading_mail_solid.svg);
}
.Ico.-safety {
  width: 24px;
}
.Ico.-safety::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_itemheading_safety.svg);
}
.Ico.-milk {
  width: 30px;
}
.Ico.-milk::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_subheading_milk.svg);
}
.Ico.-milkStar {
  width: 60px;
  margin-left: -10px;
}
.Ico.-milkStar::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_milkStar.png);
}
.Ico.-milkStar-bold {
  width: 60px;
  margin-left: -10px;
}
.Ico.-milkStar-bold::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_milkStar-bold.png);
}
.Ico.-complete {
  width: 76px;
}
.Ico.-complete::before {
  padding-top: 53%;
  background-image: url(/image/cmn/ico_complete.svg);
}
.Ico.-completeMail {
  width: 60px;
  margin-left: -10px;
}
.Ico.-completeMail::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_heading_completeMail.svg);
}
.Ico.-unsubscribe {
  width: 52px;
}
.Ico.-unsubscribe::before {
  padding-top: 64%;
  background-image: url(/image/cmn/ico_unsubscribe.svg);
}
.Ico.-unsubscribed {
  width: 40px;
}
.Ico.-unsubscribed::before {
  padding-top: 68%;
  background-image: url(/image/cmn/ico_unsubscribed.svg);
}
.Ico.-pad {
  width: 26px;
}
.Ico.-pad::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_subheading_pad.svg);
}
.Ico.-pad.-dogs::before {
  background-image: url(/image/cmn/ico_subheading_pad_dogs.svg);
}
.Ico.-pad.-cats::before {
  background-image: url(/image/cmn/ico_subheading_pad_cats.svg);
}
.Ico.-solidPad {
  width: 24px;
}
.Ico.-solidPad::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_subheading_pad_solid.svg);
}
.Ico.-circleCheck {
  width: 22px;
}
.Ico.-circleCheck::before {
  padding-top: 91%;
  background-image: url(/image/cmn/ico_circle_check.svg);
}
.Ico.-heart {
  width: 24px;
}
.Ico.-heart::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_itemheading_heart.svg);
}
.Ico.-star {
  width: 24px;
}
.Ico.-star::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_itemheading_star.svg);
}
.Ico.-msg {
  width: 38px;
}
.Ico.-msg::before {
  padding-top: 69%;
  background-image: url(/image/cmn/ico_heading_msg.svg);
}
.Ico.-booking {
  width: 48px;
}
.Ico.-booking::before {
  padding-top: 105%;
  background-image: url(/image/cmn/ico_booking.svg);
}
.Ico.-consultation {
  width: 42px;
}
.Ico.-consultation::before {
  padding-top: 98%;
  background-image: url(/image/cmn/ico_consultation.svg);
}
.Ico.-hearing {
  width: 46px;
}
.Ico.-hearing::before {
  padding-top: 100%;
  background-image: url(/image/cmn/ico_hearing.svg);
}
.Ico.-contact {
  width: 50px;
}
.Ico.-contact::before {
  padding-top: 78%;
  background-image: url(/image/cmn/ico_contact.svg);
}
.Ico.-send {
  width: 34px;
}
.Ico.-send::before {
  padding-top: 139%;
  background-image: url(/image/cmn/ico_send.svg);
}
.Ico.-joining {
  width: 44px;
}
.Ico.-joining::before {
  padding-top: 182%;
  background-image: url(/image/cmn/ico_joining.svg);
}
.Ico.-instagramIco {
  width: 16px;
  margin-right: 8px;
  line-height: 1;
}

/* .PointIco ポイントアイコン
  ---------------------- */
.PointIco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #E4EEFA;
  border-radius: 22px 22px 0 22px;
  counter-increment: point;
  line-height: 1;
  font-style: normal;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
}
.PointIco__counterScope {
  counter-reset: point;
}
.PointIco.-cats {
  background-color: #FFDDDF;
}
.PointIco::before {
  content: counter(point);
  color: #002E5D;
  font-weight: 600;
  font-size: 2.4rem;
}

.PointIco.-circle {
  width: 25px;
  height: 25px;
  background: none;
  border: 2px solid #2E8BF0;
  border-radius: 12.5px;
}
.PointIco.-circle::before {
  content: counter(point);
  color: #2E8BF0;
  font-size: 1.6rem;
}
.PointIco.-circle.-cats {
  background-color: none;
  border-color: #EF6363;
}
.PointIco.-circle.-cats::before {
  color: #EF6363;
}

.PointIco.-pad {
  width: auto;
  height: auto;
  margin-right: 20px;
  justify-content: flex-start;
  background: none;
}
.PointIco.-pad::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 26px;
  height: 26px;
  background: url(/image/cmn/ico_subheading_pad_dogs.svg) no-repeat center;
  background-size: 100%;
}
.PointIco.-pad::after {
  content: "Point " counter(point);
  color: #2E8BF0;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.PointIco.-pad.-lesson::after {
  content: "Lesson " counter(point);
}
.PointIco.-pad.-cats {
  background-color: none;
}
.PointIco.-pad.-cats::before {
  background-image: url(/image/cmn/ico_subheading_pad_cats.svg);
}
.PointIco.-pad.-cats::after {
  color: #EF6363;
}
.PointIco.-pad.-withoutNum {
  margin-right: 0;
}
.PointIco.-pad.-withoutNum::after {
  content: "Point";
}

.CursiveIco {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  background: none;
  counter-increment: point;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #002E5D;
  line-height: 1;
  font-style: normal;
  font-family: "Caveat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
}
.CursiveIco::before {
  content: attr(data-label) " ";
  background-size: 100%;
}
.CursiveIco::after {
  content: counter(point);
}

/* .Ttl タイトル
  ---------------------- */
.Ttl {
  color: #002E5D;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", arial, "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
}
.Ttl__txt {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* .table modifier layout */
.Ttl.-withIco {
  display: flex;
  align-items: center;
}
.Ttl.-withIco .Ttl__ico {
  position: relative;
  top: -2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
}
.Ttl.-withIco .Ttl__sub {
  display: block;
  margin-bottom: 5px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* .Heading 中見出し
  ---------------------- */
.Heading {
  color: #002E5D;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.Heading__txt {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* .Heading modifier layout */
.Heading.-withIco {
  display: flex;
  align-items: center;
}
.Heading.-withIco .Heading__ico {
  margin-right: 16px;
}
.Heading.-withEn .Heading__en {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-style: normal;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
}
.Heading.-withEn .Heading__ja {
  margin-left: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Sans JP", arial, "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
}

/* .Subheading 中見出し
  ---------------------- */
.Subheading {
  color: #002E5D;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.Subheading__txt {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.Subheading__sub {
  display: block;
  text-align: center;
  font-size: 1.4rem;
}

/* .Subheading modifier layout */
.Subheading.-withIco {
  display: flex;
  align-items: center;
}
.Subheading.-withIco .Subheading__ico {
  margin-right: 15px;
}
.Subheading.-bordered {
  position: relative;
  border-bottom: 1px solid #DCE6F2;
  padding-bottom: 10px;
}
.Subheading.-bordered::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #002E5D;
}
.Subheading.-bordered.-gray {
  border-color: #C9C7C3;
}
.Subheading.-kv {
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: 21px;
  padding-bottom: 21px;
  line-height: 1.7;
  font-size: 2.4rem;
}
.Subheading.-kv::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #002E5D;
}
.Subheading.-center {
  text-align: center;
}

/* .ItemHeading 中見出し
  ---------------------- */
.ItemHeading {
  color: #002E5D;
  font-size: 1.8rem;
  font-weight: 600;
}
.ItemHeading__txt {
  font-size: 1.8rem;
  font-weight: 600;
}
.ItemHeading--balloon {
  padding: 5px 15px 3px;
  margin-right: 10px;
  background: #fff;
  border-radius: 100px 100px 0px 100px;
  color: #2E8BF0;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.5;
}

/* .ItemHeading modifier layout */
.ItemHeading.-withIco {
  display: flex;
  align-items: center;
}
.ItemHeading.-withIco .ItemHeading__ico {
  margin-right: 10px;
}
.ItemHeading.-bordered {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C3D3E6;
}
.ItemHeading__txt .-inlineBreak {
  display: inline-block;
}

/* 注意文言 */
.Notice {
  color: #D84532;
  font-weight: 600;
  margin-top: 48px;
  text-align: center;
}
.Notice + .PetsShop__contact, .Notice + .SpecialPresent__btn {
  margin-top: 20px;
}

/* .modal モーダル
  ---------------------- */
.Modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  justify-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 40px 40px 0;
  background: rgba(51, 51, 51, 0);
  z-index: 1000;
  transition: 300ms easein;
  transition-property: background;
  -webkit-overflow-scrolling: touch;
}
.Modal::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  flex-shrink: 0;
}
.Modal__body {
  width: 100%;
  max-width: 800px;
  margin: auto;
  transform: translateY(10%);
  opacity: 0;
  transition: 300ms easein;
  transition-property: transform, opacity;
}
.Modal__spClose, .Modal__close {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: url(/image/cmn/ico_btn_close.png) no-repeat #FFFFFF center;
  background-size: 12px 12px;
  box-shadow: 0px 2px 8px rgba(1, 71, 147, 0.3);
  z-index: 99;
}
.Modal__close {
  position: absolute;
  top: -30px;
  right: -30px;
  transition: 300ms easein;
  transition-property: background-color, box-shadow;
}
.Modal__spClose {
  display: none;
}
.Modal__inner {
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
}
.Modal__content {
  max-height: 80vh;
  overflow-y: auto;
}
.Modal__content.-look {
  position: relative;
}
.Modal.-opened {
  background: rgba(51, 51, 51, 0.5);
}
.Modal.-opened .Modal__body {
  transform: translateY(0);
  opacity: 1;
}

/* .DefineCheck チェックリスト
  ---------------------- */
.DefineCheck__ttl {
  position: relative;
  margin-bottom: 4px;
  padding-left: 30px;
  color: #002E5D;
  line-height: 1.5;
}
.DefineCheck__ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(/image/cmn/ico_list_check.png) no-repeat center #2E8BF0;
  background-size: 12px 8px;
  border-radius: 10px;
}
.DefineCheck__ttl ~ .DefineCheck__ttl {
  margin-top: 16px;
}
.DefineCheck__text {
  padding-left: 30px;
}

/* .DefineCheck modifier color */
.DefineCheck.-pink .DefineCheck__ttl:before {
  background-color: #EF6363;
}

/* .TabMenu タブメニュー
  ---------------------- */
.TabMenu {
  height: 45px;
}
.TabMenu__viewport {
  height: 100%;
  overflow: hidden;
  margin-bottom: 2px;
  background: linear-gradient(to top, #DCE6F2 0px, #DCE6F2 1px, transparent 1px);
}
.TabMenu__inner {
  overflow-x: auto;
}
.TabMenu__list {
  display: flex;
  height: 45px;
}
.TabMenu__item {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}
.TabMenu__label {
  display: block;
  padding: 15px 0;
  line-height: 1;
  height: 100%;
  min-width: 120px;
  border-bottom: 2px solid transparent;
  text-align: center;
  color: #002E5D;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: 300ms easein;
  transition-property: border-color;
}
.TabMenu__item.-active .TabMenu__label {
  border-color: #002E5D;
}

/* .AnchorLink アンカーリンク
  ---------------------- */
.AnchorLink {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 12px 15px 26px;
  min-width: 160px;
  background: url(/image/cmn/ico_arrow_down.png) no-repeat left top 19px;
  background-size: 8px 5px;
  border-bottom: 1px solid #DCE6F2;
  text-align: left;
  color: #002E5D;
  font-weight: 600;
  transition: 300ms easein;
  transition-property: border-color, background-position-y;
}

.AnchorLink__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.AnchorLink__listItem {
  line-height: 1;
}

.AnchorLinkSpecials__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.AnchorLinkSpecials__item {
  width: 175px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}
.AnchorLinkSpecials__link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 20px 40px;
  box-shadow: 0px 6px 16px rgba(1, 71, 147, 0.2);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.8rem;
  color: #002E5D;
  transition: 300ms easein;
  transition-property: box-shadow;
}
.AnchorLinkSpecials__link:hover {
  box-shadow: none;
}
.AnchorLinkSpecials__link::after {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 9px;
  height: 5px;
  background-image: url("/image/cmn/ico_arrow_down_dogblue.png");
  background-size: 9px 5px;
}
.AnchorLinkSpecials__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #2E8BF0;
  margin-bottom: 10px;
}
.AnchorLinkSpecials__index {
  font-size: 1.7rem;
  margin-left: 5px;
}

/* .FormStep フォームステップ
  ---------------------- */
.FormStep {
  padding: 15px 0;
  border-top: 1px solid #C3D3E6;
  border-bottom: 1px solid #C3D3E6;
  line-height: 1;
}
.FormStep__list {
  display: flex;
  justify-content: center;
}
.FormStep__item {
  color: #8F9FB1;
  font-weight: 600;
}
.FormStep__item.-active {
  color: #002E5D;
}
.FormStep__item + .FormStep__item {
  display: flex;
  align-items: center;
}
.FormStep__item + .FormStep__item::before {
  content: "";
  display: block;
  margin: 0 19px;
  width: 8px;
  height: 12px;
  background: url(/image/cmn/ico_form_step_arrow.png) no-repeat center;
  background-size: 8px 12px;
}

/* .Card カードUI
  ---------------------- */
.Card {
  position: relative;
  display: block;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: 300ms easein;
  transition-property: box-shadow;
  box-shadow: 0px 4px 16px rgba(1, 71, 147, 0.1);
}
.Card__inner {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 100%;
}
.Card__header {
  position: relative;
  min-height: 80px;
  background: #F3F6F9;
  overflow: hidden;
}
.Card__header img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 1;
  transition: 300ms easein;
  transition-property: opacity;
}
.Card__body {
  padding: 30px;
}

/* .Card modifier status */

/* .FAQItem FAQ項目
  ---------------------- */
.FAQItem {
  margin-top: 15px;
  margin-bottom: 15px;
}
.FAQItem__ttl {
  position: relative;
  padding: 10px 40px 10px 60px;
  background: url(/image/cmn/ico_arrow_down.png) no-repeat center right 18px #F3F6F9;
  background-size: 8px 5px;
  border-radius: 4px;
  font-size: 1.8rem;
  color: #002E5D;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.FAQItem__ttl::before {
  content: "Q.";
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 2rem;
  color: #2E8BF0;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
}
.FAQItem__cont {
  padding: 15px 20px 10px;
}
.FAQItem__contWrap {
  display: none;
}

/* .FAQItem modifier status */
.FAQItem.-opened .FAQItem__ttl {
  background-image: url(/image/cmn/ico_arrow_up.png);
}
.FAQItem.-opened .FAQItem__contWrap {
  display: block;
}

/* .RelationLink 関連リンク
  ---------------------- */
.RelationLink {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #002E5D;
}
.RelationLink__listItem {
  line-height: 1;
  color: #2E8BF0;
  font-size: 1.5rem;
  font-weight: 600;
}
.RelationLink__subList {
  padding: 20px 20px 0;
}
.RelationLink__subList + .RelationLink__subList {
  padding-top: 24px;
}
.RelationLink__subListTtl {
  font-size: 1.5rem;
  font-weight: 600;
  color: #002E5D;
}

/* .Pagination ページネーション
  ---------------------- */
.Pagination {
  display: flex;
  justify-content: center;
}
.Pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 36px;
  line-height: 1;
  font-family: "Roboto", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.Pagination__item:nth-child(n+2) {
  margin-left: -1px;
}
.Pagination__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #A6B9D0;
  background: #FFFFFF;
  color: #002E5D;
}
.Pagination__btn.-prev, .Pagination__btn.-next {
  font-size: 0;
}
.Pagination__btn.-prev::before, .Pagination__btn.-next::before {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background: no-repeat center;
  background-size: 6px 10px;
}
.Pagination__btn.-prev.-disabled, .Pagination__btn.-prev:disabled, .Pagination__btn.-next.-disabled, .Pagination__btn.-next:disabled {
  background-color: #EEEEEE;
}
.Pagination__btn.-disabled, .Pagination__btn:disabled {
  color: #2E8BF0;
}
.Pagination__btn.-prev {
  border-radius: 6px 0 0 6px;
}
.Pagination__btn.-prev::before {
  background-image: url(/image/cmn/ico_pagination_arrow_prev.png);
}
.Pagination__btn.-prev.-disabled::before, .Pagination__btn.-prev:disabled::before {
  background-image: url(/image/cmn/ico_pagination_arrow_prev_disabled.png);
}
.Pagination__btn.-next {
  border-radius: 0 6px 6px 0;
}
.Pagination__btn.-next::before {
  background-image: url(/image/cmn/ico_pagination_arrow_next.png);
}
.Pagination__btn.-next.-disabled::before, .Pagination__btn.-next:disabled::before {
  background-image: url(/image/cmn/ico_pagination_arrow_next_disabled.png);
}

.SearchSideForm {
  padding: 20px 20px 30px;
  background: #F3F6F9;
  border-radius: 10px;
}
.SearchSideForm__ttl {
  margin-bottom: 15px;
}
.SearchSideForm__ttlAccordionToggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 6px;
  width: 94px;
  height: 32px;
  background: url(/image/cmn/ico_select_arrow.png) no-repeat right 9px center #FFFFFF;
  background-size: 8px 5px;
  border: 1px solid #002E5D;
  border-radius: 16px;
  color: #002E5D;
  font-size: 1.3rem;
  font-weight: 600;
}
.SearchSideForm__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.SearchSideForm__row.-labeled {
  margin: 20px 0;
}
.SearchSideForm__item {
  width: 100%;
}
.SearchSideForm__itemLabel {
  margin-bottom: 5px;
  color: #002E5D;
  font-weight: 600;
  line-height: 1;
}
.SearchSideForm__submit.Btn.-md {
  margin-top: 30px;
  max-width: 100%;
}
.SearchSideForm__resetWrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.SearchSideForm.-opened .SearchSideForm__ttlAccordionToggle {
  background-image: url(/image/pets/ico_search_toggle_opened.png);
}
.SearchSideForm.-opened .SearchSideForm__ttlAccordionToggleTxt.-open {
  display: none;
}
.SearchSideForm:not(.-opened) .SearchSideForm__ttlAccordionToggleTxt.-close {
  display: none;
}

.SearchResultCont {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 62px;
}

.SearchResultCount {
  font-size: 1.3rem;
  font-weight: 600;
}

.SearchResultOrder {
  display: flex;
  align-items: center;
}
.SearchResultOrder__select {
  margin-left: 12px;
  min-width: 220px;
}

/* ヘッダー
  ---------------------- */
/* ヘッダー本体 */
.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1024px;
  background: #FFFFFF;
  line-height: 1;
  z-index: 100;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ヘッダーロゴ */
.HeaderLogo {
  display: flex;
  align-items: flex-end;
  font-family: "Noto Sans JP", arial, "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  color: #002E5D;
}
.HeaderLogo__img {
  display: block;
  width: 142px;
  opacity: 1;
  pointer-events: auto;
  transition: 300ms easein;
  transition-property: opacity;
}
.HeaderLogo__catch {
  margin-left: 16px;
  font-size: 1.2rem;
  line-height: 1.3em;
}

/* ヘッダーメニュー */

/* ヘッダーリンク*/
.HeaderLinks__inner {
  display: flex;
}
.HeaderLinks__link {
  color: #002E5D;
}

/* ヘッダーナビゲーション */
.HeaderNav__inner {
  display: flex;
  justify-content: space-between;
}
.HeaderNav__link {
  color: #002E5D;
  font-weight: 600;
}
.HeaderNav__link.-external::after, .HeaderNav__link[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 14px;
  height: 12px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 14px 12px;
}
.HeaderNav__item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.HeaderNav__icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

/* ヘッダーメガメニュー */
.HeaderMega__thumb {
  width: 240px;
  height: 140px;
  margin-top: 8px;
  margin-right: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}
.HeaderMega__link {
  color: #002E5D;
}
.HeaderMega__link[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 10px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 12px 10px;
}

/* フローティングメニュー */
.FloatingMenu {
  position: fixed;
  z-index: 100;
}
.FloatingMenu__item:not(.-btn) .FloatingMenu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", arial, "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  color: #FFFFFF;
  font-weight: 600;
}
.FloatingMenu__item:not(.-btn) .FloatingMenu__link::before {
  content: "";
  display: block;
  background: no-repeat center;
}
.FloatingMenu__item:not(.-btn) .FloatingMenu__link.-mail {
  background: #002E5D;
  padding: 0 10px;
}
.FloatingMenu__item:not(.-btn) .FloatingMenu__link.-mail::before {
  width: 18px;
  height: 13px;
  background-image: url(/image/cmn/ico_floating_mail.png);
  background-size: 18px 13px;
}
.FloatingMenu__item:not(.-btn) .FloatingMenu__link.-reserve {
  background: #EF6363;
}
.FloatingMenu__item:not(.-btn) .FloatingMenu__link.-reserve::before {
  width: 18px;
  height: 17px;
  background-image: url(/image/cmn/ico_floating_reserve.png);
  background-size: 18px 17px;
}

/* パンくずリスト
  ---------------------- */
.Breadcrumbs {
  background: #F3F6F9;
  font-size: 1.2rem;
  line-height: 1;
  height: 40px;
  margin-bottom: 40px;
}
.Breadcrumbs__container, .Breadcrumbs__viewport, .Breadcrumbs__list {
  height: 40px;
}
.Breadcrumbs__viewport {
  overflow: hidden;
}
.Breadcrumbs__inner {
  overflow-x: auto;
}
.Breadcrumbs__list {
  display: flex;
  align-items: center;
}
.Breadcrumbs__item {
  flex-shrink: 0;
}
.Breadcrumbs__link {
  color: #002E5D;
}
.Breadcrumbs__item + .Breadcrumbs__item {
  display: flex;
  align-items: center;
}
.Breadcrumbs__item + .Breadcrumbs__item::before {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  margin: 0 20px;
  background: url(/image/cmn/ico_breadcrumb.png) no-repeat center;
  background-size: 5px 8px;
}

.Breadcrumbs__viewport {
  position: relative;
}
.Breadcrumbs__viewport::before, .Breadcrumbs__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 30px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 300ms easein;
  transition-property: opacity;
}
.Breadcrumbs__viewport::after {
  left: 0;
  background: linear-gradient(to right, #F3F6F9, rgba(243, 246, 249, 0));
}
.Breadcrumbs__viewport::before {
  right: 0;
  background: linear-gradient(to left, #F3F6F9, rgba(243, 246, 249, 0));
}
.Breadcrumbs__viewport.-fadeLeft::after {
  opacity: 1;
}
.Breadcrumbs__viewport.-fadeRight::before {
  opacity: 1;
}

/* .main メイン
  ---------------------- */
/* フッター
  ---------------------- */
/* フッター本体 */
.Footer {
  background-color: #FFFFFF;
  line-height: 1;
  font-size: 1.3rem;
}
.Footer a {
  color: #002E5D;
}
.Footer__body {
  position: relative;
  padding: 50px 0 45px;
}
.Footer__logo {
  display: inline-block;
  height: 27px;
  margin-bottom: 30px;
  opacity: 1;
  transition: 300ms easein;
  transition-property: opacity;
}
.Footer__logo img {
  width: auto;
  height: 100%;
}
.Footer__copyright {
  color: #002E5D;
  font-size: 1.1rem;
  font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin-right: 0;
  margin-left: auto;
  font-weight: 500;
}

/* フッターバナー */
.FooterBanners {
  margin-top: 100px;
  padding: 60px 0;
  background-color: #E4EEFA;
}
.FooterBanners__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
.FooterBanners__link, .FooterBanners__link[target=_blank] {
  display: block;
  width: 100%;
  opacity: 1;
  transition: 300ms easein;
  transition-property: opacity;
}
.FooterBanners__link::after, .FooterBanners__link[target=_blank]::after {
  display: none;
}

/* フッターサイトマップ */
.FooterLinks {
  line-height: 1.5;
}

.FooterCate__ttl {
  color: #002E5D;
}
.FooterCate__subTtl {
  color: #002E5D;
  font-weight: 600;
}
.FooterCate__link[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 10px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 12px 10px;
}

.FooterOthers__link {
  font-weight: 600;
}
.FooterOthers__link[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 10px;
  background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
  background-size: 12px 10px;
}

.FooterPrivacies__link[href$=pdf] {
  margin-right: 28px;
  position: relative;
}
.FooterPrivacies__link[href$=pdf]::after {
  content: "";
  right: -28px;
  top: calc(50% - 10px);
  position: absolute;
  width: 17px;
  height: 20px;
  background-image: url(/image/cmn/ico_link_pdf.png);
  background-size: 17px 20px;
}

/* フッター会社 */
.FooterCompany {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #E7EDF4;
}
.FooterCompany__text, .FooterCompany__address {
  color: #002E5D;
}

/* ページトップ
  ---------------------- */
.ScrollTop {
  position: fixed;
  opacity: 0;
  right: 20px;
  bottom: 30px;
  pointer-events: none;
  transform: translateY(20%);
  transition: 300ms easein;
  transition-property: opacity, transform;
  z-index: 1;
}
.ScrollTop__link {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: block;
  background: url(/image/cmn/ico_scrolltop.png) no-repeat center #FFFFFF;
  background-size: 14px 19px;
  box-shadow: 0px 2px 8px rgba(1, 71, 147, 0.3);
  transition: 300ms easein;
  transition-property: background-color, box-shadow;
}
.ScrollTop.-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ScrollTop.-fit {
  position: absolute;
  top: -30px;
  bottom: auto;
}

/* ==================================================
    2. レイアウト
   ================================================== */
.ly_Container {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.ly_Container.-tight {
  padding-left: 0;
  padding-right: 0;
  max-width: 960px;
}

.ly_FullBg {
  background: #F3F6F9;
}
.ly_FullBg__heading {
  margin-bottom: 40px;
}

/* .ly_FullBg modifier style */
.ly_FullBg.-cont {
  padding-top: 55px;
  padding-bottom: 60px;
  margin-top: 80px;
}
.ly_FullBg.-heading {
  min-height: 60px;
  padding: 8px 0;
  margin-top: 80px;
  margin-bottom: 40px;
}

/* .ly_FullBg modifier color */
.ly_FullBg.-deep {
  background-color: #E4EEFA;
}
.ly_FullBg.-gray {
  background-color: #F9F7F7;
}
.ly_FullBg.-white {
  background-color: #FFFFFF;
}

.ly_Col.-half .ly_Col__item.-img {
  position: relative;
}
.ly_Col.-half .ly_Col__item.-img::before {
  content: "";
  display: block;
  padding-top: 61.875%;
}
.ly_Col.-half .ly_Col__item.-img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.ly_Col__item.-cont {
  align-self: flex-start;
  width: 62.5%;
  max-width: 800px;
}
.ly_Col__item.-img {
  align-self: flex-start;
  width: calc(37.5% - 40px);
  max-width: 440px;
}
.ly_Col__item.-img img {
  width: 100%;
  border-radius: 10px;
}
.ly_Col__item.-img img + img {
  margin-top: 30px;
}
.ly_Col__item.-img figcaption {
  margin-top: 15px;
  font-size: 1.2rem;
}

.ly_Section {
  margin-top: 40px;
}

/* ==================================================
    4. ヘルパー
   ================================================== */

/* ==================================================
    5. grecaptcha
   ================================================== */
.grecaptcha-badge {
  z-index: 200;
  bottom: 120px !important;
}
@media screen and (max-width: 768px) {
  :root {
    --headerHeight: 60px;
  }
  body {
    min-width: 320px;
    padding-top: 60px;
    padding-top: var(--headerHeight);
    padding-bottom: 80px;
    padding-bottom: calc(env(safe-area-inset-bottom) + 80px);
    /* iPhone X向け記述 */
    font-size: 1.5rem;
    line-height: 1.7;
  }
  body.-fixed {
    padding-right: var(--scroll-bar-width);
    min-width: calc(320px + var(--scroll-bar-width));
  }
  .LinkTransition {
    font-size: 1.5rem;
  }
  .Btn.-lg {
    height: auto;
    min-height: 0;
    line-height: 1.5;
    padding: 16px 20px;
    font-size: 1.6rem;
  }
  .Btn.-md {
    font-size: 1.4rem;
  }
  .Btn.-pdf {
    padding-left: 32px;
  }
  .Btn__ico.-count {
    left: 73px;
  }
  .FormItem__ttl::before {
    margin-top: 2px;
  }
  .FormItem__body.-checkboxList .Checkbox {
    width: 100%;
  }
  .FormItem.-confirm {
    padding-bottom: 8px;
    font-size: 1.2rem;
  }
  .FormItem.-confirm:not(:first-of-type) {
    padding-top: 8px;
  }
  .FormItem.-confirm .FormItem__ttl {
    padding-right: 5px;
    width: 130px;
    line-height: 1.5;
  }
  .FormItem.-confirm .FormItem__body {
    line-height: 1.5;
  }
  .FormItem.-confirm .FormItem__body > img {
    margin: 5px 0;
  }
  .FormItem.-hideTitle {
    margin-top: 20px;
  }
  .FormItem.-hideTitle + .FormItem.-hideTitle {
    margin-top: 8px;
  }
  input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
    padding-left: 15px;
    padding-right: 15px;
    height: 50px;
    font-size: 1.6rem;
  }
  textarea {
    font-size: 1.6rem;
  }
  .SelectBox {
    font-size: 1.6rem;
  }
  .SelectBox select {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .SelectBox__bg::after {
    top: 23px;
  }
  .RadioBtn + .RadioBtn {
    margin-top: 15px;
  }
  .RadioSwitch__label {
    font-size: 1.6rem;
  }
  * > .Checkbox + .Checkbox {
    margin-left: 50px;
  }
  .FormZipCode__input[type=tel] {
    width: 50%;
    max-width: calc(100% - 135px);
  }
  .FormZipCode__btn {
    margin-left: 15px;
    width: 120px;
  }
  .FormImgFile__file {
    width: 167px;
  }
  .FormImgFile__name {
    width: calc(100% - 187px);
  }
  .Table {
    font-size: 1.5rem;
  }
  .Table th, .Table td {
    padding: 16px 10px;
  }
  .Table tbody th:first-child {
    width: 120px;
  }
  .Table__row {
    display: block;
  }
  .Table__ttl {
    width: 100%;
    padding: 16px 10px;
  }
  .Table__dec {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.7;
    border: none;
    border-top: 1px solid #DCE6F2;
    padding: 14px 10px;
  }
  .Table__scrollViewport {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .Table__scrollCont {
    padding: 0 20px;
    width: 768px;
  }
  .Table.-list tbody th:first-child {
    width: 110px;
    padding-left: 0;
    padding-right: 10px;
  }
  .Table.-highest th, .Table.-highest td {
    padding: 10px 0 11px 0;
    font-size: 1.2rem;
  }
  .Table.-highest tbody th:first-child {
    width: 130px;
  }
  .Table.-higher tbody th:first-child {
    width: 150px;
  }
  .Table.-higher tbody tr:last-child {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .Table.-higher tbody tr:last-child th {
    width: 100%;
  }
  .Table.-higher tbody tr:last-child td {
    width: 100%;
    padding: 0;
  }
  .Table.-rows tr {
    width: 100%;
  }
  .Table tbody th:first-child.-tight, .Table__ttl.-tight {
    padding-left: 10px;
    width: 120px;
  }
  .Table tbody th:first-child.-small, .Table__ttl.-small {
    padding-left: 10px;
    width: 91px;
  }
  .ListStep {
    display: block;
  }
  .ListStep__item {
    display: block;
  }
  .ListStep__item + .ListStep__item {
    margin-top: 12px;
  }
  .ListStep__itemContent {
    display: flex;
    align-items: center;
    text-align: left;
  }
  .ListStep__txt {
    margin-top: 0;
    margin-left: 12px;
  }
  .Ico.-detailPad {
    width: 31.5px;
  }
  .Ico.-detailBook {
    width: 36px;
  }
  .Ico.-news {
    width: 61.5px;
  }
  .Ico.-mission {
    width: 31.5px;
  }
  .Ico.-search {
    width: 48px;
  }
  .Ico.-service {
    width: 36px;
  }
  .Ico.-specials {
    width: 37.5px;
  }
  .Ico.-specials-blue {
    width: 45px;
  }
  .Ico.-specials-blue {
    width: 55px;
  }
  .Ico.-breeder {
    width: 49.5px;
  }
  .Ico.-breeder {
    width: 55px;
  }
  .Ico.-healthcare {
    width: 48px;
  }
  .Ico.-healthcare {
    width: 52px;
  }
  .Ico.-inspection {
    width: 50.25px;
  }
  .Ico.-inspection {
    width: 52px;
  }
  .Ico.-bowl {
    width: 49.5px;
  }
  .Ico.-bowl {
    width: 52px;
  }
  .Ico.-shelf {
    width: 47.25px;
  }
  .Ico.-shelf {
    width: 52px;
  }
  .Ico.-syringe {
    width: 47.25px;
  }
  .Ico.-syringe {
    width: 52px;
  }
  .Ico.-microchip {
    width: 47.25px;
  }
  .Ico.-microchip {
    width: 52px;
  }
  .Ico.-house {
    width: 36px;
  }
  .Ico.-house {
    width: 40px;
  }
  .Ico.-stethoscope {
    width: 47.25px;
  }
  .Ico.-stethoscope {
    width: 52px;
  }
  .Ico.-support {
    width: 49.5px;
  }
  .Ico.-support {
    width: 51px;
  }
  .Ico.-training {
    width: 54px;
  }
  .Ico.-training {
    width: 51px;
  }
  .Ico.-trimming {
    width: 49.5px;
  }
  .Ico.-trimming {
    width: 55px;
  }
  .Ico.-shop {
    width: 34.5px;
  }
  .Ico.-shop-blue {
    width: 45px;
  }
  .Ico.-shop-blue {
    width: 48px;
  }
  .Ico.-service-shop {
    width: 36px;
  }
  .Ico.-map {
    width: 34.5px;
  }
  .Ico.-voice {
    width: 31.5px;
  }
  .Ico.-feature {
    width: 34.5px;
  }
  .Ico.-breederHouse {
    width: 34.5px;
  }
  .Ico.-carry {
    width: 34.5px;
  }
  .Ico.-book {
    width: 31.5px;
  }
  .Ico.-pet {
    width: 46.5px;
  }
  .Ico.-new {
    padding: 10px 13px 0 0;
    width: 61px;
    height: 34px;
    background-size: 20px;
  }
  .Ico.-new::before {
    content: "New!";
    width: 48px;
    height: 24px;
    font-size: 1.2rem;
  }
  .Ico.-calc {
    width: 20.25px;
  }
  .Ico.-pin {
    width: 21px;
  }
  .Ico.-credit {
    width: 21px;
  }
  .Ico.-milk {
    width: 24px;
  }
  .Ico.-milkStar {
    width: 55px;
  }
  .Ico.-milkStar-bold {
    width: 55px;
  }
  .Ico.-completeMail {
    width: 55px;
    margin-left: -5px;
    padding-bottom: 3px;
  }
  .Ico.-msg {
    width: 28.5px;
  }
  .PointIco {
    width: 36px;
    height: 36px;
  }
  .PointIco::before {
    font-size: 2.2rem;
  }
  .PointIco.-pad {
    margin-right: 0;
  }
  .PointIco.-pad::before {
    width: 24px;
    height: 24px;
  }
  .PointIco.-pad::after {
    font-size: 1.8rem;
  }
  .CursiveIco {
    margin-right: 5px;
    font-size: 1.8rem;
  }
  .Ttl, .Ttl__txt {
    font-size: 2rem;
  }
  .Ttl.-withIco .Ttl__ico {
    top: -3px;
    margin-right: 15px;
  }
  .Ttl.-withIco .Ttl__ico.-slash {
    display: flex;
    align-self: flex-start;
    align-items: center;
    height: 3rem;
  }
  .Ttl.-withIco .Ttl__sub {
    margin-bottom: 2px;
    font-size: 1.2rem;
  }
  .Heading, .Heading__txt {
    font-size: 1.8rem;
  }
  .Heading.-withIco .Heading__ico {
    margin-right: 15px;
  }
  .Heading.-withIco .Heading__ico.-specials {
    max-width: 37px;
  }
  .Heading.-withIco .Heading__ico.-msg {
    margin-right: 8px;
  }
  .Heading.-withIco .Heading__ico.-slash {
    display: flex;
    align-self: flex-start;
    align-items: center;
    height: 2.7rem;
  }
  .Heading.-withEn .Heading__en {
    display: block;
    line-height: 1;
    font-size: 2.4rem;
  }
  .Heading.-withEn .Heading__ja {
    display: block;
    margin: 3px 0 0;
    font-size: 1.3rem;
  }
  .Heading.-withEn .Heading__ico.-slash {
    height: 2.4rem;
  }
  .Subheading, .Subheading__txt {
    font-size: 1.8rem;
  }
  .Subheading.-lm, .Subheading__txt.-lm {
    font-size: 2rem;
  }
  .Subheading__ico + .Subheading__txt {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .Subheading.-bordered::before {
    width: 60px;
  }
  .Subheading.-kv {
    margin-top: -2px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    line-height: 1.5;
    font-size: 1.8rem;
  }
  .Subheading.-withIco .Subheading__ico.-slash {
    display: flex;
    align-self: flex-start;
    align-items: center;
    height: 2.7rem;
  }
  .ItemHeading, .ItemHeading__txt {
    font-size: 1.6rem;
  }
  .ItemHeading--balloon {
    min-width: 75px;
    font-size: 1.3rem;
  }
  .ItemHeading.-withIco .ItemHeading__ico.-slash {
    display: flex;
    align-self: flex-start;
    align-items: center;
    height: 2.4rem;
  }
  .Modal {
    display: none;
    padding: 20px 20px 0;
  }
  .Modal::after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
  }
  .Modal__body {
    width: 100%;
    max-width: 800px;
  }
  .Modal__close {
    display: none;
  }
  .Modal__spClose {
    display: block;
    position: fixed;
    top: auto;
    left: calc(50% - 30px);
    bottom: 20px;
    opacity: 0;
    transition: 300ms easein;
    transition-property: opacity;
  }
  .Modal.-opened .Modal__spClose {
    opacity: 1;
  }
  .Modal__content {
    padding: 30px 20px;
  }
  .Modal__content.-look {
    padding: 30px 20px 15px 20px;
  }
  .DefineCheck__ttl {
    margin-bottom: 6px;
    padding-top: 1px;
    line-height: 1.4;
    font-size: 1.6rem;
  }
  .TabMenu {
    height: 36px;
  }
  .TabMenu__list {
    height: 36px;
  }
  .TabMenu__label {
    min-width: 100px;
    padding: 12px 0;
    font-size: 1.3rem;
  }
  .AnchorLink {
    flex: 1;
    padding: 9px 0 9px 14px;
    background-position: left center;
    min-width: 0;
    font-size: 1.3rem;
    text-align: center;
  }
  .AnchorLink__list:not(.-wide) {
    align-items: stretch;
  }
  .AnchorLink__list:not(.-wide) .AnchorLink__listItem {
    display: flex;
    width: calc((100% - 15px) / 2);
  }
  .AnchorLink__list:not(.-wide) .AnchorLink__listItem:nth-child(2n) {
    margin-left: 15px;
  }
  .AnchorLink__list:not(.-wide) .AnchorLink__listItem:nth-child(n+3) {
    margin-top: 10px;
  }
  .AnchorLink__list.-wide .AnchorLink__listItem {
    width: 100%;
  }
  .AnchorLink__list.-wide .AnchorLink__listItem:nth-child(n+2) {
    margin-top: 10px;
  }
  .AnchorLinkSpecials__list {
    margin-left: 0;
    margin-right: 0;
    margin-top: -10px;
  }
  .AnchorLinkSpecials__item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }
  .AnchorLinkSpecials__link {
    padding: 20px 30px 20px 20px;
    justify-content: flex-start;
    font-size: 1.6rem;
  }
  .AnchorLinkSpecials__link::after {
    top: 50%;
    left: auto;
    right: 20px;
    transform: translateY(-50%);
  }
  .AnchorLinkSpecials__step {
    width: auto;
    margin-bottom: 0;
    margin-right: 16px;
    font-size: 1.4rem;
  }
  .FormStep {
    padding: 4px 0;
  }
  .FormStep__item {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .FormStep__item + .FormStep__item::before {
    margin: 0 14px;
  }
  .Card {
    box-shadow: 0px 4px 16px rgba(1, 71, 147, 0.2);
  }
  .FAQItem__ttl {
    padding: 12px 28px 12px 38px;
    background-position: top 19px right 10px;
    font-size: 1.6rem;
  }
  .FAQItem__ttl::before {
    font-size: 1.8rem;
    top: 14px;
    left: 10px;
  }
  .FAQItem__cont {
    padding: 17px 0 11px;
    line-height: 1.7;
  }
  .RelationLink__accordionTtl {
    padding: 12px 10px;
    border-top: 1px solid #DCE6F2;
    border-bottom: 1px solid #DCE6F2;
    color: #002E5D;
    font-weight: 600;
    background: url(/image/cmn/ico_arrow_down.png) no-repeat center right 12px;
    background-size: 8px 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .RelationLink__accordion.-opened .RelationLink__accordionTtl {
    background-image: url(/image/cmn/ico_arrow_up.png);
  }
  .RelationLink__accordionTtl {
    font-size: 1.6rem;
  }
  .RelationLink__accordionContWrap {
    display: none;
  }
  .RelationLink__list {
    padding: 20px 20px 0;
  }
  .RelationLink__listItem + .RelationLink__listItem {
    margin-top: 20px;
  }
  .SearchSideForm {
    padding: 16px 20px;
  }
  .SearchSideForm__ttl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .SearchSideForm__container {
    display: none;
  }
  .SearchSideForm__inner {
    padding: 10px 0 14px;
  }
  .SearchSideForm__item .RadioSwitch {
    max-width: 100%;
  }
  .SearchResultCont {
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .SearchResultOrder__select {
    min-width: auto;
  }
  .SearchResultOrder__select.SelectBox {
    font-size: 1.2rem;
  }
  .SearchResultOrder__select .SelectBox__bg {
    border: none;
  }
  .Header {
    min-width: 320px;
  }
  .Header__inner {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .Header__inner {
    padding-right: 0;
  }
  .Header__menu {
    position: fixed;
    top: 60px;
    top: var(--headerHeight);
    left: 0;
    bottom: 80px;
    background: #FFFFFF;
    width: 100%;
    min-width: 320px;
    overflow: auto;
  }
  .HeaderLogo {
    align-items: center;
  }
  .HeaderLogo__img {
    max-width: 90px;
    width: 26%;
    height: auto;
  }
  .HeaderLogo__img img {
    height: auto;
  }
  .HeaderLogo__catch {
    margin-left: 15px;
  }
  .HeaderMenu {
    display: none;
  }
  .HeaderMenu__inner {
    padding: 10px 20px 20px;
  }
  .HeaderMenu__nav {
    margin-bottom: 30px;
  }
  .HeaderLinks__inner {
    flex-wrap: wrap;
  }
  .HeaderLinks__item {
    width: 50%;
  }
  .HeaderLinks__item:nth-child(n+3) {
    margin-top: 19px;
  }
  .HeaderLinks__item.-services {
    width: 100%;
    margin-top: 29px;
  }
  .HeaderLinks__link {
    display: inline;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .HeaderLinks__link.Btn {
    padding: 0;
    border: none;
    background: none;
    text-align: left;
  }
  .HeaderLinks__item.-services .HeaderLinks__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border: 1px solid #C3D3E6;
    border-radius: 4px;
    background: #FFFFFF;
  }
  .HeaderLinks__item.-services .HeaderLinks__link img {
    max-width: 138px;
  }
  .HeaderLinks__item.-services + .HeaderLinks__item.-services {
    margin-top: 10px;
  }
  .HeaderLinks__item.-services .HeaderLinks__link[target=_blank] {
    position: relative;
  }
  .HeaderLinks__item.-services .HeaderLinks__link[target=_blank]::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 12px;
    height: 10px;
    background: url(/image/cmn/ico_link_external_navy.png) no-repeat center;
    background-size: 12px 10px;
  }
  .HeaderNav__item {
    display: block;
  }
  .HeaderNav__icon {
    display: none;
  }
  .HeaderNav__inner {
    flex-wrap: wrap;
  }
  .HeaderNav__item {
    width: 100%;
  }
  .HeaderNav__item.-pets {
    width: calc((100% - 10px) / 2);
    height: 100px;
    margin-bottom: 18px;
  }
  .HeaderNav__item.-pets .HeaderNav__link {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px 10px 11px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #C3D3E6;
    background: no-repeat #FFFFFF center top 4px;
    background-size: 68px 68px;
  }
  .HeaderNav__item.-dogs .HeaderNav__link {
    border-color: #2E8BF0;
    background-image: url(/image/cmn/header_search_dogs.png);
  }
  .HeaderNav__item.-cats .HeaderNav__link {
    border-color: #EF6363;
    background-image: url(/image/cmn/header_search_cats.png);
  }
  .HeaderNav__item:not(.-pets) .HeaderNav__linkWrap {
    padding: 12px 25px 12px 0;
    border-bottom: 1px solid #C3D3E6;
  }
  .HeaderNav__item:not(.-pets) .HeaderNav__linkWrap.-accordion {
    background: url(/image/cmn/ico_arrow_down.png) no-repeat center right 10px;
    background-size: 8px 5px;
  }
  .HeaderNav__item.-opened .HeaderNav__linkWrap.-accordion {
    background-image: url(/image/cmn/ico_arrow_up.png);
  }
  .HeaderNav__link {
    font-weight: 600;
  }
  .HeaderNav__mega {
    display: none;
  }
  .HeaderMega__inner {
    margin-bottom: 16px;
  }
  .HeaderMega__thumb {
    display: none;
  }
  .HeaderMega__links.-snakeLayout {
    display: flex;
    flex-wrap: wrap;
  }
  .HeaderMega__links.-snakeLayout .HeaderMega__item {
    width: 100%;
  }
  .HeaderMega__links.-snakeLayout .HeaderMega__item:not(.-top, .-empty):nth-child(even) {
    order: 1;
  }
  .HeaderMega__links.-snakeLayout .HeaderMega__item:not(.-top, .-empty):nth-child(odd) {
    order: 2;
  }
  .HeaderMega__link {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #C3D3E6;
    border-top: none;
    font-weight: 600;
    font-size: 1.3rem;
  }
  .HeaderMega.-detail .HeaderMega__item:not(.-top) .HeaderMega__link {
    font-weight: 400;
  }
  .HeaderMega.-detail .HeaderMega__item:not(.-top) .HeaderMega__link:before {
    content: "";
    left: 0;
    top: 6px;
    display: block;
    width: 10px;
    height: 2px;
    margin-right: 10px;
    background: #C3D3E6;
  }
  .HeaderMega.-detail .HeaderMega__item.-empty {
    display: none;
  }
  .FloatingMenu {
    position: fixed;
    left: 0;
    bottom: 0;
    bottom: calc(env(safe-area-inset-bottom) - env(safe-area-inset-bottom));
    /* iPhone X向け記述 */
    background: #FFFFFF;
    width: 100%;
    height: 80px;
    height: calc(env(safe-area-inset-bottom) + 80px);
    /* iPhone X向け記述 */
    padding: 0 20px;
    min-width: 320px;
  }
  .FloatingMenu__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  .FloatingMenu__item {
    height: 44px;
  }
  .FloatingMenu__item + .FloatingMenu__item {
    margin-left: 10px;
  }
  .FloatingMenu__item:not(.-btn) {
    width: 100%;
  }
  .FloatingMenu__item:not(.-btn) .FloatingMenu__link {
    border-radius: 4px;
    font-size: 1.2rem;
  }
  .FloatingMenu__item:not(.-btn) .FloatingMenu__link::before {
    margin-right: 7px;
  }
  .FloatingMenu__item:not(.-btn) .FloatingMenu__link.-mail::before {
    width: 13px;
    min-width: 13px;
    height: 9px;
    background-image: url(/image/cmn/ico_floating_mail.png);
    background-size: 13px 9px;
  }
  .FloatingMenu__item:not(.-btn) .FloatingMenu__link.-reserve::before {
    width: 13px;
    min-width: 13px;
    height: 12px;
    background-image: url(/image/cmn/ico_floating_reserve.png);
    background-size: 13px 12px;
  }
  .FloatingMenu__item.-btn {
    width: 60px;
    flex-shrink: 0;
  }
  .FloatingMenu__link {
    height: 100%;
  }
  .FloatingMenu__btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .FloatingMenu__btnIco {
    position: relative;
    display: block;
    width: 24px;
    height: 16px;
    margin-top: 5px;
  }
  .FloatingMenu__btnLine {
    position: absolute;
    display: block;
    width: 24px;
    height: 1.5px;
    background: #002E5D;
    transform: translateY(-50%);
    transition: 300ms easein;
    transition-property: width;
  }
  .FloatingMenu__btnLine:nth-child(1), .FloatingMenu__btnLine:nth-child(2), .FloatingMenu__btnLine:nth-child(3) {
    width: 100%;
    right: 0;
  }
  .FloatingMenu__btnLine:nth-child(1) {
    top: 0;
    transition-delay: 80ms;
  }
  .FloatingMenu__btnLine:nth-child(2) {
    top: 50%;
    transition-delay: 160ms;
  }
  .FloatingMenu__btnLine:nth-child(3) {
    top: 100%;
    transition-delay: 280ms;
  }
  .FloatingMenu__btnLine:nth-child(4), .FloatingMenu__btnLine:nth-child(5) {
    width: 0;
    transform-origin: left;
  }
  .FloatingMenu__btnLine:nth-child(4) {
    top: 0;
    transform: translateY(-50%) rotate(32deg);
  }
  .FloatingMenu__btnLine:nth-child(5) {
    top: 100%;
    transform: translateY(-50%) rotate(-32deg);
    transition-delay: 80ms;
  }
  .FloatingMenu__btnTxt {
    display: block;
    font-family: "Montserrat", arial, "Hiragino Sans", "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    color: #002E5D;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    font-weight: 600;
    text-align: center;
    line-height: 1;
  }
  .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(1), .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(2), .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(3) {
    width: 0;
  }
  .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(2) {
    transition-delay: 80ms;
  }
  .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(3) {
    transition-delay: 200ms;
  }
  .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(4), .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(5) {
    width: 120%;
  }
  .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(4) {
    transition-delay: 80ms;
  }
  .FloatingMenu__btn.-opened .FloatingMenu__btnLine:nth-child(5) {
    transition-delay: 280ms;
  }
  body.-fixed .Header {
    padding-right: var(--scroll-bar-width);
  }
  body.-fixed .FloatingMenu {
    min-width: calc(320px + var(--scroll-bar-width));
    padding-right: calc(20px + var(--scroll-bar-width));
  }
  .Breadcrumbs {
    margin-bottom: 20px;
  }
  .Breadcrumbs, .Breadcrumbs__container, .Breadcrumbs__viewport, .Breadcrumbs__list {
    height: 30px;
  }
  .Breadcrumbs__item + .Breadcrumbs__item::before {
    margin: 0 10px;
  }
  .Footer__body {
    padding: 30px 0;
  }
  .Footer__logo {
    margin-bottom: 10px;
  }
  .Footer__bottom {
    margin-top: 19px;
  }
  .Footer__copyright {
    display: block;
    margin-top: 29px;
  }
  .FooterBanners {
    padding: 40px 0;
  }
  .FooterBanners__inner {
    justify-content: space-between;
    max-width: 474px;
  }
  .FooterBanners__item {
    width: calc((100% - 10px) / 2);
    max-width: 232px;
  }
  .FooterBanners__item:nth-child(n+3) {
    margin-top: 10px;
  }
  .FooterCate__ttl {
    display: flex;
    align-items: center;
    height: 40px;
    border-top: 1px solid #DCE6F2;
    background: url(/image/cmn/ico_arrow_down.png) no-repeat center right 10px;
    background-size: 8px 5px;
  }
  .FooterCate.-opened .FooterCate__ttl {
    background-image: url(/image/cmn/ico_arrow_up.png);
  }
  .FooterCate__body {
    display: none;
  }
  .FooterCate__list {
    padding: 8px 10px 20px;
  }
  .FooterCate__item + .FooterCate__item {
    margin-top: 11px;
  }
  .FooterOthers {
    border-bottom: 1px solid #DCE6F2;
  }
  .FooterOthers__item {
    display: flex;
    align-items: center;
    height: 36px;
    border-top: 1px solid #DCE6F2;
  }
  .FooterPrivacies__item + .FooterPrivacies__item {
    margin-top: 14px;
  }
  .FooterCompany__address {
    margin-top: 8px;
  }
  .ScrollTop {
    bottom: 100px;
    bottom: calc(env(safe-area-inset-bottom) + 100px);
    /* iPhone X向け記述 */
  }
  .ScrollTop__link {
    width: 44px;
    height: 44px;
  }
  .ScrollTop.-fit {
    top: -22px;
  }
  .ly_FullBg__heading {
    margin-bottom: 30px;
  }
  .ly_FullBg.-cont {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 60px;
  }
  .ly_FullBg.-heading {
    margin-top: 60px;
    padding: 15px 0;
    margin-bottom: 30px;
  }
  .ly_Col > .ly_Col__item + .ly_Col__item {
    margin-top: 30px;
  }
  .ly_Col.-half .ly_Col__item.-img::before {
    padding-top: 61.7910447761%;
  }
  .ly_Col__item.-cont, .ly_Col__item.-img {
    max-width: 100%;
    width: 100%;
  }
  .hp_PcBreak {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .Link:hover, .Link:focus {
    text-decoration: none;
  }
  .LinkTransition:hover, .LinkTransition:focus {
    transform: translateX(15px);
  }
  .LinkTransition.-assist:hover, .LinkTransition.-assist:focus {
    transform: none;
  }
  .LinkAssist:hover, .LinkAssist:focus {
    text-decoration: none;
  }
  .Btn.-ty {
    max-width: 120px;
  }
  .Btn.-sm {
    max-width: 160px;
  }
  .Btn.-md {
    max-width: 200px;
  }
  .Btn.-lg {
    max-width: 320px;
  }
  .Btn:hover, .Btn:focus {
    background-color: #F3F6F9;
    box-shadow: none;
  }
  .Btn.-primaryBlue:hover, .Btn.-primaryBlue:focus {
    background-color: #52A5FF;
  }
  .Btn.-primaryPink:hover, .Btn.-primaryPink:focus {
    background-color: #FF7C7C;
  }
  .Btn.-secondary:hover, .Btn.-secondary:focus {
    background-color: #0C4681;
  }
  .Btn.-lineGreen:hover, .Btn.-lineGreen:focus {
    background-color: #48DA90;
  }
  .Btn.-back.-md {
    max-width: 240px;
  }
  .Btn.-next.-md {
    max-width: 240px;
  }
  .Btn.-pdf.-md {
    max-width: 300px;
  }
  .FormItem__ttl::before {
    margin-top: 1px;
  }
  .FormItem__inputWrap.-half {
    width: 50%;
  }
  .FormItem.-confirm .FormItem__ttl {
    padding-left: 10px;
    letter-spacing: 0.05em;
  }
  input[type=text].-sm,
input[type=email].-sm,
input[type=tel].-sm,
input[type=number].-sm {
    max-width: 300px;
  }
  .SelectBox.-sm {
    max-width: 300px;
  }
  .RadioBtn__input + label {
    font-size: 1.8rem;
  }
  * > .RadioBtn {
    display: inline-flex;
  }
  * > .RadioBtn + .RadioBtn {
    margin-left: 40px;
  }
  .Checkbox__input + label {
    font-size: 1.8rem;
  }
  .ListStep__item:after {
    content: "";
    display: block;
    min-width: 20px;
    min-height: 20px;
    background: url(/image/cmn/ico_arrow_right_blue.svg) no-repeat center/contain;
    margin-left: 10px;
    margin-right: 10px;
  }
  .ListStep__item:last-child:after {
    display: none;
  }
  .Heading.-withEn .Heading__txtArea {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
  }
  .Subheading.-withIco .Subheading__txt {
    letter-spacing: normal;
  }
  .Modal__close:hover, .Modal__close:focus {
    background-color: #F3F6F9;
    box-shadow: none;
  }
  .Modal__inner {
    padding: 40px 30px;
  }
  .TabMenu__label:hover, .TabMenu__label:focus {
    border-color: #002E5D;
  }
  .TabMenu__label {
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  .AnchorLink:hover, .AnchorLink:focus {
    border-color: #002E5D;
    background-position-y: 22px;
  }
  .AnchorLink__list {
    margin: -5px 0 0 -20px;
  }
  .AnchorLink__listItem {
    margin: 5px 0 0 20px;
  }
  .Card:hover, .Card:focus {
    box-shadow: 0px 4px 16px rgba(1, 71, 147, 0);
  }
  .Card:hover .Card__header img, .Card:focus .Card__header img {
    opacity: 0.6;
  }
  .Card:hover .Card__linkTxt, .Card:focus .Card__linkTxt {
    text-decoration: underline;
  }
  .FAQItem__cont {
    line-height: 1.72;
  }
  .RelationLink {
    color: #002E5D;
  }
  .RelationLink:hover, .RelationLink:focus {
    text-decoration: underline;
  }
  .RelationLink__accordion {
    margin-bottom: 60px;
  }
  .RelationLink__accordionTtl {
    display: none;
  }
  .RelationLink__list {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #DCE6F2;
    border-bottom: 1px solid #DCE6F2;
  }
  .RelationLink__listItem {
    line-height: 1;
    color: #2E8BF0;
    font-weight: 600;
  }
  .RelationLink__listItem + .RelationLink__listItem {
    margin-left: 32px;
  }
  .SearchSideForm__ttlAccordionToggle {
    display: none;
  }
  .Header__inner {
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .Header__logo {
    position: relative;
    pointer-events: none;
    z-index: 1;
  }
  .Header__menu {
    margin-top: -26px;
  }
  .HeaderLogo__img:hover, .HeaderLogo__img:focus {
    opacity: 0.6;
  }
  .HeaderMenu__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .HeaderMenu__nav {
    order: 1;
    width: 100%;
    padding: 0 58px;
    margin-top: 12px;
  }
  .HeaderMenu__links {
    order: 0;
    width: 100%;
    margin-left: auto;
    height: 26px;
  }
  .HeaderLinks__inner {
    align-items: center;
    justify-content: flex-end;
  }
  .HeaderLinks__item + .HeaderLinks__item {
    margin-left: 20px;
  }
  .HeaderLinks__item.-btn {
    width: 10%;
    max-width: 132px;
  }
  .HeaderLinks__item.-btn + .HeaderLinks__item.-btn {
    margin-left: 10px;
  }
  .HeaderLinks__item.-services {
    display: none;
  }
  .HeaderLinks__link {
    font-size: 1.3rem;
  }
  .HeaderLinks__link:not(.Btn):hover, .HeaderLinks__link:not(.Btn):focus {
    text-decoration: underline;
  }
  .HeaderNav__link {
    display: block;
    padding-top: 8px;
    padding-bottom: 2px;
    font-family: "Noto Sans JP", arial, "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  }
  .HeaderNav__linkTxt {
    padding-bottom: 7px;
    border-bottom: 2px solid rgba(0, 46, 93, 0);
  }
  .HeaderNav__link.-current .HeaderNav__linkTxt {
    border-color: #002E5D;
  }
  .HeaderNav__item:not(.-pets) .HeaderNav__linkTxt {
    transition: 300ms easein;
    transition-property: border-color;
  }
  .HeaderNav__item:not(.-pets).-hover .HeaderNav__linkTxt {
    border-color: #002E5D;
  }
  .HeaderNav__item.-pets .HeaderNav__linkTxt {
    transition: 300ms easein;
    transition-property: color, border-color;
  }
  .HeaderNav:not(.-detail) .HeaderNav__item.-dogs.-hover .HeaderNav__link .HeaderNav__linkTxt {
    border-color: #2E8BF0;
    color: #2E8BF0;
  }
  .HeaderNav:not(.-detail) .HeaderNav__item.-cats.-hover .HeaderNav__link .HeaderNav__linkTxt {
    border-color: #EF6363;
    color: #EF6363;
  }
  .HeaderNav__item.-detail.-dogs .HeaderNav__link.-current .HeaderNav__linkTxt {
    border-color: #2E8BF0;
    color: #2E8BF0;
  }
  .HeaderNav__item.-detail.-cats .HeaderNav__link.-current .HeaderNav__linkTxt {
    border-color: #EF6363;
    color: #EF6363;
  }
  .HeaderNav.-detail .HeaderNav__linkTxt.-current {
    border-bottom: 2px solid #002e5d;
  }
  .HeaderNav.-detail .HeaderNav__item.-dogs.-hover .HeaderNav__link {
    border-color: #2E8BF0;
    color: #2E8BF0;
  }
  .HeaderNav.-detail .HeaderNav__item.-cats.-hover .HeaderNav__link {
    border-color: #EF6363;
    color: #EF6363;
  }
  .HeaderNav__mega {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 17px);
    background: rgba(255, 255, 255, 0.97);
    padding: 40px 0 16px;
  }
  .HeaderNav.-hover .HeaderNav__item:not(.-hover) .HeaderNav__link, .HeaderNav.-hover.-detail .HeaderNav__item:not(.-hover) .HeaderNav__link {
    border-color: transparent;
    color: #002E5D;
    cursor: default;
  }
  .HeaderMega__inner {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 990px;
  }
  .HeaderMega__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 270px);
  }
  .HeaderMega.-detail .HeaderMega__inner {
    align-items: flex-start;
  }
  .HeaderMega.-detail .HeaderMega__item:not(.-top) {
    position: relative;
    width: calc((100% - 20px) / 2);
    padding-left: 20px;
    margin-top: 16px;
  }
  .HeaderMega.-detail .HeaderMega__item:not(.-top):before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    display: block;
    width: 10px;
    height: 2px;
    background: #C3D3E6;
  }
  .HeaderMega.-detail .HeaderMega__item:not(.-top).-empty::before {
    display: none;
  }
  .HeaderMega.-detail .HeaderMega__item:not(.-top) .HeaderMega__link:hover, .HeaderMega.-detail .HeaderMega__item:not(.-top) .HeaderMega__link:focus {
    text-decoration: underline;
  }
  .HeaderMega.-detail .HeaderMega__item.-top {
    width: 100%;
    margin-bottom: 5px;
  }
  .HeaderMega.-detail .HeaderMega__item.-top.-listBtn {
    margin-top: 16px;
    margin-bottom: 0;
  }
  .HeaderMega.-detail .HeaderMega__item.-top.-listBtn .HeaderMega__link {
    border: none;
  }
  .HeaderMega.-detail .HeaderMega__item.-top .HeaderMega__link {
    display: flex;
    align-items: center;
    padding-left: 46px;
    height: 44px;
    background: url(/image/cmn/ico_link_transition.png) no-repeat center left;
    background-size: 26px 6px;
    border-bottom: 1px solid #C3D3E6;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: 300ms easein;
    transition-property: border-color;
  }
  .HeaderMega.-detail .HeaderMega__item.-top .HeaderMega__link:hover, .HeaderMega.-detail .HeaderMega__item.-top .HeaderMega__link:focus {
    border-color: #002E5D;
  }
  .HeaderMega.-detail.-event .HeaderMega__links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 49px (1fr)[calc(var(--menuLength) / 2)];
    grid-template-rows: 49px repeat(calc(var(--menuLength) / 2), 1fr);
    grid-auto-flow: column;
  }
  .HeaderMega.-detail.-event .HeaderMega__item.-top {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .HeaderMega.-detail.-event .HeaderMega__item:not(.-top) {
    width: 100%;
  }
  .HeaderMega.-list .HeaderMega__item {
    width: calc((100% - 40px) / 2);
  }
  .HeaderMega.-list .HeaderMega__link {
    display: flex;
    align-items: center;
    height: 44px;
    border-bottom: 1px solid #C3D3E6;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: 300ms easein;
    transition-property: border-color;
  }
  .HeaderMega.-list .HeaderMega__link:hover, .HeaderMega.-list .HeaderMega__link:focus {
    border-color: #002E5D;
  }
  .FloatingMenu {
    right: 0;
    top: 27%;
    pointer-events: none;
  }
  .FloatingMenu__item {
    pointer-events: auto;
  }
  .FloatingMenu__item.-btn {
    display: none;
  }
  .FloatingMenu__item + .FloatingMenu__item {
    margin-top: 20px;
  }
  .FloatingMenu__link {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 160px;
    width: 44px;
    border-radius: 10px 0 0 10px;
    letter-spacing: 1px;
    text-indent: 1px;
    font-size: 1.3rem;
    opacity: 1;
    box-shadow: 0px 6px 10px rgba(1, 71, 147, 0.2);
    transition: 300ms easein;
    transition-property: opacity, box-shadow;
  }
  .FloatingMenu__link::before {
    margin-bottom: 8px;
  }
  .FloatingMenu__link:hover, .FloatingMenu__link:focus {
    opacity: 0.6;
    box-shadow: 0px 6px 10px rgba(1, 71, 147, 0);
  }
  body.-fixed .Header {
    padding-right: var(--scroll-bar-width);
    min-width: calc(1024px + var(--scroll-bar-width));
  }
  body.-fixed .FloatingMenu {
    right: var(--scroll-bar-width);
  }
  .Breadcrumbs__link:hover, .Breadcrumbs__link:focus {
    text-decoration: underline;
  }
  .Footer a:hover, .Footer a:focus {
    text-decoration: underline;
  }
  .Footer__logo:hover, .Footer__logo:focus {
    opacity: 0.6;
  }
  .Footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
  }
  .FooterBanners__link:hover, .FooterBanners__link:focus, .FooterBanners__link[target=_blank]:hover, .FooterBanners__link[target=_blank]:focus {
    opacity: 0.6;
  }
  .FooterBanners__item {
    width: 19.4%;
  }
  .FooterBanners__item:not(:nth-child(5n+1)) {
    margin-left: 0.75%;
  }
  .FooterBanners__item:nth-child(n+6) {
    margin-top: 1.56%;
  }
  .FooterLinks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .FooterLinks__row {
    width: calc(16% + 2px);
  }
  .FooterLinks__row.-wide {
    width: 26%;
  }
  .FooterLinks__others {
    width: 100%;
    margin-top: 40px;
  }
  .FooterCate + .FooterCate {
    margin-top: 30px;
  }
  .FooterCate__ttl {
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 1px solid #002E5D;
    font-weight: 600;
  }
  .FooterCate__group + .FooterCate__group {
    margin-top: 14px;
  }
  .FooterCate__groupBody {
    padding-left: 12px;
  }
  .FooterCate__item {
    margin-top: 6px;
  }
  .FooterCate.-specials {
    padding: 20px;
    background-color: #F3F6F9;
    border-radius: 10px;
  }
  .FooterCate.-specials .FooterCate__title {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    border: none;
    color: #002E5D;
    font-weight: 600;
  }
  .FooterOthers {
    display: flex;
    flex-wrap: wrap;
  }
  .FooterOthers__item + .FooterOthers__item {
    margin-left: 20px;
  }
  .FooterPrivacies {
    display: flex;
  }
  .FooterPrivacies__item + .FooterPrivacies__item {
    margin-left: 20px;
  }
  .FooterCompany {
    display: flex;
  }
  .FooterCompany__address {
    margin-left: 20px;
  }
  .ScrollTop__link:hover, .ScrollTop__link:focus {
    background-color: #F3F6F9;
    box-shadow: 0px 2px 8px rgba(1, 71, 147, 0);
  }
  .ly_Col {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }
  .ly_Col > .ly_Col__item {
    display: block;
  }
  .ly_Col > .ly_Col__item + .ly_Col__item {
    margin-left: 40px;
  }
  .ly_Col.-wrap {
    flex-wrap: wrap;
  }
  .ly_Col.-tight > .ly_Col__item + .ly_Col__item {
    margin-left: 30px;
  }
  .ly_Col.-reverse {
    flex-direction: row-reverse;
  }
  .ly_Col.-reverse > .ly_Col__item + .ly_Col__item {
    margin-left: 0;
    margin-right: 40px;
  }
  .ly_Col.-reverse.-tight > .ly_Col__item + .ly_Col__item {
    margin-left: 0;
    margin-right: 30px;
  }
  .ly_Col.-middle {
    align-items: center;
  }
  .ly_Col.-middle > .ly_Col__item {
    -ms-grid-row-align: auto;
    align-self: auto;
  }
  .ly_Col.-half .ly_Col__item + .ly_Col__item {
    margin-left: 60px;
  }
  .ly_Col.-half .ly_Col__item.-img {
    max-width: 50%;
    width: 50%;
  }
  .ly_Col.-half .ly_Col__item.-cont {
    width: calc(50% - 60px);
  }
  .ly_Col.-col2 {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ly_Col.-col2 > .ly_Col__item {
    width: calc((100% - 40px) / 2);
    margin-left: 0;
  }
  .ly_Col.-col2 > .ly_Col__item:nth-child(n+3) {
    margin-top: 40px;
  }
  .ly_Col.-col2.-tight > .ly_Col__item {
    width: calc((100% - 30px) / 2);
    margin-left: 0;
  }
  .ly_Col.-col2.-tight > .ly_Col__item:nth-child(n+3) {
    margin-top: 30px;
  }
  .ly_Col.-col3 {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ly_Col.-col3 > .ly_Col__item {
    width: calc((100% - 80px) / 3);
    margin-left: 0;
  }
  .ly_Col.-col3 > .ly_Col__item:nth-child(n+4) {
    margin-top: 40px;
  }
  .ly_Col.-col3.-tight > .ly_Col__item {
    width: calc((100% - 60px) / 3);
    margin-left: 0;
  }
  .ly_Col.-col3.-tight > .ly_Col__item:nth-child(n+4) {
    margin-top: 30px;
  }
  .ly_Col.-col4 {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ly_Col.-col4 > .ly_Col__item {
    width: calc((100% - 120px) / 4);
    margin-left: 0;
  }
  .ly_Col.-col4 > .ly_Col__item:nth-child(n+5) {
    margin-top: 40px;
  }
  .ly_Col.-col4.-tight > .ly_Col__item {
    width: calc((100% - 90px) / 4);
    margin-left: 0;
  }
  .ly_Col.-col4.-tight > .ly_Col__item:nth-child(n+5) {
    margin-top: 30px;
  }
  .hp_SpBreak {
    display: none;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .HeaderLogo__img {
    width: 132px;
  }
  .HeaderLogo__catch {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .HeaderLinks__item {
    max-width: 60px;
    text-align: center;
  }
  .HeaderLinks__item.-btn {
    max-width: 100px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1090px) {
  .HeaderMenu__nav {
    padding: 0;
  }
}