/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

@charset "UTF-8";

/*!
 * ress.css • v2.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: break-word;
  -moz-tab-size: 4;
  tab-size: 4;
  font-size: 62.5%;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

ol li,
ul li {
  list-style: none;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

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

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

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

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  text-decoration: none;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

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

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }

  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

.u-mt0 {
  margin-top: 0px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt105 {
  margin-top: 105px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mt115 {
  margin-top: 115px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mt125 {
  margin-top: 125px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mt135 {
  margin-top: 135px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt145 {
  margin-top: 145px;
}

.u-mt150 {
  margin-top: 150px;
}

.u-mt155 {
  margin-top: 155px;
}

.u-mt160 {
  margin-top: 160px;
}

.u-mt165 {
  margin-top: 165px;
}

.u-mt170 {
  margin-top: 170px;
}

.u-mt175 {
  margin-top: 175px;
}

.u-mt180 {
  margin-top: 180px;
}

.u-mt185 {
  margin-top: 185px;
}

.u-mt190 {
  margin-top: 190px;
}

.u-mt195 {
  margin-top: 195px;
}

.u-mt200 {
  margin-top: 200px;
}

.u-mt205 {
  margin-top: 205px;
}

.u-mt210 {
  margin-top: 210px;
}

.u-mt215 {
  margin-top: 215px;
}

.u-mt220 {
  margin-top: 220px;
}

.u-mt225 {
  margin-top: 225px;
}

.u-mt230 {
  margin-top: 230px;
}

.u-mt235 {
  margin-top: 235px;
}

.u-mt240 {
  margin-top: 240px;
}

.u-mt245 {
  margin-top: 245px;
}

.u-mt250 {
  margin-top: 250px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb155 {
  margin-bottom: 155px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mb165 {
  margin-bottom: 165px;
}

.u-mb170 {
  margin-bottom: 170px;
}

.u-mb175 {
  margin-bottom: 175px;
}

.u-mb180 {
  margin-bottom: 180px;
}

.u-mb185 {
  margin-bottom: 185px;
}

.u-mb190 {
  margin-bottom: 190px;
}

.u-mb195 {
  margin-bottom: 195px;
}

.u-mb200 {
  margin-bottom: 200px;
}

.u-mb205 {
  margin-bottom: 205px;
}

.u-mb210 {
  margin-bottom: 210px;
}

.u-mb215 {
  margin-bottom: 215px;
}

.u-mb220 {
  margin-bottom: 220px;
}

.u-mb225 {
  margin-bottom: 225px;
}

.u-mb230 {
  margin-bottom: 230px;
}

.u-mb235 {
  margin-bottom: 235px;
}

.u-mb240 {
  margin-bottom: 240px;
}

.u-mb245 {
  margin-bottom: 245px;
}

.u-mb250 {
  margin-bottom: 250px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml5 {
  margin-left: 5px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml15 {
  margin-left: 15px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml35 {
  margin-left: 35px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml45 {
  margin-left: 45px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-ml105 {
  margin-left: 105px;
}

.u-ml110 {
  margin-left: 110px;
}

.u-ml115 {
  margin-left: 115px;
}

.u-ml120 {
  margin-left: 120px;
}

.u-ml125 {
  margin-left: 125px;
}

.u-ml130 {
  margin-left: 130px;
}

.u-ml135 {
  margin-left: 135px;
}

.u-ml140 {
  margin-left: 140px;
}

.u-ml145 {
  margin-left: 145px;
}

.u-ml150 {
  margin-left: 150px;
}

.u-ml155 {
  margin-left: 155px;
}

.u-ml160 {
  margin-left: 160px;
}

.u-ml165 {
  margin-left: 165px;
}

.u-ml170 {
  margin-left: 170px;
}

.u-ml175 {
  margin-left: 175px;
}

.u-ml180 {
  margin-left: 180px;
}

.u-ml185 {
  margin-left: 185px;
}

.u-ml190 {
  margin-left: 190px;
}

.u-ml195 {
  margin-left: 195px;
}

.u-ml200 {
  margin-left: 200px;
}

.u-ml205 {
  margin-left: 205px;
}

.u-ml210 {
  margin-left: 210px;
}

.u-ml215 {
  margin-left: 215px;
}

.u-ml220 {
  margin-left: 220px;
}

.u-ml225 {
  margin-left: 225px;
}

.u-ml230 {
  margin-left: 230px;
}

.u-ml235 {
  margin-left: 235px;
}

.u-ml240 {
  margin-left: 240px;
}

.u-ml245 {
  margin-left: 245px;
}

.u-ml250 {
  margin-left: 250px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr5 {
  margin-right: 5px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr15 {
  margin-right: 15px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr35 {
  margin-right: 35px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr45 {
  margin-right: 45px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr100 {
  margin-right: 100px;
}

.u-mr105 {
  margin-right: 105px;
}

.u-mr110 {
  margin-right: 110px;
}

.u-mr115 {
  margin-right: 115px;
}

.u-mr120 {
  margin-right: 120px;
}

.u-mr125 {
  margin-right: 125px;
}

.u-mr130 {
  margin-right: 130px;
}

.u-mr135 {
  margin-right: 135px;
}

.u-mr140 {
  margin-right: 140px;
}

.u-mr145 {
  margin-right: 145px;
}

.u-mr150 {
  margin-right: 150px;
}

.u-mr155 {
  margin-right: 155px;
}

.u-mr160 {
  margin-right: 160px;
}

.u-mr165 {
  margin-right: 165px;
}

.u-mr170 {
  margin-right: 170px;
}

.u-mr175 {
  margin-right: 175px;
}

.u-mr180 {
  margin-right: 180px;
}

.u-mr185 {
  margin-right: 185px;
}

.u-mr190 {
  margin-right: 190px;
}

.u-mr195 {
  margin-right: 195px;
}

.u-mr200 {
  margin-right: 200px;
}

.u-mr205 {
  margin-right: 205px;
}

.u-mr210 {
  margin-right: 210px;
}

.u-mr215 {
  margin-right: 215px;
}

.u-mr220 {
  margin-right: 220px;
}

.u-mr225 {
  margin-right: 225px;
}

.u-mr230 {
  margin-right: 230px;
}

.u-mr235 {
  margin-right: 235px;
}

.u-mr240 {
  margin-right: 240px;
}

.u-mr245 {
  margin-right: 245px;
}

.u-mr250 {
  margin-right: 250px;
}

.u-right {
  margin-left: auto;
  text-align: right;
}

.m-entry {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  padding: 40px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .m-entry {
    margin-top: 24px;
    padding: 24px;
  }
}

.m-entry .inner {
  width: 800px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .inner {
    width: 100%;
  }
}

.m-entry .time {
  text-align: right;
  margin-bottom: 8px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
}

.m-entry .title {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.625;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #dad494;
  border-bottom: 1px solid #dad494;
  padding-top: 8px;
  padding-bottom: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.8;
  }
}

.m-entry .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
  position: relative;
}

.m-entry .info .data {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #888888;
  font-weight: bold;
  background: #fff;
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .info .data {
    background: none;
  }
}

.m-entry .info .category.-forum,
.m-entry .info .category.-myeo {
  background: #c84799;
}

.m-entry .info .category.-learning {
  background: #29cce9;
}

.m-entry .info .category.-mentorship {
  background: #ac1a39;
}

.m-entry .info .category.-strategicalliance {
  background: #bdbf2b;
}

.m-entry .info .category.-monthly {
  background: #3559b5;
}

.m-entry .info .category.-interview {
  background: #4b4b4b;
}

.m-entry .info .category.-event {
  background: #f86c0f;
}

.m-entry .info .category.-esg {
  background: #35b583;
}

.m-entry .info .category a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  color: #fff;
  padding: 4px 16px;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .info .category a {
    padding: 8px 16px;
  }
}

.m-entry .content {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .content {
    width: 100%;
    margin-top: 20px !important;
  }
}

.m-entry .content h2 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.21429;
  margin: 40px 0 24px;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .content h2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.2;
  }
}

.m-entry .content h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  margin: 40px 0 16px;
  font-weight: bold;
  border-left: 5px solid #333;
  padding-left: 1.1rem;
}

.m-entry .content h4 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  margin: 40px 0 16px;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .content h4 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.m-entry .content ul {
  margin: 40px 0 16px;
}

.m-entry .content ul li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  position: relative;
  padding: 0 0 0 20px;
  font-weight: bold;
}

.m-entry .content ul li:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 2px;
  background: #010101;
  display: block;
  top: 50%;
  left: 0;
}

.m-entry .content blockquote {
  margin: 40px 0 40px;
  background: #f7f7f7;
  border-radius: 4px;
  padding: 40px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  position: relative;
}

.m-entry .content blockquote:before {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #ccc;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.m-entry .content blockquote p {
  color: #797979;
}

.m-entry .content em {
  font-style: italic;
}

.m-entry .content a {
  color: #000;
  text-decoration: underline;
}

.m-entry .content p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 24px;
  margin-top: 16px;
}

@media print,
screen and (max-width: 1035px) {
  .m-entry .content p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
}

.m-entry .content p:first-child {
  margin-top: 0;
}

.m-entry .content .alignleft {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.m-entry .content .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.m-entry .content .alignright {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

.m-entry .content img {
  width: auto;
  max-width: 100%;
  display: block;
}

.m-hero {
  width: 100%;
  height: 450px;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  position: relative;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero {
    height: 250px;
    background-position: center top;
  }
}

.m-hero.-index {
  position: relative;
  background-image: url(../../front_assets/img/index/main-img.webp);
  height: 870px;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index {
    /* background-image: url(../../front_assets/img/index/main-img-sp.webp); */
    height: 100vh;
    overflow: hidden;
  }

  video.is-sp.hero-video {
    position: absolute;
    width: 100vw;
    height: auto;
    margin-left: 50vw;
    transform: translate(-50%);
    margin-top: 45px;
  }
}

@media print,
screen and (max-width: 492px) {
  video.is-sp.hero-video {
    width: auto;
    height: 100%;
    margin-left: 50vw;
    transform: translate(-50%);
    margin-top: 45px;
  }
}

.m-hero.-index .inner {
  position: inherit;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .inner {
    position: relative;
    top: 0;
    left: 0;
    padding-top: 115px;
    transform: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.m-hero.-index .text {
  width: 810px;
  position: relative;
  top: -7px;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .text {
    width: 73%;
    margin-left: auto;
    margin-right: auto;
    top: inherit;
  }
}

.m-hero.-index .consult {
  width: 100px;
  position: relative;
  top: -7px;
  margin: 30px auto;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .consult {
    width: 90px;
    margin: 60px auto 0 auto;
  }
}

.m-hero.-index .scroll {
  width: 61px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .scroll {
    /* width: 11.86667%; */
    margin-top: 40px;
  }
}

.m-hero.-index .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 46px;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    margin-top: 300px;
  }
}

@media print,
screen and (max-height: 760px) {
  .m-hero.-index .list {
    margin-top: 150px;
  }
}

.m-hero.-index .list li {
  width: 210px;
  margin-left: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .list li {
    margin-left: 0;
    width: 100%;
    width: 46%;
  }
}

.m-hero.-index .list li:nth-of-type(1) {
  margin-left: 0;
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-index .list li:nth-of-type(1) {
    margin-top: 0;
  }
}

