@charset "UTF-8";
/* =============================================
 *  01. common settings
 *      - background
 *      - content
 *      - text
 *      - button
 *      - list
 *      - pagenation
 *      - form parts
 *  02. header
 *      - upper area
 *      - lower area
 *      - logo
 *      - global navigation
 *      - glonav button
 *      - sub navigation
 *  03. footer
 *      - navigation
 *      - pagetop
 *      - copyright
 *  04. sub page
 *      - breadcrumb
 * -----------------------------------
 *  11. index
 *  12. flow
 *  13. service
 *  14. beginner
 *  15. estimate
 * -----------------------------------
 * -----------------------------------
 *  999. print style
 * ============================================= */
/* ---------------------------------------------------------------------------------------- */
/* ==============================================
 01. Common settings
=============================================== */
/* reset
----------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, main,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

span {
  vertical-align: baseline;
}

/* loader2
 * ---------------------------------- */
#loader2-wrap {
  display: none;
  position: fixed;
  background: #000000;
  /* 色コードを指定 */
  opacity: 0.5;
  /* 透明度を指定 */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
  /* animation */
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#loader2 {
  margin-top: 200px;
  margin-top: 40vh;
  text-align: center;
  color: #ffffff;
  /* 回転するアイコンの色コードを指定 */
}

.ctc_errorMsg {
  background-size: 20px 20px;
  color: #d71618;
  font-size: 13px;
  margin-top: 10px;
  padding-left: 25px;
  display: none;
}

/* skeleton
 * ---------------------------------- */
.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: skeleton-loading 1s linear infinite alternate;
  z-index: 5;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
/* common
----------------------------------------------- */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  margin: 0;
  width: 100%;
}

