@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  width: 100%;
  display: block;
  border: 0;
  height: auto;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ============================
 base(共通)
===============================*/
@-ms-viewport {
  width: device-width;
  initial-scale: 1;
}
html {
  font-size: 62.5%;
  -ms-overflow-style: auto;
}

body {
  font-size: 1.6rem;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  word-break: normal;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hanging-punctuation: none;
  background: #ffffff;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
  -moz-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  body {
    letter-spacing: 0.06em;
  }
}

.container {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
  }
}

.page-container {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .page-container {
    max-width: 1036px;
    margin: 0 auto;
  }
}

a {
  color: #222222;
}

a:hover {
  opacity: 0.7;
}

.pc-none {
  display: block;
}
@media screen and (min-width: 992px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 992px) {
  .sp-none {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

.btn__wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 18px 18px 17px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #ffffff;
  width: 236px;
  max-width: 100%;
  background: #222222;
  text-align: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
@media screen and (min-width: 992px) {
  .btn {
    transition: 0.25s;
    width: 306px;
    padding: 19px 19px 20px;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.btn:hover {
  opacity: 1;
  background: #ffd633;
  color: #222222;
}

.btn--small {
  width: 208px;
  border-radius: 33px;
}
@media screen and (min-width: 992px) {
  .btn--small {
    width: 230px;
    padding: 21px 20px 20px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.btn--small:hover {
  opacity: 0.7;
  background: #222222;
}

.btn--large {
  width: 297px;
}
@media screen and (min-width: 992px) {
  .btn--large {
    width: 384px;
    padding: 20px;
    font-size: 2rem;
    line-height: 1.45;
  }
}

.btn--large:hover {
  opacity: 0.7;
  background: #222222;
}

.btn--arrow {
  position: relative;
}

.btn--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 6px;
  height: 12px;
  background: url(../images/common/icon_arrow.svg) center center/cover no-repeat;
}

.btn.btn--arrow:hover::after {
  background: url(../images/common/icon_arrow_222.svg) center center/cover no-repeat;
}

.btn--arrow-large {
  position: relative;
}

.btn--arrow-large::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 8px;
  height: 18px;
  background: url(../images/common/icon_arrow.svg) center center/contain no-repeat;
}
@media screen and (min-width: 992px) {
  .btn--arrow-large::after {
    right: 50px;
    width: 17px;
    height: 36px;
  }
}

.btn-caution.btn--arrow-large::after {
  background: url(../images/common/icon_arrow_222.svg) center center/contain no-repeat;
}

.btn-caution__wrapper {
  text-align: center;
}

.btn-caution {
  display: inline-block;
  padding: 21px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #222222;
  width: 297px;
  max-width: 100%;
  background: #ffd633;
  text-align: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
}
@media screen and (min-width: 992px) {
  .btn-caution {
    transition: 0.25s;
    width: 538px;
    padding: 17px 19px 19px;
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}

.btn-caution:hover {
  opacity: 0.7;
}

.btn-caution--contact {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  border-radius: 0;
}

.btn-caution--large {
  padding: 27px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4444444444;
  width: 359px;
  border-radius: 69px;
}
@media screen and (min-width: 992px) {
  .btn-caution--large {
    width: 996px;
    padding: 47px;
    font-size: 3rem;
    line-height: 1.4666666667;
  }
}

@media screen and (min-width: 992px) {
  .btn-caution--large:hover {
    transform: scale(1.1);
    opacity: 1;
  }
}

.btn--icon-mail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 29px;
  width: 18px;
  height: 13px;
  z-index: 1;
  pointer-events: none;
  background: url(../images/common/icon_mail.svg) center center/contain no-repeat;
}
@media screen and (min-width: 992px) {
  .btn--icon-mail::after {
    left: 132px;
    width: 26px;
    height: 19px;
  }
}

/* 黄背景のお問い合わせボタン：#222 のメールアイコン */
.btn-contact.btn--icon-mail::after {
  background-image: url(../images/common/icon_mail_222.svg);
}

.btn-contact__wrapper {
  text-align: center;
}

.btn-contact {
  display: inline-block;
  padding: 21px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #222222;
  width: 297px;
  max-width: 100%;
  background: #ffd633;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  padding: 23px 20px 23px 59px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .btn-contact {
    transition: 0.25s;
    width: 580px;
    padding: 26px 28px 28px 178px;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

@media screen and (min-width: 992px) {
  .btn-contact:hover {
    transform: scale(1.1);
    opacity: 1;
  }
}

.btn-back {
  color: #222222;
  width: 233px;
  background: #ffffff;
  border: 1px solid #222222;
}
@media screen and (min-width: 992px) {
  .btn-back {
    width: 228px;
    padding: 20px;
    font-size: 2rem;
    line-height: 1.45;
  }
}

.btn-back:hover {
  background: #ffffff;
  opacity: 0.7;
}

.btn-back--large {
  width: 236px;
  border: 1px solid #222222;
  padding: 21px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .btn-back--large {
    width: 260px;
    padding: 30px 30px 31px;
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.color-orange {
  color: #ffd633;
}

.mr_1em {
  margin-right: 1em;
}

.bg-white {
  background: #ffffff;
}

.mb_0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pl20 {
  padding-left: 20px;
}

/*===============================
 ヘッダー
 ===============================*/
.header {
  width: 100%;
  height: auto;
}

.header__inner {
  width: 100%;
  background: #ffffff;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  max-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 20px;
  border: 1px solid #dbdbdb;
}
@media screen and (min-width: 992px) {
  .header__inner {
    max-height: 86.5px;
    padding: 0;
  }
}

.logo {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  align-self: center;
}
@media screen and (min-width: 992px) {
  .logo {
    margin-left: 40px;
  }
}

.logo__link {
  display: block;
  max-width: 220px;
}
@media screen and (min-width: 992px) {
  .logo__link {
    max-width: 300px;
  }
}
.logo__link img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-btn {
  display: block;
}
@media screen and (min-width: 992px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__inner {
  width: 50px;
  height: 50px;
  background: #ffd633;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.menu-btn__bar {
  width: 34px;
  height: 3px;
  background: #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-btn__bar--top {
  transform: translate(-50%, -13px);
}

.menu-btn__bar--bottom {
  transform: translate(-50%, 10px);
}

.menu-btn.active {
  opacity: 0;
  visibility: hidden;
}

/* hamburgerメニュー */
.global-menu {
  width: 230px;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #ffd633;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  padding: 65px 10px 20px;
  color: #222222;
}
.global-menu.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .global-menu {
    display: none;
  }
}

.close-btn {
  position: absolute;
  width: 28px;
  height: 24px;
  top: 21px;
  right: 27px;
  cursor: pointer;
}

.close-btn__bar {
  display: block;
  width: 35px;
  height: 2.5px;
  background: #222222;
  position: absolute;
  top: 50%;
  left: 50%;
}

.close-btn__bar--top {
  transform: translate(-50%, -50%) rotate(40deg);
}

.close-btn__bar--bottom {
  transform: translate(-50%, -50%) rotate(-40deg);
}

.close-btn:hover {
  opacity: 0.7;
}

.menu {
  width: 100%;
  height: auto;
}

.menu__lists {
  border-top: 1px solid rgba(34, 34, 34, 0.2);
  margin-bottom: 20px;
}

.menu__link {
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding: 13px 0 10px;
  color: #222222;
  font-weight: 500;
  font-family: "Murecho", sans-serif;
  display: block;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  position: relative;
}

.menu__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 6px;
  height: 12px;
  background: url(../images/common/icon_arrow_222.svg) center center/cover no-repeat;
}

.contact-btn__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .contact-btn__wrapper {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1060px) {
  .contact-btn__wrapper {
    margin-right: 30px;
  }
}

.global-menu .contact-btn__wrapper {
  width: 100%;
  margin-right: 0;
}

.global-menu .contact-btn {
  color: #222222;
  border-color: #222222;
}

.global-menu .sns-menu {
  margin-top: 28px;
}

.contact-btn {
  display: inline-block;
  padding: 8px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #ffffff;
  width: 190px;
  max-width: 100%;
  background: transparent;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ffffff;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .contact-btn {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    width: 100px;
    background: #222222;
    border: none;
    padding: 8px 0px;
    font-weight: normal;
  }
}
@media screen and (min-width: 1060px) {
  .contact-btn {
    width: 124px;
  }
}

.sns-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.sns-menu__list {
  width: 30px;
  margin-right: 40px;
}

.sns-menu__list:last-child {
  margin-right: 0;
}

.sns-menu__link {
  display: block;
  width: 100%;
}

/* ハンバーガー内（黄背景）：白 PNG を #222 相当のシルエットに */
.global-menu .sns-menu__img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0);
  opacity: 0.92;
}

.menu-sub-lists .menu__link {
  font-size: 1.3rem;
  line-height: 1.4615384615;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}

/* PCメニュー */
.pc-menu {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.pc-menu__lists {
  display: flex;
  margin-top: 35px;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .pc-menu__lists {
    margin-top: 0;
  }
}

.pc-menu__list {
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (min-width: 1060px) {
  .pc-menu__list {
    margin-right: 30px;
  }
}

.pc-menu__list:last-child {
  margin-right: 0;
}

.pc-menu__link {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  white-space: nowrap;
}

/* lg直後〜xl未満（例: 998px）でナビが折り返しやすい帯 */
@media screen and (min-width: 992px) and (max-width: 1059px) {
  .pc-menu__link {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
  .contact-btn__wrapper {
    margin-right: 20px;
  }
  .contact-btn {
    width: 88px;
    font-size: 1.2rem;
    line-height: 1.4166666667;
    padding: 6px 8px;
  }
  .shop-btn {
    width: 96px;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    padding: 14px 8px 12px;
  }
}
/* xl〜xxl未満：やや余裕を戻す */
@media screen and (min-width: 1060px) and (max-width: 1199px) {
  .pc-menu__link {
    font-size: 1.3rem;
    line-height: 1.4615384615;
  }
  .contact-btn__wrapper {
    margin-right: 20px;
  }
  .contact-btn {
    width: 108px;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    padding: 7px 8px;
  }
  .shop-btn {
    width: 104px;
    font-size: 1.45rem;
    line-height: 1.4482758621;
    padding: 17px 8px 15px;
  }
}
.shop-btn__wrapper {
  text-align: center;
}

.shop-btn {
  display: inline-block;
  padding: 20px 0 18px;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  background: #ffd633;
  text-align: center;
  cursor: pointer;
  width: 110px;
  max-width: 100%;
  color: #222222;
}
@media screen and (min-width: 1060px) {
  .shop-btn {
    width: 130px;
    transition: 0.25s;
  }
}

/* スクロール */
body.no-scroll {
  overflow: hidden;
}

/*===============================
 フッター
 ===============================*/
.footer {
  background: #222222;
  color: #ffffff;
  padding: 27px 5px 18px;
}
@media screen and (min-width: 375px) {
  .footer {
    padding: 27px 24px 18px;
  }
}
@media screen and (min-width: 1060px) {
  .footer {
    padding: 40px 100px 21px;
  }
}

@media screen and (min-width: 1060px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 76px;
  }
}

.footer-logo {
  margin-top: 0;
  margin-bottom: 15px;
}
@media screen and (min-width: 1060px) {
  .footer-logo {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.footer-logo__link {
  max-width: 208px;
}
@media screen and (min-width: 1060px) {
  .footer-logo__link {
    max-width: 250px;
  }
}

.footer__lists {
  margin-bottom: 20px;
}
@media screen and (min-width: 1060px) {
  .footer__lists {
    margin-bottom: 0;
  }
}

.footer__list {
  display: flex;
  margin-bottom: 8px;
  font-size: 1.3rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 1060px) {
  .footer__list {
    margin-bottom: 6px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.footer__term {
  margin-right: 1em;
}

.footer-tel-area {
  display: flex;
}
@media screen and (min-width: 1060px) {
  .footer-tel-area {
    display: block;
  }
}
.footer-tel-area .footer__list {
  margin-right: 20px;
}
@media screen and (min-width: 1060px) {
  .footer-tel-area .footer__list {
    margin-right: 0;
  }
}
.footer-tel-area .footer__list:last-child {
  margin-right: 0;
}

.footer-menu {
  display: none;
}
@media screen and (min-width: 1060px) {
  .footer-menu {
    display: block;
    margin-bottom: 30px;
  }
  .footer-menu > *:last-child {
    margin-bottom: 0;
  }
}

.footer-menu__lists {
  display: flex;
  margin-bottom: 27px;
}

.footer-menu__list {
  margin-right: 20px;
}
@media screen and (min-width: 1250px) {
  .footer-menu__list {
    margin-right: 70px;
  }
}

.footer-menu__list:last-child {
  margin-right: 0;
}

.footer-menu__link {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.sns-menu {
  display: flex;
  justify-content: flex-end;
}

.sns-menu__list {
  margin-right: 20px;
}
@media screen and (min-width: 1250px) {
  .sns-menu__list {
    margin-right: 40px;
  }
}

.sns-menu__list:last-child {
  margin-right: 0;
}

.copy-right {
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Arial", "メイリオ", sans-serif;
  text-align: center;
}

/*===============================
 トップページ
 ===============================*/
.fv {
  margin-top: 70px;
  margin-bottom: 160px;
}
@media screen and (min-width: 992px) {
  .fv {
    margin-top: 136px;
    margin-bottom: 326px;
  }
}

.fv__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .fv__inner {
    width: 85.7142857143%;
    max-width: 1200px;
  }
}

.fv-slider {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.fv-slider.slick-initialized {
  opacity: 1;
}

.slick-dots {
  bottom: -36px;
}
@media screen and (min-width: 992px) {
  .slick-dots {
    bottom: -52px;
    text-align: right;
  }
}

.slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
}

@media screen and (min-width: 992px) {
  .slick-dots li:last-child {
    margin-right: 0;
  }
}

.slick-dots li button {
  padding: 0;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  background: #ffd633;
  border: 2px solid #ffd633;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 2px solid #ffd633;
  content: "";
  text-align: center;
  opacity: 1;
  color: transparent;
  -webkit-font-smoothing: antialiased;
}

.top-main-section {
  margin-bottom: 120px;
}
@media screen and (min-width: 992px) {
  .top-main-section {
    margin-bottom: 200px;
  }
}

.copper {
  width: 100%;
  position: relative;
  background-color: #f1f1f1;
}

.copper__inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 100px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .copper__inner {
    max-width: calc(100% - (50% - 611px));
    width: 87.2857142857%;
    margin-left: 0;
    margin-right: auto;
    padding: 150px 0 100px;
  }
}

.copper__media {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .copper__media {
    padding-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .copper__media {
    flex-direction: row-reverse;
    align-items: center;
    gap: 48px;
    width: 98.1996726678%;
    max-width: 1200px;
    margin-right: -78px;
    margin-left: auto;
    padding-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .copper__media {
    gap: 56px;
  }
}

@media screen and (min-width: 992px) {
  .copper__body {
    width: 45%;
    max-width: 540px;
    margin-right: 0;
  }
}

.copper-heading {
  font-weight: bold;
  text-align: center;
  width: calc(100% - 32px);
  max-width: 100%;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .copper-heading {
    top: 24px;
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 992px) {
  .copper-heading {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .copper-heading {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1400px) {
  .copper-heading {
    margin-bottom: 48px;
  }
}

.copper-heading__lead {
  display: block;
  font-size: 1.75rem;
  line-height: 1.4857142857;
}
@media screen and (min-width: 768px) {
  .copper-heading__lead {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 992px) {
  .copper-heading__lead {
    font-size: 3rem;
    line-height: 1.4;
  }
}

.copper__text {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .copper__text {
    width: 100%;
    max-width: 540px;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 52px;
  }
}

.copper__text.mb_0 {
  margin-bottom: 0;
}

.copper__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 297px;
  margin-left: auto;
  margin-right: auto;
}
.copper__cta .btn-caution__wrapper {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .copper__cta {
    max-width: 538px;
    margin-left: 0;
    margin-right: 0;
  }
}

.copper__cta .copper__caution {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-top: 8px;
  margin-bottom: 0;
  color: #351c03;
  text-align: right;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 992px) {
  .copper__cta .copper__caution {
    font-size: 1.5rem;
    line-height: 1.4666666667;
    margin-top: 10px;
  }
}

.copper-heading-main__wrapper {
  display: block;
  margin-top: 8px;
  width: 68.75%;
  max-width: 240px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .copper-heading-main__wrapper {
    margin-top: 10px;
    max-width: 280px;
  }
}
@media screen and (min-width: 992px) {
  .copper-heading-main__wrapper {
    margin-top: 16px;
    margin-right: auto;
    margin-left: 0;
    width: 100%;
    max-width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .copper-heading-main__wrapper {
    margin-top: 18px;
    max-width: 520px;
  }
}

.copper-img__wrapper {
  width: 61%;
  max-width: 427px;
  margin-top: 132px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .copper-img__wrapper {
    margin-top: 142px;
  }
}
@media screen and (min-width: 992px) {
  .copper-img__wrapper {
    flex: 1;
    width: auto;
    max-width: none;
    margin: 0;
  }
}

.copper-bg {
  position: absolute;
  top: -64px;
  right: 0;
  left: auto;
  width: 87%;
  max-width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .copper-bg {
    width: 65.6428571429%;
    top: -154px;
  }
}

.copper-bg__img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: cover;
  object-position: right bottom;
}
@media screen and (min-width: 768px) {
  .copper-bg__img {
    height: 134px;
  }
}
@media screen and (min-width: 992px) {
  .copper-bg__img {
    height: 275px;
  }
}

.services {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .services {
    margin-top: 120px;
    margin-bottom: 220px;
  }
}

.services__heading {
  color: #222222;
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 500;
  font-family: "Murecho", sans-serif;
  margin-bottom: 48px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .services__heading {
    font-size: 5.4rem;
    line-height: 1.462962963;
    margin-bottom: 72px;
  }
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services__item {
  position: relative;
  margin-bottom: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .services__item {
    margin-bottom: 100px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.services__item:last-child {
  margin-bottom: 0;
}

.services__deco {
  position: absolute;
  z-index: 0;
  background-color: #f9f9f9;
  width: calc(100% + 24px);
  height: calc(100% + 40px);
  pointer-events: none;
}
.services__item:nth-child(odd) .services__deco {
  top: -16px;
  left: -12px;
}
.services__item:nth-child(even) .services__deco {
  bottom: -16px;
  right: -12px;
  top: auto;
  left: auto;
}
@media screen and (min-width: 992px) {
  .services__deco {
    width: calc(100% + 40px);
    height: calc(100% + 56px);
  }
  .services__item:nth-child(odd) .services__deco {
    top: -24px;
    left: -20px;
  }
  .services__item:nth-child(even) .services__deco {
    bottom: -24px;
    right: -20px;
  }
}

.services__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 28px;
}
@media screen and (min-width: 992px) {
  .services__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}

@media screen and (min-width: 992px) {
  .services__item--reverse .services__inner {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 992px) {
  .services__body {
    flex: 0 0 47%;
    max-width: 564px;
  }
}

.services__title {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 500;
  color: #222222;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .services__title {
    font-size: 2.6rem;
    line-height: 1.4230769231;
    text-align: left;
    margin-bottom: 28px;
  }
}

.services__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #222222;
  margin-bottom: 28px;
}
@media screen and (min-width: 992px) {
  .services__text {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 36px;
  }
}

.services__btn.btn-caution__wrapper {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .services__btn.btn-caution__wrapper {
    text-align: left;
  }
}

.services__figure {
  margin: 0;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .services__figure {
    flex: 1;
    max-width: none;
    margin: 0;
    min-width: 0;
  }
}

.services__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.introduction {
  text-align: center;
}

.introduction__heading {
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (min-width: 992px) {
  .introduction__heading {
    font-size: 7.6rem;
    line-height: 1.4473684211;
    margin-bottom: 14px;
  }
}

.introduction__sub-heading {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  display: inline-block;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .introduction__sub-heading {
    font-size: 3rem;
    line-height: 1.4666666667;
    margin-bottom: 40px;
  }
}

.section__heading {
  color: #222222;
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 500;
  font-family: "Murecho", sans-serif;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .section__heading {
    font-size: 5.4rem;
    line-height: 1.462962963;
    margin-bottom: 60px;
  }
}

.section {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .section {
    margin-top: 160px;
    margin-bottom: 160px;
  }
}

.section-type01 {
  padding-top: 92px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .section-type01 {
    padding-top: 0;
    position: static;
  }
}
.section-type01 .section__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .section-type01 .section__heading {
    position: static;
    transform: none;
    margin-bottom: 80px;
    text-align: center;
  }
}

.section__innner {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 992px) {
  .section__innner {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .section__innner.row-reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .section__innner.row-reverse .section__body {
    margin-left: 13%;
    margin-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .section__body {
    width: 47%;
    flex-basis: 47%;
    margin-right: 13%;
  }
}

.section-img__wrapper {
  width: 48.3333333333%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .section-img__wrapper {
    width: auto;
    max-width: auto;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    flex: 1;
  }
}

.section-content {
  margin-bottom: 26px;
}
@media screen and (min-width: 992px) {
  .section-content {
    margin-bottom: 60px;
  }
}

.section-content.mb_0 {
  margin-bottom: 0;
}

.section-content__heading {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 500;
  text-align: center;
  margin-bottom: 17px;
}
@media screen and (min-width: 992px) {
  .section-content__heading {
    font-size: 2.6rem;
    line-height: 1.4230769231;
    margin-bottom: 30px;
  }
}

.section-content__text {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 992px) {
  .section-content__text {
    width: 92%;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-right: 0;
    margin-left: auto;
  }
}

.section-content-notes {
  width: 100%;
  background: #f9f9f9;
  padding: 30px 31px 30px;
}
@media screen and (min-width: 992px) {
  .section-content-notes {
    padding: 26px 50px;
  }
}

.section-content-notes__heading {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-content-notes__heading {
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }
}

.section-content-notes__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 992px) {
  .section-content-notes__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.about .section-content {
  width: 91%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .about .section-content {
    width: 100%;
  }
}
.about .section-content__heading {
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: 500;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .about .section-content__heading {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    margin-bottom: 40px;
  }
}

.section__list {
  display: flex;
  margin-bottom: 8px;
  font-size: 1.3rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 992px) {
  .section__list {
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.section__list.mb-size-l {
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .section__list.mb-size-l {
    margin-bottom: 20px;
  }
}

.section__list.mb_0 {
  margin-bottom: 0;
}

.section__term {
  flex-basis: 95px;
  margin-right: 5.750798722%;
}
@media screen and (min-width: 992px) {
  .section__term {
    flex-basis: 140px;
    margin-right: 3.5460992908%;
  }
}

.section__description {
  flex: 1;
}

.top-works {
  background: #fffbea;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .top-works {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.top-works .section__heading {
  font-size: 3.4rem;
  line-height: 1.4411764706;
}
@media screen and (min-width: 992px) {
  .top-works .section__heading {
    font-size: 7.6rem;
    line-height: 1.4473684211;
  }
}

.top-works-lists__wrapper {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .top-works-lists__wrapper {
    margin-bottom: 60px;
  }
}

.top-works-lists {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .top-works-lists {
    margin-bottom: -30px;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
}

.top-works-list {
  width: 48.0555555556%;
  margin-right: 3.6111111111%;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .top-works-list {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 30px;
  }
}

.top-works-link {
  display: block;
  cursor: pointer;
}

.top-works-list:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .top-works-list:nth-child(2n) {
    margin-right: 2%;
  }
}

@media screen and (min-width: 992px) {
  .top-works-list:nth-child(4n) {
    margin-right: 0;
  }
}

.top-works-link::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.top-works-list__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}

.top-works-list__heading {
  width: 100%;
  padding: 6px 20px 9px 9px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 1.4444444444;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4444444444;
  z-index: 3;
  min-height: 41px;
}
@media screen and (min-width: 992px) {
  .top-works-list__heading {
    padding: 10px 39px 8px 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.arrow__wrapper {
  width: 20px;
  height: 20px;
  background: #333333;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .arrow__wrapper {
    width: 33px;
    height: 33px;
  }
}

.arrow {
  width: 6px;
  height: 13px;
  object-fit: contain;
}

.news .section__heading {
  text-align: center;
}
.news .slick-track {
  display: flex;
}
.news .slick-slide {
  height: auto !important;
}
.news .slick-prev {
  left: -20px;
}
.news .slick-prev,
.news .slick-next {
  width: 33px;
  height: 40px;
  background: #ffd633;
  z-index: 1;
}
.news .slick-next {
  right: -20px;
}
.news .slick-prev:before {
  content: "";
}
.news .slick-prev:before,
.news .slick-next:before {
  font-size: 0;
  display: inline-block;
  width: 4.5px;
  height: 9px;
  background: url(../images/common/icon_arrow_222.svg) center center/cover no-repeat;
}
.news .slick-prev:before {
  transform: rotate(180deg);
}

.card__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .card__wrapper {
    justify-content: flex-start;
    margin-bottom: 60px;
  }
}

.card {
  width: 63.8888888889%;
  margin-right: 10px;
  margin-left: 10px;
  border: 1px solid #c3c3c3;
  padding: 12px 12px 39px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .card {
    width: 23.5%;
    margin-right: 2%;
    margin-left: 0;
    padding: 15px 15px 49px;
  }
}

.card__img-wrapper {
  width: 100%;
  padding-top: 51.4563106796%;
  position: relative;
  overflow: hidden;
  margin-bottom: 7px;
}
@media screen and (min-width: 992px) {
  .card__img-wrapper {
    padding-top: 51.5873015873%;
    margin-bottom: 8px;
  }
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
}
@media screen and (min-width: 992px) {
  .card__header {
    margin-bottom: 14px;
  }
}

.card-time {
  font-size: 0.9rem;
  line-height: 1.1111111111;
  font-family: "Arial", "メイリオ", sans-serif;
  margin-right: 5px;
}
@media screen and (min-width: 992px) {
  .card-time {
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}

.label {
  padding: 1px 10px 2px;
  background: #ffd633;
  word-break: break-all;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .label {
    padding: 3px 8px 2px;
  }
}

.label__inner {
  display: inline-block;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  color: #222222;
}
@media screen and (min-width: 992px) {
  .label__inner {
    line-height: 1.3076923077;
  }
}

.card__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 992px) {
  .card__text {
    font-size: 1.6rem;
    line-height: 1.3125;
  }
}

.more__wrapper {
  position: absolute;
  bottom: 9px;
  right: 12px;
}
@media screen and (min-width: 992px) {
  .more__wrapper {
    bottom: 10px;
    right: 15px;
  }
}

.more {
  font-size: 1rem;
  line-height: 1.5;
  margin-right: 29px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .more {
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
}

.more::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -29px;
  width: 5px;
  height: 10px;
  background: url(../images/top/icon_arrow-more.svg) center center/contain no-repeat;
}
@media screen and (min-width: 992px) {
  .more::after {
    width: 6px;
    height: 12px;
  }
}

.ceo-greeting {
  background-color: #f6f6f6;
  padding: 60px 0;
}
@media screen and (min-width: 992px) {
  .ceo-greeting {
    padding: 80px 0;
  }
}

.ceo-greeting__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media screen and (min-width: 992px) {
  .ceo-greeting__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}

.ceo-greeting__figure {
  margin: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .ceo-greeting__figure {
    width: 33.3333333333%;
    max-width: 400px;
    margin-right: 0;
    margin-left: 0;
  }
}

.ceo-greeting__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ceo-greeting__body {
  flex: 1;
  min-width: 0;
}

.ceo-greeting__heading {
  color: #222222;
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 500;
  font-family: "Murecho", sans-serif;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .ceo-greeting__heading {
    font-size: 5.4rem;
    line-height: 1.462962963;
    margin-bottom: 40px;
  }
}

.ceo-greeting__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #222222;
  margin-bottom: 1.5em;
}
.ceo-greeting__text:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .ceo-greeting__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.recruit-area {
  width: 100%;
  padding: 60px 21px;
  background: url(../images/top/bg_recruit.jpg) center center/cover no-repeat;
}
@media screen and (min-width: 992px) {
  .recruit-area {
    padding: 40px 0;
  }
}
.recruit-area .section__heading {
  text-align: center;
}

.recruit-area__inner {
  width: 100.8426966292%;
  max-width: 578px;
  margin-right: auto;
  margin-left: auto;
  background: #ffffff;
  padding: 40px 31px;
}
@media screen and (min-width: 992px) {
  .recruit-area__inner {
    width: 48.1666666667%;
    max-width: 578px;
    padding: 40px 83px;
  }
}

.recruit-area__catch {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4444444444;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .recruit-area__catch {
    font-size: 2.6rem;
    line-height: 1.4230769231;
    margin-bottom: 20px;
  }
}

.recruit-area__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .recruit-area__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .contact-area {
    margin-bottom: 100px;
  }
}
.contact-area .section__heading {
  text-align: center;
}

.contact-area__inner {
  border: 2px solid #c3c3c3;
  padding: 40px 10px;
  width: 100%;
  max-width: 996px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 400px) {
  .contact-area__inner {
    padding: 40px 24px;
  }
}
@media screen and (min-width: 992px) {
  .contact-area__inner {
    padding: 52px 60px 60px;
    width: 100%;
    max-width: 83%;
  }
}

.contact-area__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .contact-area__text {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    margin-bottom: 40px;
  }
}

.contact-area__tel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-tel__wrapper {
  width: 18px;
  height: 33.5px;
  margin-right: 15px;
}
@media screen and (min-width: 375px) {
  .icon-tel__wrapper {
    width: 22px;
    height: 37.5px;
    margin-right: 17px;
  }
}
@media screen and (min-width: 992px) {
  .icon-tel__wrapper {
    width: 35px;
    height: 60px;
    margin-right: 26px;
  }
}

.icon-tel {
  height: 100%;
  object-fit: contain;
}

.tel-link {
  font-size: 3.4rem;
  line-height: 1.1428571429;
  font-family: "Arial", "メイリオ", sans-serif;
}
@media screen and (min-width: 375px) {
  .tel-link {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 992px) {
  .tel-link {
    font-size: 7rem;
    line-height: 1.1428571429;
  }
}

.contact-area__time {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .contact-area__time {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

.sns {
  background: #f1f1f1;
  padding: 40px 0 60px;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .sns {
    padding: 80px 0 100px;
    margin-top: 100px;
  }
}

@media screen and (min-width: 992px) {
  .sns__inner {
    display: flex;
    justify-content: center;
  }
}

.sns__section {
  width: 100%;
  max-width: 486px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  padding: 40px 10px;
  margin-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .sns__section {
    padding: 40px 50px;
  }
}
@media screen and (min-width: 992px) {
  .sns__section {
    padding: 40px 0;
    width: 40.5%;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 0;
  }
}

.sns__section:last-child {
  margin-bottom: 0;
}

.sns__heading {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4285714286;
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (min-width: 992px) {
  .sns__heading {
    font-size: 3.6rem;
    line-height: 1.4444444444;
    margin-bottom: 6px;
  }
}

.sns__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .sns__text {
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 40px;
  }
}

.sns__img-wrapper {
  width: 52.6923076923%;
  max-width: 137px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .sns__img-wrapper {
    width: 33.950617284%;
    max-width: 165px;
    margin-bottom: 40px;
  }
}

/*===============================
 GUDシート
 ===============================*/
.gud-sheet {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .gud-sheet {
    margin-bottom: 160px;
  }
}

.gud-sheet-fv {
  margin-top: 100px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .gud-sheet-fv {
    margin-top: 106px;
    margin-bottom: 0;
  }
}

.effect {
  background: #f9f9f9;
  padding: 50px 0 40px;
  margin-bottom: 114px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .effect {
    padding: 125px 0 70px;
    margin-bottom: 259px;
  }
}

@media screen and (min-width: 992px) {
  .effect__inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.effect-section {
  margin-bottom: 78px;
  background: #ffffff;
}
.effect-section > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .effect-section {
    margin-bottom: 98px;
  }
}

.effect__heading {
  font-size: 3rem;
  line-height: 1.4666666667;
  font-weight: bold;
  margin-bottom: 42px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .effect__heading {
    font-size: 5rem;
    line-height: 1.44;
    margin-bottom: 62px;
  }
}

.effect-section__inner {
  width: 100%;
  border: 8px solid #ffd633;
  position: relative;
  padding: 40px 5px;
}
@media screen and (min-width: 400px) {
  .effect-section__inner {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 992px) {
  .effect-section__inner {
    padding: 65px 61px 61px;
  }
}

.effect-section__inner::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 38px solid #ffd633;
  border-right: 28px solid transparent;
  border-left: 28px solid transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -38px;
}

.effect-section__heading {
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.4666666667;
  text-align: center;
  margin-bottom: 29px;
  position: relative;
}
@media screen and (min-width: 400px) {
  .effect-section__heading {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .effect-section__heading {
    font-size: 4.6rem;
    line-height: 1.4347826087;
    margin-bottom: 48px;
  }
}

.effect-section__heading::after {
  content: "";
  width: 310px;
  max-width: 100%;
  height: 5px;
  background: #ffd633;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .effect-section__heading::after {
    width: 640px;
    bottom: -13px;
  }
}

.effect-section__text {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  margin-bottom: 42px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .effect-section__text {
    font-size: 3.2rem;
    line-height: 1.4375;
    margin-bottom: 48px;
  }
}

.effect__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -21px;
  margin-left: -2.5px;
  margin-right: -2.5px;
}
@media screen and (min-width: 400px) {
  .effect__lists {
    margin-left: -6.5px;
    margin-right: -6.5px;
  }
}
@media screen and (min-width: 992px) {
  .effect__lists {
    flex-wrap: nowrap;
    margin-bottom: 0;
    margin-left: -25px;
    margin-right: -25px;
  }
}

.effect-list {
  width: 50.9868421053%;
  max-width: 155px;
  text-align: center;
  margin-left: 2.5px;
  margin-right: 2.5px;
  margin-bottom: 21px;
}
@media screen and (min-width: 400px) {
  .effect-list {
    margin-left: 6.5px;
    margin-right: 6.5px;
  }
}
@media screen and (min-width: 992px) {
  .effect-list {
    width: 22.7871939736%;
    max-width: 242px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 0;
  }
}

.effect-list__heading {
  width: 100%;
  color: #ffffff;
  background: #b4b4b4;
  padding: 6px 6px 7px;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: bold;
  margin-bottom: 6px;
}
@media screen and (min-width: 992px) {
  .effect-list__heading {
    padding: 9px 9px 11px;
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-bottom: 10px;
  }
}

.effect-list__text {
  text-align: center;
  color: #707070;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .effect-list__text {
    font-size: 2.6rem;
    line-height: 1.4666666667;
  }
}
@media screen and (min-width: 1200px) {
  .effect-list__text {
    font-size: 3rem;
  }
}

.effect-list--large {
  width: 100%;
  max-width: 992px;
}
@media screen and (min-width: 992px) {
  .effect-list--large {
    width: 32.0150659134%;
    max-width: 340px;
    order: 2;
  }
}
.effect-list--large .effect-list__heading {
  width: 65.7894736842%;
  max-width: 200px;
  margin-right: auto;
  margin-left: auto;
  padding: 7px 7px 8px;
  font-size: 2.3rem;
  line-height: 1.4782608696;
  margin-bottom: 8px;
  background: #ffd633;
  color: #222222;
}
@media screen and (min-width: 992px) {
  .effect-list--large .effect-list__heading {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 13px;
    font-size: 4rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }
}
.effect-list--large .effect-list__text {
  color: #222222;
  font-size: 2.5rem;
  line-height: 1.44;
}
@media screen and (min-width: 992px) {
  .effect-list--large .effect-list__text {
    font-size: 4.4rem;
    line-height: 1.4545454545;
  }
}

@media screen and (min-width: 992px) {
  .effect-list--left {
    margin-top: 24px;
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .effect-list--right {
    margin-top: 24px;
    order: 3;
  }
}

.effect-section--center .effect-section__inner {
  padding: 40px 30px;
}
@media screen and (min-width: 992px) {
  .effect-section--center .effect-section__inner {
    padding: 65px 61px 61px;
  }
}
.effect-section--center .effect-section__heading {
  margin-bottom: 58px;
}
@media screen and (min-width: 992px) {
  .effect-section--center .effect-section__heading {
    margin-bottom: 82px;
  }
}
@media screen and (min-width: 992px) {
  .effect-section--center .effect-section__heading::after {
    width: 827px;
  }
}

.effect__content {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .effect__content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
  }
}

.effect__img-wrapper {
  width: 91.975308642%;
  max-width: 298px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .effect__img-wrapper {
    width: 43.0320150659%;
    max-width: 457px;
    margin-right: 4.7080979284%;
    margin-left: 0;
  }
}

.effect__arrow-wrapper {
  width: 21.6049382716%;
  max-width: 70px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 29px;
}
@media screen and (min-width: 992px) {
  .effect__arrow-wrapper {
    width: 6.5913370998%;
    max-width: 70px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    transform: rotate(-90deg);
  }
}

.effect__text-wrapper {
  width: 80.5555555556%;
  max-width: 261px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .effect__text-wrapper {
    width: 36.252354049%;
    max-width: 385px;
    margin-right: 0;
    margin-left: 3.2015065913%;
    align-self: flex-start;
    margin-top: 30px;
  }
}

@media screen and (min-width: 992px) {
  .effect__text-content {
    display: flex;
    align-items: center;
  }
}

.effect-section__sub-heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
  padding: 8px 12px;
  border: 1px solid #202020;
  text-align: left;
  margin-bottom: 10px;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .effect-section__sub-heading {
    font-size: 3rem;
    line-height: 1.4666666667;
    padding: 8px 9px 9px;
    margin-bottom: 0;
    margin-right: 4.143126177%;
    flex-basis: 190px;
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .effect-section--center {
    margin-bottom: 143px;
  }
}
.effect-section--center .effect-section__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  text-align: left;
}
.effect-section--center .effect-section__text {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .effect-section--center .effect-section__text {
    flex: 1 1 0;
    font-size: 1.8rem;
    line-height: 1.4444444444;
    font-weight: 500;
  }
}

.effect-section--bottom {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .effect-section--bottom {
    margin-bottom: 60px;
  }
}
.effect-section--bottom .effect-section__inner {
  padding: 0;
}
.effect-section--bottom .effect-section__inner::after {
  content: none;
}
.effect-section--bottom .effect-section__heading {
  color: #222222;
  font-size: 2rem;
  line-height: 1.45;
  padding: 16px 5px 15px;
  border-bottom: 8px solid #ffd633;
  margin-bottom: 32px;
}
@media screen and (min-width: 992px) {
  .effect-section--bottom .effect-section__heading {
    font-size: 4.6rem;
    line-height: 1.4347826087;
    padding: 26px 24px 24px;
    margin-bottom: 60px;
    width: 88.0912162162%;
    max-width: 1043px;
    margin-right: auto;
    margin-left: auto;
    border: 8px solid #ffd633;
    margin-top: -66px;
    position: relative;
    z-index: 3;
    background: #ffffff;
  }
}
.effect-section--bottom .effect-section__heading::after {
  content: none;
}

.effect__lists02 {
  padding: 0 52px 40px;
  margin-right: 0;
  margin-left: 0;
}
.effect__lists02 > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .effect__lists02 {
    padding: 0 78px 62px;
    display: flex;
    justify-content: center;
    margin-right: -12px;
    margin-left: -12px;
  }
}

.effect-list02 {
  margin-bottom: 38px;
}
@media screen and (min-width: 992px) {
  .effect-list02 {
    margin-bottom: 0;
    width: 50%;
    max-width: 510px;
    margin-right: 12px;
    margin-left: 12px;
  }
}

.effect-list__heading02 {
  background: #ffd633;
  width: 297px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 8px 10px 10px;
  text-align: center;
  color: #222222;
}
@media screen and (min-width: 992px) {
  .effect-list__heading02 {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    font-size: 3rem;
    line-height: 1.4666666667;
    margin-bottom: 40px;
    padding: 15px;
  }
}

.effect-list__img-wrapper {
  width: 103.9285714286%;
  max-width: 291px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .effect-list__img-wrapper {
    width: 94.1176470588%;
    max-width: 480px;
  }
}

.effect__note {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .effect__note {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}

.scene {
  margin-top: 60px;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .scene {
    margin-top: 160px;
    margin-bottom: 160px;
  }
}

.scene__heading {
  font-size: 2.6rem;
  line-height: 1.4230769231;
  font-weight: bold;
  margin-bottom: 31px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .scene__heading {
    font-size: 5rem;
    line-height: 1.44;
    margin-bottom: 62px;
  }
}

.scene__inner > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .scene__inner {
    display: flex;
    justify-content: center;
  }
}

.scene-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
  border: 2px solid #ffd633;
  margin-bottom: 20px;
}
@media screen and (min-width: 400px) {
  .scene-section {
    padding: 40px 32px;
  }
}
@media screen and (min-width: 992px) {
  .scene-section {
    width: 32%;
    max-width: 384px;
    margin-right: 2%;
    padding: 50px 12px 30px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .scene-section {
    padding: 50px 40px 30px;
  }
}

@media screen and (min-width: 992px) {
  .scene-section:last-child {
    margin-right: 0;
  }
}

.scene-section__img-wrapper {
  width: 37.8378378378%;
  max-width: 112px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .scene-section__img-wrapper {
    width: 45.3333333333%;
    max-width: 136px;
    margin-bottom: 24px;
  }
}

.scene-section__heading {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .scene-section__heading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .scene-section__heading {
    margin-bottom: 30px;
  }
}

.scene-section__sub-heading {
  font-size: 1.7rem;
  line-height: 1.4444444444;
  color: #222222;
  background: #ffd633;
  padding: 7px 10px;
  margin-right: 10px;
  font-weight: bold;
  display: inline-block;
}
@media screen and (min-width: 375px) {
  .scene-section__sub-heading {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .scene-section__sub-heading {
    padding: 8px 10px 8px;
  }
}

.scene-section__text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 992px) {
  .scene-section__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.gallery {
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .gallery {
    margin-bottom: 160px;
  }
}

.gallery__heading {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .gallery__heading {
    font-size: 4rem;
    line-height: 1.45;
    margin-bottom: 61px;
  }
}

.gallery__inner {
  display: flex;
  pointer-events: none;
}

.gallery__img-wrapper {
  width: 29.75%;
  margin-right: 5px;
  margin-left: 5px;
}
@media screen and (min-width: 992px) {
  .gallery__img-wrapper {
    width: 27.4285714286%;
    margin-right: 12px;
    margin-left: 12px;
  }
}

/*===============================
 事業紹介ページ
 ===============================*/
.service {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .service {
    margin-bottom: 160px;
  }
}
.service .section__heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .service .section__heading {
    margin-bottom: 40px;
  }
}

.service-page__lead {
  margin-top: 0;
}

.service-page__section {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .service-page__section {
    margin-bottom: 120px;
  }
}
.service-page__section .page-section__heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .service-page__section .page-section__heading {
    margin-bottom: 60px;
  }
}

.service-page__section--process {
  margin-bottom: 0;
}

.service-page__items > *:last-child {
  margin-bottom: 0;
}

.service-page__item {
  margin-bottom: 48px;
}
@media screen and (min-width: 992px) {
  .service-page__item {
    margin-bottom: 72px;
  }
}

.service-page__item-heading {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 500;
  color: #222222;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-top: none;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (min-width: 992px) {
  .service-page__item-heading {
    font-size: 2.6rem;
    line-height: 1.4230769231;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
}

.service-page__item-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 992px) {
  .service-page__item-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

@media screen and (min-width: 992px) {
  .service-page__item-body {
    flex: 0 0 56.6265060241%;
    max-width: 564px;
  }
}

.service-page__item-text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #222222;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .service-page__item-text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.service-page__item-list-label {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
  color: #222222;
  margin-top: 16px;
  margin-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .service-page__item-list-label {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.service-page__item-list {
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .service-page__item-list {
    margin-top: 20px;
  }
}
.service-page__item-list-label + .service-page__item-list {
  margin-top: 0;
}

.service-page__item-list-item {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #222222;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 992px) {
  .service-page__item-list-item {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.service-page__item-list-item::before {
  content: "・";
}

.service-page__item-figure {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .service-page__item-figure {
    flex: 1;
    min-width: 0;
  }
}

.service-page__item-img {
  display: block;
  width: 100%;
  height: auto;
}

.service-page__process-lead {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: #222222;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .service-page__process-lead {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 60px;
  }
}

.service-process {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
}

.service-process__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  margin-bottom: 36px;
  border: 1px solid #ffd633;
  background: #ffffff;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .service-process__item {
    min-height: 72px;
    padding: 20px 32px;
    margin-bottom: 44px;
  }
}
.service-process__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #ffd633;
}
@media screen and (min-width: 992px) {
  .service-process__item::after {
    bottom: -32px;
    border-left-width: 12px;
    border-right-width: 12px;
    border-top-width: 16px;
  }
}
.service-process__item:last-child {
  margin-bottom: 0;
}
.service-process__item:last-child::after {
  content: none;
}

.service-process__item--last {
  background: #ffd633;
  border-color: #ffd633;
}

.service-process__text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
  color: #222222;
}
@media screen and (min-width: 992px) {
  .service-process__text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

/*===============================
 採用情報
 ===============================*/
.page {
  margin-top: 130px;
}
@media screen and (min-width: 992px) {
  .page {
    margin-top: 166px;
  }
}
.page .section__heading {
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .page .section__heading {
    font-size: 6.6rem;
    line-height: 1.4545454545;
  }
}
@media screen and (min-width: 992px) {
  .page .contact-area {
    margin-bottom: 160px;
  }
}
@media screen and (min-width: 992px) {
  .page .contact-area__inner {
    max-width: 996px;
  }
}
@media screen and (min-width: 992px) {
  .page .contact-area__time {
    margin-bottom: 30px;
  }
}

.recruit .section__heading {
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .recruit .section__heading {
    margin-bottom: 80px;
  }
}

.page-section__heading {
  position: relative;
  padding-left: 30px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 500;
  margin-bottom: 41px;
}
@media screen and (min-width: 992px) {
  .page-section__heading {
    padding-left: 40px;
    font-size: 2.6rem;
    line-height: 1.4230769231;
    margin-bottom: 61px;
  }
}

.page-section__heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: #ffd633;
}
@media screen and (min-width: 992px) {
  .page-section__heading::after {
    width: 20px;
    height: 20px;
  }
}

.page-section-conetnt__heading {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 11px;
  border-bottom: 1px solid #222222;
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .page-section-conetnt__heading {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    padding-bottom: 9px;
    margin-bottom: 40px;
  }
}

.page-section-conetnt__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .page-section-conetnt__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.recruit__lists > *:last-child {
  margin-bottom: 0;
}

.recruit__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .recruit__list {
    margin-bottom: 20px;
    display: flex;
  }
}

.recruit__term {
  width: 100%;
  padding: 13px 18px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  background: #f9f9f9;
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .recruit__term {
    padding: 25px 40px 26px;
    font-size: 1.8rem;
    line-height: 1.4444444444;
    margin-bottom: 0;
    width: 23.3333333333%;
    margin-right: 2.5%;
  }
}

.recruit__description {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  padding-right: 18px;
  padding-left: 18px;
}
@media screen and (min-width: 992px) {
  .recruit__description {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-right: 0;
    padding-left: 0;
    flex: 1 1 0;
    align-self: center;
    max-width: 612px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.recruit__description > *:last-child {
  margin-bottom: 0;
}

.recruit__text {
  margin-bottom: 20px;
}

/*===============================
 お問い合わせ
 ===============================*/
.contact {
  word-break: break-all;
}
.contact .page-section__heading {
  margin-bottom: 60px;
}
.contact .sns__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .contact .sns__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) and (-ms-high-contrast: none) {
  .contact .sns__inner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
.contact .sns {
  margin-top: 60px;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .contact .sns {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 160px;
  }
}
.contact .sns__section {
  padding: 40px 12px;
  max-width: 996px;
}
@media screen and (min-width: 375px) {
  .contact .sns__section {
    padding: 40px 35px;
  }
}
@media screen and (min-width: 992px) {
  .contact .sns__section {
    width: 100%;
    padding: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact .sns__heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .contact .sns__heading {
    margin-bottom: 16px;
  }
}
.contact .sns__text {
  margin-bottom: 40px;
}

.section__heading.mb_sp20 {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .section__heading.mb_sp20 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .section__heading.mb_pc40 {
    margin-bottom: 40px;
  }
}

.section__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .section__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 100px;
  }
}

.section__text.mb_10 {
  margin-bottom: 10px;
}

.contact-table {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .contact-table {
    margin-bottom: 100px;
  }
}

.contact-table-row {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .contact-table-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 992px) {
  .contact-table-row:last-of-type {
    margin-bottom: 0;
  }
}
.contact-table-row:last-of-type .contact-table-data {
  margin-bottom: 0;
}

.contact-table-head {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 24px;
  font-weight: bold;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .contact-table-head {
    width: 28.2128514056%;
    max-width: 281px;
    margin-right: 2.5100401606%;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
  }
}

.contact-table-data {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .contact-table-data {
    margin-bottom: 0;
    flex: 1 1 0;
    max-width: 690px;
  }
}

.contact-data-input {
  border: 1px solid #707070;
  padding: 21px 18px 19px;
  outline: none;
  width: 100%;
  max-width: 100%;
  color: #222222;
  background: #ffffff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  border-radius: 0;
}
@media screen and (min-width: 992px) {
  .contact-data-input {
    padding: 18px 30px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .contact-content {
    align-self: flex-start;
  }
}

.contact-btn-area {
  display: flex;
  flex-direction: column;
}
.contact-btn-area .btn__wrapper {
  margin-bottom: 18px;
}
@media screen and (min-width: 992px) {
  .contact-btn-area .btn__wrapper {
    margin-bottom: 22px;
  }
}

.tag {
  display: inline-block;
  font-size: 1.4rem;
  color: #222222;
  font-weight: bold;
  background: #ffd633;
  padding: 4px 10px;
}
@media screen and (min-width: 992px) {
  .tag {
    font-size: 1.8rem;
    padding: 7px 0 9px;
    width: 78px;
    max-width: 100%;
    text-align: center;
  }
}

.textarea {
  border: 1px solid #707070;
  padding: 20px 18px;
  outline: none;
  width: 100%;
  color: #222222;
  background: #ffffff;
  height: 220px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  border-radius: 0;
}
@media screen and (min-width: 992px) {
  .textarea {
    padding: 18px 30px;
    font-size: 1.6rem;
    line-height: 1.5;
    height: 260px;
  }
}

::placeholder {
  color: #b6b6b6;
}

.contact-btn-area {
  display: flex;
  flex-direction: column;
}
.contact-btn-area > *:last-child {
  margin-bottom: 0;
}

input[type=submit] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.mw_wp_form_confirm .contact-table-data {
  background: #f1f1f1;
  min-height: 64px;
  padding: 21px 18px 19px;
}
@media screen and (min-width: 992px) {
  .mw_wp_form_confirm .contact-table-data {
    padding: 18px 30px;
    min-height: 60px;
  }
}
.mw_wp_form_confirm .btn__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mw_wp_form_confirm .btn {
  margin-bottom: 18px;
}
@media screen and (min-width: 992px) {
  .mw_wp_form_confirm .btn {
    margin-bottom: 20px;
  }
}

.mw_wp_form_complete .complete-text {
  margin-bottom: 1em;
}
.mw_wp_form_complete .no-reply {
  margin-bottom: 0.625em;
}
.mw_wp_form_complete .no-mail {
  padding-left: 1em;
}
.mw_wp_form_complete .no-mail li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
}

.mw_wp_form_send_error {
  text-align: center;
}

/*===============================
 施工事例
 ===============================*/
.works__section {
  margin-bottom: 80px;
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (min-width: 992px) {
  .works__section {
    margin-top: -160px;
    padding-top: 160px;
    margin-bottom: 160px;
  }
}

.works-header {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .works-header {
    margin-bottom: 42px;
  }
}

.works-header__inner {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}
@media screen and (min-width: 992px) {
  .works-header__inner {
    margin-bottom: 0;
  }
}

.works-number {
  font-size: 3.6rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Arial", "メイリオ", sans-serif;
  border-right: 4px solid #ffd633;
  padding-right: 10px;
  margin-right: 26px;
}
@media screen and (min-width: 992px) {
  .works-number {
    font-size: 6.2rem;
    line-height: 1.1451612903;
    border-right: 5px solid #ffd633;
    padding-right: 20px;
    margin-right: 20px;
  }
}

.works__heading {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4444444444;
}
@media screen and (min-width: 992px) {
  .works__heading {
    font-size: 3rem;
    line-height: 1.4666666667;
    margin-bottom: 14px;
  }
}

.works__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .works__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .works-media {
    display: flex;
  }
}

.works__img {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .works__img {
    width: 43.9759036145%;
    max-width: 438px;
    margin-right: 7.2289156627%;
    margin-bottom: 0;
  }
}

.works-slider {
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .works-slider {
    margin-bottom: 20px;
  }
}

.works-thumbnail {
  display: flex;
  margin-right: -6.5px;
  margin-left: -6.5px;
}
@media screen and (min-width: 992px) {
  .works-thumbnail {
    margin-right: -5px;
    margin-left: -5px;
  }
}

.slick-slide {
  outline: none;
}

.works-thumbnail__list {
  width: 22.2222222222%;
  margin-right: 6.5px;
  margin-left: 6.5px;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .works-thumbnail__list {
    width: 23.2876712329%;
    margin-right: 5px;
    margin-left: 5px;
  }
}

@media screen and (min-width: 992px) {
  .works__body {
    flex: 1 1 0;
  }
}

.works-media__heading {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: bold;
  color: #222222;
  margin-bottom: 17px;
}
@media screen and (min-width: 992px) {
  .works-media__heading {
    font-size: 2.2rem;
    line-height: 1.0909090909;
    margin-bottom: 21px;
  }
}

.works-media__text-wrapper {
  margin-bottom: 30px;
}
.works-media__text-wrapper > *:last-child {
  margin-bottom: 0;
}

.works-media__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .works-media__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }
}

.profile .works-media__text-wrapper {
  margin-bottom: 0;
}

.works-media__inner {
  width: 100%;
  height: auto;
  background: #fdf7f1;
  border-radius: 20px;
  padding: 30px 18px;
}
@media screen and (min-width: 992px) {
  .works-media__inner {
    padding: 36px 28px 40px;
  }
}

.works-media__profile {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
@media screen and (min-width: 992px) {
  .works-media__profile {
    margin-bottom: 20px;
  }
}

.profile__img-wrapper {
  flex-basis: 49px;
  margin-right: 3.0864197531%;
}
@media screen and (min-width: 992px) {
  .profile__img-wrapper {
    flex-basis: 67px;
    margin-right: 3.4104750305%;
  }
}

.profile__name {
  display: flex;
  flex-direction: column;
}

.profile__company-name {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: bold;
  margin-bottom: 9px;
}
@media screen and (min-width: 992px) {
  .profile__company-name {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 10px;
  }
}

.profile__staff-name {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .profile__staff-name {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}

.works-slider {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.works-slider.slick-initialized {
  opacity: 1;
}

.works-thumbnail {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.works-thumbnail.slick-initialized {
  opacity: 1;
}

/*===============================
 お知らせ
 ===============================*/
.info__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.info__wrapper .footer {
  margin-top: auto;
}

.info {
  margin-bottom: 74px;
}
@media screen and (min-width: 992px) {
  .info {
    margin-bottom: 160px;
  }
}
.info .label {
  width: auto;
}
@media screen and (min-width: 992px) {
  .info .label {
    width: 86px;
  }
}

.section__heading.mb_sp80 {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .section__heading.mb_sp80 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .section__heading.mb_pc100 {
    margin-bottom: 100px;
  }
}

.vertical-posts {
  border-top: 1px solid #222222;
}

.vertical-posts__item {
  padding: 16px 0 17px;
  border-bottom: 1px solid #222222;
}
@media screen and (min-width: 992px) {
  .vertical-posts__item {
    padding: 40px 0 41px;
    display: flex;
  }
}

.vertical-posts__header {
  display: flex;
  margin-bottom: 12px;
}
@media screen and (min-width: 992px) {
  .vertical-posts__header {
    margin-bottom: 0;
    flex-basis: 196px;
    margin-right: 6.0240963855%;
  }
}

.vertical-posts__date {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  font-family: "Arial", "メイリオ", sans-serif;
  margin-right: 13px;
}
@media screen and (min-width: 992px) {
  .vertical-posts__date {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    margin-right: 20px;
  }
}

.vertical-posts__title {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  text-decoration: underline;
}
@media screen and (min-width: 992px) {
  .vertical-posts__title {
    font-size: 1.6rem;
    line-height: 1.5;
    flex: 1 1 0;
  }
}

.vertical-posts__title:hover {
  text-decoration: none;
}

/* pager */
.pages {
  display: none;
}

.pager {
  margin-top: 80px;
  padding-right: 22px;
  padding-left: 22px;
}
@media screen and (min-width: 992px) {
  .pager {
    margin-top: 160px;
  }
}

.wp-pagenavi {
  display: flex;
  margin-right: -10px;
  margin-left: -10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
@media screen and (min-width: 992px) {
  .wp-pagenavi {
    margin-right: -9px;
    margin-left: -9px;
    margin-bottom: -18px;
  }
}

a.page {
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #222222;
  background: #ffffff;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 1.125;
  border: 1px solid #bbbbbb;
}
@media screen and (min-width: 992px) {
  a.page {
    margin-right: 9px;
    margin-left: 9px;
    margin-bottom: 18px;
    font-size: 1.8rem;
    width: 41px;
    height: 41px;
    letter-spacing: 1.1666666667;
  }
}

.previouspostslink {
  padding: 7.5px 7.6px;
  margin-right: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: transparent;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  position: relative;
}
@media screen and (min-width: 992px) {
  .previouspostslink {
    padding: 11.5px 12px;
    margin-right: 9px;
    margin-bottom: 18px;
    width: 41px;
    height: 41px;
  }
}
.previouspostslink::before {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  background: url(../images/info/icon_arrow-double-left.svg) center center/contain no-repeat transparent;
  width: 12px;
  height: 13px;
}
@media screen and (min-width: 992px) {
  .previouspostslink::before {
    width: 17px;
    height: 18px;
  }
}

.nextpostslink {
  padding: 7.5px 7.6px;
  margin-left: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: transparent;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  position: relative;
}
@media screen and (min-width: 992px) {
  .nextpostslink {
    padding: 11.5px 12px;
    margin-left: 9px;
    margin-bottom: 18px;
    width: 41px;
    height: 41px;
    letter-spacing: 1.1666666667;
  }
}
.nextpostslink::before {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  background: url(../images/info/icon_arrow-double.svg) center center/contain no-repeat transparent;
  width: 12px;
  height: 13px;
}
@media screen and (min-width: 992px) {
  .nextpostslink::before {
    width: 17px;
    height: 18px;
  }
}

.current {
  background: #ffd633;
  color: #222222;
  pointer-events: none;
  border: 1px solid #ffd633;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 1.125;
}
@media screen and (min-width: 992px) {
  .current {
    margin-right: 9px;
    margin-left: 9px;
    margin-bottom: 18px;
    font-size: 1.8rem;
    width: 41px;
    height: 41px;
    letter-spacing: 1.1666666667;
  }
}

.extend {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 992px) {
  .extend {
    margin-right: 9px;
    width: 41px;
    height: 41px;
  }
}

/*===============================
 お知らせ詳細
 ===============================*/
.info-detail__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.info-detail__wrapper .footer {
  margin-top: auto;
}

.info-detail {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .info-detail {
    margin-bottom: 160px;
  }
}
.info-detail .vertical-posts__header {
  margin-bottom: 13px;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .info-detail .vertical-posts__header {
    margin-bottom: 40px;
  }
}
.info-detail .label__wrapper {
  margin-right: 17px;
}
@media screen and (min-width: 992px) {
  .info-detail .label__wrapper {
    margin-right: 20px;
  }
}
.info-detail .label {
  padding: 6px 8px 8px;
  width: 94px;
}
@media screen and (min-width: 992px) {
  .info-detail .label {
    padding: 6px 7px 7px;
    width: 140px;
  }
}
.info-detail .label__inner {
  font-size: 1.2rem;
  line-height: 1.1666666667;
}
@media screen and (min-width: 992px) {
  .info-detail .label__inner {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.info-detail .vertical-posts__date {
  line-height: 1.125;
  font-weight: normal;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .info-detail .vertical-posts__date {
    font-size: 2rem;
    line-height: 1.15;
  }
}
.info-detail h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .info-detail h1 {
    font-size: 2.6rem;
    line-height: 1.4615384615;
    margin-bottom: 75px;
  }
}
.info-detail p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 65px;
}
@media screen and (min-width: 992px) {
  .info-detail p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 143px;
  }
}
.info-detail h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .info-detail h2 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 28px;
  }
}
.info-detail h3 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4285714286;
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .info-detail h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 70px;
  }
}

.article__inner {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .article__inner {
    margin-bottom: 100px;
  }
}

.article__body > *:last-child {
  margin-bottom: 0;
}
.article__body ul {
  list-style: none;
  margin-bottom: 65px;
}
.article__body ul > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .article__body ul {
    margin-bottom: 49px;
  }
}
.article__body ul li {
  background: url(../images/info-detail/icon_square.svg) no-repeat left 0.55em;
  background-size: 3.5px 3.5px;
  padding-left: 15.5px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-bottom: 14px;
}
@media screen and (min-width: 992px) {
  .article__body ul li {
    background: url(../images/info-detail/icon_square.svg) no-repeat left 0.65em;
    padding-left: 12.5px;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}
.article__body ol {
  counter-reset: li;
  margin-bottom: 65px;
}
.article__body ol > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .article__body ol {
    margin-bottom: 49px;
  }
}
.article__body ol li {
  position: relative;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-bottom: 14px;
  padding-left: 17px;
}
@media screen and (min-width: 992px) {
  .article__body ol li {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 18px;
    padding-left: 14px;
  }
}
.article__body ol li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  font-family: "Arial", "メイリオ", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1666666667;
  counter-increment: li;
  content: counter(li) ".";
}
@media screen and (min-width: 992px) {
  .article__body ol li::before {
    font-size: 1.4rem;
    line-height: 1.1428571429;
    top: 0.4em;
  }
}

/*===============================
 よくあるご質問
 ===============================*/
.faq .page-section__heading {
  margin-bottom: 60px;
}

.faq__section {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .faq__section {
    margin-bottom: 160px;
  }
}

.faq-accordion > *:last-child {
  margin-bottom: 0;
}

.faq-accordion__item {
  margin-bottom: 20px;
}

.question {
  background: #f9f9f9;
  display: flex;
  padding: 14px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .question {
    padding: 24px 16px;
  }
}

.question::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/faq/icon_plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 13px;
}
@media screen and (min-width: 992px) {
  .question::after {
    width: 18px;
    height: 18px;
    top: 30px;
    right: 20px;
  }
}

.question.is-active::after {
  background-image: url(../images/faq/icon_minus.svg);
}

.head {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Jura", sans-serif;
  color: #222222;
  margin-right: 9px;
  line-height: 2.0625;
  flex-basis: 26px;
  height: 26px;
  border-radius: 2em;
  background: #ffd633;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .head {
    font-size: 2.2rem;
    margin-right: 24px;
    line-height: 1.5;
    flex-basis: 38px;
    height: 38px;
  }
}

.text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
  padding-right: 10.843373494%;
  flex: 1 1 0;
}
@media screen and (min-width: 992px) {
  .text {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    font-weight: bold;
    padding-right: 5.8441558442%;
  }
}

.answer {
  padding: 0 0 0 14px;
  height: 0;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
  display: flex;
}
@media screen and (min-width: 992px) {
  .answer {
    padding: 0 27px 0 16px;
  }
}
.answer .head {
  background: #222222;
}

.answer__text {
  font-size: 1.3rem;
  line-height: 1.8461538462;
  flex: 1 1 0;
}
@media screen and (min-width: 992px) {
  .answer__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.answer.is-open {
  padding: 10px 0 0 14px;
  height: auto;
  line-height: normal;
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .answer.is-open {
    padding: 23px 27px 0 16px;
  }
}

/*===============================
 プライバシーポリシー
 ===============================*/
.privacy {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .privacy {
    margin-bottom: 160px;
  }
}
.privacy .page-section__heading {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .privacy .page-section__heading {
    margin-bottom: 21px;
  }
}
.privacy .page-section__heading {
  font-size: 1.7rem;
}
@media screen and (min-width: 400px) {
  .privacy .page-section__heading {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .privacy .page-section__heading {
    font-size: 2.6rem;
  }
}

.page-section__heading.top_sp26::after {
  top: 26%;
}
@media screen and (min-width: 375px) {
  .page-section__heading.top_sp26::after {
    top: 50%;
  }
}

.privacy-section {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .privacy-section {
    margin-bottom: 60px;
  }
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 992px) {
  .privacy__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.privacy-section__lists {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .privacy-section__lists {
    margin-bottom: 10px;
    padding-left: 20px;
  }
}

.privacy-section__list {
  background: url(../images/privacy/icon_circle.svg) no-repeat left 0.75em;
  background-size: 4px 4px;
  padding-left: 12px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .privacy-section__list {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.privacy-section__list:last-child {
  margin-bottom: 0;
}

.privacy__link {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .privacy__link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.privacy__link:hover {
  text-decoration: none;
}

.privacy-contact__lists {
  padding-left: 24px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 992px) {
  .privacy-contact__lists {
    padding-left: 30px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/*===============================
 404
 ===============================*/
.error-404__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.error-404__wrapper .footer {
  margin-top: auto;
}

.error-404 {
  margin-bottom: 228px;
}
@media screen and (min-width: 992px) {
  .error-404 {
    margin-bottom: 150px;
  }
}

.error-404__heading {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  margin-bottom: 21px;
}
@media screen and (min-width: 992px) {
  .error-404__heading {
    font-size: 2.8rem;
    line-height: 1.4285714286;
  }
}

.error-404__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 100px;
}
@media screen and (min-width: 992px) {
  .error-404__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 120px;
  }
}

@media screen and (min-width: 992px) {
  .section__heading.mb_pc30 {
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
