@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block !important;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

/* l-bg */
.l-bg {
  background: #F7F6F2;
}

/* l-cards */
.l-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  margin-right: calc(50% - 50vw);
  overflow-x: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-cards {
    gap: 1rem;
  }
  .l-cards .card {
    margin: 0 auto;
  }
}

.l-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* l-page */
.l-page {
  padding: 150px 0 80px;
  padding: 9.375rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    padding: 7.5rem 0 5rem;
  }
}

/* l-section */
.l-section {
  padding: 80px 0;
  padding: 5rem 0;
}

/* anchor */
.anchor__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
  gap: 0.9375rem 0.625rem;
}

.anchor__item:nth-child(2n+1) {
  padding-right: 10px;
  padding-right: 0.625rem;
  border-right: 3px dotted #000;
  border-right: 0.1875rem dotted #000;
}
.anchor__item a {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background: url(../img/common/anchor-icon.png) no-repeat center right/16px;
  background: url(../img/common/anchor-icon.png) no-repeat center right/1rem;
}

/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 217px;
  width: 13.5625rem;
  max-width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  background: #F39800;
  border-radius: 62.5rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.125rem;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  right: 0.5rem;
  background: url(../img/common/btn-icon.png) no-repeat center/contain;
}

/* card */
.card {
  width: 327px;
  width: 20.4375rem;
  min-width: 327px;
  min-width: 20.4375rem;
}
@media screen and (max-width: 767px) {
  .card {
    width: 18.75rem;
    min-width: 18.75rem;
  }
}

.card__inner {
  display: block;
}

.card__img img {
  border-radius: 1rem;
}

.card__address {
  background: url(../img/common/map-icon.png) no-repeat center left/17px;
  background: url(../img/common/map-icon.png) no-repeat center left/1.0625rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .card__address {
    font-size: 1.125rem;
  }
}

.card__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.375rem;
    margin-top: 0.625rem;
  }
}

.card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .card__category {
    margin-top: 0.5rem;
  }
}
.card__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.25rem;
  background: #FCFDED;
}

.card__more {
  display: inline-block;
  color: #CF6C09;
  letter-spacing: -0.1em;
  border-bottom: 1px solid #CF6C09;
  border-bottom: 0.0625rem solid #CF6C09;
  background: url(../img/common/link-icon.png) no-repeat center right 8px/16px;
  background: url(../img/common/link-icon.png) no-repeat center right 0.5rem/1rem;
  padding: 8px 45px 8px 8px;
  padding: 0.5rem 2.8125rem 0.5rem 0.5rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .card__more {
    margin-top: 0.375rem;
  }
}

/* cv */
.cv {
  text-align: center;
  background: url(../img/common/cv-bg_pc.png) no-repeat center/cover;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .cv {
    background: url(../img/common/cv-bg_sp.png) no-repeat center/cover;
    padding: 2.5rem 0;
  }
}
.cv .title, .cv .subtitle {
  color: #fff;
}

.cv__btn {
  text-align: left;
  display: block;
  width: 352px;
  width: 22rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  background: #fff;
  border-radius: 2rem;
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  margin: 32px auto 0;
  margin: 2rem auto 0;
  padding: 14px 60px;
  padding: 0.875rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    text-align: center;
    width: 20.4375rem;
    padding: 0.875rem 1.25rem 0.875rem 0.625rem;
    margin-top: 1rem;
  }
}
.cv__btn::after {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
  right: 3.75rem;
  background: url(../img/common/contact-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn::after {
    right: 2.1875rem;
  }
}

/* drawer */
.drawer {
  position: absolute;
  z-index: 20;
  top: -8px;
  top: -0.5rem;
  left: 0;
  background: #fff;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding: 64px 16px 32px;
  padding: 4rem 1rem 2rem;
  width: 100%;
}
.drawer.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.drawer__item {
  border-bottom: 1px solid #999;
  border-bottom: 0.0625rem solid #999;
  position: relative;
}
.drawer__item a {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 7px 0;
  padding: 0.4375rem 0;
}
.drawer__item span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: #B19C78;
  letter-spacing: 0.06em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.drawer__btn {
  display: block;
  text-align: right;
  width: 170px;
  width: 10.625rem;
  max-width: 100%;
  border-radius: 0.25rem;
  color: #fff;
  font-weight: 500;
  background: #F39800;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  position: relative;
}
.drawer__btn::before {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/contact-icon01.png) no-repeat center/contain;
}