body {
  background: #fff;
  color: #140700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

a {
  color: #140700;
  outline: medium none;
  text-decoration: none;
  transition: color 200ms;
}

a:visited {
  outline: medium none;
}

a:focus {
  outline: medium none;
  text-decoration: none;
}

a:active, a:hover {
  outline: medium none;
}

a:hover {
  color: #140700;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: bold;
  line-height: 1.4;
}

address {
  font-style: italic;
  margin: 0 0 24px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: none repeat scroll 0 0 #FFFF00;
  color: #000000;
}

p {
  line-height: 1.65;
  margin: 0 0 36px;
  max-height: 100%;
}
@media (max-width: 767px) {
  p {
    margin-bottom: 24px;
  }
}

code, kbd, pre, samp {
  -webkit-hyphens: none;
          hyphens: none;
  font-family: monospace, serif;
  font-size: 14px;
}

pre {
  background: none repeat scroll 0 0 #F5F5F5;
  color: #666666;
  font-family: monospace;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

blockquote, q {
  -webkit-hyphens: none;
          hyphens: none;
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

blockquote {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite, blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}

blockquote em, blockquote i {
  font-style: normal;
  font-weight: 300;
}

blockquote strong, blockquote b {
  font-weight: 400;
}

small {
  font-size: 13px;
  font-size: 1.3rem;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin: 0;
}

dt {
  line-height: 1.8;
  font-weight: bold;
  font-weight: 600;
  margin: 0;
}

dd {
  line-height: 1.8;
  margin: 0;
}

menu, ol, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

li {
  line-height: 1.8;
}

th {
  font-weight: bold;
  font-weight: 600;
  line-height: 1.6em;
}

td {
  line-height: 1.6em;
}

img {
  border: 0 none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  backface-visibility: hidden;
}

input[type=text]:focus,
textarea:focus {
  outline: 0;
}

button {
  outline: 0;
  border: none;
}

a[href^="tel:"] {
  cursor: default;
}

/* Image
 * ---------------------------------- */
img {
  height: auto;
  max-width: 100%;
}

@media (max-width: 359px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 360px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1039px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1040px) {
  .hidden-lg {
    display: none !important;
  }
}
/* ==============================================
 02. Layout
=============================================== */
.wrapper {
  padding-top: 72px;
}
@media (max-width: 767px) {
  .wrapper {
    padding-top: 50px;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1030px;
  position: relative;
}

.section-wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .section-wrapper {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}

.content-wrapper {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

/* float
----------------------------------------------- */
.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

/* clearfix
----------------------------------------------- */
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* ==============================================
 03. Font
=============================================== */
/* Font size
----------------------------------------------- */
.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-small {
  font-size: 80%;
}

/* Font color
----------------------------------------------- */
.fc-dark {
  color: #140700;
}

.fc-primary {
  color: #df0515;
}

.fc-link {
  color: #0064DE;
}

.fc-danger {
  color: #DF0714;
}

.fc-mute {
  color: #999999;
}

/* Font family
----------------------------------------------- */
.ff-en {
  font-family: "Inter", sans-serif;
}

/* text
 * ---------------------------------- */
.text-error {
  color: #DF0714;
  font-size: 13px;
}
@media (max-width: 767px) {
  .text-error {
    font-size: 12px;
  }
}

p.text-error {
  margin-bottom: 0;
}

/* align
 * ---------------------------------- */
.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

/* ==============================================
 04. Parts
=============================================== */
/* button
----------------------------------------------- */
.btn {
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 15px 20px;
  max-width: 100%;
  text-align: center;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .btn {
    font-size: 15px;
  }
}
.btn-primary {
  background-color: #df0515;
  color: #fff;
  border: 1px solid #df0515;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #df0515;
  color: #fff;
}
@media (min-width: 1040px) {
  .btn-primary {
    transition: background-color 200ms;
  }
  .btn-primary:hover {
    background-color: rgb(249.9342105263, 29.0657894737, 45.2763157895);
  }
}
.btn-sub {
  border: 1px solid #ffe100;
  color: #df0515;
  background-color: #ffe100;
  border: none;
}
.btn-sub:hover, .btn-sub:active, .btn-sub:focus {
  color: #df0515;
  background-color: #ffe100;
}
.btn-secondary {
  background-color: #666666;
  border: none;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background-color: #666666;
}
.btn-border {
  background-color: #fff;
  border: 1px solid #d5dbe2;
  color: #140700;
}
.btn-border:hover, .btn-border:active, .btn-border:focus {
  color: #140700;
}
.btn-border-primary {
  background-color: #fff;
  border: 1px solid #df0515;
  color: #df0515;
}
.btn-border-primary:hover, .btn-border-primary:active, .btn-border-primary:focus {
  color: #df0515;
}
.btn-full {
  width: 100%;
}
.btn-large {
  width: 480px;
}
.btn-medium {
  width: 320px;
}
.btn-small {
  width: 240px;
}
@media (max-width: 767px) {
  .btn-small {
    width: 180px;
  }
}

.btn-search {
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 24px 20px 26px;
  text-align: center;
  width: 560px;
}
@media (max-width: 767px) {
  .btn-search {
    font-size: 17px;
    padding: 20px 20px 22px;
  }
}
.btn-search .btn-icon {
  background-image: url("../../../img/campaign/990061/icon_search_white.png");
  background-position: 0 55%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: inline-block;
  padding-left: 32px;
}
@media (max-width: 767px) {
  .btn-search .btn-icon {
    background-size: 17px 17px;
    padding-left: 27px;
  }
}

/* 20251211ここから追加 */
.cv-btn-area {
  margin: 50px auto 70px;
}
@media (max-width: 767px) {
  .cv-btn-area {
    margin: 30px auto 50px;
  }
}

/* 20251211ここまで追加 */
/* background
----------------------------------------------- */
.bg-base {
  background-color: #f4f5f6 !important;
}

.bg-dark-blue {
  background-color: #0c2557 !important;
}

.bg-primary {
  background-color: #df0515 !important;
}

.bg-secondary {
  background-color: #666666 !important;
}

.bg-danger {
  background-color: #DF0714 !important;
}

/* list
----------------------------------------------- */
/*ul*/
ul.default-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

ul.default-list li {
  text-indent: -1em;
  padding-left: 1em;
}

ul.default-list li:before {
  display: inline;
  content: "・";
}

ul.attention-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

ul.attention-list li {
  text-indent: -1em;
  padding-left: 1em;
}

ul.attention-list li:before {
  display: inline;
  content: "※";
}

ul.attention-list li.attention {
  color: #de5233;
  font-size: 120%;
  font-weight: bolder;
}

/* ol */
ol.default-list {
  padding-left: 1.5em;
}

/* dl */
dl.horizontal-list {
  margin: 0;
}

dl.horizontal-list dd {
  margin-bottom: 0.5em;
}

dl.horizontal-list dd.mb-15 {
  margin-bottom: 15px;
}

@media (min-width: 1040px) {
  dl.horizontal-list dt {
    clear: both;
    float: left;
    width: 25%;
  }
  dl.horizontal-list dd {
    padding-left: 25%;
  }
}
/* ==============================================
 05. Form
=============================================== */
/* layout
----------------------------------------------- */
.form-inline {
  display: flex;
  flex-wrap: wrap;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

.form-required {
  color: #DF0714;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  margin-left: 0.5em;
  vertical-align: baseline;
}

textarea.form-control:-moz-read-only {
  background-color: #F0F0F0;
}

textarea.form-control:read-only {
  background-color: #F0F0F0;
}
textarea.form-control:-moz-read-only:focus {
  -ms-box-shadow: none;
  box-shadow: none;
}
textarea.form-control:read-only:focus {
  -ms-box-shadow: none;
  box-shadow: none;
}

.form-field-inline {
  display: flex;
  flex-wrap: wrap;
}

.form-group-inline {
  display: flex;
  margin-bottom: 1.5rem;
}
.form-group-inline .form-label {
  color: #666666;
  font-weight: normal;
  margin-bottom: 0;
  padding-top: 1.2rem;
  margin-right: 10px;
  width: 200px;
}
.form-group-inline .form-field {
  color: #666666;
  flex: 1;
  min-width: 0;
}
.form-group-inline input.form-control, .form-group-inline input[type=number].form-control, .form-group-inline input[type=email].form-control, .form-group-inline button.form-control, .form-group-inline textarea.form-control, .form-group-inline .form-select {
  color: #666666;
}
.form-group-inline .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #666666;
}
.form-group-inline .form-control-preview {
  color: #666666;
}

.form-inline-parts {
  display: flex;
}
.form-inline-parts .form-control {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.form-inline-parts .btn {
  border-radius: 0 4px 4px 0;
}

.form-group-mw900 {
  max-width: 900px;
}

.form-group-border {
  border-bottom: 1px solid #d5dbe2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.form-parts-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.form-parts-inline > * {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.form-parts-inline > *:last-child {
  margin-right: 0;
}

.form-submit-buttons .btn-submit {
  border: 2px solid #0064DE;
  width: 170px;
  border-radius: 50px;
}
.form-submit-buttons .btn-cancel {
  background-color: #fff;
  border: 2px solid #0064DE;
  color: #0064DE;
  width: 170px;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .form-submit-buttons .btn-submit {
    margin-right: 4%;
    width: 48%;
  }
  .form-submit-buttons .btn-cancel {
    width: 48%;
  }
}

.form-btn-area__center {
  text-align: center;
}

.form-check-list {
  display: flex;
  flex-wrap: wrap;
}
.form-check-list li {
  margin-right: 30px;
  margin-bottom: 15px;
}
.form-check-list li:last-child {
  margin-right: 0;
}

.form-vertical-list li {
  margin-bottom: 2rem;
}
.form-vertical-list li:last-child {
  margin-bottom: auto;
}

/* parts
----------------------------------------------- */
button {
  background-color: transparent;
  border: none;
  font-size: 100%;
  color: #140700;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* form default */
input.form-control, input[type=number].form-control, input[type=email].form-control, button.form-control, textarea.form-control {
  background-color: #fff;
  border: 1px solid #d5dbe2;
  color: #140700;
  font-size: 16px;
  padding: 24px 26px;
  border-radius: 6px;
  box-shadow: none;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: border 200ms, box-shadow 200ms;
}
@media (max-width: 767px) {
  input.form-control, input[type=number].form-control, input[type=email].form-control, button.form-control, textarea.form-control {
    padding: 18px 16px;
  }
}

input[type=submit],
input[type=button],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus,
button:focus {
  outline-offset: -2px;
  outline: 0;
}

input[type=text].form-control:focus, input[type=number].form-control:focus, input[type=password].form-control:focus, input[type=email].form-control:focus, input[type=tel].form-control:focus, input[type=url].form-control:focus, textarea.form-control:focus {
  border-color: #df0515;
  box-shadow: 0 0 10px rgba(223, 5, 21, 0.08);
  outline: 0;
}

input[type=text].form-zip {
  width: 140px;
}

input[type=text].form-control:-moz-read-only, input[type=number].form-control:-moz-read-only, input[type=password].form-control:-moz-read-only, input[type=email].form-control:-moz-read-only, input[type=tel].form-control:-moz-read-only, input[type=url].form-control:-moz-read-only, textarea.form-control:-moz-read-only {
  background-color: #F0F0F0;
  box-shadow: none;
}

input[type=text].form-control:read-only, input[type=number].form-control:read-only, input[type=password].form-control:read-only, input[type=email].form-control:read-only, input[type=tel].form-control:read-only, input[type=url].form-control:read-only, textarea.form-control:read-only {
  background-color: #F0F0F0;
  box-shadow: none;
}

input[type=text].form-control:-moz-read-only:focus, input[type=number].form-control:-moz-read-only:focus, input[type=password].form-control:-moz-read-only:focus, input[type=email].form-control:-moz-read-only:focus, input[type=tel].form-control:-moz-read-only:focus, input[type=url].form-control:-moz-read-only:focus, textarea.form-control:-moz-read-only:focus {
  border-color: #ced4da;
  box-shadow: none;
}

input[type=text].form-control:read-only:focus, input[type=number].form-control:read-only:focus, input[type=password].form-control:read-only:focus, input[type=email].form-control:read-only:focus, input[type=tel].form-control:read-only:focus, input[type=url].form-control:read-only:focus, textarea.form-control:read-only:focus {
  border-color: #ced4da;
  box-shadow: none;
}

.form-control-preview {
  border: 1px solid #d5dbe2;
  color: #140700;
  font-size: 14px;
  padding: 1.1rem;
  border-radius: 4px;
}

/* checkbox */
.form-check {
  padding-left: 0;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.form-check input[type=checkbox].form-check-input {
  position: absolute;
  display: none;
  z-index: -1;
}
.form-check .form-check-text {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .form-check .form-check-text {
    font-size: 14px;
  }
}
.form-check .form-check-text::before {
  content: "";
  background-color: transparent;
  border: 1px solid #666666;
  height: 16px;
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .form-check .form-check-text::before {
    top: 1px;
  }
}
.form-check input[type=checkbox].form-check-input:checked + .form-check-text::before {
  background-color: #df0515;
  border: 1px solid #df0515;
}
.form-check input[type=checkbox].form-check-input:checked + .form-check-text::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6.5px;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .form-check input[type=checkbox].form-check-input:checked + .form-check-text::after {
    top: 5px;
  }
}
.form-check input[type=checkbox].form-check-input:disabled + .form-check-text {
  color: #999999;
}
.form-check input[type=checkbox].form-check-input:disabled + .form-check-text::before {
  background-color: #ced4da;
  border: 1px solid #ced4da;
}
.form-check.form-check-no-text .form-check-label {
  display: block;
}
.form-check.form-check-no-text .form-check-text {
  padding-left: 0;
  height: 16px;
  width: 16px;
  display: block;
}

/* radio */
.form-radio {
  padding-left: 0;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.form-radio input[type=radio].form-radio-input {
  position: absolute;
  display: none;
  z-index: -1;
}
.form-radio .form-radio-text {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .form-radio .form-radio-text {
    font-size: 14px;
  }
}
.form-radio .form-radio-text::before {
  content: "";
  background-color: transparent;
  border: 1px solid #666666;
  height: 16px;
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .form-radio .form-radio-text::before {
    top: 0;
  }
}
.form-radio input[type=radio].form-radio-input:checked + .form-radio-text::before {
  background-color: #df0515;
  border-color: #df0515;
}
.form-radio input[type=radio].form-radio-input:checked + .form-radio-text::after {
  background-color: #fff;
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .form-radio input[type=radio].form-radio-input:checked + .form-radio-text::after {
    top: 4px;
  }
}
.form-radio input[type=radio].form-radio-input:disabled + .form-radio-text {
  color: #999999;
}
.form-radio input[type=radio].form-radio-input:disabled + .form-radio-text::before {
  background-color: #ced4da;
  border: 1px solid #ced4da;
}
.form-radio.form-radio-no-text .form-radio-label {
  display: block;
}
.form-radio.form-radio-no-text .form-radio-text {
  padding-left: 0;
  height: 20px;
  width: 20px;
  display: block;
}

/* selectbox */
.form-select {
  color: #140700;
  border-color: #d5dbe2;
  font-size: 14px;
  padding: 1.1rem 3rem 1.1rem 1.1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23242F42' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.form-select.no-value {
  color: #999999;
}
.form-select:active, .form-select:focus {
  border-color: #0c2557;
  box-shadow: none;
}

.form-note {
  margin: 0;
  line-height: 1.6;
  font-size: 12px;
}

/* parts */
.form-parts-icon {
  position: relative;
}
.form-parts-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.form-parts-icon .form-select {
  padding-left: 34px;
}

.form-parts-unit {
  position: relative;
}
.form-parts-unit .form-control {
  padding-right: 1.8rem;
}
.form-parts-unit .form-unit {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 1;
}

/* placeholder */
.form-control::-moz-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #999999;
  opacity: 1;
}
.form-control::placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #999999;
  opacity: 1;
}

/* IE */
.form-control:-ms-input-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #999999;
  opacity: 1;
}

/* Edge */
.form-control::-ms-input-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #999999;
  opacity: 1;
}

/* Chrome, Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox, IE */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

/* Chrome autofill */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}

/* tel link
 * ---------------------------------- */
@media (min-width: 1040px) {
  a[href^="tel:"] {
    cursor: default;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
  }
}
/* ==============================================
 02. header
=============================================== */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  height: 72px;
  position: fixed;
  display: flex;
  align-items: center;
  padding: 0 20px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 767px) {
  .site-header {
    height: 50px;
    padding: 0 12px 0 12px;
  }
}
.site-header .header-logo {
  align-items: center;
  display: flex;
  margin-right: 5px;
}
.site-header .header-logo .logo-corp {
  margin-right: 20px;
}
.site-header .header-logo img {
  display: block;
}
@media (max-width: 767px) {
  .site-header .header-logo .logo-corp {
    margin-right: 8px;
  }
  .site-header .header-logo .logo-corp img {
    width: 77px;
  }
  .site-header .header-logo .logo img {
    width: 90px;
  }
}
@media (max-width: 350px) {
  .site-header .header-logo .logo-corp {
    margin-right: 6px;
  }
}
.site-header .header-btns {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.site-header .header-btns .header-btn {
  margin-right: 10px;
}
.site-header .header-btns .header-btn:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .site-header .header-btns .header-btn {
    margin-left: 8px;
    margin-right: auto;
  }
}
.site-header .header-btns .header-btn .r-btn {
  border: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
  padding: 11px;
  width: 180px;
  white-space: nowrap;
  border-radius: 50px;
}
@media (max-width: 1440px) {
  .site-header .header-btns .header-btn .r-btn {
    width: 160px;
  }
}
@media (max-width: 1280px) {
  .site-header .header-btns .header-btn .r-btn {
    font-size: 14px;
    width: 120px;
  }
}
@media (max-width: 767px) {
  .site-header .header-btns .header-btn .r-btn {
    font-size: 10px;
    padding: 7px 0;
    width: 68px;
  }
}
@media (max-width: 350px) {
  .site-header .header-btns .header-btn .r-btn {
    width: 60px;
  }
}
.site-header .header-btns .header-btn .r-btn.btn-login {
  background-color: #fff;
  color: #df0515;
  border: 1px solid #df0515;
}
.site-header .header-btns .header-btn .r-btn.btn-reserve {
  background-color: #df0515;
  border: 1px solid #df0515;
  color: #fff;
}

/* ==============================================
 03. footer
=============================================== */
.site-footer {
  background-color: #fff;
  padding: 50px 16px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0 0;
    text-align: left;
  }
}
.site-footer::before {
  content: none;
}
@media (max-width: 767px) {
  .site-footer .container {
    padding: 0;
  }
}
.site-footer .footer-logo {
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer .footer-nav ul {
    border-top: 1px solid #cccccc;
  }
}
.site-footer .footer-nav ul li {
  border-right: 1px solid #cccccc;
  display: inline-block;
  margin: 0 8px 10px 0;
  padding-right: 12px;
  line-height: 1;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .site-footer .footer-nav ul li {
    display: block;
    border-right: none;
    border-bottom: 1px solid #dcdddd;
    padding: 0;
    margin: 0;
  }
}
.site-footer .footer-nav ul li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.site-footer .footer-nav ul li a {
  color: #140700;
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 767px) {
  .site-footer .footer-nav ul li a {
    display: block;
    font-weight: bold;
    padding: 15px 20px 15px 34px;
    position: relative;
    font-size: 12px;
  }
  .site-footer .footer-nav ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -3.5px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #df0515;
    border-right: 2px solid #df0515;
    transform: rotate(45deg);
    left: 15px;
  }
}
.site-footer .copyright {
  margin-bottom: 0;
  font-size: 13px;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .site-footer .copyright {
    background-color: #999999;
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 10px 16px;
  }
}

