@charset "UTF-8";
/*clear fix*/
/*
$mq-breakpoints: (
    xs3: 320px,
    xs2: 375px,
    xs: 414px,
    sm: 576px,
    md: 768px,
    lg: 992px,
    xl: 1200px,
    xl2: 1280px,
    xl3: 1366px,
);
*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*================
 pager
 ================*/
.pager {
  margin: 2rem auto 5rem;
}
.pager .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager a,
.pager span {
  margin: 0.2rem;
  width: 3rem;
  height: 4rem;
  background: #fff;
  border: 0.1rem solid #2D3A50;
  display: block;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.8rem;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pager a.prev,
.pager span.prev {
  margin: 0.2rem 2.2rem 0.2rem 0.2rem;
  width: 3rem;
  height: 3rem;
  background: #2D3A50;
  position: relative;
  color: #131313;
  border: 0.1rem solid #fff;
}
.pager a.prev:after,
.pager span.prev:after {
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 0.1rem solid #fff;
  border-left: 0.1rem solid #fff;
  position: absolute;
  content: "";
  top: 0;
  right: -0.2rem;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pager a.next,
.pager span.next {
  margin: 0.2rem 0.2rem 0.2rem 2.2rem;
  width: 3rem;
  height: 3rem;
  background: #2D3A50;
  position: relative;
  color: #131313;
  border: 0.1rem solid #fff;
}
.pager a.next:after,
.pager span.next:after {
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: -0.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pager a.dots,
.pager span.dots {
  border: none;
  position: relative;
}
.pager a:hover {
  background: #2D3A50;
  color: #131313;
}
.pager .current {
  background: #2D3A50;
  border: 0.1rem solid #2D3A50;
  color: #131313;
}
.pager .dots {
  background: none;
}

/*================
 slider
 ================*/
.swiper-container {
  overflow: hidden;
}

/*================
 nav
 ================*/
.c-burgerBtn {
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .c-burgerBtn {
    display: none;
  }
}
.c-burgerBtn div {
  width: 50%;
  height: 35%;
  position: relative;
}
.c-burgerBtn span {
  background: #000;
  display: block;
  position: absolute;
  width: 100%;
  height: 0.1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-burgerBtn span:nth-child(1) {
  top: 0%;
}
.c-burgerBtn span:nth-child(2) {
  top: 50%;
}
.c-burgerBtn span:nth-child(3) {
  top: 100%;
}

.c-burgerBtn.open span:nth-child(1) {
  -webkit-transform: translate(0, 0.9rem) rotate(-45deg);
          transform: translate(0, 0.9rem) rotate(-45deg);
}
.c-burgerBtn.open span:nth-child(2) {
  opacity: 0;
}
.c-burgerBtn.open span:nth-child(3) {
  -webkit-transform: translate(0, -0.9rem) rotate(45deg);
          transform: translate(0, -0.9rem) rotate(45deg);
}

.c-burgerMenu {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 2;
  top: 0;
  left: -100%;
  background: #fff;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.c-burgerMenu.open {
  left: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.c-burgerMenu-inner {
  padding: 5rem 2.5rem 2.5rem;
  overflow: scroll;
  height: 100%;
}
.c-burgerMenu-inner ul li a {
  text-align: center;
  display: block;
  padding: 1rem 0;
  color: #000;
}

/*================
 breadClumb
 ================*/
.c-breadcrumb {
  margin: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.c-breadcrumb li {
  color: #0039ab;
  font-size: 1.2rem;
  font-weight: 400;
}
.c-breadcrumb li a {
  color: #0039ab;
}
.c-breadcrumb li:last-child a {
  color: #131313;
}

/*================
 botton
 ================*/
.c-moreBtn {
  color: #131313;
  background-color: #131313;
  width: 25rem;
  height: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  margin: 3rem auto 0;
  padding-right: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-moreBtn {
    font-size: 2.4rem;
    width: 30rem;
    height: 8rem;
    margin: 5rem auto 0;
  }
}
.c-moreBtn::before, .c-moreBtn::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 1.5rem;
  height: 0.3rem;
  background-color: #131313;
}
.c-moreBtn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-moreBtn.open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.c-moreBtn-content {
  display: none;
}

.c-moreBtn span:last-of-type {
  display: none;
}

.c-moreBtn.open {
  padding: 0;
}
.c-moreBtn.open span:first-of-type {
  display: none;
}
.c-moreBtn.open span:last-of-type {
  display: block;
}

/*================
 pageTop
 ================*/
.pageTop {
  position: fixed;
  z-index: 2;
  right: 3rem;
  bottom: 3rem;
  font-family: "Garamond", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  background-color: #fff;
  height: 4rem;
  width: 4rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: -1px 1px 9px -4px #777777;
          box-shadow: -1px 1px 9px -4px #777777;
  cursor: pointer;
}
.pageTop::before {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 2.2rem;
  left: 50%;
  content: "";
  border: solid 2px #131313;
  border-left: none;
  border-bottom: none;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .pageTop {
    height: 6rem;
    width: 6rem;
  }
  .pageTop::before {
    top: 3.2rem;
  }
}

/*================
 form
 ================*/
.c-form {
  font-size: 1.6rem;
}
.c-form input,
.c-form button,
.c-form textarea,
.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form input,
.c-form button,
.c-form textarea,
.c-form select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .c-form {
    font-size: 1.8rem;
  }
}
.c-form input,
.c-form textarea {
  border: solid #000 1px;
  padding: 0.6rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
.c-form em {
  color: #ff0000;
}
.c-form input[type=radio],
.c-form input[type=checkbox] {
  position: absolute;
  white-space: nowrap;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -0.1rem;
}

.c-radio label {
  margin-right: 1rem;
}
.c-radio span {
  cursor: pointer;
  padding-left: 2.5rem;
  position: relative;
}
.c-radio span::before, .c-radio span::after {
  content: "";
  display: block;
  position: absolute;
}
.c-radio span::before {
  background-color: #fff;
  border-radius: 0%;
  border: 0.1rem solid #ddd;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.c-radio span::after {
  border-bottom: 0.2rem solid #000;
  border-left: 0.2rem solid #000;
  opacity: 0;
  height: 0.5rem;
  width: 1rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0.9rem;
  left: 0.5rem;
}
.c-radio input:checked + span::after {
  opacity: 1;
}

.c-check label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.c-check input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.c-check input:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
.c-check input:focus + .c-check__dummy {
  border: dashed 0.2rem #333333;
}
.c-check input:checked + .c-check__dummy {
  background: #333333;
}
.c-check input:checked + .c-check__dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 0.4rem;
  border-radius: 0.2rem;
  -webkit-transform: translate(-6px, 5px) rotateZ(-135deg);
          transform: translate(-6px, 5px) rotateZ(-135deg);
  -webkit-transform-origin: 0.2rem 0.2rem;
          transform-origin: 0.2rem 0.2rem;
  background: #FFFFFF;
}
.c-check input:checked + .c-check__dummy::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 0.4rem;
  border-radius: 0.2rem;
  -webkit-transform: translate(-0.6rem, 0.5rem) rotateZ(-45deg);
          transform: translate(-0.6rem, 0.5rem) rotateZ(-45deg);
  -webkit-transform-origin: 0.2rem 0.2rem;
          transform-origin: 0.2rem 0.2rem;
  background: #FFFFFF;
}
.c-check .c-check__dummy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border: solid 0.2rem transparent;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
}
.c-check .c-check__txt {
  margin-left: 1.2rem;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

/*================
 common
 ================*/
.c-arrow01 {
  position: relative;
}
.c-arrow01::before, .c-arrow01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-arrow01::before {
  right: -2rem;
  width: 6px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-arrow01::after {
  right: -1.9rem;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.c-section {
  margin-top: 6rem;
  padding: 0 2rem;
}
@media screen and (min-width: 1000px) {
  .c-section {
    margin-top: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .c-widSet {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
  }
}

.c-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  margin-bottom: 3rem;
}
.c-title .en {
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title .en {
    font-size: 3.6rem;
  }
}
.c-title .jp {
  font-size: 1.4rem;
}

.is-showPc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .is-showPc {
    display: block !important;
  }
}

.is-showSp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .is-showSp {
    display: none !important;
  }
}

/* リキャプチャ */
.g-recaptcha > div {
  margin: 20px auto;
}

/*================
 utility
 ================*/
.u-inline {
  display: inline-block;
}

.u-md-hidden {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}

.u-md-visible {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-md-visible {
    display: block;
  }
}

/* ==============
// accordion
================= */
.c-accordion {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.c-accordion__title {
  display: block;
  position: relative;
  margin: 0;
  padding: 1.5rem 3rem 1.5rem 5rem;
  font-weight: normal;
  cursor: pointer;
}

.c-accordion__title::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 1rem;
  height: 1rem;
  border: solid 2px #131313;
  border-top: none;
  border-left: none;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
.c-accordion__title.open:before {
  -webkit-transform: translate(0, -50%) rotate(225deg);
          transform: translate(0, -50%) rotate(225deg);
}

.c-accordion__content {
  display: none;
  padding: 0rem 3rem 1.5rem 5rem;
}

/*================
 form
 ================*/
.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.c-modal-bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.c-modal-content {
  width: 100%;
  background: transparent;
  left: 50%;
  padding: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 576px) {
  .c-modal-content {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .c-modal-content {
    width: 60%;
  }
}

.c-modalAeia {
  background: #fff;
  border-radius: 2rem;
  max-height: calc(100% - 10rem);
  overflow: auto;
}
.c-modalAeia .form-control {
  padding: 0.5rem;
  border: none;
}
.c-modalAeia .form-select {
  padding: 0.5rem 0;
  border: none;
}

.c-modalAeia-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 4.4rem 1rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.c-modalAeia-title {
  font-size: 25px;
  font-weight: 600;
}

.c-modal-close {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
}

.js-modal-open.is-hidden {
  display: none;
}

/*================
 popup
 ================*/
/* ポップアップ */
.l-main .c-popBack {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-main .c-setPopup.is-show {
  position: fixed;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  max-height: initial !important;
  z-index: 10;
}
.l-main .c-setPopup.is-show img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 50%;
  max-width: 90%;
  padding: 0.5rem;
  background-color: #fff;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-main .c-setPopup.is-show img {
    height: 90%;
    padding: 1rem;
  }
}

.c-popBack.is-show {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9;
  cursor: pointer;
}

/*================
 anime
 jsと併用
 ================*/
.c-anime_fede_up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s 0s ease-out;
  transition: all 0.6s 0s ease-out;
}

.c-anime_fede_up.is-anime_active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

/*================
 base
 ================*/
html {
  font-size: 62.5%;
}

html.is-noScroll,
body.is-noScroll {
  overflow-y: hidden;
}

body {
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #131313;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li, ol li {
  color: #131313;
}

a:not(.not_a) {
  text-decoration: none;
  color: #0039ab;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
a:not(.not_a):hover {
  text-decoration: none;
}
a:not(.not_a) img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:not(.not_a) img:hover {
  opacity: 0.9;
}
a:not(.not_a):focus {
  outline: none;
}

img {
  height: auto;
  max-width: 100%;
  margin: auto;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5 {
  color: #131313;
  font-weight: 400;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  color: #131313;
  line-height: 2;
}

span {
  word-break: break-word;
}

th,
td {
  word-break: break-all;
}

input,
textarea {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #bababa !important;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bababa !important;
}
input:placeholder-shown,
textarea:placeholder-shown {
  color: #bababa !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bababa !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #bababa !important;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bababa !important;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bababa !important;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #bababa !important;
}

/*================
 l-header
 ================*/
.l-header {
  padding: 1rem 2rem;
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 10rem;
    border-bottom: solid 1px #D8D8D8;
  }
}

.l-header__title {
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__title img {
  max-width: 30rem;
  max-height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-header__title a {
  color: #000;
}

.l-header__manu {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-header__manu {
    display: block;
  }
}
.l-header__manu ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.l-header__manu li a {
  font-size: 1.4rem;
  padding: 0.5rem 2rem;
  color: #000;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__manu li a span {
  text-align: center;
}
.l-header__manu li a span:last-of-type {
  font-size: 1rem;
}
.l-header__manu li a:hover {
  background-color: #131313;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
}

/*================
 l-main
 ================*/
.l-main {
  margin: 5rem auto 0;
  overflow: hidden;
}
.l-main .txt {
  margin-top: 1rem;
}

/*================
 l-aside
 ================*/
/*================
 l-footer
 ================*/
.l-footer {
  margin-top: 5rem;
}

.copyright {
  text-align: center;
  background-color: #000;
  color: #fff;
  font-weight: 300;
  padding: 1rem;
}
.copyright a {
  color: #fff;
}

/*================
top
 ================*/
/* common */
body {
  line-height: 1.8;
}

.swiper-pagination {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 0.5rem;
}

.swiper-pagination-bullet-active {
  background-color: #131313;
}

/* recHero */
.recHero {
  text-align: center;
}

/* recText */
@media screen and (min-width: 768px) {
  .recText {
    text-align: center;
  }
}
.recText .c-title {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recText .c-title {
    font-size: 3.6rem;
  }
}
.recText .c-text {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .recText .c-text {
    font-size: 1.3rem;
  }
}
.recText iframe {
  width: 100%;
}

/* recSlider */
.recSlider {
  padding: 0;
}
.recSlider .swiper-slide {
  text-align: center;
}
.recSlider .swiper-slide img {
  width: 100%;
  max-width: 1220px;
}

/* recMovie */
.recMovie img {
  width: 100%;
}
.recMovie a {
  display: block;
  position: relative;
}
.recMovie .noimg {
  min-height: 30rem;
  display: inline-block;
  background-color: #ecf0f4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recMovie .noimg {
    min-height: 50rem;
  }
}

.top-play-btn {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.top-play-btn:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 5px;
  bottom: 0;
  content: "";
  width: 20px;
  height: 25px;
  margin: auto;
  background: url(../images/movie-arrow.svg) no-repeat center;
  background-size: 100%;
}

/* recPhoto */
@media screen and (min-width: 768px) {
  .recPhoto .c-widSet {
    padding: 0 2rem;
  }
}

.recPhoto__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .recPhoto__list {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 25% 25% 25% 25%;
  }
}
.recPhoto__list .img {
  width: calc(50% - 0.5rem);
  height: 43vw;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  margin-top: 1rem;
}
.recPhoto__list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recPhoto__list .img {
    margin: 0;
    padding: 1rem;
    width: 100%;
    border-radius: 1.5rem;
  }
}
.recPhoto__list .img:first-of-type {
  width: 100%;
  height: 86vw;
}
@media screen and (min-width: 768px) {
  .recPhoto__list .img:first-of-type {
    max-height: 59rem;
    height: 44vw;
    grid-row: 1/3;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 768px) {
  .recPhoto__list .img:nth-of-type(2) {
    height: 50%;
    grid-row: 1/3;
    grid-column: 3/4;
  }
}
@media screen and (min-width: 768px) {
  .recPhoto__list .img:nth-of-type(3) {
    height: 50%;
    grid-row: 1/3;
    grid-column: 4/4;
  }
}
@media screen and (min-width: 768px) {
  .recPhoto__list .img:nth-of-type(4) {
    height: 100%;
    grid-row: 2/3;
    grid-column: 3/4;
  }
}
@media screen and (min-width: 768px) {
  .recPhoto__list .img:nth-of-type(5) {
    height: 100%;
    grid-row: 2/3;
    grid-column: 4/4;
  }
}

/* recBnr */
@media screen and (min-width: 768px) {
  .recBnr img {
    width: 100%;
  }
}

/* recPlyer */
@media screen and (min-width: 768px) {
  .recPlyer .c-widSet {
    padding: 0 2rem;
  }
}

@media screen and (min-width: 768px) {
  .recPlyer__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.recPlyer__item {
  border: solid #E4E4E4 1px;
  background-color: #ecf0f4;
  padding: 1rem;
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .recPlyer__item {
    width: calc(50% - 2rem);
    margin: 1rem;
    padding: 4rem;
  }
}
.recPlyer__item a {
  display: block;
  width: 30%;
  height: 35vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .recPlyer__item a {
    height: 18rem;
    width: 26%;
  }
}
.recPlyer__item a .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recPlyer__item .info {
  width: 70%;
  padding-left: 1rem;
}
.recPlyer__item .info p {
  line-height: 1.2;
}
.recPlyer__item .post {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .recPlyer__item .post {
    font-size: 1.4rem;
  }
}
.recPlyer__item .name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .recPlyer__item .name {
    font-size: 2.4rem;
  }
}
.recPlyer__item .salesY,
.recPlyer__item .salesM {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recPlyer__item .salesY span,
.recPlyer__item .salesM span {
  display: inline-block;
}
.recPlyer__item .salesY .title,
.recPlyer__item .salesM .title {
  font-size: 1.2rem;
  background-color: #F5F5F5;
  padding: 0.5rem 1.5rem;
  margin-right: 1rem;
  border-radius: 2rem;
}
@media screen and (min-width: 768px) {
  .recPlyer__item .salesY .title,
  .recPlyer__item .salesM .title {
    padding: 0.5rem 3rem;
    font-size: 1.4rem;
  }
}
.recPlyer__item .salesY .body,
.recPlyer__item .salesM .body {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .recPlyer__item .salesY .body,
  .recPlyer__item .salesM .body {
    font-size: 3rem;
  }
}

/* recTreatment */
.recTreatment .txt {
  padding: 1rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .recTreatment .txt {
    text-align: center;
  }
}

.recTreatment__inner {
  background-color: #ECF0F4;
  padding: 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .recTreatment__inner {
    padding: 3rem 4rem;
  }
}

.recTreatment__list {
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.recTreatment__list li {
  line-height: 1;
  font-size: 1.4rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  margin: 0.5rem;
}
@media screen and (min-width: 768px) {
  .recTreatment__list li {
    width: auto;
  }
}

/* recNecess */
.recNecess .txt {
  padding: 1rem;
  font-weight: 300;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .recNecess .txt {
    text-align: center;
  }
}

.recNecess__inner {
  background-color: #ECF0F4;
  padding: 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .recNecess__inner {
    padding: 3rem 4rem;
  }
}

.recNecess__list {
  background-color: #ECF0F4;
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.recNecess__list li {
  color: #ECF0F4;
  text-align: center;
  width: calc(50% - 1rem);
  line-height: 1;
  font-size: 1.4rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  margin: 0.5rem;
}
@media screen and (min-width: 768px) {
  .recNecess__list li {
    width: calc(16.6666666667% - 1rem);
  }
}
.recNecess__list .is-active {
  color: #131313;
}

/* recFlow */
.recFlow__item {
  margin-top: 2rem;
  border: 1px #ECF0F4 solid;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .recFlow__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.recFlow__item .num {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .recFlow__item .num {
    font-size: 3.6rem;
    padding: 1rem;
    width: 8%;
  }
}
.recFlow__item .flowTitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
.recFlow__item .flowTxt {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 300;
}

/* recAccess */
.recAccess {
  text-align: center;
}

.recAccess__item .address {
  position: relative;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.recAccess__item .address svg {
  fill: #000;
}
.recAccess__item .address::before {
  /*content: "";
  width: 1.3rem;
  height: 1.6rem;
  background: url(../images/rec_map_ico.svg) no-repeat top center / contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);*/
}
.recAccess__item .map {
  margin-top: 2rem;
}
.recAccess__item iframe {
  width: 100%;
  max-height: 300px;
}
@media screen and (min-width: 768px) {
  .recAccess__item iframe {
    max-height: 500px;
  }
}

/* recQa */
.recQa__item {
  border-bottom: 1px #ECF0F4 solid;
}
.recQa__item:first-of-type {
  border-top: 1px #ECF0F4 solid;
}
.recQa__item .title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}
.recQa__item .title::after {
  top: 50%;
  left: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  content: "Q";
}
.recQa__item .body {
  font-size: 1.3rem;
  font-weight: 300;
  position: relative;
}
.recQa__item .body::after {
  font-size: 1.6rem;
  font-weight: 500;
  top: 1.3rem;
  left: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  content: "A";
}

/* recGroup */
.recGroup__item {
  border: 1px #ECF0F4 solid;
  padding: 2rem;
  margin-top: 2rem;
}
.recGroup__item a {
  color: #000;
}
@media screen and (min-width: 768px) {
  .recGroup__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.recGroup__item p {
  font-size: 1.3rem;
  font-weight: 300;
}
.recGroup__item .img {
  height: 46.5vw;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recGroup__item .img {
    width: 30rem;
    height: 16.8rem;
    margin: 0;
  }
}
.recGroup__item .info {
  padding-left: 2rem;
}
.recGroup__item .title {
  font-size: 1.8rem;
  font-weight: 500;
}
.recGroup__item .tel {
  margin-top: 2rem;
}

/* recTwiter */
@media screen and (min-width: 768px) {
  .recTwiter .c-widSet {
    width: 1000px;
  }
}
.recTwiter .item {
  height: 40rem;
  overflow: auto;
}
/* recJob */
.recJob__list {
  border: 1px #ECF0F4 solid;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.recJob__list dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: #DEDEDE 1px solid;
}
.recJob__list dl:last-of-type {
  border-bottom: none;
}
.recJob__list dt {
  width: 35%;
  padding: 2rem;
  background-color: #ECF0F4;
  border-right: #DEDEDE 1px solid;
}
.recJob__list dd {
  width: 65%;
  padding: 2rem;
  font-size: 1.3rem;
  font-weight: 300;
  background-color: #ecf0f4;
}
.recJob__list dl:last-of-type dt {
  border-bottom: none;
}

/* recContact */
.recContact__tel {
  text-align: center;
  border: 1px #ECF0F4 solid;
  padding: 2rem;
}
.recContact__tel p {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .recContact__tel p {
    font-size: 1.4rem;
  }
}
.recContact__tel .tel {
  line-height: 1.8;
  font-size: 3rem;
  font-weight: 500;
}
.recContact__tel .tel a{
    text-decoration: none;
}
.recContact__tel .time {
  font-size: 1.2rem;
}

.recContact__line {
  background-color: #06C755;
  text-align: center;
  padding: 2rem;
  margin-top: 1rem;
}
.recContact__line p {
  line-height: 1.2;
  color: #fff;
  font-size: 2.4rem;
}
.recContact__line .line {
  font-size: 1.8rem;
  margin-top: 1rem;
}
.recContact__line a {
  color: #fff;
}

.recContact__formUrl {
  background-color: #000;
  display: block;
}

.recContact__form {
  margin-top: 5rem;
  background-color: #ECF0F4;
  padding: 3rem 2rem;
}
.recContact__form .tiny {
  font-size: 1rem;
}
.recContact__form .red {
  color: #FF0000;
}

@media screen and (min-width: 768px) {
  .recContact__form__list {
    max-width: 600px;
    margin: 0 auto;
  }
}
.recContact__form__list input {
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
}
.recContact__form__list select {
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
}
.recContact__form__list textarea {
  border: none;
  border-radius: 0.5rem;
  max-height: 20rem;
}
.recContact__form__list .submit {
  color: #fff;
  background-color: #000;
  border-radius: 3rem;
  padding: 1rem;
  display: block;
  margin: 3rem auto 0;
  width: 275px;
}
.recContact__form__list .red {
  margin-left: 1rem;
}

.recContact__form__item {
  margin-top: 1rem;
}
.recContact__form__item p {
  font-size: 1.4rem;
}

/* ホスパラバナー */
.recContact__hospara {
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
.recContact__hospara img {
  height: auto;
}

/* ホスパラアイコン */
.shop_hospara {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 1;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .shop_hospara {
    left: initial;
    right: 11rem;
    width: 30rem;
  }
}

.animated {
  opacity: 1;
}