/* floating */
.floating {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 13px 0;
  padding: 0.8125rem 0;
}

.floating__btn {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border-radius: 0.5rem;
  background: #F39800;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
}
.floating__btn span {
  display: inline-block;
  padding-right: 34px;
  padding-right: 2.125rem;
  background: url(../img/common/mail-icon.png) no-repeat center right/24px;
  background: url(../img/common/mail-icon.png) no-repeat center right/1.5rem;
}

/* footer */
.footer {
  background: #F7F6F2;
  padding: 28px 0;
  padding: 1.75rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1rem 0;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
}

.footer__link a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  text-decoration: underline;
}

.footer__copyright {
  text-align: center;
  font-size: 19px;
  font-size: 1.1875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1.0625rem;
    margin-top: 0;
  }
}

/* form */
.form__item + .form__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.form__item-label label {
  display: inline-block;
  letter-spacing: 0.04em;
}
.form__item-label span {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  margin-left: 16px;
  margin-left: 1rem;
}
.form__item-label span.required {
  color: #fff;
  border: 1px solid #F39800;
  border: 0.0625rem solid #F39800;
  background: #F39800;
}
.form__item-label span.optional {
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  background: #fff;
}

.form__item-input {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
  width: 100%;
  background: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  border-radius: 1rem;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #999;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #999;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #999;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input textarea::placeholder {
  color: #999;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 53px;
  height: 3.3125rem;
}
.form__item-input textarea {
  height: 240px;
  height: 15rem;
  resize: none;
}

.form__privacy {
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    text-align: left;
    font-size: 0.875rem;
    margin-top: 1.75rem;
  }
}
.form__privacy a {
  color: #206BC8;
  text-decoration: underline;
}

.form__check {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__check {
    text-align: left;
  }
}
.form__check .wpcf7-list-item {
  margin-left: 0;
}
.form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.04em;
  padding-left: 32px;
  padding-left: 2rem;
  position: relative;
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__check input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #999;
  border: 0.0625rem solid #999;
  border-radius: 0.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  left: 0;
  top: 50%;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #333;
  border-bottom: 0.1875rem solid #333;
  border-left: 3px solid #333;
  border-left: 0.1875rem solid #333;
  height: 8px;
  height: 0.5rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 7px;
  top: 0.4375rem;
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__btn-wrapper {
  width: 210px;
  width: 13.125rem;
  max-width: 100%;
  background: #999;
  border-radius: 625rem;
  margin: 48px auto 0;
  margin: 3rem auto 0;
}
@media screen and (max-width: 767px) {
  .form__btn-wrapper {
    width: 12.5rem;
    margin-top: 1.875rem;
  }
}

.form__btn {
  width: 100%;
  height: 60px;
  height: 3.75rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  border-radius: 625rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  background: url(../img/common/btn-icon.png) no-repeat center right 6px/48px;
  background: url(../img/common/btn-icon.png) no-repeat center right 0.375rem/3rem;
  cursor: not-allowed;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.form__btn:disabled {
  opacity: 1;
}
.form__btn.active {
  background-color: #F39800;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form__btn {
    font-size: 1.125rem;
  }
}

.wpcf7-spinner {
  display: none;
}

/* gnav */
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
}

.gnav__item a {
  display: inline-block;
  padding: 10px 0;
  padding: 0.625rem 0;
  font-weight: 500;
}