/* pagetop
 * ---------------------------------- */
.pagetop {
  display: none;
  cursor: pointer;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 99;
}
@media (max-width: 767px) {
  .pagetop {
    display: none !important;
    right: 20px;
    bottom: 20px;
  }
}

/* Cookie Dialog */
#gdpr-cookie-message {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #000;
  background-color: #fff;
  padding: 20px 0 20px;
  z-index: 9999;
}

#gdpr-cookie-message .container {
  position: relative;
}

#gdpr-cookie-message h4 {
  display: none;
}

#gdpr-cookie-message h5 {
  display: none;
}

#gdpr-cookie-message p {
  line-height: 1.7;
  font-size: 80%;
  margin-bottom: 0;
  padding-right: 220px;
}

#gdpr-cookie-message p:last-child {
  margin-bottom: 0;
  padding-right: 0;
  text-align: right;
}

#gdpr-cookie-message a {
  color: #000;
  text-decoration: underline;
}

#gdpr-cookie-message a:hover {
  text-decoration: none;
}

#gdpr-cookie-message button#gdpr-cookie-accept {
  background-color: #000;
  color: #fff;
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 12px;
  margin: 0;
  position: absolute;
  top: 0px;
  right: 16px;
}

button#gdpr-cookie-advanced {
  display: none;
}