.m-hero.-about {
  background-image: url(../../front_assets/img/about/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-about {
    background-image: url(../../front_assets/img/about/main-img01-sp.webp);
  }
}

.m-hero.-brand {
  background-image: url(../../front_assets/img/brand/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-brand {
    background-image: url(../../front_assets/img/brand/main-img01-sp.webp);
  }
}

.m-hero.-sale {
  height: 450px;
  background-image: url(../../front_assets/img/sales/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-sale {
    height: 250px;
    background-image: url(../../front_assets/img/sales/main-img01-sp.webp);
  }
}

.m-hero.-staff {
  height: 450px;
  background-image: url(../../front_assets/img/index/bg-hero-recruit.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-staff {
    height: 250px;
    background-image: url(../../front_assets/img/index/bg-hero-recruit.webp);
  }
}

.m-hero.-staffDetail {
  height: auto;
  margin-top: 40px;
}

.m-hero.-recruit {
  height: 450px;
  background-image: url(../../front_assets/img/recruit/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-recruit {
    height: 250px;
    background-image: url(../../front_assets/img/recruit/main-img01-sp.webp);
  }
}

.m-hero.-company {
  height: 450px;
  background-image: url(../../front_assets/img/company/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-company {
    height: 250px;
    background-image: url(../../front_assets/img/company/main-img01-sp.webp);
  }
}

.m-hero.-blog {
  background-image: url(../../front_assets/img/blog/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-blog {
    background-image: url(../../front_assets/img/blog/main-img01-sp.webp);
  }
}

.m-hero.-privacy {
  background-image: url(../../front_assets/img/brand/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-privacy {
    background-image: url(../../front_assets/img/brand/main-img01-sp.webp);
  }
}

.m-hero.-contact {
  background-image: url(../../front_assets/img/brand/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-contact {
    background-image: url(../../front_assets/img/brand/main-img01-sp.webp);
  }
}

.m-hero.-ranking {
  background-image: url(../../front_assets/img/ranking/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-ranking {
    background-image: url(../../front_assets/img/ranking/main-img01-sp.webp);
  }
}

.m-hero.-pickup {
  height: 452px;
  background-image: url(../../front_assets/img/pickup/main-img01.webp);
}

@media print,
screen and (max-width: 1035px) {
  .m-hero.-pickup {
    height: 250px;
    background-image: url(../../front_assets/img/pickup/main-img01-sp.webp);
  }
}

.m-lead {
  padding-top: 80px;
  padding-bottom: 0;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead {
    padding-top: 24px;
    padding-bottom: 0;
  }
}

.m-lead .title {
  margin-left: auto;
  margin-right: auto;
}

.m-lead .title img {
  vertical-align: middle;
}

.m-lead .text {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.4em;
  margin-top: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 8px;
  }
}

.m-lead.-about .title {
  width: 266px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-about .title {
    width: 35.06666667%;
  }
}

.m-lead.-about .text {
  color: #002e44;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-about {
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 24px;
  }
}

.m-lead.-brand .title {
  width: 551px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-brand .title {
    width: 63.06667%;
  }
}

.m-lead.-brand .text {
  color: #002e44;
}

.m-lead.-sale {
  background: #f3f3f3;
  padding-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-sale {
    padding-bottom: 24px;
  }
}

.m-lead.-sale .title {
  width: 529px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-sale .title {
    width: 80%;
  }
}

.m-lead.-sale .text {
  color: #002e44;
}

.m-lead.-staff .title {
  width: 474px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-staff .title {
    width: 72%;
  }

  .m-lead.-staff .branch {
    font-size: 2rem;
  }
}

.m-lead.-staff .text {
  color: #002e44;
}

.m-lead.-recruit .title {
  width: 217px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-recruit .title {
    width: 32.26667%;
  }
}

.m-lead.-recruit .text {
  color: #002e44;
}

.m-lead.-company .title {
  width: 247px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-company .title {
    width: 36.8%;
  }
}

.m-lead.-company .text {
  color: #002e44;
}

.m-lead.-blog .title {
  width: 200px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-blog .title {
    width: 35%;
  }
}

.m-lead.-blog .text {
  color: #002e44;
}

.m-lead.-privacy .title {
  width: 390px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-privacy .title {
    width: 59.73333%;
  }
}

.m-lead.-privacy .text {
  color: #002e44;
}

.m-lead.-contact .title {
  width: 239px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-contact .title {
    width: 34.93333%;
  }
}

.m-lead.-contact .text {
  color: #002e44;
}

.m-lead.-ranking {
  background: #f3f3f3;
  padding-bottom: 40px;
}

.m-lead.-ranking .title {
  width: 230px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-ranking .title {
    width: 40%;
  }
}

.m-lead.-ranking .text {
  color: #002e44;
}

.m-lead.-pickup {
  background: #f3f3f3;
  padding-top: 0;
  padding-bottom: 40px;
}

.m-lead.-pickup .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
  background: #192161;
  color: #fff;
}

.m-lead.-pickup .title .main {
  display: inline-block;
  font-family: "bodoniXT", serif;
  font-size: 60px;
}

.m-lead.-pickup .title .sub {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-top: 6px;
  font-weight: normal;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-pickup .title {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .m-lead.-pickup .title .main {
    margin: 0;
    font-size: 30px;
    text-align: center;
  }

  .m-lead.-pickup .title .sub {
    margin-top: 4px;
    font-size: 12px;
  }
}

.m-lead.-pickup .text {
  color: #1b2142;
}

.m-lead.-news .title {
  width: 139px;
}

@media print,
screen and (max-width: 1035px) {
  .m-lead.-news .title {
    width: 21.86667%;
  }
}

.m-related {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #000;
  background: #fff;
}

@media print,
screen and (max-width: 1035px) {
  .m-related {
    padding: 20px 0;
  }
}

.m-related .c-headline--medium {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  font-weight: bold;
  color: #2a364d;
  margin-bottom: 20px;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .m-related .c-headline--medium {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.m-related .inner {
  width: 100%;
  max-width: 100%;
}

.m-related .time {
  text-align: left;
  color: #7a7a7a;
}

.m-related .m-related__link {
  width: 100%;
  padding: 8px 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.m-related .m-related__item__img {
  width: 21%;
  position: relative;
  position: relative;
  height: 0;
  padding-top: 14%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.m-related .m-related__item__body {
  width: 76%;
  margin: 0 0 0 3%;
}

.m-related .m-related__item__ttl {
  font-size: 14px;
  color: #1d1e22;
  font-weight: bold;
  text-decoration: none;
}

.m-related .m-related__item__text {
  font-size: 12px;
  color: #1d1e22;
  text-decoration: none;
}

.o-footer {
  background: #2a364d;
  padding-bottom: 24px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media print,
screen and (max-width: 1035px) {
  .o-footer {
    margin-top: 24px;
  }
}

.o-footer .upper {
  background: #fff;
  padding-top: 82px;
  padding-bottom: 40px;
}

.o-footer .upper .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 934px;
}

.o-footer .upper .info {
  width: 540px;
  color: #002d43;
  letter-spacing: 0.1em;
}

.o-footer .upper .info .logo {
  width: 169px;
}

.o-footer .upper .info .name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.33333;
  font-style: italic;
  margin-top: 23px;
}

.o-footer .upper .info .address {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.41176;
  font-style: italic;
  margin-top: 8px;
  letter-spacing: 0.2em;
}

.o-footer .upper .tel {
  width: 305px;
  margin-top: -8px;
}

.o-footer .lower {
  padding-top: 26px;
  padding-bottom: 40px;
}

.o-footer .lower .inner {
  max-width: 934px;
}

.o-footer .lower .menu {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  width: 650px;
}

.o-footer .lower .menu li {
  width: 162px;
  margin-bottom: 14px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  letter-spacing: 0.2em;
}

.o-footer .lower .menu li.long {
  width: 300px;
}

.o-footer .lower .menu li.small {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

.o-footer .lower .menu li a {
  color: #fff;
}

.o-footer .lower .communication {
  width: 280px;
  background: #b79786;
  padding: 28px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  position: absolute;
  right: 0;
  top: -112px;
}

.o-footer .lower .communication .lead {
  width: 194px;
  margin-left: auto;
  margin-right: auto;
}

.o-footer .lower .communication .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #fff;
  padding-top: 28px;
  margin-top: 15px;
}

.o-footer .lower .communication .list li {
  margin-left: 44px;
}

.o-footer .lower .communication .list li:nth-of-type(1) {
  width: 31px;
  margin-left: 0;
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .lower .communication .list li:nth-of-type(1) {
    width: 26px;
  }
}

.o-footer .lower .communication .list li:nth-of-type(2) {
  width: 27px;
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .menu {
    background: #fff;
    border-bottom: 1px solid #cccccc;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
  }

  .o-footer .menu li {
    border-bottom: 1px solid #2a364d;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.86667;
  }

  .o-footer .menu li a {
    display: block;
    width: 100%;
    color: #2a364d;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .o-footer .info {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 24px;
    background: #fff;
    margin-top: -1px;
  }

  .o-footer .info .logo {
    margin-left: auto;
    margin-right: auto;
    width: 38.55072%;
  }

  .o-footer .info .name {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 8px;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .info .name {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #002d43;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .info .address {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 8px;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .info .address {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143;
    color: #002d43;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .tel {
    background: #fff;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 60px;
    margin-top: -1px;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .tel {
    padding-left: 13.33333%;
    padding-right: 13.33333%;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .communication {
    width: 82.66667%;
    margin-left: auto;
    margin-right: auto;
    background: #b79786;
    padding: 20px 40px;
    box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
    position: relative;
    top: -40px;
  }

  .o-footer .communication .lead {
    width: 197px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .communication .lead {
    width: 194px;
    border-bottom: 1px solid #fff;
    padding-bottom: 16px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .communication .list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #fff;
    padding-top: 16px;
    margin-top: 16px;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .communication .list {
    border-top: none;
    margin-top: 0;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .communication .list li {
    margin-left: 24px;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .communication .list li {
    margin-left: 62px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .communication .list li:nth-of-type(1) {
    width: 31px;
    margin-left: 0;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .communication .list li:nth-of-type(1) {
    width: 26px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .communication .list li:nth-of-type(2) {
    width: 27px;
  }
}

@media print,
screen and (max-width: 1035px) and (max-width: 1035px) {
  .o-footer .communication .list li:nth-of-type(2) {
    width: 23px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .bottom {
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
  }

  .o-footer .bottom .pagetop {
    width: 40px;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    left: 20px;
    transition: all 0.2s ease-in-out;
  }

  .o-footer .bottom .pagetop.is-active {
    opacity: 1;
  }
}

.o-footer .copy {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .o-footer .copy {
    width: 100%;
    text-align: right;
  }
}

.o-form {
  z-index: 1;
  width: 100%;
  transition: all 0.3s ease-out;
}

@media print,
screen and (max-width: 1035px) {
  .o-form {
    padding: 0;
    border-right: none;
  }
}

.o-form_item {
  border-bottom: 1px solid #e6e6e6;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .o-form_item {
    padding: 0 0 30px;
    display: block;
    border-bottom: none;
  }
}

.o-form_item:first-child {
  border-top: 1px solid #d5d5d5;
}

@media print,
screen and (max-width: 1035px) {
  .o-form_item:first-child {
    border-top: none;
  }
}

.o-form .o-form_headline {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 37.08333%;
  max-width: 445px;
  padding: 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  font-weight: 700;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_headline {
    width: 100%;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
    padding: 8px;
  }
}

.o-form .o-form_headline span {
  color: #eb4646;
  margin-left: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  top: -1px;
  font-weight: 700;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_headline span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.o-form .o-form_data {
  position: relative;
  width: 63%;
  max-width: 756px;
  padding: 30px 40px;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_data {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
    padding: 8px 16px 0;
    padding: 0;
  }
}

.o-form input,
.o-form textarea {
  width: 100%;
  border: 1px solid #cccccc;
  padding: 12px 12px;
  border-radius: 0;
}

@media print,
screen and (max-width: 1035px) {

  .o-form input,
  .o-form textarea {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.o-form .o-form_check {
  margin-top: 50px;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_check {
    margin-top: 20px;
  }
}

.o-form .o-form_check .wpcf7-list-item {
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_check .wpcf7-list-item {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.o-form .o-form_check input {
  width: 20px;
}

.o-form .o-form_check label {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.o-form .o-form_check a {
  color: #00275d;
  text-decoration: underline;
}

.o-form .o-form_check .wpcf7-list-item {
  margin: 0;
}

.o-form .o-form_button {
  max-width: 270px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_button {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 30px;
  }
}

.o-form .o-form_button input {
  background-color: #002e44;
  background-image: url(../../front_assets/img/icon/icon_mail.svg);
  background-position: 94% center;
  background-size: 29px;
  border: none;
  color: #fff;
  padding: 16px 0;
  opacity: 1;
  transition: all .3s ease-out;
}

@media print,
screen and (max-width: 1035px) {
  .o-form .o-form_button input {
    padding: 12px 0;
    background-size: 14px;
  }
}

.o-form .o-form_button input:disabled {
  opacity: 0.6;
}

.o-form .o-form_button input:hover {
  opacity: 0.6;
}

@media print,
screen and (min-width: 768px) and (max-width: 1210px) {
  .drawer .o-header .search {
    position: absolute;
    top: 12px;
    right: 80px;
  }

  .drawer .o-header .menu {
    width: 100%;
  }

  .drawer .o-header .drawer-menu {
    justify-content: space-around;
  }

  .drawer-menu li {
    margin-left: 0 !important;
  }
}

.o-header {
  padding: 30px 0;
  position: absolute;
  top: 0;
  z-index: 110;
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@media print,
screen and (max-width: 1035px) {
  .o-header {
    background: white;
    padding: 0;
    width: 100%;
    z-index: 9999;
  }
}

.o-header .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .o-header .inner {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    justify-content: flex-start;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-header .tel {
    width: 44px;
    position: absolute;
    left: 10px;
  }

  .o-header .tel img {
    vertical-align: middle;
  }
}

.o-header .logo {
  max-width: 167px;
}

@media print,
screen and (max-width: 1035px) {
  .o-header .logo {
    max-width: 74px;
    margin-left: auto;
    margin-right: auto;
  }

  .o-header .logo img {
    vertical-align: middle;
  }
}

.o-header .menu {
  width: 950px;
}

@media print,
screen and (max-width: 1035px) {
  .o-header .menu {
    width: 100%;
  }
}

.o-header .search {
  cursor: pointer;
  width: 165px;
  text-align: center;
  margin-left: auto;
  margin-right: 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media print,
screen and (max-width: 1035px) {
  .o-header .search {
    position: relative;
    right: inherit;
    top: inherit;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #bababd;
    padding-bottom: 2px;
    padding-bottom: 30px;
  }
}

.o-header .search a {
  border-radius: 50px;
  border: 1px solid #002e44;
  padding: 6px 0;
  display: block;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002e44;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
}

@media print,
screen and (max-width: 1035px) {
  .o-header .search a {
    padding: 12px 0;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.o-header .search img {
  width: 16px;
  margin-right: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .o-header .search img {
    margin-right: 0;
    margin-left: 8px;
  }
}

.drawer--right .drawer-nav {
  right: inherit;
}

@media print,
screen and (max-width: 1035px) {
  .drawer--right .drawer-nav {
    right: -100%;
    -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.drawer-hamburger {
  width: 50px;
  height: 50px;
  top: 0 !important;
  right: 0 !important;
  padding: 0;
  z-index: 9999;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-hamburger {
    width: 36px;
    height: 36px;
    top: 8px !important;
    right: 8px !important;
  }
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #000;
  width: 20px;
  margin: 0 auto;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  top: -6px;
}

.drawer-hamburger-icon:after {
  top: 6px;
}

.drawer-nav {
  position: relative;
  width: 100%;
  height: auto;
  background-color: inherit;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-nav {
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    height: 100%;
    overflow: hidden;
    color: #222;
    background-color: rgba(255, 255, 255, 0.9);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
}

.drawer-menu-item {
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  color: #002e44;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-menu-item {
    padding: 0;
    color: #002e44;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    font-weight: normal;
  }
}

.drawer-menu-item:hover {
  color: inherit;
}

.drawer-nav-box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-nav-box {
    width: 100%;
    display: block;
    padding: 34px 24px;
  }
}

.drawer-menu {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  margin-top: 12px;
  justify-content: flex-end;
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-menu {
    display: block;
    width: 100%;
    padding: 0 10.66667%;
    margin-top: 25px;
  }
}

.drawer-menu li {
  margin: 0;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.81818;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.1em;
  margin-left: 3%;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-menu li {
    margin: 0;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.11111;
    margin-bottom: 24px;
    letter-spacing: 0;
  }
}

.drawer-menu li:first-child {
  margin: 0;
}

@media print,
screen and (max-width: 1035px) {
  .drawer-menu li:first-child {
    margin-bottom: 24px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .drawer-menu li.contact {
    padding-top: 22px;
    border-top: 1px solid #bababd;
    margin-bottom: 15px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .drawer-menu li.small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

@media print,
screen and (max-width: 1035px) {
  .drawer--right.drawer-open .drawer-hamburger {
    background: #002e44;
  }
}

@media print,
screen and (max-width: 1035px) {

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    background-color: #fff;
  }
}

.o-main {
  z-index: 820;
  padding: 0 30px 50px 30px;
  margin-top: 8px;
  margin-left: 230px;
}

.o-main .content {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 1036px;
  margin-left: auto;
  margin-right: auto;
}

.o-main .m-navigation {
  margin-bottom: 10px;
}

.o-main .m-userinfo {
  margin-bottom: 40px;
}

.o-main .m-tab {
  margin-bottom: 40px;
}

.o-main .m-table-option {
  margin-bottom: 16px;
}

.o-main .m-head {
  margin-bottom: 30px;
}

.o-main .m-pagenation {
  margin-top: 30px;
}

.o-main.-acting .a-text.-annotation {
  margin-top: 70px;
  margin-bottom: 30px;
}

.o-main.-bs .a-text.-annotation {
  margin-top: 70px;
  margin-bottom: 30px;
}

.o-main.-fadetail .a-btn.-large {
  margin-top: 60px;
}

.o-main.-fadetail .m-table-option .link a:nth-of-type(3) {
  margin-left: 74px;
}

.o-main.-log .m-navigation {
  margin-bottom: 24px;
}

.o-main.-log .m-searchform {
  margin-bottom: 24px;
}

.o-main.-worker .m-navigation {
  margin-bottom: 24px;
}

.o-main.-worker .a-btn a.is-disabled,
.o-main.-worker .a-btn button.is-disabled {
  background: #999999;
  color: #fff;
  max-width: 460px;
}

.o-main.-worker .a-input.-checkbox.-classification {
  margin-right: 32px;
}

.o-main.-worker .a-input.-checkbox.-classification .a-input__item {
  display: block;
}

.o-main.-worker .m-table-option {
  margin-top: 40px;
}

.o-modal {
  max-width: 990px;
  padding: 40px 100px;
}

.o-modal .remodal-close {
  background: #000;
  color: #fff;
  top: 10px;
  right: 10px;
  left: inherit;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .remodal-close {
    top: 0;
    right: 0;
  }
}

.o-modal .remodal-close:before {
  font-size: 33px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal {
    padding: 40px 20px;
  }
}

.o-modal .content .head {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid #b79786;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .head {
    padding-bottom: 12px;
  }
}

.o-modal .content .head .title {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .head .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.11111;
  }
}

.o-modal .content .head .title img {
  width: 42px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .head .title img {
    width: 21px;
  }
}

.o-modal .content .head .reset {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  text-decoration: underline;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .head .reset {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.16667;
  }
}

.o-modal .content .entry01 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .entry01 {
    width: 100%;
    display: block;
  }
}

.o-modal .content .entry01 .item {
  width: 386px;
  margin-left: 18px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .entry01 .item {
    width: 100%;
    margin-left: 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
  }
}

.o-modal .content .entry01 .item:nth-of-type(1) {
  margin-left: 0;
}

.o-modal .content .item {
  width: 510px;
  margin-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item {
    width: 100%;
    margin-left: 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
  }
}

.o-modal .content .item.-single {
  width: 375px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item.-single {
    width: 100%;
  }
}

.o-modal .content .item.-checkbox {
  width: 100%;
}

.o-modal .content .item.-checkbox.-sort .checkbox .checkbox-item {
  width: 188px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item.-checkbox.-sort .checkbox .checkbox-item {
    width: 50%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.o-modal .content .item.-checkbox .checkbox {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #959292;
}

.o-modal .content .item.-checkbox .checkbox .checkbox-item {
  border-top: 1px solid #959292;
  border-right: 1px solid #959292;
  border-bottom: 1px solid #959292;
  width: 150px;
  padding: 8px 12px 6px 7px;
  text-align: left;
  line-height: 1;
  margin-top: -1px;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item.-checkbox .checkbox .checkbox-item {
    width: 50%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.o-modal .content .item:nth-of-type(1) {
  margin-left: 0;
}

.o-modal .content .item .label {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: bold;
  color: #959292;
  text-align: left;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .label {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.16667;
  }
}

.o-modal .content .item select {
  border: 1px solid #959292;
  border-radius: 2px;
  width: 100%;
  padding: 12px 30px 12px 8px;
  text-align: center;
  background-image: url(../../front_assets/img/common/icon-arrow02.webp);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 22px 34px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.45455;
  color: #000;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item select {
    padding: 6px 30px 6px 8px;
    border: 1px solid #959292;
    width: 100%;
    box-shadow: none;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.o-modal .content .item select option {
  color: #000;
}

.o-modal .content .item .flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .flex {
    width: 100%;
  }
}

.o-modal .content .item .flex select {
  width: 46%;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .checkbox {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
  }
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .checkbox .checkbox-item {
    width: 50%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.o-modal .content .item .checkbox label {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  position: relative;
  padding-left: 32px;
  display: inline-block;
  padding: 3px 0 3px 32px;
}

.o-modal .content .item .checkbox label:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0;
  border: 1px solid #B3B3B3;
  border-radius: 2px;
  z-index: 3;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .checkbox label:before {
    top: 4px;
  }
}

.o-modal .content .item .checkbox label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  background: #b79786;
  border-radius: 40px;
  width: 10px;
  height: 10px;
  z-index: 1;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .checkbox label:after {
    top: 9px;
  }
}

.o-modal .content .item .checkbox label input[type="checkbox"],
.o-modal .content .item .checkbox label input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.o-modal .content .item .checkbox label input[type="checkbox"]:checked,
.o-modal .content .item .checkbox label input[type="radio"]:checked {
  box-shadow: none;
}

.o-modal .content .item .checkbox .checkbox_text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.16667;
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .item .checkbox .checkbox_text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.o-modal .content .buttons {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 3px solid #b79786;
}

.o-modal .content .buttons .submit {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.o-modal .content .buttons .submit input {
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid #b79786;
  background: #b79786;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  border-radius: 2px;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .o-modal .content .buttons .submit input {
    box-shadow: none;
  }
}

.o-pagenation {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

@media print,
screen and (max-width: 1035px) {
  .o-pagenation {
    margin-top: 30px;
  }
}

.o-pagenation li {
  margin-left: 8px;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .o-pagenation li {
    margin-left: 4px;
  }
}

.o-pagenation li.is-active {
  background: #f0f0f0;
}

.o-pagenation li a {
  width: 36px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #40494E;
  font-family: var(--gothic);
  font-size: 20px;
  font-size: 2rem;
  line-height: 38px;
  transition: all 0.2s ease-out;
  border: 1px solid #333333;
}

@media print,
screen and (max-width: 1035px) {
  .o-pagenation li a {
    width: 30px;
    height: 30px;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
    line-height: 26px;
  }
}

.o-pagenation li a.is-current {
  color: #fff;
  background: #333333;
}

.o-section .m-grid {
  margin-bottom: 60px;
}

.o-side {
  width: 220px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 810;
  display: block;
  color: #d6dadd;
  padding: 30px 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f3f4f6;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.o-side .a-title {
  width: 62px;
  margin: 0 auto;
}

.o-side .list {
  margin-top: 40px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.o-side .list__item {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

.o-side .list__item a,
.o-side .list__item a:visited {
  display: block;
  width: 100%;
  transition: 0.1s;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 40px;
  color: #555555;
}

.o-side .list__item a.is-active,
.o-side .list__item a:hover,
.o-side .list__item a:visited.is-active,
.o-side .list__item a:visited:hover {
  background: rgba(0, 120, 206, 0.1);
  color: #259ce9;
}

.o-side .list.-bottom {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-about {
  background: #f3f3f3;
}

.p-about .pc-area {
  padding-bottom: 70px;
}

.p-about .pc-area .img {
  margin-left: auto;
  margin-right: auto;
}

.p-about .pc-area .img .text,
.p-about .pc-area .img .text01 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.1em;
}

.p-about .pc-area .img01 {
  margin-top: 70px;
  max-width: 832px;
}

.p-about .pc-area .img02 {
  margin-top: 47px;
  max-width: 829px;
}

.p-about .pc-area .img02 .text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.33333;
  color: #231815;
  margin-top: 40px;
  color: #595757;
}

.p-about .pc-area .img02 .text:nth-of-type(1) {
  margin-top: 0;
}

.p-about .pc-area .img03 {
  margin-top: 71px;
}

.p-about .pc-area .img03 .text {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.33333;
  color: #595757;
  text-align: center;
  letter-spacing: 0.2em;
}

.p-about .pc-area .img04 {
  margin-top: 60px;
  max-width: 835px;
}

.p-about .pc-area .img05 {
  margin-top: 20px;
  max-width: 860px;
}

.p-about .pc-area .img05 .text {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.26316;
  color: #595757;
  margin: 0 13px 57px;
}

.p-about .pc-area .img06 {
  margin-top: 20px;
  max-width: 745px;
}

.p-about .pc-area .img06 .text01 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.33333;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #1a2142;
  letter-spacing: 0.2em;
}

.p-about .pc-area .img06 .text {
  max-width: 700px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4375;
  text-align: left;
  color: #3e3a39;
  margin-left: auto;
  margin-top: 8px;
}

.p-about .pc-area .img07 {
  margin-top: 120px;
  max-width: 526px;
}

.p-about .pc-area .img08 {
  margin-top: 40px;
  max-width: 862px;
}

.p-about .pc-area .img08 .box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.p-about .pc-area .img08 .box .text {
  width: 638px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  color: #3e3a39;
  margin-top: 8px;
  color: #717071;
  margin-right: 20px;
}

.p-about .pc-area .img08 .box img {
  width: 204px;
}

.p-about .pc-area .img09 {
  margin-top: 60px;
  max-width: 861px;
}

.p-about .pc-area .img10 {
  margin-top: 47px;
  max-width: 846px;
}

.p-about .pc-area .img10 .box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-about .pc-area .img10 .box .logo01 {
  width: 169px;
}

.p-about .pc-area .img10 .box .text {
  width: 650px;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.89474;
  color: #717071;
  letter-spacing: 0.2em;
  margin-left: 27px;
}

.p-about .pc-area .img11 {
  margin-top: 50px;
  max-width: 543px;
}

.p-about .pc-area .img12 {
  margin-top: 120px;
  max-width: 73px;
}

.p-about .pc-area .img13 {
  margin-top: 40px;
  max-width: 852px;
}

.p-about .pc-area .img14 {
  margin-top: 24px;
  position: relative;
  max-width: 856px;
}

.p-about .pc-area .img14 .box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #946134;
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.p-about .pc-area .img14 .box .img14-text01 {
  width: 560px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #946134;
}

.p-about .pc-area .img14 .box .img14-text01 span {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}

.p-about .pc-area .img14 .img14-text02 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.44444;
  color: #946134;
  padding-left: 28px;
  padding-right: 28px;
  letter-spacing: 0.2em;
}

.p-about .pc-area .img14 .img14-text02 a {
  color: #946134;
}

.p-about .pc-area .img14 .button {
  width: 240px;
  text-align: center;
}

.p-about .pc-area .img14 .button a {
  display: block;
  width: 100%;
  border: 1px solid #ac886a;
  color: #ac886a;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 24px;
  padding: 8px 0;
}

.p-about .pc-area .img15 {
  margin-top: 80px;
  max-width: 851px;
}

.p-about .pc-area .img16 {
  margin-top: 90px;
  max-width: 281px;
}

.p-about .pc-area .img19 {
  margin-top: 70px;
  max-width: 833px;
}

.p-about .pc-area .img20 {
  margin-top: 77px;
  max-width: 833px;
}

.p-about .pc-area .img21 {
  margin-top: 77px;
  max-width: 833px;
}

.p-about .pc-area .img22 {
  margin-top: 77px;
  max-width: 833px;
}

.p-about .pc-area .img23 {
  margin-top: 77px;
  max-width: 833px;
}

.p-about .pc-area .img19 .text,
.p-about .pc-area .img20 .text,
.p-about .pc-area .img21 .text,
.p-about .pc-area .img22 .text,
.p-about .pc-area .img23 .text {
  margin-top: 23px;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.78947;
  color: #717071;
  padding-left: 30px;
}

.p-about .pc-area .js-slide {
  margin-top: 90px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.p-about .pc-area .img24 {
  max-width: 25%;
  margin-left: 0;
}

.p-about .pc-area .img24 img {
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.p-about .pc-area .img25 {
  max-width: 25%;
}

.p-about .pc-area .img25 img {
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.p-about .pc-area .img26 {
  max-width: 25%;
}

.p-about .pc-area .img26 img {
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.p-about .pc-area .img27 {
  max-width: 25%;
  margin-right: 0;
}

.p-about .pc-area .img27 img {
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.p-about .pc-area .img28 {
  margin-top: 50px;
  width: 1051px;
}

.p-about .pc-area .img28 .text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  color: #231815;
}

.p-about .pc-area .img29 {
  margin-top: 90px;
  max-width: 852px;
}

.p-about .pc-area .img29 .text {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.52381;
  text-align: center;
  color: #717071;
  margin-top: 19px;
  margin-bottom: 14px;
  letter-spacing: 0.2em;
}

.p-about .sp-area .img {
  margin-left: auto;
  margin-right: auto;
}

.p-about .sp-area .img img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.p-about .sp-area .img .text {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.1em;
  padding-left: 30px;
  padding-right: 30px;
}

.p-about .sp-area .text01 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #595757;
  padding-top: 30px;
}

.p-about .sp-area .text02 {
  padding-top: 30px;
  border-top: 1px solid #c2c2c2;
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.47059;
  color: #595757;
}

.p-about .sp-area .text03 {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #3e3a39;
  margin-top: 30px;
}

.p-about .sp-area .text04 {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  color: #1b2142;
  font-weight: bold;
}

.p-about .sp-area .text05 {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  color: #3e3a39;
  margin-top: 8px;
  margin-bottom: 16px;
}

.p-about .sp-area .text06 {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #3e3a39;
  margin-top: 11px;
}

.p-about .sp-area .text07 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #727171;
  margin-top: 0;
}

.p-about .sp-area .text08 {
  text-align: left;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.26316;
  color: #727171;
  margin-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 24px;
  margin-left: 14px;
}

.p-about .sp-area .text09 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #727171;
  margin-top: 28px;
}

.p-about .sp-area .text10 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #816c5b;
}

.p-about .sp-area .text10 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #816c5b;
}

.p-about .sp-area .text11 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #303030;
}

.p-about .sp-area .text12,
.p-about .sp-area .text13,
.p-about .sp-area .text14,
.p-about .sp-area .text15 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.58333;
  color: #727171;
  margin-top: 14px;
}

.p-about .sp-area .text16 {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #221815;
}

.p-about .sp-area .img02 {
  margin-top: 30px;
}

.p-about .sp-area .img02 img {
  margin-top: 28px;
  max-width: 83.2%;
}

.p-about .sp-area .img03 {
  margin-top: 27px;
}

.p-about .sp-area .img03 img {
  max-width: 89.86667%;
}

.p-about .sp-area .img04 {
  margin-top: 20px;
}

.p-about .sp-area .img04 img {
  max-width: 82.93333%;
}

.p-about .sp-area .img05 {
  border-top: 1px solid #c2c2c2;
  margin-top: 36px;
  padding-top: 30px;
}

.p-about .sp-area .img05 img {
  max-width: 64.53333%;
}

.p-about .sp-area .img06 {
  margin-top: 30px;
}

.p-about .sp-area .img06 img {
  max-width: 100%;
}

.p-about .sp-area .img07 {
  margin-top: 40px;
}

.p-about .sp-area .img07 img {
  max-width: 87.46667%;
}

.p-about .sp-area .img08 {
  margin-top: 30px;
}

.p-about .sp-area .img08 img {
  max-width: 100%;
}

.p-about .sp-area .img09 {
  margin-top: 40px;
}

.p-about .sp-area .img09 img {
  max-width: 84.8%;
}

.p-about .sp-area .img10 {
  margin-top: 34px;
}

.p-about .sp-area .img10 img {
  max-width: 33.06667%;
}

.p-about .sp-area .img11 {
  margin-top: 40px;
}

.p-about .sp-area .img11 img {
  max-width: 82.93333%;
}

.p-about .sp-area .img12 {
  border-top: 1px solid #c2c2c2;
  margin-top: 36px;
  padding-top: 40px;
}

.p-about .sp-area .img12 img {
  max-width: 12.53333%;
}

.p-about .sp-area .img13 {
  margin-top: 40px;
}

.p-about .sp-area .img13 img {
  max-width: 100%;
}

.p-about .sp-area .img14 {
  margin-top: 50px;
  position: relative;
}

.p-about .sp-area .img14 img {
  max-width: 80.26667%;
}

.p-about .sp-area .img14 .button {
  position: relative;
  top: 0;
  left: 0;
  max-width: 196px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 37px;
}

.p-about .sp-area .img14 .button a {
  display: block;
  width: 100%;
  padding: 9px;
  text-decoration: none;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  border: none;
  display: block;
  width: 100%;
  border: 1px solid #4a2437;
  color: #4a2437;
  border-radius: 24px;
  padding: 8px 0;
}

.p-about .sp-area .img15 {
  margin-top: 30px;
}

.p-about .sp-area .img15 img {
  max-width: 100%;
}

.p-about .sp-area .img16 {
  margin-top: 30px;
}

.p-about .sp-area .img16 img {
  max-width: 84%;
}

.p-about .sp-area .img17 {
  margin-top: 57px;
}

.p-about .sp-area .img17 img {
  max-width: 50.93333%;
}

.p-about .sp-area .img18 {
  margin-top: 57px;
}

.p-about .sp-area .img18 img {
  max-width: 100%;
}

.p-about .sp-area .img19 {
  margin-top: 40px;
}

.p-about .sp-area .img19 img {
  max-width: 100%;
}

.p-about .sp-area .img20 {
  margin-top: 40px;
}

.p-about .sp-area .img20 img {
  max-width: 100%;
}

.p-about .sp-area .img21 {
  margin-top: 40px;
}

.p-about .sp-area .img21 img {
  max-width: 100%;
}

.p-about .sp-area .img22 {
  margin-top: 40px;
}

.p-about .sp-area .img22 img {
  max-width: 100%;
}

.p-about .sp-area .img23 {
  margin-top: 75px;
}

.p-about .sp-area .img23 img {
  max-width: 32.8%;
}

.p-about .sp-area .img24 {
  margin-top: 24px;
  padding-bottom: 20px;
}

.p-about .sp-area .img24 img {
  max-width: 83.73333%;
}

.p-about .sp-area .js-slide {
  margin-top: 24px;
}

.p-about .sp-area .js-slide .item {
  margin-left: 8px;
  margin-right: 8px;
}

.p-about .sp-area .js-slide .item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .l-top__owned_props {
    margin-top: 30px;
  }
}

.p-owned {
  background: #f3f3f3;
}

.p-owned .section01 {
  background: #fff;
  padding: 80px 80px 60px;
  margin-top: 40px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .section01 {
    background: none;
    box-shadow: none;
    padding: 0;
  }
}

.p-owned .section01 .title {
  width: 636px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .section01 .title {
    width: 100%;
  }
}

.p-owned .section01 .text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.25;
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .section01 .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 12px;
    text-align: left;
  }
}

.p-owned .list {
  margin-top: 200px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list {
    margin-top: 40px;
  }
}

.p-owned .list .item {
  position: relative;
  width: 100%;
  padding-bottom: 160px;
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 1100px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item {
    padding-bottom: 0;
    margin-bottom: 40px;
    background: none !important;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item h3 {
    margin-bottom: 12px;
  }
}

.p-owned .list .item:nth-of-type(2n) .content {
  margin-right: 40px;
  margin-left: auto;
}

.p-owned .list .item:nth-of-type(2n) .img {
  right: inherit;
  left: 0;
}

.p-owned .list .item:nth-of-type(1) {
  background-image: url(../../front_assets/img/about/img01-bg.webp);
}

.p-owned .list .item:nth-of-type(2) {
  background-image: url(../../front_assets/img/about/img02-bg.webp);
}

.p-owned .list .item:nth-of-type(3) {
  background-image: url(../../front_assets/img/about/img03-bg.webp);
}

.p-owned .list .item:nth-of-type(4) {
  background-image: url(../../front_assets/img/about/img04-bg.webp);
}

.p-owned .list .item:nth-of-type(4) .content h3 {
  border-bottom: 2px solid #6a3a52;
}

.p-owned .list .item:nth-of-type(5) {
  background-image: url(../../front_assets/img/about/img05-bg.webp);
}

.p-owned .list .item:nth-of-type(5) .content h3 {
  border-bottom: 2px solid #6a3a52;
}

.p-owned .list .item .img {
  position: absolute;
  width: 611px;
  top: 0;
  right: 0;
  z-index: 1;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .img {
    position: relative;
    width: 100%;
  }
}

.p-owned .list .item .content {
  width: 464px;
  background: #fff;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: 40px;
  top: -40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .content {
    width: 100%;
    top: 0;
    margin-left: 0;
    box-shadow: none;
  }
}

.p-owned .list .item .content h3 {
  padding: 80px 58px 8px;
  border-bottom: 2px solid #9d996c;
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .content h3 {
    width: 100%;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .content h3.title {
    display: none !important;
  }
}

.p-owned .list .item .content .detail {
  padding: 24px 58px 80px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14286;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .content .detail {
    padding: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-owned .list .item .content .detail .link {
  text-align: center;
  margin-top: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .content .detail .link {
    width: 100%;
  }
}

.p-owned .list .item .content .detail .link a {
  text-decoration: underline;
  color: #000000;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .list .item .content .detail .link a {
    border-radius: 50px;
    width: 100%;
    text-decoration: none;
    display: block;
    border: 1px solid #9d996c;
    padding: 10px 0;
  }
}

.p-owned .p-blogContent {
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent {
    padding-bottom: 40px;
  }
}

.p-owned .p-blogContent .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent .list {
    margin-top: 24px;
  }
}

.p-owned .p-blogContent .list li {
  width: 240px;
  margin-right: 23px;
  margin-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent .list li {
    width: 48%;
    margin-bottom: 24px;
    margin-right: 4%;
  }
}

.p-owned .p-blogContent .list li:nth-of-type(4n) {
  margin-right: 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent .list li:nth-of-type(2n) {
    margin-right: 0;
  }
}

.p-owned .p-blogContent .list li a {
  display: block;
  width: 100%;
  color: #000;
}

.p-owned .p-blogContent .list li .img {
  margin-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent .list li .img {
    box-shadow: none;
    margin-bottom: 12px;
  }
}

.p-owned .p-blogContent .list li .img img {
  box-shadow: 0px 5px 10px rgba(62, 62, 62, 0.15);
  width: 240px;
  height: 170px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: 100px;
  }
}

.p-owned .p-blogContent .list li .data {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 4px;
  color: #7a7a7a;
  text-align: right;
}

.p-owned .p-blogContent .list li .title {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.33333;
}

@media print,
screen and (max-width: 1035px) {
  .p-owned .p-blogContent .list li .title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    width: 100%;
    margin-bottom: 0;
  }
}

.p-brand {
  background: #fff;
  position: relative;
}

.p-brand .p-topRanking {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-brand .p-topRanking {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: -24px;
    padding-bottom: 40px;
  }
}

.p-company {
  background: #f3f3f3;
}

@media print,
screen and (max-width: 1035px) {
  .p-company {
    padding-bottom: 40px;
  }
}

.p-company .section {
  background: #fff;
  padding: 24px;
  margin-top: 40px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-company .section {
    padding: 10px 24px 24px;
  }
}

.p-company .section .box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-company .section .title {
  width: 340px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-company .section .title {
    width: 100%;
    text-align: left;
  }
}

.p-company .section .content {
  width: 648px;
  border-left: 2px solid #1b2142;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-company .section .content {
    margin-top: 8px;
    border-top: 2px solid #1b2142;
    border-left: none;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}

.p-company .section .text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .p-company .section .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 12px;
    text-align: left;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-company .section .detail {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-company .section01 .box .title img {
  width: 38px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section02 .box .title img {
  width: 39px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section03 .box .title img {
  width: 83px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section04 .box .title img {
  width: 83px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section05 .box .title img {
  width: 39px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section06 .box .title img {
  width: 61px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section07 .box .title img {
  width: 82px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section08 .box .title img {
  width: 104px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section09 .box .title img {
  width: 82px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section10 .box .title img {
  width: 147px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section11 .box .title img {
  width: 81px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section12 .box .title img {
  width: 82px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section13 .box .title img {
  width: 104px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section14 {
  margin-bottom: 40px;
}

.p-company .section14 .box .title img {
  width: 104px;
  margin-left: auto;
  margin-right: auto;
}

.p-contact {
  background: #fff;
}

.p-contact .content {
  background: #fff;
}

.p-contact .form {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .content {
    margin-top: 24px;
    padding: 24px;
  }
}

.p-contact .content>* {
  margin-bottom: 16px;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .content {
    margin-top: 40px;
  }
}

.p-contact .content h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.66667;
  color: #002e44;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .content h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.p-contact .content p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .content p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.p-contact .content ul {
  margin: 0;
}

.p-contact .content ul li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .content ul li {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.p-contact .content ul li:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  background: #010101;
  display: block;
  top: 13px;
  left: 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .box-thanks .content {
    padding: 24px 12px;
  }
}

.p-contact .box-thanks .thanks-title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .box-thanks .thanks-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.p-contact .box-thanks .text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85714;
  text-align: center;
  margin-top: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-contact .box-thanks .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-contact .box-thanks .button {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 20px;
}

.p-contact .box-thanks .button a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  line-height: 1;
  border-radius: 50px;
  border: 1px solid #b79786;
  display: block;
  width: 100%;
  color: #b79786;
  padding-top: 12px;
  padding-bottom: 12px;
}

.p-detailHero {
  padding-top: 180px;
}

@media print,
screen and (max-width: 1035px) {
  .p-detailHero {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-detailHero h1 {
  font-weight: normal;
  font-size: 30px;
  font-size: 3rem;
  line-height: 2;
  text-align: center;
  position: relative;
  padding: 40px 0;
  letter-spacing: 0.1em;
}

@media print,
screen and (max-width: 1035px) {
  .p-detailHero h1 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.25;
    width: 100%;
    padding: 12px 0;
  }
}

.p-detailHero h1:before,
.p-detailHero h1:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  display: block;
  left: 0;
  background-image: url(../../front_assets/img/common/bar01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media print,
screen and (max-width: 1035px) {

  .p-detailHero h1:before,
  .p-detailHero h1:after {
    height: 2px;
  }
}

.p-detailHero h1:before {
  top: 0;
  left: 0;
}

.p-detailHero h1:after {
  bottom: 0;
  left: 0;
}

.p-topSearch {
  position: relative;
  top: -140px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch {
    top: -40px;
  }
}

.p-topSearch .inner {
  background: #e6e6e6;
  padding: 40px 60px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .inner {
    padding: 24px 20px;
  }
}

.p-topSearch .title {
  width: 137px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .title {
    width: 28.87324%;
  }
}

.p-topSearch .box {
  background: #fff;
  padding: 40px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box {
    padding: 20px;
    border-radius: 10px;
  }
}

.p-topSearch .box .headline {
  width: 208px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.06667;
  color: #2a364d;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.1em;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .headline {
    width: 100%;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.3913;
    align-items: center;
    justify-content: center;
  }
}

.p-topSearch .box .headline img {
  width: 23px;
  height: 24px;
  margin-right: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .headline img {
    width: 18px;
    height: 19px;
    margin-right: 8px;
  }
}

.p-topSearch .box .content {
  border-left: 1px solid #cacdd2;
  padding-left: 100px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #cacdd2;
    padding-left: 0;
    border-left: none;
    width: 100%;
  }
}

.p-topSearch .box .content .entry01 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry01 {
    justify-content: space-between;
  }
}

.p-topSearch .box .content .entry01 .item {
  margin-left: 18px;
  cursor: pointer;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry01 .item {
    width: 48%;
    margin-left: 0;
  }
}

.p-topSearch .box .content .entry01 .item:nth-of-type(1) {
  margin-left: 0;
}

.p-topSearch .box .content .entry01 .item input[type=radio]+label:before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 228px;
  height: 66px;
  border-bottom: 15px solid #fff;
  background-position: center top;
  background-size: 81px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry01 .item input[type=radio]+label:before {
    width: 100%;
    border-bottom: 9px solid #fff;
  }
}

.p-topSearch .box .content .entry01 .item label {
  cursor: pointer;
}

.p-topSearch .box .content .entry01 .item input[type=radio][value="購入"]+label:before {
  background-image: url(../../front_assets/img/index/type01-01.webp);
}

.p-topSearch .box .content .entry01 .item input[type=radio][value="賃貸"]+label:before {
  background-image: url(../../front_assets/img/index/type01-02.webp);
}

.p-topSearch .box .content .entry01 .item input[type=radio]:checked+label::before {
  border-bottom: 15px solid #b79786;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry01 .item input[type=radio]:checked+label::before {
    border-bottom: 9px solid #b79786;
  }
}

.p-topSearch .box .content .entry01 .item input[type=radio] {
  display: none;
}

.p-topSearch .box .content .entry02 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry02 {
    width: 100%;
    display: block;
  }
}

.p-topSearch .box .content .entry02 .item {
  width: 100%;
  margin-left: 18px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry02 .item {
    width: 100%;
    margin-left: 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
  }
}

.p-topSearch .box .content .entry02 .item:nth-of-type(1) {
  margin-left: 0;
}

.p-topSearch .box .content .entry02 .item .label {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  margin-bottom: 4px;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry02 .item .label {
    width: 20%;
    letter-spacing: 0.1em;
  }
}

.p-topSearch .box .content .entry02 .item select {
  border: 1px solid #242424;
  border-radius: 2px;
  width: 100%;
  padding: 8px;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
  background-image: url(../../front_assets/img/common/icon-arrow01.webp);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 22px 34px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .entry02 .item select {
    border: 1px solid #959292;
    width: 78%;
    margin-left: 2%;
    box-shadow: none;
    text-align: left;
    color: #000;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.p-topSearch .box .content .more {
  border: 1px solid #b79786;
  color: #b79786;
  margin-top: 24px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  border-radius: 2px;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
  cursor: pointer;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .more {
    box-shadow: none;
  }
}

.p-topSearch .box .content .submit {
  margin-top: 12px;
}

.p-topSearch .box .content .submit input {
  border: 1px solid #b79786;
  background: #b79786;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  border-radius: 2px;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
  cursor: pointer;
}

@media print,
screen and (max-width: 1035px) {
  .p-topSearch .box .content .submit input {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.11111;
    box-shadow: none;
  }
}

.p-topLogo {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLogo {
    margin-top: 0;
    background: #e6e6e6;
    width: 100%;
    position: relative;
    top: -40px;
    text-align: center;
    padding-bottom: 24px;
  }

  .p-topLogo img {
    width: 91px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-topFeature {
  margin-bottom: 40px;
  background: #fff;
  padding: 40px 0;
}

.p-topFeature .lead {
  font-size: 2.3rem;
  color: #002e44;
}

.p-topFeature .feature {
  width: 100%;
  height: 150px;
  border-radius: 20px;
  margin: 10px 10px;
  background: rgba(0, 0, 0, 0.5) center;
  background-size: cover;
  background-blend-mode: darken;
}

.p-topFeature .features {
  display: flex;
}

.p-topFeature .features a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-items: center;
  align-items: center;
  justify-content: center;
  color: white;
}

.p-topFeature .feature.tower {
  background-image: url(../../front_assets/img/index/feature-image01.jpeg);
}

.p-topFeature .feature.over100 {
  background-image: url(../../front_assets/img/index/feature-image02.jpeg);
}

.p-topLatest {
  margin-top: 40px;
  background: #f3f3f3;
  padding: 40px 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 0;
    position: relative;
    top: -40px;
    overflow: hidden;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-topLatest .head {
  border-bottom: 1px solid #929292;
  padding-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .head {
    padding-bottom: 24px;
  }
}

.p-topLatest .title {
  width: 233px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .title {
    width: 36%;
  }
}

.p-topLatest .lead {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  color: #002e44;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 4px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content {
    margin-top: 8px;
  }
}

.p-topLatest .content .figure {
  width: 33px;
  position: absolute;
  top: 0;
  left: -53px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .figure {
    width: 16px;
    left: 0;
    z-index: 10;
    top: 5px;
  }
}

.p-topLatest .content .box {
  position: relative;
  width: 100%;
}

.p-topLatest .content .box.sale .main {
  padding-top: 43px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box.sale .main {
    padding-top: 4px;
  }
}

.p-topLatest .content .box .main {
  padding-top: 27px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main {
    padding-top: 4px;
  }
}

.p-topLatest .content .box .main h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 24px;
  margin-left: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main h3 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    margin-left: 4px;
    padding-left: 24px;
    margin-bottom: 0;
  }
}

.p-topLatest .content .box .main .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list {
    width: 100%;
    padding-top: 4px;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
    display: inline-block;
    padding-left: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.p-topLatest .content .box .main .list::-webkit-scrollbar {
  display: none;
}

.p-topLatest .content .box .main .list li {
  width: 244px;
  position: relative;
  margin-left: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list li {
    width: 74.9%;
    max-width: 100%;
    display: inline-block;
    margin-left: 2px;
  }
}

.p-topLatest .content .box .main .list li:nth-of-type(1) {
  margin-left: 0;
}

.p-topLatest .content .box .main .list li a {
  width: 100%;
  display: block;
}

.p-topLatest .content .box .main .list li .label {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 91px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list li .label {
    width: 77px;
  }
}

.p-topLatest .content .box .main .list li .img img {
  width: 244px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list li .img img {
    width: 100%;
    height: 198px;
  }
}

.p-topLatest .content .box .main .list li .name {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  color: #1b1b1b;
  margin-top: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list li .name {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    margin-top: 6px;
  }
}

.p-topLatest .content .box .main .list li .text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7a7a7a;
  margin-top: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list li .text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 1px;
  }
}

.p-topLatest .content .box .main .link {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .link {
    /*display: none;*/
  }
}

.p-topLatest .content .box .main .link a {
  font-weight: bold;
  color: #000000;
  text-decoration: underline;
}

.p-topPickup {
  margin-top: 40px;
  background: #f9f9f9;
  padding: 40px 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup {
    padding: 24px 0 0;
    margin-top: 40px;
    overflow: hidden;
  }
}

.p-topPickup .head {
  border-bottom: 1px solid #ab8b7b;
  padding-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .head {
    padding-bottom: 24px;
  }
}

.p-topPickup .title {
  width: 188px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .title {
    width: 31.40845%;
  }
}

.p-topPickup .lead {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  color: #b79786;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 4px;
  }
}

.p-topPickup .inner {
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .inner {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .slick-list {
    padding-bottom: 40px !important;
  }
}

.p-topPickup .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.p-topPickup .list::-webkit-scrollbar {
  display: none;
}

.p-topPickup .list .item {
  width: 232px;
  position: relative;
  margin-left: 36px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
  padding-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item {
    margin-left: 0;
    margin-right: 10px;
    width: 90.66667%;
    box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
    position: relative;
  }
}

.p-topPickup .list .item:nth-of-type(1) {
  margin-left: 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item .img {
    overflow: hidden;
    width: 100%;
    border-top: 6px solid #fff;
    border-left: 6px solid #fff;
    border-right: 6px solid #fff;
    position: relative;
  }
}

.p-topPickup .list .item .img img {
  width: 232px;
  height: 154px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item .img img {
    width: 100%;
    height: 245px;
  }
}

.p-topPickup .list .item a {
  width: 100%;
  display: block;
}

.p-topPickup .list .item .name {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  font-weight: bold;
  color: #1b1b1b;
  margin-top: 25px;
  color: #fff;
  background: #b79786;
  padding: 8px 12px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item .name {
    width: 94.11765%;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    white-space: initial;
  }
}

.p-topPickup .list .item .content input:checked~.text {
  display: block;
}

.p-topPickup .list .item .content .text {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.8;
  display: block;
  color: #b79786;
  padding: 8px 24px 0px 24px;
  margin-bottom: 8px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item .content .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 15px 25px 0;
    white-space: initial;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 10em;
  }
}

.p-topPickup .list .item .content input:checked~.text {
  white-space: normal;
  display: block;
  height: 100%;
}

.p-topPickup .list .item .content .dots {
  display: block;
  color: #b79786;
  text-align: center;
}

.p-topPickup .list .item .content input:checked~.dots {
  display: none;
}

.p-topPickup .list .item .content input {
  display: none;
}

.p-topPickup .list .item .button {
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item .button {
    width: 57.64706%;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.p-topPickup .list .item .button a {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  border-radius: 50px;
  border: 1px solid #b79786;
  display: block;
  width: 100%;
  color: #b79786;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .list .item .button a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
  }
}

.p-topPickup .link {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .link {
    margin: 20px;
    display: flex;
    justify-content: center;
  }
}

.p-topPickup .link img {
  box-shadow: 0px 5px 35px 0px rgb(62 62 62 / 15%);
  max-width: 400px;
  margin: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-topPickup .link a {
    display: block;
    margin: 0 20px;
  }
}

.p-topPickup .slick-dots {
  bottom: 0;
}

.p-topPickup .slick-dots li {
  width: auto;
  background: none;
  box-shadow: none;
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.p-topPickup .slick-dots li:after {
  border-radius: 24px;
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #c0c0c0;
  display: block;
  top: 0;
  left: 0;
}

.p-topPickup .slick-dots li.slick-active:after {
  background: #b79786;
}

.p-topPickup .slick-dots li button {
  padding: 0;
  height: 10px;
  width: 10px;
}

.p-topPickup .slick-dots li button:before {
  display: none;
}

.p-topBanner {
  background: #e6e6e6;
  padding-top: 24px;
  padding-bottom: 24px;
}

.p-topBanner .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBanner .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-topBanner .inner .item {
  width: 507px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBanner .inner .item {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 24px;
  }
}

.p-topBanner .inner .item a {
  display: block;
  width: 100%;
}

.p-topBanner .inner .item:nth-of-type(1) {
  width: 100%;
  margin-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBanner .inner .item:nth-of-type(1) {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-topBanner .inner .item img {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
  }
}

.p-topNews {
  margin-top: 40px;
}

.p-topNews .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-topNews .inner .head {
  text-align: center;
  width: 360px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .head {
    width: 100%;
    border-bottom: 1px solid #ab8b7b;
    padding-bottom: 24px;
  }
}

.p-topNews .inner .head .title {
  width: 139px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .head .title {
    width: 23.23944%;
  }
}

.p-topNews .inner .head .lead {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  color: #1b1b1b;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .head .lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 4px;
  }
}

.p-topNews .inner .head .head {
  border-bottom: 1px solid #929292;
  padding-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .head .head {
    padding-bottom: 24px;
  }
}

.p-topNews .inner .content {
  width: 600px;
  border-left: 1px solid #cacdd2;
  padding-left: 70px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .content {
    padding-left: 0;
    width: 100%;
    border-left: none;
  }
}

.p-topNews .inner .content .item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #1b1b1b;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .content .item {
    margin-bottom: 0;
    padding: 16px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-topNews .inner .content .item .info {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-topNews .inner .content .item .info .data {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  color: #7a7a7a;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .content .item .info .data {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-topNews .inner .content .item .info .label {
  background: #dad494;
  padding: 2px 4px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  color: #fff;
  margin-left: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .content .item .info .label {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    padding: 2px 4px;
    margin-left: 4px;
  }
}

.p-topNews .inner .content .item .text {
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media print,
screen and (max-width: 1035px) {
  .p-topNews .inner .content .item .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-topNews .inner .content .item .text a {
  color: #1b1b1b;
}

.p-topBlog {
  margin-top: 40px;
  background: #f3f3f3;
  padding: 40px 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog {
    padding: 24px 0;
  }
}

.p-topBlog .inner {
  max-width: 934px;
}

.p-topBlog .head {
  border-bottom: 1px solid #a3a7b1;
  padding-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .head {
    padding-bottom: 24px;
  }
}

.p-topBlog .title {
  width: 170px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .title {
    width: 35%;
  }
}

.p-topBlog .lead {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  color: #2a364d;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 4px;
  }
}

.p-topBlog .box {
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .box {
    margin-top: 24px;
  }
}

.p-topBlog .inner {
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .inner {
    margin-top: 0;
  }
}

.p-topBlog .main {
  width: 786px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .main {
    width: 100%;
  }
}

.p-topBlog .main-item {
  background: #fff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .main-item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
}

.p-topBlog .main-item h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .main-item h3 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.p-topBlog .main-item h3 a {
  width: 100%;
  color: #1b1b1b;
  display: block;
}

.p-topBlog .main-item .data {
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  color: #7a7a7a;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .main-item .data {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
  }
}

.p-topBlog .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list {
    display: block;
    width: 100%;
  }
}

.p-topBlog .list .item {
  width: 380px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 16px;
  border-bottom: 1px dotted #a3a7b1;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-topBlog .list .item:nth-of-type(1) {
  border-top: 1px dotted #a3a7b1;
}

.p-topBlog .list .item:nth-of-type(2) {
  border-top: 1px dotted #a3a7b1;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item:nth-of-type(2) {
    border-top: none;
  }
}

.p-topBlog .list .item:nth-of-type(2n) {
  margin-right: 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item:nth-of-type(2n) {
    margin-right: auto;
  }
}

.p-topBlog .list .item a {
  width: 100%;
  color: #1b1b1b;
  display: block;
}

.p-topBlog .list .item .img {
  width: 86px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item .img {
    width: 20%;
  }
}

.p-topBlog .list .item .img img {
  width: 86px;
  height: 86px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item .img img {
    width: 100%;
    height: auto;
  }
}

.p-topBlog .list .item .body {
  width: 280px;
  margin-left: 14px;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item .body {
    width: 76%;
    margin-left: 4%;
  }
}

.p-topBlog .list .item .body h3 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.28571;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item .body h3 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-topBlog .list .item .body .data {
  margin-top: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7a7a7a;
}

@media print,
screen and (max-width: 1035px) {
  .p-topBlog .list .item .body .data {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 4px;
  }
}

.p-topBlog .list .item .name {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  font-weight: bold;
  color: #1b1b1b;
  margin-top: 12px;
  color: #fff;
  background: #b79786;
  padding: 8px 12px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
}

.p-topBlog .list .item .text {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.8;
  color: #b79786;
  padding: 8px 24px 24px;
}

.p-topBlog .list .item .button {
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}

.p-topBlog .list .item .button a {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  border-radius: 50px;
  border: 1px solid #b79786;
  display: block;
  width: 100%;
  color: #b79786;
  padding-top: 8px;
  padding-bottom: 8px;
}

.p-news {
  background: #f3f3f3;
}

.p-news .section01 {
  background: #fff;
  padding: 80px 80px 60px;
  margin-top: 40px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-news .section01 {
    background: none;
    box-shadow: none;
    padding: 0;
  }
}

.p-news .section01 .title {
  width: 636px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .section01 .title {
    width: 100%;
  }
}

.p-news .section01 .text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.25;
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .section01 .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 12px;
    text-align: left;
  }
}

.p-news .list {
  margin-top: 200px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list {
    margin-top: 40px;
  }
}

.p-news .list .item {
  position: relative;
  width: 100%;
  padding-bottom: 160px;
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 1100px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item {
    padding-bottom: 0;
    margin-bottom: 40px;
    background: none !important;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item h3 {
    margin-bottom: 12px;
  }
}

.p-news .list .item:nth-of-type(2n) .content {
  margin-right: 40px;
  margin-left: auto;
}

.p-news .list .item:nth-of-type(2n) .img {
  right: inherit;
  left: 0;
}

.p-news .list .item:nth-of-type(1) {
  background-image: url(../../front_assets/img/about/img01-bg.webp);
}

.p-news .list .item:nth-of-type(2) {
  background-image: url(../../front_assets/img/about/img02-bg.webp);
}

.p-news .list .item:nth-of-type(3) {
  background-image: url(../../front_assets/img/about/img03-bg.webp);
}

.p-news .list .item:nth-of-type(4) {
  background-image: url(../../front_assets/img/about/img04-bg.webp);
}

.p-news .list .item:nth-of-type(4) .content h3 {
  border-bottom: 2px solid #6a3a52;
}

.p-news .list .item:nth-of-type(5) {
  background-image: url(../../front_assets/img/about/img05-bg.webp);
}

.p-news .list .item:nth-of-type(5) .content h3 {
  border-bottom: 2px solid #6a3a52;
}

.p-news .list .item .img {
  position: absolute;
  width: 611px;
  top: 0;
  right: 0;
  z-index: 1;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .img {
    position: relative;
    width: 100%;
  }
}

.p-news .list .item .content {
  width: 464px;
  background: #fff;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: 40px;
  top: -40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .content {
    width: 100%;
    top: 0;
    margin-left: 0;
    box-shadow: none;
  }
}

.p-news .list .item .content h3 {
  padding: 80px 58px 8px;
  border-bottom: 2px solid #9d996c;
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .content h3 {
    width: 100%;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .content h3.title {
    display: none !important;
  }
}

.p-news .list .item .content .detail {
  padding: 24px 58px 80px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14286;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .content .detail {
    padding: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-news .list .item .content .detail .link {
  text-align: center;
  margin-top: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .content .detail .link {
    width: 100%;
  }
}

.p-news .list .item .content .detail .link a {
  text-decoration: underline;
  color: #000000;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .list .item .content .detail .link a {
    border-radius: 50px;
    width: 100%;
    text-decoration: none;
    display: block;
    border: 1px solid #9d996c;
    padding: 10px 0;
  }
}

.p-news .p-newsContent {
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent {
    padding-bottom: 40px;
  }
}

.p-news .p-newsContent .list {
  margin-top: 60px;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list {
    margin-top: 24px;
  }
}

.p-news .p-newsContent .list li {
  width: 100%;
  margin-right: 0;
  border-bottom: 1px solid #ccc;
}

.p-news .p-newsContent .list li:first-child {
  border-top: 1px solid #ccc;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li {
    width: 100%;
  }
}

.p-news .p-newsContent .list li:nth-of-type(4n) {
  margin-right: 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li:nth-of-type(2n) {
    margin-right: 0;
  }
}

.p-news .p-newsContent .list li a {
  display: block;
  width: 100%;
  color: #000;
  padding: 26px 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li a {
    padding: 16px 8px;
  }

}

.p-news .p-newsContent .list li .img {
  margin-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li .img {
    box-shadow: none;
    margin-bottom: 12px;
  }
}

.p-news .p-newsContent .list li .img img {
  box-shadow: 0px 5px 10px rgba(62, 62, 62, 0.15);
  width: 240px;
  height: 170px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: 100px;
  }
}

.p-news .p-newsContent .list li .info {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.p-news .p-newsContent .list li .data {
  position: absolute;
  right: 6px;
  top: 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 4px;
  color: #7a7a7a;
  text-align: right;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li .data {
    position: relative;
    right: 0;
    width: 100%;
    margin-top: 4px;
  }
}

.p-news .p-newsContent .list li .title {
  font-weight: bold;
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.33333;
  padding-right: 100px;
}

@media print,
screen and (max-width: 1035px) {
  .p-news .p-newsContent .list li .title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    width: 100%;
    padding-right: 0;
  }
}

.p-pickup {
  background: #fff;
}

.p-pickup .p-topRanking {
  background: #fff;
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-topRanking {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: -24px;
    padding-bottom: 40px;
  }
}

.p-pickup .sort-box {
  margin-left: auto;
  margin-right: auto;
  width: 690px;
  background: #fff;
  padding: 8px;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .sort-box {
    width: 100%;
    margin-left: 0;
    padding: 4px;
    margin-top: 24px;
  }
}

.p-pickup select {
  border: 1px solid #959292;
  border-radius: 2px;
  padding: 8px 30px 8px 16px;
  width: 100%;
  background-image: url(../../front_assets/img/common/icon-arrow02.webp);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 22px 34px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup select {
    border: 1px solid #959292;
    width: 100%;
    box-shadow: none;
    text-align: left;
  }
}

.p-pickup .p-pickupContent .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px dotted #a3a7b1;
  padding-top: 40px;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list {
    padding-top: 0;
    margin-top: 24px;
  }
}

.p-pickup .p-pickupContent .list li {
  width: 232px;
  margin-right: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px dotted #a3a7b1;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list li {
    width: 100%;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 0;
  }
}

.p-pickup .p-pickupContent .list li:nth-of-type(4n) {
  margin-right: 0;
}

.p-pickup .p-pickupContent .list li a {
  display: block;
  width: 100%;
  color: #000;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list li a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.p-pickup .p-pickupContent .list li .img {
  margin-bottom: 12px;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list li .img {
    order: 2;
    box-shadow: none;
    width: 30%;
    margin-left: 4%;
    margin-bottom: 0;
  }
}

.p-pickup .p-pickupContent .list li .img img {
  width: 244px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0px 5px 10px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: auto;
  }
}

.p-pickup .p-pickupContent .list li .name {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list li .name {
    order: 1;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    width: 66%;
    margin-bottom: 0;
  }
}

.p-pickup .p-pickupContent .list li .detail {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: #7a7a7a;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .list li .detail {
    display: none;
  }
}

.p-pickup .p-pickupContent .link {
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .link {
    margin-top: 40px;
  }
}

.p-pickup .p-pickupContent .link a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  text-decoration: underline;
  font-weight: bold;
  color: #010101;
}

@media print,
screen and (max-width: 1035px) {
  .p-pickup .p-pickupContent .link a {
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    border: 1px solid #9d996c;
    border-radius: 50px;
    padding: 12px 0;
    color: #9d996c;
  }
}

.p-privacy {
  background: #f3f3f3;
}

.p-privacy .content {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  padding: 40px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  margin-top: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-privacy .content {
    margin-top: 24px;
    padding: 24px;
  }
}

.p-privacy .content>* {
  margin-bottom: 16px;
}

@media print,
screen and (max-width: 1035px) {
  .p-privacy .content {
    margin-top: 40px;
  }
}

.p-privacy .content h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.66667;
  color: #002e44;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-privacy .content h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.p-privacy .content p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media print,
screen and (max-width: 1035px) {
  .p-privacy .content p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.p-privacy .content ul {
  margin: 24px 0 16px;
}

.p-privacy .content ul li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-privacy .content ul li {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.p-privacy .content ul li:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  background: #010101;
  display: block;
  top: 13px;
  left: 0;
}

.p-ranking {
  background: #fff;
}

.p-ranking .p-topRanking {
  background: #fff;
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-topRanking {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: -24px;
    padding-bottom: 40px;
  }
}

.p-ranking .p-rankingContent .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px dotted #a3a7b1;
  padding-top: 40px;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list {
    padding-top: 0;
    margin-top: 24px;
  }
}

.p-ranking .p-rankingContent .list li {
  max-width: 240px;
  margin-right: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px dotted #a3a7b1;
  position: relative;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li {
    max-width: 100%;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 0;
    width: 100%;
  }
}

.p-ranking .p-rankingContent .list li:nth-of-type(4n) {
  margin-right: 0;
}

.p-ranking .p-rankingContent .list li a {
  display: block;
  width: 100%;
  color: #000;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.p-ranking .p-rankingContent .list li .img {
  margin-bottom: 12px;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li .img {
    order: 2;
    box-shadow: none;
    width: 30%;
    margin-left: 4%;
    margin-bottom: 0;
  }
}

.p-ranking .p-rankingContent .list li .img img {
  width: 244px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0px 5px 10px rgba(62, 62, 62, 0.15);
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: auto;
  }
}

.p-ranking .p-rankingContent .list li .content {
  position: relative;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li .content {
    order: 1;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    width: 66%;
    margin-bottom: 0;
  }
}

.p-ranking .p-rankingContent .list li .content .rank {
  width: 32px;
  position: absolute;
  top: -30px;
  left: 0;
}

.p-ranking .p-rankingContent .list li .name {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li .name {
    order: 1;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    margin-bottom: 0;
  }
}

.p-ranking .p-rankingContent .list li .detail {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: #7a7a7a;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .list li .detail {
    display: none;
  }
}

.p-ranking .p-rankingContent .link {
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .link {
    margin-top: 40px;
  }
}

.p-ranking .p-rankingContent .link a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  text-decoration: underline;
  font-weight: bold;
  color: #010101;
}

@media print,
screen and (max-width: 1035px) {
  .p-ranking .p-rankingContent .link a {
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    border: 1px solid #9d996c;
    border-radius: 50px;
    padding: 12px 0;
    color: #9d996c;
  }
}

.p-recruit {
  background: #f3f3f3;
}

.p-recruit .p-recruitContent {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding-bottom: 40px;
}

.p-recruit .p-recruitContent .box {
  background: #fff;
  margin-top: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box {
    margin-top: 40px;
  }
}

.p-recruit .p-recruitContent .box.box01 {
  padding: 40px 120px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box01 {
    padding: 24px;
  }
}

.p-recruit .p-recruitContent .box.box01 .title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  color: #1b2142;
  text-align: center;
  border-top: 1px solid #1b2142;
  border-bottom: 1px solid #1b2142;
  padding: 24px 0;
  font-weight: normal;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box01 .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333;
  }
}

.p-recruit .p-recruitContent .box.box01 .text {
  margin-top: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box01 .text {
    margin-top: 12px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-recruit .p-recruitContent .box.box02 {
  padding: 0;
  padding-bottom: 40px;
}

.p-recruit .p-recruitContent .box.box02 .tab {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 4px solid #2a364d;
}

.p-recruit .p-recruitContent .box.box02 .tab.is-mid_career {
  border-bottom: 4px solid #2a364d;
}

.p-recruit .p-recruitContent .box.box02 .tab.is-students {
  border-bottom: 4px solid #2a364d;
}

.p-recruit .p-recruitContent .box.box02 .tab li {
  width: 50%;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.06667;
  color: #2a364d;
  padding: 24px 0;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .tab li {
    padding: 10px 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-recruit .p-recruitContent .box.box02 .tab li.is-active#mid_career {
  background: #2a364d;
  color: #fff;
}

.p-recruit .p-recruitContent .box.box02 .tab li.is-active#students {
  background: #2a364d;
  color: #fff;
}

.p-recruit .p-recruitContent .box.box02 #is-students {
  display: none;
}

.p-recruit .p-recruitContent .box.box02 h3 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.06667;
  text-align: center;
  padding: 40px 0;
  font-weight: normal;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 h3 {
    padding: 24px 0;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333;
    padding-bottom: 0;
  }
}

.p-recruit .p-recruitContent .box.box02 .content {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #9d996c;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .content {
    width: 100%;
    border-top: none;
  }
}

.p-recruit .p-recruitContent .box.box02 .item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #9d996c;
  position: relative;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .item {
    margin-top: 36px;
    padding-bottom: 16px;
    border-bottom: none;
  }

  .p-recruit .p-recruitContent .box.box02 .item:after {
    position: absolute;
    content: '';
    width: 80%;
    height: 2px;
    background: none;
    border-bottom: 1px dotted #9d996c;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .item:nth-of-type(1) {
    margin-top: 24px;
  }
}

.p-recruit .p-recruitContent .box.box02 .headline {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  width: 210px;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .headline {
    text-align: left;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
  }

  .p-recruit .p-recruitContent .box.box02 .headline:after {
    position: absolute;
    content: '';
    width: 177px;
    height: 2px;
    background: #2a364d;
    display: block;
    left: 0;
    bottom: -2px;
  }
}

.p-recruit .p-recruitContent .box.box02 .data {
  width: 500px;
  border-left: 2px solid #9d996c;
  padding: 0 0 0 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .data {
    border-left: none;
    padding: 0;
    width: 100%;
    margin-top: 24px;
    padding-left: 38px;
    padding-right: 38px;
  }
}

.p-recruit .p-recruitContent .box.box02 .data .databox {
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .data .databox {
    margin-top: 24px;
  }
}

.p-recruit .p-recruitContent .box.box02 .data .databox:nth-of-type(1) {
  margin-top: 0;
}

.p-recruit .p-recruitContent .box.box02 .text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-recruit .p-recruitContent .box.box02 .detail {
  margin-top: 8px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box02 .detail {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-recruit .p-recruitContent .box.box03 {
  padding: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 {
    padding: 24px;
  }
}

.p-recruit .p-recruitContent .box.box03 h3 {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.06667;
  background: #2a364d;
  padding: 16px 0;
  color: #fff;
  font-weight: normal;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.11111;
    padding: 6px 0;
    max-width: 163px;
    margin-left: 0;
    margin-right: auto;
  }
}

.p-recruit .p-recruitContent .box.box03 .text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 12px;
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-recruit .p-recruitContent .box.box03 .content {
  margin-top: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content {
    margin-top: 12px;
  }
}

.p-recruit .p-recruitContent .box.box03 .content .item {
  border-top: 1px dotted #9d996c;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item {
    padding-top: 6px;
    padding-bottom: 12px;
    border-top: none;
    text-align: left;
  }
}

.p-recruit .p-recruitContent .box.box03 .content .item .headline {
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .headline {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    margin-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .headline.privacy {
    margin-bottom: 20px;
  }
}

.p-recruit .p-recruitContent .box.box03 .content .item .headline a {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  color: #010101;
  text-decoration: underline;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .headline a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-recruit .p-recruitContent .box.box03 .content .item .text {
  margin-top: 0;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  margin-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .text {
    margin-bottom: 33px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .text.privacy {
    margin-bottom: 20px;
  }
}

.p-recruit .p-recruitContent .box.box03 .content .item .link {
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .link {
    max-width: 196px;
    margin-top: 8px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    border: 1px solid #2a364d;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

.p-recruit .p-recruitContent .box.box03 .content .item .link a {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  color: #010101;
  text-decoration: underline;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .p-recruitContent .box.box03 .content .item .link a {
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 9px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    color: #2a364d;
  }
}

.p-recruit .box-thanks {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.p-recruit .box-thanks .content {
  padding: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .box-thanks .content {
    padding: 24px 12px;
  }
}

.p-recruit .box-thanks .thanks-title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .box-thanks .thanks-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.p-recruit .box-thanks .text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85714;
  text-align: center;
  margin-top: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-recruit .box-thanks .text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.p-recruit .box-thanks .button {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 20px;
}

.p-recruit .box-thanks .button a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  line-height: 1;
  border-radius: 50px;
  border: 1px solid #b79786;
  display: block;
  width: 100%;
  color: #b79786;
  padding-top: 12px;
  padding-bottom: 12px;
}

.p-sale {
  background: #fff;
}

.p-sale .p-topRanking {
  background: #fff;
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-topRanking {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: -24px;
    padding-bottom: 40px;
  }
}

.p-sale .sort-box {
  margin-left: auto;
  margin-right: auto;
  width: 690px;
  background: #fff;
  padding: 8px;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .sort-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    margin-top: 24px;
  }
}

.p-sale .sort-box select {
  border: 1px solid #959292;
  border-radius: 2px;
  padding: 8px 30px 8px 16px;
  width: 100%;
  background-image: url(../../front_assets/img/common/icon-arrow02.webp);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 22px 34px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .sort-box select {
    border: 1px solid #959292;
    width: 100%;
    box-shadow: none;
    text-align: left;
  }
}

.p-sale .p-saleContent .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px dotted #a3a7b1;
  padding-top: 40px;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list {
    padding-top: 0;
    margin-top: 24px;
  }
}

.p-sale .p-saleContent .list li {
  max-width: 226px;
  margin-right: 44px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px dotted #a3a7b1;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li {
    max-width: 100%;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 0;
    width: 100%;
  }
}

.p-sale .p-saleContent .list li:nth-of-type(4n) {
  margin-right: 0;
}

.p-sale .p-saleContent .list li a {
  display: block;
  width: 100%;
  color: #000;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.p-sale .p-saleContent .list li .img {
  margin-bottom: 12px;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li .img {
    order: 2;
    box-shadow: none;
    width: 30%;
    margin-left: 4%;
    margin-bottom: 0;
  }
}

.p-sale .p-saleContent .list li .img img {
  box-shadow: 0px 5px 10px rgba(62, 62, 62, 0.15);
  width: 226px;
  height: 170px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: 75px;
  }
}

.p-sale .p-saleContent .list li .name {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li .name {
    order: 1;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    width: 66%;
    margin-bottom: 0;
  }
}

.p-sale .p-saleContent .list li .detail {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: #7a7a7a;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li .detail {
    /*display: none;*/
  }
}

.p-sale .p-saleContent .link {
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .link {
    margin-top: 40px;
  }
}

.p-sale .p-saleContent .link a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  text-decoration: underline;
  font-weight: bold;
  color: #010101;
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .link a {
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    border: 1px solid #9d996c;
    border-radius: 50px;
    padding: 12px 0;
    color: #9d996c;
  }
}

.p-search {
  background: #fff;
}

.p-search .p-topRanking {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-search .p-topRanking {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 73px;
    padding-bottom: 14px;
  }
}

.p-searchHero {
  padding-block: 0px;
}

.p-searchHero-title {
  padding-top: 160px;
  padding-bottom: 39px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero {
    padding-block: 19px 21px;
  }

  .p-searchHero-title {
    padding-top: 62px;
    padding-bottom: 16px;
    font-size: 16px;
    font-weight: bold;
  }
}

.p-searchHero__inner {}

.p-searchHero__box {
  @media screen and (max-width: 1035px) {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* タブ機能↓↓ */
.p-searchHero .entry01 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  border-bottom: 1px solid #2E3252;
  @media screen and (max-width: 1035px) {
    gap: 60px;
    margin-top: 0;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .entry01 {
    justify-content: space-between;
  }
}

.p-searchHero .entry01 .item {
  position: relative;
  min-height: 48px;
  @media screen and (max-width: 1035px) {
    min-height: 30px;
  }

  .item_bg {
    transition: all 0.1s ease;
  }

  &:first-of-type {
    width: 292px;
    @media screen and (max-width: 1035px) {
      width: auto;
      flex: 1;
    }

    a {
      padding-left: 63px;

      @media screen and (max-width: 1035px) {
        padding-left: 40px;
      }
    }
    
    .item_bg {
      opacity: 0;
      visibility: hidden;
    }
  }

  &:last-of-type {
    flex: 1;

    a {
      text-align: left;
      padding-left: 85px;
      @media screen and (max-width: 1035px) {
        text-align: center;
        padding-left: 0;
        padding-right: 40px;
      }
    }

    .item_bg {
      opacity: 0;
      visibility: hidden;
    }
  }

  &.is-active:first-of-type .item_bg {
    position: absolute;
    top: 0;
    right: -68px;
    display: inline-block;
    border-left: 34px solid #2E3252;
    border-right: 34px solid #EAEAEA;
    border-top: 24px solid #EAEAEA;
    border-bottom: 24px solid #2E3252;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    @media screen and (max-width: 1035px) {
      right: -60px;
      border-left: 30px solid #2E3252;
      border-right: 30px solid #EAEAEA;
      border-top: 15px solid #EAEAEA;
      border-bottom: 15px solid #2E3252;
    }
  }

  &.is-active:last-of-type .item_bg {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    border-left: 34px solid #EAEAEA;
    border-right: 34px solid #2E3252;
    border-top: 24px solid #2E3252;
    border-bottom: 24px solid #EAEAEA;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    @media screen and (max-width: 1035px) {
      left: -60px;
      border-left: 30px solid #EAEAEA;
      border-right: 30px solid #2E3252;
      border-top: 15px solid #2E3252;
      border-bottom: 15px solid #EAEAEA;
    }
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .entry01 .item {
    width: 50%;
  }
}

.p-searchHero .entry01 .item a {
  text-align: center;
  font-family: var(--gothic);
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: 0.2em;
  font-weight: bold;
  background-color: #EAEAEA;
  color: #2E3252;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-block: 10px;
  @media screen and (max-width: 1035px) {
    font-size: 14px;
    padding-block: 6px;
  }

  &:hover {
    opacity: 1;
  }
}

.p-searchHero .entry01 .item.is-active a {
  background-color: #2E3252;
  color: #fff;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .entry01 .item.is-active a {
    background-color: #2E3252;
  }
}

.p-searchHero .entry01 .item input[type=radio] {
  display: none;
}
/* タブ機能↑↑ */

.p-searchHero .box {
  max-width: 1280px;
  padding-inline: 30px;
  width: 100%;
  margin-inline: auto;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  @media screen and (max-width: 1035px) {
    display: grid;
    grid-template-columns: 39.9% 1fr;
    gap: 12px;
    margin-top: 19px;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .box {
    justify-content: flex-start;
  }
}

.p-searchHero .box .count {
  color: #959292;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .box .count {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-searchHero .box .count span {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
}

.p-searchHero .box .page {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  margin-left: 4px;
}

.p-searchHero .box .page span {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .box .page span {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-searchHero .box .sort-box {
  width: 212px;
  background: #fff;
  padding: 8px;
  margin-left: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .box .sort-box {
    width: 100%;
    margin-left: 0;
    padding: 0;
    margin-top: 0;
  }
}

.p-searchHero .box select {
  border: 1px solid #707070;
  padding-block: 4px;
  padding-inline: 16px 30px;
  width: 100%;
  background-image: url(../../front_assets/img/common/icon_arrow_bottom_navy.png);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  font-family: var(--gothic);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--colo_2E3252);
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchHero .box select {
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    background-size: 12px 12px;
    color: #000;
    padding-block: 2px;
  }
}

.p-searchHero__searchBtn {
  max-width: 276px;
  width: 100%;
  @media screen and (max-width: 1035px) {
    max-width: 100%;
  }
}

.p-searchHero__btn {
  border: 1px solid #707070;
  padding-block: 4px;
  padding-inline: 5px;
  width: 100%;
  font-family: var(--gothic);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--colo_2E3252);
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
  @media screen and (min-width: 768px) {
    &:hover {
      opacity: 0.7;
    }
  }
  @media screen and (max-width: 1035px) {
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    background-size: 12px 12px;
    color: #000;
    padding-block: 2px;
  }
}

.p-searchMain {
  padding-top: 60px;
  padding-bottom: 80px;
  @media screen and (max-width: 1035px) {
    padding-top: 0;
    padding-bottom: 34px;
  }
}

.p-searchMain__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 48px;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
}

.p-searchSide {
  position: relative;
  width: 280px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide {
    width: 100%;
  }
}

.p-searchSide .head {
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .head {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}

.p-searchSide .head .title {
  margin-bottom: 14px;
  font-family: var(--gothic);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0.2em;
  font-weight: bold;
  border: 3px solid #000;
  padding-block: 12.5px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .head .title {
    margin-bottom: 0;
  }
}

.p-searchSide .head .reset {
  display: block;
  max-width: 128px;
  width: 100%;
  font-family: var(--gothic);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.2em;
  background: #2E3252;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .head .reset {
    text-align: right;
  }
}

.p-searchSide .head .reset a {
  display: block;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  padding-block: 2px;
}

.p-searchSide .head .reset a span {
  padding-right: 3px;
}

.p-searchSide .entry01 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .entry01 {
    justify-content: space-between;
  }
}

.p-searchSide .entry01 .item {
  width: 50%;
  position: relative;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .entry01 .item {
    width: 50%;
  }
}

.p-searchSide .entry01 .item.is-active input[type=radio]+label::before {
  border-bottom: 10px solid #b79786;
  background-color: #fff;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .entry01 .item.is-active input[type=radio]+label::before {
    border-bottom: 9px solid #b79786;
  }
}

.p-searchSide .entry01 .item a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-searchSide .entry01 .item input[type=radio]+label:before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 100%;
  height: 66px;
  border-bottom: 10px solid #f3f3f3;
  background-position: center;
  background-size: 60px;
  cursor: pointer;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .entry01 .item input[type=radio]+label:before {
    width: 100%;
    border-bottom: 9px solid #f3f3f3;
  }
}

.p-searchSide .entry01 .item input[type=radio][value="購入"]+label:before {
  background-image: url(../../front_assets/img/index/type01-01.webp);
}

.p-searchSide .entry01 .item input[type=radio][value="賃貸"]+label:before {
  background-image: url(../../front_assets/img/index/type01-02.webp);
}

.p-searchSide .entry01 .item input[type=radio] {
  display: none;
}

.p-searchSide .box {
  position: relative;
  top: 0;
  background: #fff;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box {
    padding: 20px;
    box-shadow: none;
  }
}

.p-searchSide .box .item {
  width: 100%;
  margin-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item {
    width: 100%;
    margin-left: 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
  }
}

.p-searchSide .box .item:nth-of-type(1) {
  margin-left: 0;
}

.p-searchSide .box .item .label {
  font-family: var(--gothic);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0.2em;
  margin-bottom: 19px;
  font-weight: bold;
  color: #000000;

  &::before {
    content: "■";
    display: inline-block;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item .label {
    width: 100%;
  }
}

.select_wrap {
  position: relative;

  &:after {
    content: '';
    position: absolute;
    top: 0;
    right: 56px;
    width: 1px;
    height: 100%;
    background: #707070;
  }
}

.p-searchSide .box .item select {
  border: 1px solid #000;
  border-radius: 2px;
  width: 100%;
  background-image: url(../../front_assets/img/common/icon_arrow_bottom_navy.png);
  background-position: right 19px center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  font-family: var(--gothic);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-block: 9px;
  padding-inline: 17px 30px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item select {
    border: 1px solid #959292;
    width: 100%;
    box-shadow: none;
    text-align: left;
    color: #000;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.p-searchSide .box .item .flex {
  display: flex;
  flex-direction: column;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item .flex {
    width: 100%;
  }
}

.p-searchSide .box .item .flex select {
  width: 100%;
}

.p-searchSide .box .item .checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  padding-left: 5px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item .checkbox {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item .checkbox .checkbox-item {
    width: 50%;
    padding: 4px 0;
  }
}

.p-searchSide .box .item .flex .text {
  font-family: var(--gothic);
  font-size: 25px;
  line-height: 1.12;
  font-weight: bold;
  color: #000;
  padding-left: 19px;
  margin-block: 3px;
}

.p-searchSide .box .item .checkbox label {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 25px;
  display: inline-block;
  font-family: var(--gothic);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: bold;
  color: #000;
}

.p-searchSide .box .item .checkbox label:before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  left: 0px;
  top: 4px;
  border: 2px solid #0D1945;
  border-radius: 100%;
  z-index: 3;
}

.p-searchSide .box .item .checkbox label:after {
  content: '';
  position: absolute;
  top: 7px;
  left: 3px;
  display: block;
  background: #0D1945;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.p-searchSide .box .item .checkbox label input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 7px;
  left: -38px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.p-searchSide .box .item .checkbox label input[type="checkbox"]:checked {
  box-shadow: none;
}

.p-searchSide .box .item .checkbox label span {
  display: block;
  width: 100%;
  margin: 0;
  padding-left: 14px;
}

.p-searchSide .box .item .checkbox .checkbox_text {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.63636;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .item .checkbox .checkbox_text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.p-searchSide .box .buttons {
  width: 100%;
  display: block;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .buttons {
    border-top: none;
    padding-top: 0;
  }
}

.p-searchSide .box .more {
  border: 1px solid #b79786;
  color: #b79786;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  border-radius: 2px;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  cursor: pointer;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .more {
    box-shadow: none;
  }
}

.p-searchSide .box .submit {
  margin-top: 12px;
}

.p-searchSide .box .submit input {
  width: 100%;
  text-align: center;
  border-radius: 0;
  font-family: var(--gothic);
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #fff;
  background: #2E3252;
  cursor: pointer;
  transition: all .3s ease;
  padding: 16px 0;

  @media screen and (min-width: 768px) {
    &:hover {
      opacity: 0.7;
    }
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-searchSide .box .submit input {
    box-shadow: none;
  }
}

.p-searchContent {
  flex: 1;
  width: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent {
    width: 100%;
  }
}

.p-searchContent .item {
  background: #fff;
  margin-bottom: 100px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item {
    box-shadow: none;
    padding: 0;
    margin-bottom: 49px;

    &:last-of-type {
      margin-bottom: 0;
    }
  }
}

.p-searchContent .item .upper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper {
    padding: 0;
  }
}

.p-searchContent .item .upper .img-link {
  width: 43.3%;
  @media screen and (max-width: 1035px) {
    display: block;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.p-searchContent .item .upper .img {
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .img {
    width: 100%;
    aspect-ratio: 375 / 252;
  }
}

.p-searchContent .item .upper .content {
  flex: 1;
  width: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content {
    width: 100%;
    margin-left: 0;
    width: 100%;
    margin-top: 24px;
  }
}

.p-searchContent__cityBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-searchContent__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 10.7px solid var(--back_2E3252);
  min-height: clamp(33px, 4.8695652174vw, 50.4px);
  font-size: clamp(12px, 2.5120772947vw, 26px);
  letter-spacing: 0.2em;
  font-weight: bold;
  color: var(--colo_2E3252);
  padding-left: clamp(14px, 2.2541062802vw, 23.33px);
}

.p-searchContent__favorite {
  border: none;
  background: transparent;
  max-width: clamp(22.75px, 3.3594202899vw, 34.77px);
  width: 100%;
}

.p-searchContent__headingBox {
  font-size: clamp(22px, 2.8985507246vw, 30px);
  line-height: 1;
  font-weight: bold;
  color: var(--colo_2E3252);
  margin-top: 24px;
}
@media screen and (max-width: 1035px) {
  .p-searchContent__headingBox {
    margin-top: 27px;
  }
}

.p-searchContent__headingJa {
  font-size: clamp(22px, 2.8985507246vw, 30px);
  margin-top: 8px;
}

.p-searchContent__headingEn {
  font-size: 0.46em;
  line-height: 1.428;
  letter-spacing: 0.05em;
  padding-left: 8px;
}
@media print, screen and (max-width: 1035px) {
  .p-searchContent__headingEn {
    padding-left: 0;
  }
}

.p-searchContent .item .upper .content .label {
  width: 120px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content .label {
    width: 62px;
  }
}

.p-searchContent .item .upper .content .name {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  position: relative;
  padding: 24px 0;
  margin-top: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content .name {
    padding: 12px 0;
  }
}

.p-searchContent .item .upper .content .name:before,
.p-searchContent .item .upper .content .name:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  display: block;
  left: 0;
  background-image: url(../../front_assets/img/common/bar03.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 3px 10px 0px rgba(62, 62, 62, 0.25);
}

@media print,
screen and (max-width: 1035px) {

  .p-searchContent .item .upper .content .name:before,
  .p-searchContent .item .upper .content .name:after {
    height: 2px;
  }
}

.p-searchContent .item .upper .content .name:before {
  top: 0;
  left: 0;
}

.p-searchContent .item .upper .content .name:after {
  bottom: 0;
  left: 0;
}

.p-searchContent .item .upper .content .info {
  margin-top: 30px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content .info {
    margin-top: 26px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-searchContent .item .upper .content .info li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 9px;
}
@media screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content .info li {
    margin-bottom: 24px;
  }
}

.p-searchContent .item .upper .content .info li .icon {
  width: 13px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content .info li .icon {
    width: 5%;
  }
}

.p-searchContent .item .upper .content .info li .icon img {
  vertical-align: middle;
}

.p-searchContent__subHeading {
  font-family: var(--gothic);
  font-size: clamp(12px, calc(18 / 1035 * 100vw), 18px);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #2E3252;
}

.p-searchContent .item .upper .content .info li .text {
  font-family: var(--gothic);
  font-size: clamp(10px, calc(15 / 1035 * 100vw), 15px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #2E3252;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .content .info li .text {
    width: 93%;
  }
}

.p-searchContent .item .detail {
  margin-top: 12px;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .detail {
    margin-top: 0;
  }
}

.p-searchMain__list {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 21px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}
@media screen and (max-width: 1279px) {
  .p-searchMain__list {
    grid-template-columns: 1fr;
  }
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__list {
    margin-top: 46px;
    grid-template-columns: repeat(auto-fit, minmax(2, 1fr));
    gap: 10px;
    max-width: 676px;
    margin-inline: auto;
  }
}
@media print, screen and (max-width: 629px) {
  .p-searchMain__list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.p-searchMain__list--gapLarge {
  gap: 47px 53px;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__list--gapLarge {
    gap: 12px;
  }
}
.p-searchMain__item,
.p-searchMain__item--wide {
  border: 1px solid #d5d5d5;
  max-width: 527.5px;
  width: 100%;
  margin-inline: auto;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__item {
    max-width: 400px;
  }
}
.p-searchMain__item--wide {
  max-width: 100%;
}
.p-searchMain__link {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__link {
    min-height: 112px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-searchMain__link:hover {
    opacity: 0.7;
  }
}
.p-searchMain__imgArea {
  width: 40.2%;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__imgArea {
    width: 40.3174603175%;
  }
}
.p-searchMain__imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #eaeaea;
  aspect-ratio: 170 / 117;
  max-height: 117px;
}
@media screen and (max-width: 1035px) {
  .p-searchMain__imgBox {
    aspect-ratio: 127/87;
    min-height: 101px;
    height: auto;
  }
}
.p-searchMain__img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__img {
    min-height: 87px;
  }
}
.p-searchMain__imgText {
  height: 53.48px;
  height: clamp(25px, calc(33.6 / 1035 * 100vw), 33.6px);
  font-size: clamp(12px, calc(14 / 1035 * 100vw), 14px);
  font-weight: 600;
  line-height: 2.3333333333;
  letter-spacing: 0.2em;
  color: #fff;
  background: #2e3252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          justify-content: center;
          align-items: center;
}
.p-searchMain__imgText::after {
  content: "▶";
  display: block;
  margin-right: -16px;
}
.p-searchMain__contents {
          flex: 1;
  max-width: 48.5004739336%;
  width: 100%;
  padding-inline: min(2.9661016949vw, 35px) 10px;
  padding-block: 10px;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__contents {
    max-width: 59.6825396825%;
    padding-inline: 32px 10px;
  }
}
.p-searchMain__textLarge {
  font-family: var(--gothic);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.025em;
  color: #2e3252;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__textLarge {
    font-size: 16px;
  }
}
.p-searchMain__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--gothic);
  font-size: clamp(14px, calc(17 / 1035 * 100vw), 17px);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #2e3252;
}
.p-searchMain__text {
  margin-top: 10px;
}
@media print, screen and (max-width: 1035px) {
  .p-searchMain__text {
    margin-top: 7.5px;
  }
}

.p-searchContent .item .detail .table {
  width: 100%;
  border-collapse: collapse;
}

.p-searchContent .item .detail .table tr {
  border-top: 1px solid #ddd;
}

.p-searchContent .item .detail .table tr:nth-of-type(1) {
  border-top: none;
}

.p-searchContent .item .detail .table th,
.p-searchContent .item .detail .table td {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  padding: 4px 8px;
  text-align: center;
  white-space: nowrap;
}

.p-searchContent .item .detail .table th {
  padding: 8px;
  font-weight: 500;
  background-color: #f6f6f6;
}

.p-searchContent .item .detail .table td {
  width: 200px;
  padding: 8px 8px;
}

.p-searchContent .item .detail .table td:nth-of-type(1) {
  width: 120px;
}

.p-searchContent .item .detail .table td .deposit,
.p-searchContent .item .detail .table td .gratuity {
  position: relative;
  padding-left: 20px;
}

.p-searchContent .item .detail .table td .deposit:after,
.p-searchContent .item .detail .table td .gratuity:after {
  content: "敷";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0px;
  background: #999;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
}

.p-searchContent .item .detail .table td .gratuity:after {
  content: "礼";
}

.p-searchContent .item .detail .table td .button .button-detail {
  color: #fff;
  width: 100%;
  display: block;
  padding: 4px 0;
  background: #002e44;
  margin-bottom: 8px;
}

.p-searchContent .item .detail .table td .button .button-contact {
  color: #fff;
  width: 100;
  display: block;
  padding: 4px 0;
  background: #9d996c;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .detail .detail-item {
    padding: 8px;
    border-top: 1px solid #f3f3f3;
  }

  .p-searchContent .item .detail .detail-item a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    color: #010101;
  }

  .p-searchContent .item .detail .detail-item a .img {
    width: 30%;
  }

  .p-searchContent .item .detail .detail-item a .content {
    margin-left: 4%;
    width: 66%;
  }

  .p-searchContent .item .detail .detail-item a .content .price {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
  }

  .p-searchContent .item .detail .detail-item a .content .info-detail {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 4px;
    color: #8e8e8e;
  }
}

.p-searchContent .link {
  font-weight: bold;
  text-align: center;
}

.p-searchContent .link a {
  text-decoration: underline;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #010101;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .link a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #9d996c;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 12px 0;
    border: 1px solid #9d996c;
    border-radius: 50px;
    background: #fff;
  }
}

.p-staff-cta {
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta {
    margin-top: 25px;
  }
}

.p-staff-cta .banner {
  max-width: 928px;
  margin-left: auto;
  margin-right: auto;
}

.p-staff-cta .banner a {
  display: block;
  width: 100%;
}

.p-staff-cta .cta {
  margin-top: 80px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  background-image: url(../../front_assets/img/staff/img02.webp);
  padding: 120px 0;
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta .cta {
    background-image: url(../../front_assets/img/staff/img02-sp.webp);
    padding: 60px 0;
    margin-top: 24px;
  }
}

.p-staff-cta .cta .title {
  width: 235px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta .cta .title {
    width: 50%;
  }
}

.p-staff-cta .cta .text {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-top: 12px;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta .cta .text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.p-staff-cta .cta .lead {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14286;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta .cta .lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 24px;
  }
}

.p-staff-cta .cta .button {
  margin-top: 40px;
  width: 380px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta .cta .button {
    width: 80%;
  }
}

.p-staff-cta .cta .button a {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  width: 100%;
  display: block;
  color: #dad494;
  border-radius: 50px;
  border: 1px solid #dad494;
  padding: 18px 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff-cta .cta .button a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    padding: 8px 0;
  }
}

.p-staffDetail {
  background: #fff;
}

.p-staffDetailContent {
  margin-bottom: 120px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent {
    margin-bottom: 40px;
  }
}

.p-staffDetailContent .box {
  margin-top: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .box {
    margin-top: 24px;
  }
}

.p-staffDetailContent .box .question {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.33333;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 8px;
  padding-left: 24px;
  background-image: url(../../front_assets/img/common/icon-q01.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 36px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .box .question {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    padding-left: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-size: 32px;
  }
}

.p-staffDetailContent .box .answer .title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  color: #9d996c;
  border-bottom: 2px solid #9d996c;
  margin-bottom: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 24px;
  background-image: url(../../front_assets/img/common/icon-a01.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 36px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .box .answer .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333;
    padding-left: 12px;
    margin-bottom: 12px;
    background-size: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.p-staffDetailContent .box .answer .text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .box .answer .text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.p-staffDetailContent .img {
  width: 100%;
  text-align: center;
  margin-top: 80px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .img {
    margin-top: 0px;
  }
}

.p-staffDetailContent .content-img {
  max-height: 400px;
  width: auto;
}

.p-staffDetailContent .pager {
  background: #000;
  padding: 24px 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .pager {
    padding: 12px 0;
  }
}

.p-staffDetailContent .pager .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.p-staffDetailContent .pager .inner .center {
  width: 132px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .pager .inner .center {
    width: 90px;
  }
}

.p-staffDetailContent .pager .inner .prev,
.p-staffDetailContent .pager .inner .next {
  width: 80px;
  background-size: cover;
  position: relative;
  text-align: center;
}

@media print,
screen and (max-width: 1035px) {

  .p-staffDetailContent .pager .inner .prev,
  .p-staffDetailContent .pager .inner .next {
    width: 53px;
  }
}

.p-staffDetailContent .pager .inner .prev:after,
.p-staffDetailContent .pager .inner .next:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-staffDetailContent .pager .inner .prev a,
.p-staffDetailContent .pager .inner .next a {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 24px 0;
}

@media print,
screen and (max-width: 1035px) {

  .p-staffDetailContent .pager .inner .prev a,
  .p-staffDetailContent .pager .inner .next a {
    padding: 12px 0;
  }
}

.p-staffDetailContent .pager .inner .prev img,
.p-staffDetailContent .pager .inner .next img {
  width: 37px;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {

  .p-staffDetailContent .pager .inner .prev img,
  .p-staffDetailContent .pager .inner .next img {
    width: 23px;
  }
}

.p-staffDetailContent .button {
  width: 512px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .button {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-staffDetailContent .button a {
  width: 100%;
  display: block;
  color: #fff;
  background: #908d5f;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  padding: 24px 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailContent .button a {
    border: 1px solid #908d5f;
    border-radius: 50px;
    background: #fff;
    color: #908d5f;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    padding: 18px 0;
  }
}

.p-staffDetailLead {
  background: #fff;
  padding: 32px 40px 24px 200px;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  width: 90%;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead {
    padding: 20px 16px 20px 20px;
    width: 96%;
  }
}

.p-staffDetailLead .lead {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  padding: 32px 0;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.33333;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead .lead {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333;
    padding: 12px 0;
  }
}

.p-staffDetailLead .info {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
  justify-content: space-between;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead .info {
    justify-content: space-between;
  }
}

.p-staffDetailLead .info .box,
.p-staffDetailLead .info .logo {
  /* width: 50%; */
}

.p-staffDetailLead .info .box {
  padding: 0 40px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead .info .box {
    padding: 0;
  }
}

.p-staffDetailLead .info .box .job {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  margin-bottom: 10px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead .info .box .job {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0px;
  }
}

.p-staffDetailLead .info .box .name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  margin-left: 8px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead .info .box .name {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.p-staffDetailLead .info .box img {
  width: 30px;
  margin-right: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staffDetailLead .info .logo {
    text-align: right;
  }
}

.p-staffDetailLead .info .logo img {
  width: 86px;
}

.p-staff {
  background: #f3f3f3;
}

.p-staff .p-staffContent .lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  margin-top: 40px;
  letter-spacing: 0.2em;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    margin-top: 24px;
  }
}

.p-staff .p-staffContent .list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  width: 100%;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .list {
    margin-top: 24px;
  }
}

.p-staff .p-staffContent .list li {
  width: 215px;
  margin-right: 58px;
  margin-bottom: 40px;
  padding-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .list li {
    width: 48%;
    margin-bottom: 24px;
    padding-bottom: 0;
    margin-right: 4%;
  }
}

.p-staff .p-staffContent .list li:nth-of-type(4n) {
  margin-right: 0;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .list li:nth-of-type(2n) {
    margin-right: 0;
  }
}

.p-staff .p-staffContent .list li a {
  display: block;
  width: 100%;
  color: #000;
}

.p-staff .p-staffContent .list li .img {
  margin-bottom: 24px;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .list li .img {
    box-shadow: none;
    margin-bottom: 12px;
  }
}

.p-staff .p-staffContent .list li .img img {
  box-shadow: 0px 5px 10px rgba(62, 62, 62, 0.15);
  width: 215px;
  height: 302px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: 226px;
  }
}

.p-staff .p-staffContent .list li .info {
  border-left: 6px solid #dad494;
  padding-left: 14px;
}

.p-staff .p-staffContent .list li .job {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  margin-bottom: 4px;
}

.p-staff .p-staffContent .list li .name {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
}

@media print,
screen and (max-width: 1035px) {
  .p-staff .p-staffContent .list li .name {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.33333;
    width: 66%;
    margin-bottom: 0;
  }
}

.t-contents {
  max-width: 980px;
  width: 100%;
  z-index: 0;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (max-width: 1035px) {
  .t-contents {
    padding: 0 20px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* .slick-loading .slick-list {
  background: #fff url("~slick-carousel/slick/ajax-loader.gif") center center no-repeat;
} */

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #010101;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  background: #FFFFFF;
}

body * {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

body a {
  color: #259CE9;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

body a:hover {
  opacity: 0.7;
}

body a.is-error {
  color: #FF0000;
}

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

body .inner {
  max-width: 1036px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media print,
screen and (max-width: 1035px) {
  body .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

body .weight500 {
  font-weight: 500;
}

body .weight600 {
  font-weight: 600;
}

body .weight700 {
  font-weight: 700;
}

body .is-hidden {
  display: none !important;
}

@media print,
screen and (min-width: 1036px) {
  body .is-pc {
    display: block;
  }
}

@media print,
screen and (max-width: 1035px) {
  body .is-pc {
    display: none;
  }
}

@media print,
screen and (min-width: 1036px) {
  body .is-sp {
    display: none;
  }
}

@media print,
screen and (max-width: 1035px) {
  body .is-sp {
    display: block;
  }
}

body .u-ta-left {
  text-align: left;
}

body .u-bt-dashed {
  border-top: 1px dashed #D5D5D5;
}

body .u-bb-dashed {
  border-bottom: 1px dashed #D5D5D5;
}

body .js-accordionPanel {
  display: none;
}

body .js-submitBtn.is-disabled button {
  max-width: 228px;
  background: #F9F9F9;
  color: #1F1F1F;
  pointer-events: none;
}

body .js-accordion {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: block;
}

body .js-textarea.is-error {
  border: 1px solid red;
}





.main-detail {}

.main-detail .table {
  width: 100%;
  border-collapse: collapse;
}

.main-detail .table tr:nth-of-type(1) {
  border-top: none;

}

.main-detail .table tr {
  border-top: 1px solid #ddd;
}

.main-detail .table th {
  padding: 8px;
  font-weight: 500;
  background-color: #f6f6f6;
}

.main-detail .table th,
.main-detail .table td {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  padding: 4px 8px;
  text-align: center;
  white-space: nowrap;
}

.main-detail .table td:nth-of-type(1) {
  width: 120px;
}

.main-detail .table td {
  width: 200px;
  padding: 8px 8px;
}

.main-detail .table td .button .button-detail {
  color: #fff;
  width: 100%;
  display: block;
  padding: 4px 0;
  background: #002e44;
  margin-bottom: 8px;
}

.main-detail .table td .button .button-contact {
  color: #fff;
  width: 100;
  display: block;
  padding: 4px 0;
  background: #9d996c;
}

@media print,
screen and (max-width: 1035px) {
  .main-detail {}

  .main-detail .detail-item {
    padding: 8px;
    border-top: 1px solid #f3f3f3;
  }

  .main-detail .detail-item a {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    color: #010101;
  }

  .main-detail .detail-item a .img {
    width: 30%;
  }

  .main-detail .detail-item a .content {
    margin-left: 4%;
    width: 66%;
  }

  .main-detail .detail-item a .content .price {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
  }

  .main-detail .detail-item a .content .info-detail {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 4px;
    color: #8e8e8e;
  }

  .main-detail .p-detailSide {
    margin-bottom: 0;
  }

  .main-detail .detail-item {
    background: #fff;
  }
}


.contact-list-btn {
  margin: 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  /* margin: 0 0 40px !important; */
}

.mail {
  margin-bottom: 24px;
}

.contact-list-btn li {
  width: 180px;
  margin: 0;
  padding: 0 !important;
}

.contact-list-btn li:after {
  display: none !important;
}

.contact-list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  margin-bottom: 40px !important;
}

.contact-list-box {
  width: 298px;
  background: #f5f5f5;
  padding: 22px 10px 10px;
  margin: 0 18px;
}

.contact-list-title {
  font-size: 18px;
  letter-spacing: 0.2rem;
  font-weight: bold;
  color: #002e44;
  margin-bottom: 8px;
  padding: 0 35px;
}

.contact-list-link {
  border-bottom: 1px solid #ddd;
  padding: 12px 35px;
}

.contact-list-box .contact-list-link.bn {
  border-bottom: none;
}

.contact-list-link a {
  color: #155573;
}

.contact-list-link a img {
  width: 8px;
  vertical-align: middle;
}


.o-form .o-form_item.-textarea .o-form_headline,
.o-form .o-form_item.-textarea .o-form_data {
  width: 100%;
  margin: 0;
  padding: 0;
}

.o-form .o-form_item.-textarea .o-form_headline {
  padding-top: 30px;
  margin-left: 170px;
}

.o-form .o-form_item.-textarea .o-form_data {
  margin-top: 30px;
  margin-left: 170px;
  margin-bottom: 30px;
  width: 66%;
}

.o-form_item.-textarea {
  display: block;
  width: 100%;
}


.o-form .o-form_headline {
  padding: 30px 30px 30px 170px;
  width: 38.08333%;
}

.o-form .o-form_data {
  padding: 30px 160px 30px 40px;
}


.o-form_data.-block .o-form_data_radio {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.o-form_data.-block .o-form_data_radio:last-child {
  margin-bottom: 0;
}

.o-form_data_radio {
  display: inline-block;
  margin-right: 24px;
}

.o-form_data_radio input {
  width: 30px;
  position: relative;
  top: 3px;
}

.o-form .o-form_button {
  max-width: 504px;
}

.contact-detail .o-form_item-01 .o-form_data.-wide {
  max-width: 100%;
}


@media print,
screen and (max-width: 1035px) {

  .contact-list {
    margin-bottom: 12px !important;
  }

  .contact-list-btn {
    /* margin: 0 0 16px !important; */
  }

  .contact-list-btn li {
    width: 50%;
  }

  .o-form_item {
    border-bottom: 1px dotted #d5d5d5;
    margin-bottom: 8px;
  }

  .contact-list-box {
    width: 100%;
    margin: 0 0 14px;
  }

  .o-form .o-form_headline {
    width: 100%;
    padding: 8px;
  }

  .o-form {
    border-top: 1px dotted #d5d5d5;
    padding-top: 24px;
  }

  .o-form .o-form_data {
    padding: 8px 16px 0;
    padding: 0;
  }

  .o-form .o-form_item.-textarea .o-form_headline {
    margin-left: 0;
    padding: 8px 0;
  }

  .o-form .o-form_item.-textarea .o-form_data {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .o-form_data_radio,
  .o-form_data.-block .o-form_data_radio {
    margin-right: 0;
    margin-bottom: 8px;
  }

}

.contact-title {
  text-align: center;
}

.contact-title .title {
  width: 153px;
  margin-left: auto;
  margin-right: auto;
}

.contact-title .lead,
.contact-title .text {
  color: #002e44;
  text-align: center;
  letter-spacing: 0.2em;
}

.contact-title .lead {
  font-size: 36px;
  line-height: 1.33333;
  margin-top: 12px;
}

.content .contact-title p.text {
  font-size: 30px;
  line-height: 1.33333;
  margin-top: 16px;
}

.contact-detail .status {
  width: 275px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  margin-bottom: 58px;
}

.contact-detail .o-form_item-01 {
  border-bottom: 1px solid #e6e6e6;
  padding: 46px 160px;
}

.contact-detail .o-form_item-01 .o-form_headline {
  padding: 0;
  width: 100%;
  margin-bottom: 26px;
}

.contact-detail .o-form {
  border-top: 1px solid #e6e6e6;
}

.contact-detail .o-form_item-01 .o-form_data {
  padding: 0;
  width: 100%;
  max-width: 385px;
}

.contact-detail .o-form_item-01 .o-form_data select {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 100%;
  padding: 15px 30px 15px 8px;
  text-align: center;
  background-image: url(../../front_assets/img/common/icon-arrow02.webp);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 22px 34px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.45455;
  color: #000;
}

.contact-detail .o-form_item-01 .o-form_data select option {
  color: #000;
}


.contact-detail .o-form_item-01.-menseki .o-form_data .input-s,
.contact-detail .o-form_item-01.-price .o-form_data .input-s {
  width: 121px;
  margin-right: 8px;
}

.contact-detail .o-form_item-01.-price .o-form_data,
.contact-detail .o-form_item-01.-menseki .o-form_data {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-detail .o-form_item-01.-price .o-form_data .item01,
.contact-detail .o-form_item-01.-menseki .o-form_data .item01 {
  margin-right: 24px;
}


.contact-detail .o-form_item-01.-menseki .o-form_data select {
  width: 79px;
}

.confirm-lead {
  color: #002e44;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 36px;
  line-height: 1.33333;
  margin-top: 12px;
}

.confirm_btn {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  margin-top: 66px;
}

.confirm_btn .o-form_button {
  width: 243px;
  margin: 0 8px;
  padding: 0;
}

.confirm_btn .o-form_button.-back {}

.confirm_btn .o-form_button.-back a {
  background: #787878;
  width: 100%;
  display: block;
  color: #fff;
  padding: 16px 0;
}

@media print,
screen and (max-width: 1035px) {

  .confirm_btn .o-form_button.-back a {
    padding: 12px 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .contact-title .title {
    max-width: 71px;
  }

  .contact-title .lead {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }

  .content .contact-title p.text {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }

  .contact-detail .status {
    width: 238px;
    margin-top: 38px;
    margin-bottom: 28px;
  }

  .contact-detail .o-form_item-01 {
    padding: 8px 0 20px;
    margin-bottom: 8px;
  }

  .contact-detail .o-form .o-form_item.-textarea .o-form_data {
    margin-bottom: 0;

  }

  .contact-detail .o-form_item-01 .o-form_headline {
    margin-bottom: 12px;
  }

  .contact-detail .o-form_item-01.-menseki .o-form_data .input-s,
  .contact-detail .o-form_item-01.-price .o-form_data .input-s {
    width: 88px;
  }

  .contact-detail .o-form_item-01.-menseki .o-form_data .item01,
  .contact-detail .o-form_item-01.-menseki .o-form_data .item02,
  .contact-detail .o-form_item-01.-price .o-form_data .item01,
  .contact-detail .o-form_item-01.-price .o-form_data .item02 {
    width: 36%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
  }

  .contact-detail .o-form_item-01.-price .o-form_data .item01,
  .contact-detail .o-form_item-01.-price .o-form_data .item02 {
    width: 50%;
    margin: 0;
  }

  .contact-detail .o-form_item-01.-price .o-form_data span {
    font-size: 10px;
  }

  .contact-detail .o-form_item-01.-menseki .o-form_data select {
    width: 20%;
  }

  .confirm_btn {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

  .o-form .o-form_headline {
    padding: 8px 0;
  }
}

.o-form_data_radio input.another-input {
  width: 117px;
  padding: 4px;
  position: relative;
  top: -5px;
  margin-left: 20px;
}

@media print,
screen and (max-width: 1035px) {
  .o-form_data_radio input.another-input {
    width: 91px;
    padding: 4px;
    position: relative;
    top: -5px;
    margin-left: 12px;
  }
}


.contact-detail .o-form_item-01 .o-form_data.bg .o-form_data_radio {
  background: #fee4e4;
  padding: 4px 18px 4px 4px;
  margin-bottom: 14px;
  display: inline-block;
}

.text001 {
  margin-bottom: 16px;
}

.annotation001 {
  font-size: 14px;
  line-height: 1.28571429;
  color: #d11717;
}

.contact-detail .o-form_item-01 .o-form_headline.-middle {
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 8px;
}

.contact-detail .o-form_item-01 .o-form_data .box01 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-detail .o-form_item-01 .o-form_data .box-label,
.contact-detail .o-form_item-01 .o-form_data .box-label02 {
  font-size: 14px;
}

.contact-detail .o-form_item-01.-menseki01 .o-form_data,
.contact-detail .o-form_item-01.-syunko01 .o-form_data {
  max-width: 100%;

}

.contact-detail .o-form_item-01 .o-form_data .box-label {
  width: 130px;
}

.contact-detail .o-form_item-01 .o-form_data .box01 .item01,
.contact-detail .o-form_item-01 .o-form_data .box01 .item02 {
  width: 120px;
}

.contact-detail .o-form_item-01 .o-form_data .box01 .box-label02 {
  width: 30px;
  margin-left: 8px;
  margin-right: 8px;
}

.text002 {
  font-size: 14px;
  margin-bottom: 16px;
}


.contact-detail .o-form_item-01.-syunko01 .o-form_data .box-label {
  width: 40px;
}

.contact-detail .o-form_item-01.-syunko01 .o-form_data .box01 .item01,
.contact-detail .o-form_item-01.-syunko01 .o-form_data .box01 .item02 {
  width: 120px;
}

.contact-detail .o-form_item-01.-syunko01 .o-form_data .box01 .box-label02 {
  width: 30px;
  margin-left: 8px;
  margin-right: 8px;
}


@media print,
screen and (max-width: 1035px) {

  .text002,
  .annotation001 {
    font-size: 12px;
  }

  .contact-detail .o-form_item-01.-menseki01 .o-form_data .box-label {
    width: 100%;
    margin-bottom: 8px;
    font-size: 12px;
  }

  .contact-detail .o-form_item-01 .o-form_data .box01 .box-label02,
  .contact-detail .o-form_item-01.-syunko01 .o-form_data .box01 .box-label02 {
    width: 10%;
    margin-left: 4px;
    margin-right: 4px;
    font-size: 10px;
  }

  .contact-detail .o-form_item-01 .o-form_data .box01 .box-label03,
  .contact-detail .o-form_item-01 .o-form_data .box01 .box-label {
    font-size: 10px;
  }

  .contact-detail .o-form_item-01.-menseki01 .o-form_data .box01 .item01,
  .contact-detail .o-form_item-01.-menseki01 .o-form_data .box01 .item02 {
    width: 30%;
  }

  .contact-detail .o-form_item-01.-syunko01 .o-form_data .box01 .item01,
  .contact-detail .o-form_item-01.-syunko01 .o-form_data .box01 .item02 {
    width: 30%;
  }

  .contact-detail .o-form_item-01.-syunko01 .o-form_data .box-label {
    width: 30px;
  }
}

.text003 {
  font-size: 14px;
}


.btn-accordion {
  background: #fff;
  text-align: center;
  padding: 4px;
  margin: 40px 0;
}

.btn-accordion .box01 {
  border: 1px solid #b79786;
  cursor: pointer;
  color: #b79786;
  font-size: 12px;
  text-align: center;
  padding: 24px 0;
}

@media print,
screen and (max-width: 1035px) {

  .js-slide-navigation-sp .slick-list {
    /* padding: 0 100px 0 0 !important; */
  }
}

.p-about .pc-area .img29 .text.about-text01 {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #717071;
  margin-top: 19px;
  margin-bottom: 14px;
  letter-spacing: 0.2em;
}


@media print,
screen and (max-width: 1035px) {

  .text.about-text01 {
    color: #717071;
    margin-bottom: 24px;
  }
}


.p-company .section16 .box .title img {
  width: 83px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section17 .box .title img {
  width: 265px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section18 .box .title img {
  width: 135px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section19 .box .title img {
  width: 39px;
  margin-left: auto;
  margin-right: auto;
}

.p-company .section19 {
  margin-bottom: 40px;
}

@media print,
screen and (max-width: 1035px) {

  .m-entry .content img {
    width: 100%;
  }
}


.js-slide-navigation img {
  height: 107px;
  object-fit: cover;
}

@media print,
screen and (max-width: 1035px) {
}


@media print,
screen and (max-width: 1035px) {
  .p-topLatest .content .box .main .list li {
    vertical-align: top;
  }

  .p-topLatest .content .box .main .list li .text {
    white-space: initial;
  }

  .p-topLatest .content .box .main .list li .name {
    white-space: initial;
  }

  .p-searchContent .item .upper {
    display: block;
  }
}

.error-message {
  color: #F00;
  font-size: 12px;
  padding: 3px 0 5px;
  display: block;
  width: 100%;
}

#bouncer-error_accept_1 {
  text-align: center;
}

#bouncer-error_gaiyou,
#bouncer-error_renraku,
#bouncer-error_houhou {
  position: absolute;
  bottom: 6px;
  left: 50px;
}

#bouncer-error_houhou {
  bottom: -30px;
  left: 0;
}

@media print,
screen and (max-width: 1035px) {

  #bouncer-error_gaiyou,
  #bouncer-error_renraku,
  #bouncer-error_houhou {
    bottom: -19px;
    left: 7px;
    height: 20px;
  }

  #bouncer-error_houhou {
    bottom: -20px;
    left: 0;
  }

  .contact-detail .o-form_item-01 {
    padding: 8px 0 30px;
  }
}


.p-brand .list {
  margin-bottom: 120px;
}

.p-brand .bg {
  background: #fff;
  box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  padding: 29px 31px;
  margin-top: 34px;
}

.p-brand .bg:nth-of-type(1) {
  margin-top: 71px;
}

.p-brand .upper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.p-brand .upper .img {
  width: 515px;
}

.p-brand .upper .info {
  width: 390px;
  text-align: center;
}

.p-brand .upper .info h2 {
  font-weight: normal;
  font-size: 36px;
  letter-spacing: 0.2em;
  color: #052d43;
}

.p-brand .bg .button {
  width: 100%;
  margin: 15px 0 0;
}

.p-brand .bg .button a {
  width: 100%;
  display: block;
  color: #052d43;
  text-align: center;
  padding: 7px 0;
  border: 1px solid #000000;
  border-radius: 100px;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.p-brand .bg .under {
  margin-top: 22px;
  background: #f4f4f4;
  padding: 30px 38px;
}

.p-brand .bg .under .box {
  margin-top: 26px;
}

.p-brand .bg .under .box:nth-of-type(1) {
  margin-top: 0;
}

.p-brand .bg .under h3 {
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #000000;
  font-weight: normal;
}

.p-brand .bg .under p {
  margin-top: 9px;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: normal;
  color: #000000;
}


@media print,
screen and (max-width: 1035px) {

  .p-brand .list {
    margin-bottom: 60px;
  }

  .p-brand .bg:nth-of-type(1) {
    margin-top: 40px;
  }

  .p-brand .bg {
    margin-top: 12px;
    padding: 0 0 12px;
    box-shadow: 0px 5px 35px 0px rgba(62, 62, 62, 0.15);
  }

  .p-brand .upper .img {
    order: 2;
  }

  .p-brand .upper .info {
    order: 1;
  }

  .p-brand .bg .under {
    width: auto;
    margin: 12px 9px 0;
    padding: 17px;
  }

  .p-brand .bg .under .box {
    margin-top: 14px;
  }

  .p-brand .upper .info h2 {
    padding: 10px 4px;
    font-size: 20px;
    color: #1b1b1b;
    font-weight: bold;
  }

  .p-brand .bg .under h3 {
    font-size: 15px;
    font-weight: bold;
  }

  .p-brand .bg .under p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.25;
  }

  .p-brand .bg .button {
    margin: 17px 0 0;
  }

  .p-brand .bg .button a {
    color: #052d43;
    padding: 7px 0;
    border: 1px solid #000000;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}

.p-searchContent .item .upper .img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media print,
screen and (max-width: 1035px) {
  .p-searchContent .item .upper .img img {
    height: 100%;
  }
}


@media print,
screen and (max-width: 1035px) {
  .mySwiper2 {}

  .swiper-outer {
    position: relative;
  }

  .mySwiper2 .swiper-slide img {
    height: 265px;
    object-fit: contain;
  }

  .mySwiper .thumbnail {
    margin-top: 12px;
  }

  .mySwiper .thumbnail .swiper-slide img {
    height: 62px;
    object-fit: contain;
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: 50%;
    z-index: 100;
    margin-top: -11px;
    cursor: pointer;
    width: 22px;
    display: block;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -10px;
    background-image: url(../img/common/icon-arrow-left.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: 22px;
    background-size: 22px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: -10px;
    background-image: url(../img/common/icon-arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: 22px;
    background-size: 22px;
  }

  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after,
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    display: none;
  }
}

@media print,
screen and (max-width: 1035px) {
  .p-sale .p-saleContent .list li .item-box {
    width: 66%;
  }

  .p-sale .p-saleContent .list li .name,
  .p-sale .p-saleContent .list li .detail {
    width: 100%;
  }
}

.p-brand .bg .button a {
  font-size: 21px;
}

.p-pickup .p-pickupContent .list li .img img {
  box-shadow: 0px 5px 10px rgb(62 62 62 / 15%);
  width: 226px;
  height: 170px;
  object-fit: cover;

}



@media print,
screen and (max-width: 1035px) {

  .p-brand .bg .button a {
    font-size: 14px;
  }

  .p-pickup .p-pickupContent .list li .detail {
    display: block;
  }

  .p-pickup .p-pickupContent .list li .item-box {
    width: 66%;
  }

  .p-pickup .p-pickupContent .list li .img {
    order: 2;
    box-shadow: none;
    width: 30%;
    margin-left: 4%;
    margin-bottom: 0;

  }

  .p-pickup .p-pickupContent .list li .name,
  .p-pickup .p-pickupContent .list li .detail {
    width: 100%;
  }

  .p-pickup .p-pickupContent .list li .img img {
    box-shadow: none;
    width: 100%;
    height: 75px;
    object-fit: cover;
  }
}