.gnav__btn {
  display: block;
  text-align: right;
  width: 170px;
  width: 10.625rem;
  max-width: 100%;
  border-radius: 0.25rem;
  color: #fff;
  font-weight: 500;
  background: #F39800;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  position: relative;
}
.gnav__btn::before {
  position: absolute;
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/contact-icon01.png) no-repeat center/contain;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 14px;
  top: 0.875rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: #F39800;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 15px;
  top: 0.9375rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 16px;
  width: 1rem;
  height: 2px;
  height: 0.125rem;
  left: 8px;
  left: 0.5rem;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 9px;
  top: 0.5625rem;
}
.hamburger__border:nth-child(2) {
  top: 15px;
  top: 0.9375rem;
}
.hamburger__border:nth-child(3) {
  top: 21px;
  top: 1.3125rem;
}

/* header */
.header {
  width: 100%;
  height: 80px;
  height: 5rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    height: 3.75rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
  padding: 0 3.125rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__logo {
  width: 215px;
  width: 13.4375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 10rem;
  }
}
.header__logo a {
  display: block;
}

/* main */
.main {
  overflow: hidden;
}

/* mv */
.mv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .mv__img img {
    height: 15.625rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mv__content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -70px;
  bottom: -4.375rem;
  width: 1030px;
  width: 64.375rem;
  max-width: calc(100% - 2.5rem);
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
          box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
  border-radius: 1rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__content {
    padding: 1rem 1.25rem;
    bottom: -3.75rem;
  }
}

.mv__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.5rem;
  }
}

.mv__text {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1rem;
  }
}

/* news */
.news__item + .news__item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .news__item + .news__item {
    margin-top: 0;
  }
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #A7A7A7;
  border-top: 0.0625rem solid #A7A7A7;
  padding: 28px 30px;
  padding: 1.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
    padding: 1.125rem 0 1.625rem;
  }
}

.news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__item-header {
    gap: 1rem;
  }
}

.news__item-date {
  display: inline-block;
  font-weight: 700;
  min-width: 100px;
  min-width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    min-width: unset;
  }
}

.news__item-category {
  padding-left: 32px;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item-category {
    padding-left: 0;
  }
}
.news__item-category::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 56px;
  height: 3.5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #A7A7A7;
}
@media screen and (max-width: 767px) {
  .news__item-category::before {
    display: none;
  }
}
.news__item-category span {
  text-align: center;
  display: inline-block;
  min-width: 120px;
  min-width: 7.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  border-radius: 0.25rem;
  background: #fff;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news__item-category span {
    font-size: 0.8125rem;
    min-width: 4.375rem;
    padding: 0.1875rem;
  }
}
.news__item-category span.news {
  background: #FDF7ED;
}
.news__item-category span.info {
  background: #FCFDED;
}

.news__item-title {
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-left: 32px;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* pagination */
.pagination {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 1.5625rem;
  }
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.875rem;
  }
}
.pagination a, .pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  width: 4rem;
  min-width: 64px;
  min-width: 4rem;
  height: 64px;
  height: 4rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #9A9591;
  border-radius: 1rem;
  border: 1px solid #9A9591;
  border: 0.0625rem solid #9A9591;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
  }
}
.pagination .current {
  color: #fff;
  background: #F39800;
  border-color: #F39800;
}
.pagination .dots {
  border: none;
  width: unset;
  min-width: unset;
}
.pagination .prev, .pagination .next {
  border-color: #58504D;
}
.pagination .prev {
  background: url(../img/common/prev-icon.png) no-repeat center/20px;
  background: url(../img/common/prev-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    background-size: 1rem;
  }
}
.pagination .next {
  background: url(../img/common/next-icon.png) no-repeat center/20px;
  background: url(../img/common/next-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    background-size: 1rem;
  }
}