@media (max-width: 1039px) {
  #gdpr-cookie-message {
    padding: 20px 10px;
  }
  #gdpr-cookie-message p {
    padding-right: 0;
    margin-bottom: 6px;
  }
  #gdpr-cookie-message p:last-child {
    text-align: center;
    margin-top: 16px;
  }
  #gdpr-cookie-message button#gdpr-cookie-accept {
    position: static;
    top: auto;
    right: auto;
    padding: 8px;
    display: block;
    width: 100%;
  }
}
#gdpr-cookie-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: 9998;
}

/* ::::::::::::::::::::::::::::::::::::::::::
 *  04. breadcrumb
 * :::::::::::::::::::::::::::::::::::::::::: */
.breadcrumbs {
  font-size: 13px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}

@media (max-width: 767px) {
  .breadcrumbs {
    font-size: 11px;
    margin-top: 3px;
  }
}
.breadcrumbs li {
  display: inline;
  line-height: 1.2;
  color: #fff;
  vertical-align: baseline;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin: 0 8px 0 10px;
}

@media (max-width: 767px) {
  .breadcrumbs li:not(:last-child)::after {
    margin: 0 2px 0 5px;
  }
}
.breadcrumbs li a {
  color: #fff;
  vertical-align: baseline;
}

/* billboard
 * ---------------------------------- */
.page-billboard {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 210px;
}
@media (max-width: 767px) {
  .page-billboard {
    padding-top: 95px;
    padding-bottom: 100px;
  }
}
.page-billboard .page-title {
  color: #fff;
  letter-spacing: 0.03em;
  margin: 0 auto;
}
.page-billboard-service {
  background-image: url("../../../img/campaign/990061/billboard_pc.jpg");
}
@media (max-width: 767px) {
  .page-billboard-service {
    background-image: url("../../../img/campaign/990061/billboard_sp.jpg");
  }
}

/* page title
 * ---------------------------------- */
.page-title {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .page-title {
    font-size: 23px;
  }
}

/* ==============================================
 11. index
=============================================== */
.top-heading {
  font-size: 34px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .top-heading {
    font-size: 23px;
    margin-bottom: 14px;
  }
}

.top-mv {
  background-color: #f4f5f6;
}
.top-mv .content-wrapper {
  left: 50%;
  position: relative;
  margin-left: -960px;
  width: 1920px;
}
@media (max-width: 767px) {
  .top-mv .content-wrapper {
    left: auto;
    margin-left: auto;
    position: static;
    width: auto;
  }
}
.top-mv .mv-pc {
  display: flex;
}
.top-mv .mv-pc .mv-img {
  position: relative;
  width: 37%;
}
.top-mv .mv-pc .mv-img picture, .top-mv .mv-pc .mv-img img {
  display: block;
  width: 100%;
}
.top-mv .mv-pc .mv-img img {
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}
.top-mv .mv-pc .mv-center img {
  display: block;
}
.top-mv .mv-pc .mv-center h1 {
  padding: 0;
  margin: 0;
}
.top-mv .mv-sp img {
  display: block;
  width: 100%;
}

/* ==============================================
 13. service
=============================================== */
/* 20251211ここから修正 */
.service-first {
  background-color: #f4f5f6;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .service-first {
    padding-bottom: 80px;
  }
}
.service-first .copy {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
@media (max-width: 1039px) {
  .service-first .copy {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .service-first .copy {
    font-size: 23px;
  }
}
@media (max-width: 360px) {
  .service-first .copy {
    font-size: 6vw;
  }
}
.service-first .copy span {
  display: inline-block;
  letter-spacing: -0.35em;
}
.service-first .copy + p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .service-first .copy + p {
    font-size: 13px;
  }
}
.service-first .point-list {
  display: flex;
  margin: 70px auto 100px;
}
@media (max-width: 767px) {
  .service-first .point-list {
    flex-wrap: wrap;
    margin: 35px auto 30px;
    padding: 0 3%;
  }
}
.service-first .point-list li {
  margin-right: 2%;
  text-align: center;
  width: 23.5%;
}
@media (max-width: 767px) {
  .service-first .point-list li {
    margin-right: 0;
    margin-bottom: 30px;
    width: 50%;
  }
}
.service-first .point-list li:last-child {
  margin-right: 0;
}
.service-first .point-list li .img {
  margin-bottom: 10px;
  padding-left: 5%;
}
@media (max-width: 767px) {
  .service-first .point-list li .img {
    padding-left: 0;
  }
}
.service-first .point-list li .img img {
  width: 190px;
}
@media (max-width: 767px) {
  .service-first .point-list li .img img {
    width: 150px;
  }
}
.service-first .point-list li p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-first .point-list li p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.service-first .wreath-wrapper {
  max-width: 1480px;
  margin: 0 auto 90px;
  position: relative;
}
@media (max-width: 767px) {
  .service-first .wreath-wrapper {
    margin-bottom: 30px;
  }
}
.service-first .wreath-wrapper .img {
  width: 74.32%;
}
@media (max-width: 767px) {
  .service-first .wreath-wrapper .img {
    width: 100%;
  }
}
.service-first .wreath-wrapper .img img {
  display: block;
  width: 100%;
}
.service-first .wreath-wrapper .txt {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  display: flex;
  height: 93%;
  position: absolute;
  align-items: center;
  justify-content: center;
  padding: 50px;
  bottom: -28px;
  right: 0;
  text-align: center;
  width: 500px;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-first .wreath-wrapper .txt {
    height: auto;
    position: relative;
    bottom: auto;
    right: auto;
    padding: 42px 20px;
    margin: -50px 20px 0;
    width: auto;
  }
}
.service-first .wreath-wrapper .txt .logo-rakuraku {
  margin-bottom: 40px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .service-first .wreath-wrapper .txt .logo-rakuraku {
    margin-bottom: 25px;
    padding-right: 10px;
  }
  .service-first .wreath-wrapper .txt .logo-rakuraku img {
    width: 225px;
  }
}
.service-first .wreath-wrapper .txt .wreath-txt {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .service-first .wreath-wrapper .txt .wreath-txt {
    margin-bottom: 25px;
  }
  .service-first .wreath-wrapper .txt .wreath-txt img {
    width: 200px;
  }
}
.service-first .wreath-wrapper .txt p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-first .wreath-wrapper .txt p img {
    width: 190px;
  }
}