/* slider */
.slider {
  display: none;
  margin: 0 calc(50% - 50vw);
}
.slider.slick-initialized {
  display: block;
}
.slider.is-static {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-left: calc(50vw - 515px - 1.25rem);
  padding-right: 25px;
}
@media screen and (max-width: 1080px) {
  .slider.is-static {
    padding-left: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .slider.is-static {
    padding-left: 1rem;
    padding-right: 24px;
  }
}
.slider .slick-list {
  padding-left: calc(50vw - 515px - 1.25rem);
  padding-right: 25px;
}
@media screen and (max-width: 1080px) {
  .slider .slick-list {
    padding-left: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .slider .slick-list {
    padding-left: 1rem;
    padding-right: 24px;
  }
}
.slider .card {
  width: 327px;
  width: 20.4375rem;
  margin: 0 20px;
  margin: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .slider .card {
    width: 18.75rem;
    margin: 0 0.5rem;
  }
}

.slider__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .slider__controls {
    display: block;
  }
}
.slider__controls.is-hidden {
  display: none;
}

.slider__progress {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 700px;
  max-width: 43.75rem;
  height: 8px;
  height: 0.5rem;
  background: #D9D9D9;
  overflow: hidden;
}
.slider__progress span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #F39800;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  gap: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .slider__arrows {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

.slider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .slider__arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
  }
}
.slider__arrow.slick-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.slider__arrow--prev {
  background: url(../img/common/prev-icon.png) no-repeat center/20px;
  background: url(../img/common/prev-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .slider__arrow--prev {
    background-size: 1rem;
  }
}

.slider__arrow--next {
  background: url(../img/common/next-icon.png) no-repeat center/20px;
  background: url(../img/common/next-icon.png) no-repeat center/1.25rem;
}
@media screen and (max-width: 767px) {
  .slider__arrow--next {
    background-size: 1rem;
  }
}

/* subtitle */
.subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: #B19C78;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 2rem;
  }
}

/* title */
.title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.125rem;
  }
}

/* contact */
.contact__form {
  width: 800px;
  width: 50rem;
  max-width: 100%;
  margin: 0 auto;
}

/* group */
@media screen and (max-width: 767px) {
  .group {
    padding-top: 7.5rem;
  }
}

.group__unit {
  padding: 150px 0;
  padding: 9.375rem 0;
}
@media screen and (max-width: 767px) {
  .group__unit {
    padding: 3.125rem 0;
  }
}
.group__unit:nth-child(even) {
  background: #fff;
}

.group__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .group__subtitle {
    font-size: 1.5rem;
  }
}

.group__logo-wrapper {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
  border-radius: 1rem;
  padding: 22px;
  padding: 1.375rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .group__logo-wrapper {
    padding: 0.9375rem;
  }
}

.group__logo {
  width: 487px;
  width: 30.4375rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .group__logo {
    width: 9.625rem;
  }
}

.group__text {
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .group__text {
    margin-top: 1.25rem;
  }
}

.group__list {
  border: 1px solid #999;
  border: 0.0625rem solid #999;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .group__list {
    margin-top: 0.9375rem;
  }
}

.group__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .group__list-item {
    display: block;
  }
}
.group__list-item + .group__list-item {
  border-top: 1px solid rgba(153, 153, 153, .6);
  border-top: 0.0625rem solid rgba(153, 153, 153, .6);
}

.group__list-title, .group__list-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 24px;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .group__list-title, .group__list-text {
    font-size: 1rem;
    padding: 1rem;
  }
}

.group__list-title {
  text-align: center;
  width: 19.5%;
  background: #FCFDED;
}
@media screen and (max-width: 767px) {
  .group__list-title {
    text-align: left;
    width: 100%;
  }
}

.group__list-text {
  width: 80.5%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .group__list-text {
    width: 100%;
    border-top: 0.0625rem solid #999;
  }
}

.group__cards {
  margin-top: 32px;
  margin-top: 2rem;
}

/* news-archive */
.news-archive .l-inner {
  max-width: 810px;
  max-width: 50.625rem;
}

.news-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}
.news-archive__category a, .news-archive__category span {
  display: inline-block;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-radius: 1.5rem;
  border: 1px solid #F39800;
  border: 0.0625rem solid #F39800;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
}
@media screen and (max-width: 767px) {
  .news-archive__category a, .news-archive__category span {
    font-size: 0.9375rem;
  }
}
.news-archive__category a {
  background: #fff;
  color: #F39800;
}
.news-archive__category span {
  color: #fff;
  background: #F39800;
}

.news-archive__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* news-single */
.news-single .l-page {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-single .l-page {
    padding-top: 8.75rem;
  }
}
.news-single .l-inner {
  max-width: 850px;
  max-width: 53.125rem;
}

.news-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.news-single__date {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}
.news-single__category span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news-single__title {
  font-size: 24px;
  font-size: 1.5rem;
  border-bottom: 1px solid #333;
  border-bottom: 0.0625rem solid #333;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__title {
    margin-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.news-single__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__img {
    margin-top: 1rem;
  }
}

.news-single__post {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post {
    margin-top: 1rem;
  }
}
.news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-weight: 700;
  margin: 0;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
    margin-bottom: 0.5rem;
  }
}
.news-single__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
  border-bottom: 2px solid #333;
  border-bottom: 0.125rem solid #333;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.news-single__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  border-left: 4px solid #B19C78;
  border-left: 0.25rem solid #B19C78;
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.news-single__post h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h4 {
    font-size: 1rem;
  }
}
.news-single__post h5, .news-single__post h6 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.news-single__post p {
  line-height: 1.8;
}
.news-single__post p:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post p span {
  text-decoration-thickness: 5px !important;
  text-decoration-thickness: 0.3125rem !important;
  -webkit-text-decoration-color: #FCFDED !important;
          text-decoration-color: #FCFDED !important;
  text-underline-offset: -3px !important;
  text-underline-offset: -0.1875rem !important;
}
.news-single__post p a {
  color: #034495;
  text-decoration: underline;
}
.news-single__post figure:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post figure:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post img {
  margin: 0 auto;
}
.news-single__post table {
  -webkit-text-size-adjust: 100%;
}
.news-single__post table th, .news-single__post table td {
  vertical-align: top;
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
}
@media screen and (max-width: 767px) {
  .news-single__post table th, .news-single__post table td {
    padding: 0.9375rem 0.4375rem;
  }
}
.news-single__post table th:first-child, .news-single__post table td:first-child {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .news-single__post table th:first-child, .news-single__post table td:first-child {
    width: 25%;
  }
}
.news-single__post .wp-block-table .has-fixed-layout {
  width: 712px;
  width: 44.5rem;
  max-width: 100%;
}
.news-single__post .wp-block-table thead {
  border-bottom: none;
}
.news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post ol {
  padding-left: 1em;
  list-style: unset;
}
.news-single__post ol.has-background {
  background: #F7F7F7;
  padding: 24px 24px 24px 40px;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post ol.has-background {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  }
}
.news-single__post ol li {
  list-style-type: decimal;
  padding-left: 0.5em;
}
.news-single__post ul.has-background {
  background: #F7F7F7;
  padding: 24px 24px;
  padding: 1.5rem 1.5rem;
}
.news-single__post ul li {
  padding-left: 1.5em;
  position: relative;
}
.news-single__post ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.news-single__post li {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .news-single__post li {
    line-height: 1.4;
  }
}
.news-single__post li:not(:first-child) {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .news-single__post li:not(:first-child) {
    margin-top: 0.5rem;
  }
}
.news-single__post .wp-block-quote {
  width: 712px;
  width: 44.5rem;
  max-width: 100%;
  padding: 20px 50px 50px;
  padding: 1.25rem 3.125rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote {
    padding: 1.25rem;
  }
}
.news-single__post .wp-block-quote::before, .news-single__post .wp-block-quote::after {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 60px;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote::before, .news-single__post .wp-block-quote::after {
    width: 1.25rem;
    height: 2.1875rem;
  }
}
.news-single__post .wp-block-quote::before {
  left: 0;
  top: 0;
  background: url(../img/common/quote-icon01.png) no-repeat center/contain;
}
.news-single__post .wp-block-quote::after {
  right: 0;
  bottom: 0;
  background: url(../img/common/quote-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote::after {
    bottom: -0.625rem;
  }
}
.news-single__post .wp-block-quote:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.news-single__post .wp-block-quote p {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-quote p {
    line-height: 1.4;
  }
}

.news-single__btn {
  width: 225px;
  width: 14.0625rem;
  max-width: 100%;
  height: 60px;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  background: #F39800;
  border-radius: 62.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__btn {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}
.news-single__btn::before {
  position: absolute;
  content: "";
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  left: 8px;
  left: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/back-icon.png) no-repeat center/contain;
}

/* notfound */
.notfound {
  padding: 200px 0;
  padding: 12.5rem 0;
}

/* privacy */
.privacy .l-inner {
  max-width: 850px;
  max-width: 53.125rem;
}

.privacy__text {
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.privacy__list {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__list {
    margin-top: 1.5rem;
  }
}

.privacy__list-item + .privacy__list-item {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-item + .privacy__list-item {
    margin-top: 1.5rem;
  }
}

.privacy__list-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  border-radius: 1rem;
  color: #fff;
  background: #F39800;
  padding: 16px;
  padding: 1rem;
}

.privacy__list-text {
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-text {
    margin-top: 1rem;
  }
}

/* top-about */
@media screen and (max-width: 767px) {
  .top-about {
    background: #F7F6F2;
  }
  .top-about .l-section {
    padding-bottom: 2rem;
  }
}

.top-about__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-about__subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.top-about__content {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
          box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
  border-radius: 1rem;
  margin-top: 64px;
  margin-top: 4rem;
  padding: 30px 48px;
  padding: 1.875rem 3rem;
}
@media screen and (max-width: 767px) {
  .top-about__content {
    margin-top: 2rem;
    padding: 1rem;
  }
}

.top-about__text {
  text-align: center;
  line-height: 1.8;
}
.top-about__text span {
  color: #F39800;
}

.top-about__img {
  width: 488px;
  width: 30.5rem;
  max-width: 100%;
  margin: 22px auto 0;
  margin: 1.375rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-about__img {
    margin-top: 0.5rem;
  }
}

/* top-group */
.top-group__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 30px;
  gap: 1rem 1.875rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-group__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.top-group__logo:first-child .top-group__logo-img {
  width: 190px;
  width: 11.875rem;
}
@media screen and (max-width: 767px) {
  .top-group__logo:first-child .top-group__logo-img {
    width: 7.5rem;
  }
}
.top-group__logo:nth-child(2) .top-group__logo-img {
  width: 213px;
  width: 13.3125rem;
}
@media screen and (max-width: 767px) {
  .top-group__logo:nth-child(2) .top-group__logo-img {
    width: 6.5625rem;
  }
}
.top-group__logo:nth-child(3) .top-group__logo-img {
  width: 208px;
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .top-group__logo:nth-child(3) .top-group__logo-img {
    width: 6.5625rem;
  }
}
.top-group__logo:nth-child(4) .top-group__logo-img {
  width: 243px;
  width: 15.1875rem;
}
@media screen and (max-width: 767px) {
  .top-group__logo:nth-child(4) .top-group__logo-img {
    width: 6.5625rem;
  }
}
.top-group__logo:nth-child(5) .top-group__logo-img {
  width: 192px;
  width: 12rem;
}
@media screen and (max-width: 767px) {
  .top-group__logo:nth-child(5) .top-group__logo-img {
    width: 6.5625rem;
  }
}
.top-group__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 120px;
  height: 7.5rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
          box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
  border-radius: 1rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-group__logo a {
    height: 5rem;
  }
}