.service-after {
  background-color: #e8f2f7;
  position: relative;
}
.service-after .shaken-illust {
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .service-after .shaken-illust {
    top: -33px;
    width: 95px;
  }
}
.service-after .box {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 40px;
}
@media (max-width: 767px) {
  .service-after .box {
    border-radius: 3px;
    padding: 24px;
  }
}
.service-after h2 {
  font-size: 32px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 55px;
  margin-top: 6px;
}
@media (max-width: 1039px) {
  .service-after h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .service-after h2 {
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: 12px;
  }
}
@media (max-width: 360px) {
  .service-after h2 {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
.service-after h2 small {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
  padding: 0 0.86em 0 1em;
}
@media (max-width: 1039px) {
  .service-after h2 small {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .service-after h2 small {
    font-size: 19px;
  }
}
@media (max-width: 360px) {
  .service-after h2 small {
    font-size: 17px;
  }
}
.service-after h2 small::before, .service-after h2 small::after {
  content: "";
  background-color: #140700;
  height: 1px;
  position: absolute;
  top: 0.8em;
  width: 1em;
}
.service-after h2 small::before {
  left: 0;
  transform: rotate(65deg);
}
.service-after h2 small::after {
  right: 0;
  transform: rotate(-65deg);
}
.service-after h2 strong {
  color: #0096db;
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .service-after h2 strong {
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .service-after h2 strong {
    font-size: 24px;
  }
}
.service-after .service-after-heading {
  color: #2c4585;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 35px;
  text-align: center;
}
@media (max-width: 767px) {
  .service-after .service-after-heading {
    font-size: 21px;
    margin-bottom: 18px;
  }
}
@media (max-width: 360px) {
  .service-after .service-after-heading {
    font-size: 19px;
  }
}
.service-after .service-after-heading small {
  background: linear-gradient(transparent 20%, #fff66d 20%);
  display: inline-block;
  color: #140700;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .service-after .service-after-heading small {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .service-after .service-after-heading small {
    font-size: 15px;
  }
}
.service-after .service-feature .container {
  max-width: 1230px;
}
.service-after .service-feature h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .service-after .service-feature h3 {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
@media (max-width: 360px) {
  .service-after .service-feature h3 {
    font-size: 15px;
  }
}
.service-after .service-feature h3 strong {
  color: #0096db;
}
.service-after .service-feature .feature-list {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list {
    border-radius: 3px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.service-after .service-feature .feature-list > li {
  position: relative;
  text-align: center;
  padding: 50px 20px 50px;
  width: 20%;
}
@media (max-width: 1039px) {
  .service-after .service-feature .feature-list > li {
    padding: 50px 10px 50px;
  }
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li {
    padding: 40px 2px 45px;
    width: 50%;
  }
  .service-after .service-feature .feature-list > li:last-child {
    width: 100%;
  }
  .service-after .service-feature .feature-list > li:nth-child(even)::after {
    content: none;
  }
  .service-after .service-feature .feature-list > li:nth-child(3) .icon img {
    width: 42px;
  }
  .service-after .service-feature .feature-list > li:nth-child(4) .icon img {
    width: 48px;
  }
  .service-after .service-feature .feature-list > li:nth-child(5) .icon img {
    width: 32px;
  }
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
  }
}
.service-after .service-feature .feature-list > li:not(:last-child)::after {
  content: "";
  background-color: #eaeaea;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
}
.service-after .service-feature .feature-list > li .baloon {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li .baloon {
    top: -30px;
    width: 66px;
  }
}
@media (max-width: 360px) {
  .service-after .service-feature .feature-list > li .baloon {
    top: -26px;
    width: 60px;
  }
}
.service-after .service-feature .feature-list > li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li .icon {
    margin-bottom: 0;
  }
  .service-after .service-feature .feature-list > li .icon img {
    width: 33px;
  }
}
.service-after .service-feature .feature-list > li h4 {
  color: #0096db;
  font-size: 20px;
  margin-bottom: 26px;
}
@media (max-width: 1039px) {
  .service-after .service-feature .feature-list > li h4 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li h4 {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
@media (max-width: 360px) {
  .service-after .service-feature .feature-list > li h4 {
    font-size: 14px;
  }
}
.service-after .service-feature .feature-list > li p {
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1039px) {
  .service-after .service-feature .feature-list > li p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li p {
    font-size: 13px;
    line-height: 1.5;
  }
}
@media (max-width: 360px) {
  .service-after .service-feature .feature-list > li p {
    font-size: 12px;
  }
}
.service-after .service-feature .feature-list > li .list-wrap {
  display: flex;
  justify-content: center;
}
.service-after .service-feature .feature-list > li .list-wrap ul {
  text-align: left;
}
.service-after .service-feature .feature-list > li .list-wrap ul li {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
}
@media (max-width: 1039px) {
  .service-after .service-feature .feature-list > li .list-wrap ul li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .service-after .service-feature .feature-list > li .list-wrap ul li {
    font-size: 13px;
    line-height: 1.5;
  }
}
@media (max-width: 360px) {
  .service-after .service-feature .feature-list > li .list-wrap ul li {
    font-size: 12px;
  }
}
.service-after .service-feature .feature-list > li .list-wrap ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.service-after .service-triple {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .service-after .service-triple {
    margin-bottom: 40px;
  }
}
.service-after .service-triple .tit-wrap {
  background-color: #2c4585;
  color: #fff;
  text-align: center;
  padding: 7px 100px 9px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .service-after .service-triple .tit-wrap {
    background: none;
    color: #140700;
    padding: 0;
    margin-bottom: 14px;
  }
}
.service-after .service-triple .tit-wrap h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .service-after .service-triple .tit-wrap h4 {
    background-color: #2c4585;
    color: #fff;
    font-size: 16px;
    padding: 7px 10px 8px;
    margin-bottom: 5px;
  }
}
.service-after .service-triple .tit-wrap small {
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  right: 10px;
  top: 13px;
}
@media (max-width: 767px) {
  .service-after .service-triple .tit-wrap small {
    position: static;
    right: auto;
    top: auto;
    display: block;
    text-align: center;
  }
}
.service-after .service-triple-blocks .block {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 35px 20px 35px 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block {
    border-radius: 3px;
    flex-wrap: wrap;
    padding: 10px 20px 20px;
  }
}
.service-after .service-triple-blocks .block h5 {
  color: #2c4585;
  font-size: 20px;
  letter-spacing: 0.04em;
  width: 250px;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block h5 {
    font-size: 18px;
    flex: 1;
    width: auto;
  }
}
@media (max-width: 360px) {
  .service-after .service-triple-blocks .block h5 {
    font-size: 16px;
  }
}
.service-after .service-triple-blocks .block .img {
  text-align: center;
  width: 130px;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block .img {
    margin-right: 10px;
    width: 65px;
  }
}
@media (max-width: 360px) {
  .service-after .service-triple-blocks .block .img {
    width: 60px;
  }
}
.service-after .service-triple-blocks .block .txt {
  flex: 1;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block .txt {
    flex: none;
    padding-top: 10px;
    width: 100%;
  }
}
.service-after .service-triple-blocks .block .txt .price-txt {
  color: #0096db;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block .txt .price-txt {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .service-after .service-triple-blocks .block .txt .price-txt {
    font-size: 14px;
  }
}
.service-after .service-triple-blocks .block .txt .price-txt .price {
  font-size: 31px;
  display: inline-block;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  position: relative;
  top: 0.05em;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block .txt .price-txt .price {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  .service-after .service-triple-blocks .block .txt .price-txt .price {
    font-size: 20px;
  }
}
.service-after .service-triple-blocks .block .txt p {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-after .service-triple-blocks .block .txt p {
    font-size: 12px;
    line-height: 1.55;
  }
}
.service-after .service-triple .caps-list li {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.55;
}
.service-after .service-call {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .service-after .service-call {
    margin-bottom: 40px;
  }
}
.service-after .service-call .box {
  display: flex;
}
@media (max-width: 767px) {
  .service-after .service-call .box {
    display: block;
  }
}
.service-after .service-call .box .img {
  margin-right: 40px;
  width: 32.5%;
}
@media (max-width: 767px) {
  .service-after .service-call .box .img {
    margin-right: auto;
    margin-bottom: 17px;
    width: 100%;
  }
}
.service-after .service-call .box .img img {
  display: block;
  text-align: center;
  width: 100%;
}
.service-after .service-call .box ul {
  flex: 1;
}
@media (max-width: 767px) {
  .service-after .service-call .box ul {
    flex: none;
  }
}
.service-after .service-call .box ul li {
  display: flex;
}
.service-after .service-call .box ul li:not(:last-child) {
  min-height: 96px;
}
@media (max-width: 767px) {
  .service-after .service-call .box ul li:not(:last-child) {
    min-height: auto;
    margin-bottom: 17px;
  }
}
.service-after .service-call .box ul li .icon {
  margin-right: 20px;
  padding-top: 0.3em;
  width: 62px;
}
@media (max-width: 767px) {
  .service-after .service-call .box ul li .icon {
    margin-right: 18px;
    width: 50px;
  }
}
.service-after .service-call .box ul li .txt {
  flex: 1;
}
.service-after .service-call .box ul li .txt h4 {
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .service-after .service-call .box ul li .txt h4 {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .service-after .service-call .box ul li .txt h4 {
    font-size: 15px;
  }
}
.service-after .service-call .box ul li .txt p {
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-after .service-call .box ul li .txt p {
    font-size: 12px;
    line-height: 1.55;
  }
}
.service-after .service-mypage {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .service-after .service-mypage {
    margin-bottom: 40px;
  }
}
.service-after .service-mypage .box {
  text-align: center;
}
@media (max-width: 767px) {
  .service-after .service-mypage .box {
    text-align: left;
  }
  .service-after .service-mypage .box p {
    font-size: 14px;
    line-height: 1.65;
  }
}
.service-after .service-mypage .box .img {
  margin: 20px auto;
  text-align: center;
}
.service-after .service-discount {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .service-after .service-discount {
    margin-bottom: 32px;
  }
}
.service-after .service-discount .service-after-heading {
  margin-bottom: 8px;
}
.service-after .service-discount .service-after-heading + p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .service-after .service-discount .service-after-heading + p {
    margin-bottom: 18px;
  }
}
.service-after .service-discount .box {
  text-align: center;
}
.service-after .service-discount .box p {
  line-height: 1.5;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .service-after .service-discount .box p {
    margin-bottom: 28px;
  }
}
.service-after .service-discount .box p small {
  font-size: 12px;
}
.service-after .service-discount .box ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .service-after .service-discount .box ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.service-after .service-discount .box ul li {
  width: 15.245%;
}
@media (max-width: 767px) {
  .service-after .service-discount .box ul li {
    margin-right: 6%;
    margin-bottom: 24px;
    width: 29.333%;
  }
  .service-after .service-discount .box ul li:nth-child(3n) {
    margin-right: 0;
  }
  .service-after .service-discount .box ul li:nth-child(4n), .service-after .service-discount .box ul li:nth-child(5n) {
    margin-bottom: 0;
  }
}
.service-after .service-discount .box ul li img {
  display: block;
  width: 100%;
}

/* 20251211ここまで修正 */
/* ==============================================
 16. Search
=============================================== */
.search-main {
  background-color: #f4f5f6;
}
.search-main h1 {
  font-size: 34px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .search-main h1 {
    font-size: 21px;
    margin-bottom: 26px;
  }
}
@media (max-width: 360px) {
  .search-main h1 {
    font-size: 19px;
  }
}

.search-shop-container {
  margin: 0 auto;
  max-width: 700px;
}
.search-shop-container .no-result {
  border: 1px solid #d5dbe2;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}
.search-shop-container .no-result span {
  display: inline-block;
}

.search-count {
  display: flex;
  margin: 0 0 20px;
}
.search-count__label {
  font-weight: bold;
}

#shop-search-area {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #fff;
  border: none;
  position: relative;
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  transition: opacity 100ms;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #shop-search-area {
    margin: 0 -15px 30px;
    border-radius: 0;
    box-shadow: none;
  }
}
#shop-search-area .shop-search-area-content {
  background-color: #fff;
  padding: 35px 30px 45px;
  position: relative;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content {
    padding: 24px 20px;
  }
}
#shop-search-area .shop-search-area-content h3 {
  border-bottom: 1px solid #d5dbe2;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content h3 {
    font-size: 16px;
    margin: 0 auto 10px;
    padding-bottom: 12px;
    width: auto;
  }
}
#shop-search-area .shop-search-area-content h3 .tit-icon {
  background: url("../../../img/campaign/990061/icon_search.png") no-repeat 0 55%;
  background-size: 20px 20px;
  display: inline-block;
  padding-left: 28px;
}
#shop-search-area .shop-search-area-content .form-wrapper {
  padding: 0 40px;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .form-wrapper {
    padding: 10px 0;
  }
}
#shop-search-area .shop-search-area-content .form-wrapper .form-group {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .form-wrapper .form-group {
    margin-bottom: 18px;
  }
}
#shop-search-area .shop-search-area-content .input-text-group {
  position: relative;
}
#shop-search-area .shop-search-area-content .input-text-group .input-text {
  font-size: 16px;
  color: #df0515;
  position: absolute;
  line-height: 1;
  left: 28px;
  top: 50%;
  transform: translateY(-55%);
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .input-text-group .input-text {
    left: 16px;
  }
}
#shop-search-area .shop-search-area-content .input-text-group .form-control {
  padding-left: 55px;
  width: 100%;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .input-text-group .form-control {
    padding-left: 40px;
  }
}
#shop-search-area .shop-search-area-content .form-field-inline {
  margin-top: 18px;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .form-field-inline {
    margin-top: 10px;
  }
}
#shop-search-area .shop-search-area-content .form-field-inline .form-check {
  margin-right: 5%;
  margin-bottom: 20px;
  width: 30%;
}
#shop-search-area .shop-search-area-content .form-field-inline .form-check:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .form-field-inline .form-check {
    margin-right: 0;
    margin-bottom: 14px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .form-field-inline .form-check .form-check-text {
    font-size: 14px;
  }
}
#shop-search-area .shop-search-area-content .form-field-inline .form-check .form-check-text small {
  font-size: 13px;
  display: block;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .form-field-inline .form-check .form-check-text small {
    font-size: 12px;
  }
}
#shop-search-area .shop-search-area-content .shop-search-datepicker {
  background-color: #fff;
  border: 1px solid #d5dbe2;
  font-size: 16px;
  height: inherit;
  padding: 24px 26px 24px 55px;
  box-shadow: none;
  border-radius: 6px;
  position: relative;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: border 200ms, box-shadow 200ms;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .shop-search-datepicker {
    padding: 16px 16px 16px 40px;
  }
}
#shop-search-area .shop-search-area-content .shop-search-datepicker.is-disabled {
  background-color: #f4f5f6;
  color: #B2B4B5;
  pointer-events: none;
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-icon {
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .shop-search-datepicker-icon {
    left: 15px;
    width: 14px;
  }
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-icon img {
  display: block;
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-input .form-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  width: 100%;
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-input .form-placeholder {
  font-size: 15px;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  min-width: 1em;
  padding: 0;
  white-space: nowrap;
  vertical-align: top;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .shop-search-datepicker-input .form-placeholder {
    font-size: 16px;
  }
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-input .form-placeholder::before {
  content: "";
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-input .form-placeholder:empty::before {
  content: attr(data-placeholder);
  color: #B2B4B5;
}
#shop-search-area .shop-search-area-content .shop-search-datepicker-input .form-placeholder.is-disabled {
  color: #B2B4B5;
}
#shop-search-area .shop-search-area-content .shop-search-datepicker + .form-check {
  margin-top: 14px;
  margin-bottom: 18px;
}
#shop-search-area .shop-search-area-content h4 {
  margin-bottom: 12px;
}
#shop-search-area .shop-search-area-content .shop-search-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .shop-search-filter-list {
    gap: 12px;
  }
}
#shop-search-area .shop-search-area-content .shop-search-filter-list .shop-search-filter-label {
  position: relative;
  display: block;
}
#shop-search-area .shop-search-area-content .shop-search-filter-list .shop-search-filter-label .text {
  display: block;
  border: 1px solid #d5dbe2;
  background-color: #fff;
  border-radius: 50px;
  color: #999999;
  font-weight: 500;
  padding: 20px 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .shop-search-filter-list .shop-search-filter-label .text {
    padding: 12px 24px;
  }
}
#shop-search-area .shop-search-area-content .shop-search-filter-list .shop-search-filter-label .check-detail-filter {
  position: absolute;
  display: none;
  z-index: -1;
}
#shop-search-area .shop-search-area-content .shop-search-filter-list .shop-search-filter-label .check-detail-filter:checked + .text {
  border-color: #DF0714;
  color: #DF0714;
  background-color: #fdf2f3;
  box-shadow: 0 0 10px rgba(223, 5, 21, 0.16);
}
#shop-search-area .shop-search-area-content .btn-submit {
  background: #DF0714 url("../../../img/campaign/990061/icon_search_white.png") no-repeat 25px center;
  background-size: 18px 18px;
  font-size: 17px;
  padding: 16px 20px 18px 30px;
  text-align: center;
  width: 300px;
}
@media (max-width: 767px) {
  #shop-search-area .shop-search-area-content .btn-submit {
    background-size: 17px 17px;
    font-size: 16px;
    padding: 15px 16px 16px 22px;
  }
}

.search-shop-list .list-item {
  background: #fff;
  border: 1px solid rgba(213, 69, 20, 0.6);
  box-shadow: 0 0 16px rgba(213, 69, 20, 0.12);
  font-size: 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .search-shop-list .list-item {
    display: block;
    border-radius: 10px;
  }
}
.search-shop-list .list-item .item-main {
  display: flex;
  padding: 14px;
}
.search-shop-list .list-item .item-labels {
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  padding-right: 80px;
  width: 100%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-labels {
    padding-right: 0;
  }
}
.search-shop-list .list-item .item-labels .label {
  border: 1px solid #0064de;
  color: #0064de;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
  padding: 3px 7px;
  margin: 0 5px 5px 0;
  line-height: 1.2;
}
.search-shop-list .list-item .shop-slide {
  margin-right: 2.8%;
  width: 35.4%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-slide {
    display: none;
  }
}
.search-shop-list .list-item .shop-slide .swiper-container {
  overflow: hidden;
}
.search-shop-list .list-item .shop-slide .swiper-pagination {
  position: static;
  margin-top: 10px;
  display: flex;
}
.search-shop-list .list-item .shop-slide .swiper-pagination .swiper-pagination-bullet {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 4% 0 0;
  height: auto;
  display: block;
  border-radius: 0;
  width: 30.333%;
  opacity: 0.7;
}
.search-shop-list .list-item .shop-slide .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  padding-top: 66.666%;
  height: 0;
}
.search-shop-list .list-item .shop-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.search-shop-list .list-item .shop-slide .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: auto;
}
.search-shop-list .list-item .shop-contents {
  flex: 1;
  min-width: 0;
  position: relative;
}
.search-shop-list .list-item .shop-title {
  padding-right: 80px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-title {
    padding-right: 0;
  }
}
.search-shop-list .list-item .shop-title a {
  color: #140700;
  display: flex;
  align-items: center;
}
.search-shop-list .list-item .shop-title .shop-logo {
  display: block;
  margin-right: 8px;
  margin-top: 2px;
  width: 40px;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-title .shop-logo {
    margin-right: 6px;
    width: 32px;
  }
}
.search-shop-list .list-item .shop-title .shop-name {
  display: block;
  line-height: 1.4;
  letter-spacing: 0.04em;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
}
.search-shop-list .list-item .shop-title .shop-name .name-company {
  display: block;
  font-size: 13px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-title .shop-name .name-company {
    font-size: 12px;
  }
}
.search-shop-list .list-item .shop-title .shop-name .name-ss {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-title .shop-name .name-ss {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .search-shop-list .list-item .shop-title .shop-name .name-ss {
    font-size: 16px;
  }
}
.search-shop-list .list-item .shop-distance {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-distance {
    position: static;
    top: auto;
    right: auto;
    text-align: right;
    margin-bottom: 2px;
  }
}
.search-shop-list .list-item .shop-distance .distance {
  background: url("../../../img/campaign/990061/icon_mappin.png") no-repeat 0 50%;
  background-size: 12px 16px;
  padding-left: 18px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-distance .distance {
    background-size: 11px 15px;
    font-size: 13px;
    padding-left: 15px;
  }
}
.search-shop-list .list-item .shop-imgs {
  display: none;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-imgs {
    display: flex;
    margin-bottom: 6px;
  }
  .search-shop-list .list-item .shop-imgs li {
    margin-right: 2.5%;
    width: 31.666%;
  }
  .search-shop-list .list-item .shop-imgs li:last-child {
    margin-right: auto;
  }
}
.search-shop-list .list-item .shop-info {
  margin-bottom: 10px;
}
.search-shop-list .list-item .shop-info__group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}
.search-shop-list .list-item .shop-info__label {
  background-color: #E6E6E6;
  font-size: 11px;
  text-align: center;
  padding: 2px 0;
  line-height: 1.5;
  margin-right: 8px;
  width: 5em;
}
.search-shop-list .list-item .shop-info__field {
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-info__field {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .search-shop-list .list-item .shop-info__field {
    font-size: 12px;
  }
}
.search-shop-list .list-item .shop-service-icons {
  flex: 1;
  display: flex;
  margin-top: 14px;
}
@media (max-width: 370px) {
  .search-shop-list .list-item .shop-service-icons {
    flex-wrap: wrap;
  }
}
.search-shop-list .list-item .shop-service-icons li {
  margin-right: 5px;
  margin-bottom: 5px;
  width: 60px;
}
.search-shop-list .list-item .shop-service-icons li img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .shop-service-icons li {
    margin-right: 1.2%;
    width: 15.666%;
  }
  .search-shop-list .list-item .shop-service-icons li:last-child {
    margin-right: 0;
  }
}
.search-shop-list .list-item .item-footer {
  background-color: #FFF9ED;
  padding: 14px;
  width: 100%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer {
    display: block;
  }
}
.search-shop-list .list-item .item-footer--week {
  display: block;
}
.search-shop-list .list-item .item-footer .shop-open-label {
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .shop-open-label {
    display: block;
    position: relative;
    margin-bottom: 10px;
    margin-right: auto;
  }
}
.search-shop-list .list-item .item-footer .shop-open-label::after {
  content: "";
  border-top: 6px solid #cfd3d5;
  border-bottom: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -5px;
}
.search-shop-list .list-item .item-footer .shop-open-label .list-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #CFD3D5;
  padding: 6px;
  border-radius: 4px;
  width: 100%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .shop-open-label .list-wrap {
    border-radius: 50px;
  }
}
.search-shop-list .list-item .item-footer .shop-open-label .list-wrap ul {
  display: flex;
}
.search-shop-list .list-item .item-footer .shop-open-label .list-wrap ul li {
  background: url("../../../img/campaign/990061/icon_open_mark.svg") no-repeat 0 50%;
  background-size: 17px 17px;
  font-weight: bold;
  padding: 0 0 0 22px;
}
.search-shop-list .list-item .item-footer .shop-open-label .list-wrap ul li:not(:last-child) {
  margin-right: 14px;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .shop-open-label .list-wrap ul li:not(:last-child) {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .shop-open-label .list-wrap ul li {
    background-size: 15px 15px;
    font-size: 12px;
    padding: 0 0 0 20px;
  }
}
.search-shop-list .list-item .item-footer .shop-open-week {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.search-shop-list .list-item .item-footer .shop-open-week::after {
  content: "";
  border-top: 6px solid #cfd3d5;
  border-bottom: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -5px;
}
.search-shop-list .list-item .item-footer .shop-open-week .list-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #CFD3D5;
  padding: 8px 6px;
  border-radius: 4px;
  width: 100%;
}
@media (max-width: 360px) {
  .search-shop-list .list-item .item-footer .shop-open-week .list-wrap {
    padding: 2px 4px;
  }
}
.search-shop-list .list-item .item-footer .shop-open-week ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.search-shop-list .list-item .item-footer .shop-open-week ul li {
  font-size: 13px;
  line-height: 1.28;
  text-align: center;
  width: 13.08%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .shop-open-week ul li {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .search-shop-list .list-item .item-footer .shop-open-week ul li {
    transform: scale(0.8);
  }
}
.search-shop-list .list-item .item-footer .shop-open-week ul li .date .week {
  margin-left: 0.2em;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .shop-open-week ul li .date .week {
    margin-left: 0;
    margin-bottom: 4px;
    display: block;
    font-size: 10px;
  }
}
.search-shop-list .list-item .item-footer .shop-open-week ul li .date .week.week-saturday {
  color: #568eb1;
}
.search-shop-list .list-item .item-footer .shop-open-week ul li .date .week.week-sunday {
  color: #df0515;
}
.search-shop-list .list-item .item-footer .shop-open-week ul li .date .week img {
  display: inline-block;
}
.search-shop-list .list-item .item-footer .btn-area {
  text-align: center;
}
.search-shop-list .list-item .item-footer .btn {
  background-color: #d54514;
  color: #fff;
  letter-spacing: 0;
  font-size: 16px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 340px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .search-shop-list .list-item .item-footer .btn {
    font-size: 14px;
    margin-left: auto;
    width: 100%;
  }
}
.search-shop-list .list-item .item-footer .btn.btn-not-accepted {
  border: 1px solid #999999;
  background-color: #fff;
  font-weight: normal;
  color: #140700;
  padding: 9px;
}
.search-shop-list .list-item--recommend {
  background-color: #FFFCF5;
  border-color: #d54514;
  border-width: 2px;
  position: relative;
}
@media (max-width: 767px) {
  .search-shop-list .list-item--recommend .item-main {
    padding-top: 30px;
  }
}
.search-shop-list .list-item--recommend .recommend-label {
  background: #d54514;
  position: absolute;
  font-weight: 500;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
  color: #fff;
  line-height: 1;
  padding: 4px 16px 6px 10px;
  z-index: 5;
  white-space: nowrap;
  border-radius: 0 0 12px 0;
}
@media (max-width: 767px) {
  .search-shop-list .list-item--recommend .recommend-label {
    border-radius: 0 0 12px 12px;
    padding: 2px 16px 5px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.search-shop-list .list-item--recommend .recommend-label svg {
  display: block;
  margin-right: 4px;
  fill: #fff;
  height: auto;
  width: 14px;
}
.search-shop-list .list-item--recommend .recommend-label span {
  display: block;
}
.search-shop-list .list-item--recommend .item-footer {
  background-color: #FFF3DB;
}
.search-shop-list .list-item--not-accepted {
  border-color: #ebebeb;
  box-shadow: none;
}
.search-shop-list .list-item--not-accepted .item-footer {
  background-color: #efefef;
}

.no-result {
  color: #d54514;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .no-result {
    font-size: 14px;
  }
}
.no-result span {
  display: inline-block;
}

/* jQuery UI datepicker
----------------------------------------------- */
.ui-datepicker.ui-widget-content {
  border: none;
  padding: 20px;
  width: auto;
  max-width: 100%;
  z-index: 1000 !important;
}
@media (max-width: 767px) {
  .ui-datepicker.ui-widget-content {
    border-radius: 10px 10px 0 0;
    top: auto !important;
    bottom: 0;
    left: 0 !important;
    position: fixed !important;
    width: 100% !important;
    z-index: 10000 !important;
  }
}
.ui-datepicker.ui-widget-content .sp-close-btn {
  color: #fff;
  font-size: 20px;
  display: none;
}
@media (max-width: 767px) {
  .ui-datepicker.ui-widget-content .sp-close-btn {
    display: block;
    position: absolute;
    right: 15px;
    top: -40px;
  }
  .ui-datepicker.ui-widget-content .sp-close-btn::before {
    content: "×";
    font-size: 150%;
  }
}
.ui-datepicker.ui-widget-content .ui-datepicker-header {
  background: none;
  border: none;
  color: #140700;
  font-size: 17px;
}
.ui-datepicker.ui-widget-content .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  background: none;
  position: relative;
}
.ui-datepicker.ui-widget-content .ui-datepicker-header .ui-datepicker-prev .ui-icon::before {
  left: 5px;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #140700;
  border-left: 2px solid #140700;
  transform: rotate(45deg);
}
.ui-datepicker.ui-widget-content .ui-datepicker-header .ui-datepicker-prev.ui-state-hover {
  border: none;
  background-color: #f5f5f5;
  top: 0;
}
.ui-datepicker.ui-widget-content .ui-datepicker-header .ui-datepicker-next .ui-icon {
  background: none;
  position: relative;
}
.ui-datepicker.ui-widget-content .ui-datepicker-header .ui-datepicker-next .ui-icon::before {
  right: 5px;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #140700;
  border-right: 2px solid #140700;
  transform: rotate(45deg);
}
.ui-datepicker.ui-widget-content .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
  border: none;
  background-color: #f5f5f5;
  top: 0;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar thead tr th {
  font-size: 15px;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar thead tr th:nth-child(6) {
  color: #3B64BF;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar thead tr th:nth-child(7) {
  color: #B44B3E;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar tbody tr td {
  font-size: 15px;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar tbody tr td .ui-state-default {
  border: none;
  background: none;
  text-align: center;
  color: #140700;
  padding: 0.5em 0.8em;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar tbody tr td .ui-state-default:hover {
  background: #f2f2f2;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar tbody tr td .ui-state-active {
  background: #df0515;
  color: #fff !important;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar tbody tr td.day-saturday .ui-state-default {
  color: #3B64BF;
}
.ui-datepicker.ui-widget-content .ui-datepicker-calendar tbody tr td.day-sunday .ui-state-default {
  color: #B44B3E;
}
.ui-datepicker.ui-widget-content.box-shadow {
  box-shadow: 0 3px 8px rgba(20, 7, 0, 0.26);
}

.search-popup-overlay {
  display: none;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  zoom: 1;
  opacity: 0.35;
  z-index: 100;
}

/* ---------------------------------------------------------------------------------------- */
/* ::::::::::::::::::::::::::::::::::::::::::
 *  999. print
 * :::::::::::::::::::::::::::::::::::::::::: */
@media print {
  html {
    background: none;
  }
  .site-header {
    position: static;
  }
  .pagetop {
    display: none;
  }
}
@keyframes modify {
  0% {
    padding-top: 50px;
    margin-top: -50px;
  }
  100% {
    padding-top: 0;
    margin-top: 0;
  }
}/*# sourceMappingURL=common.css.map */