.top-group__logo-img {
  max-width: 100%;
}

.top-group__slider {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-group__slider {
    margin-top: 2rem;
  }
}

.top-group__btn {
  margin-left: auto;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-group__btn {
    margin: 2rem auto 0;
  }
}

/* top-location */
.top-location__text {
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}

.top-location__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-location__inner {
    display: block;
  }
}

.top-location__body {
  width: 47%;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-location__body {
    width: 100%;
    padding-left: 0;
  }
}

.top-location__subtitle {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-location__subtitle {
    font-size: 1.25rem;
  }
}

.top-location__subheading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-location__subheading {
    margin-top: 0.9375rem;
    line-height: 1.4;
  }
}
.top-location__subheading span {
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  color: #F39800;
  margin: 0 3px;
  margin: 0 0.1875rem;
}
@media screen and (max-width: 767px) {
  .top-location__subheading span {
    margin: 0;
  }
}

.top-location__subtext {
  line-height: 1.8;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-location__subtext {
    margin-top: 0;
  }
}

.top-location__img {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .top-location__img {
    width: 100%;
  }
}

/* top-mv */
.top-mv {
  height: 700px;
  height: 43.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv {
    height: 31.875rem;
    margin-top: 3.75rem;
  }
}

.top-mv__slider {
  height: 100%;
}
.top-mv__slider:not(.slick-initialized) .top-mv__slider-item {
  display: none;
  height: 100%;
}
.top-mv__slider:not(.slick-initialized) .top-mv__slider-item:first-child {
  display: block;
}
.top-mv__slider .slick-list {
  height: 100%;
}
.top-mv__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.top-mv__slider .slick-slide {
  height: auto !important;
}

.top-mv__slider-item picture {
  height: 100%;
}
.top-mv__slider-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-mv__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-mv__content .l-inner {
  height: 100%;
}

.top-mv__inner {
  position: relative;
  height: 100%;
}

.top-mv__title {
  position: absolute;
  left: 0;
  top: 120px;
  top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0.25rem;
    top: 1.625rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-mv__title span {
  display: inline-block;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  background: #fff;
  line-height: 1;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    font-size: 1.875rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding: 1rem 0.4375rem;
  }
}
.top-mv__title span:last-child {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span:last-child {
    margin-top: 0;
  }
}

.top-mv__btn {
  position: absolute;
  bottom: 72px;
  bottom: 4.5rem;
  right: -145px;
  right: -9.0625rem;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 144px;
  width: 9rem;
  height: 144px;
  height: 9rem;
  color: #fff;
  font-weight: 500;
  background: #F39800;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__btn {
    right: 0;
  }
}
.top-mv__btn::before, .top-mv__btn::after {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-mv__btn::before {
  top: 38px;
  top: 2.375rem;
  background: url(../img/common/mail-icon.png) no-repeat center/contain;
}
.top-mv__btn::after {
  bottom: 26px;
  bottom: 1.625rem;
  background: url(../img/common/arrow-icon.png) no-repeat center/contain;
}

/* top-news */
.top-news__content {
  width: 760px;
  width: 47.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    width: 100%;
    margin-left: 0;
  }
}

.top-news__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top-news__btn {
    margin: 2.5rem auto 0;
  }
}

/* top-service */
@media screen and (max-width: 767px) {
  .top-service .l-section {
    padding-top: 0;
  }
}

.top-service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  gap: 3.125rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-service__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.top-service__card {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
          box-shadow: 0px 0px 10px rgba(61, 55, 50, .25);
  border-radius: 1rem;
}

.top-service__card-img img {
  border-radius: 1rem 1rem 0 0;
}

.top-service__card-body {
  text-align: center;
  padding: 16px 16px 40px;
  padding: 1rem 1rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__card-body {
    padding-bottom: 1.25rem;
  }
}

.top-service__card-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.top-service__card-text {
  line-height: 1.8;
  margin-top: 16px;
  margin-top: 1rem;
}
/*# sourceMappingURL=style.css.map */
