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

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

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

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

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
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-btn */
.l-btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-btn {
    margin-top: 1.875rem;
  }
}

/* l-cards */
.l-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px 20px;
  gap: 1.0625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
  }
}

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

/* l-page */
.l-page {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    margin-top: 3.75rem;
  }
}

/* l-section */
.l-section {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

/* breadcrumb */
.breadcrumb {
  padding: 3px 28px;
  padding: 0.1875rem 1.75rem;
  background: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.3125rem 1.25rem;
  }
}

.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 24px;
  margin-left: 1.5rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background: #F88378;
  top: 11px;
  top: 0.6875rem;
  left: -16px;
  left: -1rem;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-family: "Montserrat", heisei-kaku-gothic-std, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  text-align: center;
  display: block;
  width: 160px;
  width: 10rem;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #000;
  padding: 15px;
  padding: 0.9375rem;
}

/* bubble */
.bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.circle_container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  height: 0.625rem;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.circle {
  position: absolute;
  border-radius: 100%;
  background: #FDC8C8;
  left: 0;
  opacity: 0;
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0;
    background: rgba(253, 200, 200, 0);
  }
  20% {
    opacity: 1;
    background: rgb(253, 200, 200);
  }
  50% {
    opacity: 0.5;
    background: rgb(253, 200, 200); /* 半透明に */
  }
  100% {
    -webkit-transform: translateX(70vmin);
            transform: translateX(70vmin);
    opacity: 0;
    background: rgba(253, 200, 200, 0); /* 完全に薄く */
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0;
    background: rgba(253, 200, 200, 0);
  }
  20% {
    opacity: 1;
    background: rgb(253, 200, 200);
  }
  50% {
    opacity: 0.5;
    background: rgb(253, 200, 200); /* 半透明に */
  }
  100% {
    -webkit-transform: translateX(70vmin);
            transform: translateX(70vmin);
    opacity: 0;
    background: rgba(253, 200, 200, 0); /* 完全に薄く */
  }
}
/* card */
.card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFF8F6;
  height: 100%;
}

.card__img {
  position: relative;
}

.card__subtitle {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  bottom: 1.25rem;
  z-index: 1;
  width: 90%;
}
.card__subtitle span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 5px;
  padding: 0 0.3125rem;
  position: relative;
}
.card__subtitle span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.card__subtitle span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #F88378;
  bottom: -5px;
  bottom: -0.3125rem;
  right: -5px;
  right: -0.3125rem;
  z-index: -2;
}

.card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 25px 23px 23px;
  padding: 1.25rem 1.5625rem 1.4375rem 1.4375rem;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding: 1rem 1rem 1.25rem;
  }
}

.card__header {
  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;
}

.tag.card__tag span {
  background: none;
}
@media screen and (max-width: 767px) {
  .tag.card__tag span {
    font-size: 0.75rem;
  }
}

.card__date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F88378;
}

.card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 10px;
  gap: 0.5rem 0.625rem;
  margin-top: auto;
}
.card__tag span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
.card__tag span.current {
  color: #F88378;
  font-weight: 700;
}

/* category */
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 60px;
  gap: 0 3.75rem;
  border-top: 1px solid #000;
  border-top: 0.0625rem solid #000;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
}
@media screen and (max-width: 767px) {
  .category {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.25rem;
    padding: 0.625rem 0;
  }
}
.category a, .category span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .category a, .category span {
    font-size: 1rem;
    padding: 0.3125rem 0;
  }
}
.category span, .category .current {
  position: relative;
}
.category span::after, .category .current::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  height: 0.25rem;
  background: #000;
}
@media screen and (max-width: 767px) {
  .category span::after, .category .current::after {
    height: 0.125rem;
    bottom: 0.3125rem;
  }
}

/* cv */
.cv {
  text-align: center;
  background: url(../img/common/cv-bg_pc.jpg) no-repeat center/cover;
  padding: 75px 0 80px;
  padding: 4.6875rem 0 5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .cv {
    background: url(../img/common/cv-bg_sp.jpg) no-repeat center/cover;
    padding: 2.5rem 0;
  }
  .cv .l-inner {
    padding: 0 0.625rem;
  }
}

.cv__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .cv__title {
    font-size: 1.5rem;
  }
}

.cv__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 1.5625rem;
  }
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .cv__btns {
    display: block;
    margin-top: 1.5625rem;
  }
}
.cv__btns .cv__btn {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cv__btns .cv__btn {
    margin: 0 auto;
  }
  .cv__btns .cv__btn:nth-child(2) {
    margin-top: 0.625rem;
  }
}

.cv__btn {
  text-align: center;
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #000;
  padding: 22px;
  padding: 1.375rem;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    margin-top: 1.5625rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 240px;
  width: 15rem;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .05);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .05);
  padding: 100px 0 100px 50px;
  padding: 6.25rem 0 6.25rem 3.125rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item + .drawer__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}
.drawer__item:first-child a {
  background: url(../img/common/gnav-icon01.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon01.png) no-repeat center left/0.9375rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.drawer__item:nth-child(2) span {
  background: url(../img/common/gnav-icon02.png) no-repeat center left/20px;
  background: url(../img/common/gnav-icon02.png) no-repeat center left/1.25rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}
.drawer__item:nth-child(3) a {
  background: url(../img/common/gnav-icon03.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon03.png) no-repeat center left/0.9375rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
.drawer__item:nth-child(4) a {
  background: url(../img/common/gnav-icon04.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon04.png) no-repeat center left/0.9375rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
.drawer__item:nth-child(5) a {
  background: url(../img/common/gnav-icon05.png) no-repeat center left/25px;
  background: url(../img/common/gnav-icon05.png) no-repeat center left/1.5625rem;
  padding-left: 31px;
  padding-left: 1.9375rem;
}
.drawer__item:nth-child(6) a {
  background: url(../img/common/gnav-icon06.png) no-repeat center left/24px;
  background: url(../img/common/gnav-icon06.png) no-repeat center left/1.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
.drawer__item:nth-child(7) a {
  background: url(../img/common/gnav-icon07.png) no-repeat center left/20px;
  background: url(../img/common/gnav-icon07.png) no-repeat center left/1.25rem;
  padding-left: 27px;
  padding-left: 1.6875rem;
}
.drawer__item a, .drawer__item span {
  display: inline-block;
  font-family: "Montserrat", heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
.drawer__item span {
  padding-right: 15px;
  padding-right: 0.9375rem;
  position: relative;
}
.drawer__item span::after {
  position: absolute;
  content: "";
  width: 9px;
  width: 0.5625rem;
  height: 6px;
  height: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
}

.drawer__subitems {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.drawer__subitem a {
  display: inline-block;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}

/* entitle */
.entitle {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* floating */
.js-floating {
  display: none;
}

.floating {
  position: fixed;
  right: 10px;
  right: 0.625rem;
  bottom: 100px;
  bottom: 6.25rem;
  z-index: 10;
}

.floating__close {
  position: absolute;
  right: -5px;
  right: -0.3125rem;
  top: -5px;
  top: -0.3125rem;
  display: block;
  width: 24px;
  width: 1.5rem;
}
.floating__close:hover {
  opacity: 1;
}

.floating__inner {
  text-align: center;
  display: block;
  width: 190px;
  width: 11.875rem;
  max-width: 100%;
}
.floating__inner:hover {
  opacity: 1;
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    display: block;
  }
}

.fnav__item + .fnav__item {
  margin-left: 50px;
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .fnav__item + .fnav__item {
    margin-left: 0;
    margin-top: 1.5625rem;
  }
}
.fnav__item > a, .fnav__item > span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #F88378;
}

.fnav__subitems {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.fnav__subitem + .fnav__subitem {
  margin-top: 7px;
  margin-top: 0.4375rem;
}
.fnav__subitem a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  line-height: 2;
  padding-left: 1.3em;
  position: relative;
}
.fnav__subitem a::before {
  position: absolute;
  content: "─";
  top: 0;
  left: 0;
}

/* footer */
.footer {
  background: #000;
  padding: 60px 0 70px;
  padding: 3.75rem 0 4.375rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 3.4375rem 0 1.5625rem;
  }
  .footer .l-inner {
    padding: 0 3.4375rem;
  }
}

.footer__copyright {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  color: #F88378;
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    margin-top: 3.75rem;
  }
}

/* gnav */
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}
.gnav__item + .gnav__item {
  margin-left: 50px;
  margin-left: 3.125rem;
}
@media screen and (max-width: 1200px) {
  .gnav__item + .gnav__item {
    margin-left: 2.5rem;
  }
}
.gnav__item:first-child a {
  background: url(../img/common/gnav-icon01.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon01.png) no-repeat center left/0.9375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.gnav__item:nth-child(2) span {
  background: url(../img/common/gnav-icon02.png) no-repeat center left/20px;
  background: url(../img/common/gnav-icon02.png) no-repeat center left/1.25rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
.gnav__item:nth-child(3) a {
  background: url(../img/common/gnav-icon03.png) no-repeat center left/15px;
  background: url(../img/common/gnav-icon03.png) no-repeat center left/0.9375rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
}
.gnav__item:nth-child(4) a {
  background: url(../img/common/gnav-icon04.png) no-repeat center left/22px;
  background: url(../img/common/gnav-icon04.png) no-repeat center left/1.375rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
.gnav__item:nth-child(5) a {
  background: url(../img/common/gnav-icon05.png) no-repeat center left/25px;
  background: url(../img/common/gnav-icon05.png) no-repeat center left/1.5625rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
.gnav__item:nth-child(6) a {
  background: url(../img/common/gnav-icon06.png) no-repeat center left/24px;
  background: url(../img/common/gnav-icon06.png) no-repeat center left/1.5rem;
  padding-left: 29px;
  padding-left: 1.8125rem;
}
.gnav__item:nth-child(7) a {
  background: url(../img/common/gnav-icon07.png) no-repeat center left/20px;
  background: url(../img/common/gnav-icon07.png) no-repeat center left/1.25rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}
.gnav__item a, .gnav__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-family: "Montserrat", heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
.gnav__item span {
  padding-right: 15px;
  padding-right: 0.9375rem;
  position: relative;
}
.gnav__item span::after {
  position: absolute;
  content: "";
  width: 9px;
  width: 0.5625rem;
  height: 6px;
  height: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
}

.gnav__subitems {
  display: none;
  position: absolute;
  left: 0;
  min-width: 100%;
  top: 70px;
  top: 4.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, .95);
  white-space: nowrap;
}

.gnav__subitem a {
  display: block;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 23px;
  top: 1.4375rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.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: 100%;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.25rem;
  left: 0;
  background: #F88378;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 6px;
  top: 0.375rem;
}
.hamburger__border:nth-child(3) {
  top: 12px;
  top: 0.75rem;
}

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

.header--top {
  display: none;
}

.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;
  height: inherit;
  padding: 0 30px;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

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

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

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

/* media */
.media {
  position: relative;
  z-index: 2;
  padding: 110px 0 120px;
  padding: 6.875rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .media {
    padding: 3.75rem 0;
  }
}

.media__content {
  background: #FFF4F4;
  padding: 0 40px;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .media__content {
    text-align: center;
    margin: 0 calc(50% - 50vw);
    padding: 0 1.25rem;
  }
}
.media__content::before, .media__content::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .media__content::before, .media__content::after {
    width: 38.75rem;
  }
}
.media__content::before {
  top: -110px;
  top: -6.875rem;
  height: 110px;
  height: 6.875rem;
  background: url(../img/common/media-bg01.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .media__content::before {
    top: -3.75rem;
    height: 3.75rem;
  }
}
.media__content::after {
  bottom: -120px;
  bottom: -7.5rem;
  height: 120px;
  height: 7.5rem;
  background: url(../img/common/media-bg02.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .media__content::after {
    bottom: -4.375rem;
    height: 4.375rem;
  }
}

.media__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .media__text {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 1.375rem;
  }
}

.media__logos {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 50px;
  gap: 2.5rem 3.125rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .media__logos {
    width: 20rem;
    max-width: 100%;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.5rem 0;
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .media__logo {
    width: 50%;
  }
}
.media__logo:first-child .media__logo-inner {
  width: 75px;
  width: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .media__logo:first-child .media__logo-inner {
    width: 3.4375rem;
  }
}
.media__logo:nth-child(2) .media__logo-inner {
  width: 205px;
  width: 12.8125rem;
}
@media screen and (max-width: 767px) {
  .media__logo:nth-child(2) .media__logo-inner {
    width: 9.4375rem;
  }
}
.media__logo:nth-child(3) .media__logo-inner {
  width: 145px;
  width: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .media__logo:nth-child(3) .media__logo-inner {
    width: 6.6875rem;
  }
}
.media__logo:nth-child(4) .media__logo-inner {
  width: 153px;
  width: 9.5625rem;
}
@media screen and (max-width: 767px) {
  .media__logo:nth-child(4) .media__logo-inner {
    width: 7.0625rem;
  }
}
.media__logo:nth-child(5) .media__logo-inner {
  width: 167px;
  width: 10.4375rem;
}
@media screen and (max-width: 767px) {
  .media__logo:nth-child(5) .media__logo-inner {
    width: 7.6875rem;
  }
}
.media__logo:nth-child(6) .media__logo-inner {
  width: 106px;
  width: 6.625rem;
}
@media screen and (max-width: 767px) {
  .media__logo:nth-child(6) .media__logo-inner {
    width: 4.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .media__logo-inner {
    max-width: 100%;
    margin: 0 auto;
  }
}

.media__btn {
  width: 340px;
  width: 21.25rem;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .media__btn {
    width: 18.75rem;
    margin-top: 2.8125rem;
    padding: 0.8125rem 1.875rem 0.8125rem 0;
  }
}
.media__btn::after {
  position: absolute;
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  top: 18px;
  top: 1.125rem;
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/link-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .media__btn::after {
    top: 1rem;
    right: 2.5rem;
  }
}

/* mv */
.mv {
  padding: 105px 0 60px;
  padding: 6.5625rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 3.75rem 0 2.5rem;
  }
}
.mv .breadcrumb {
  padding: 0;
  background: none;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.mv__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.75rem;
  }
}

.mv__text {
  font-size: 18px;
  font-size: 1.125rem;
  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: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news__item + .news__item {
    margin-top: 1.25rem;
  }
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
  }
}

.news__item-meta {
  min-width: 140px;
  min-width: 8.75rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.news__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #F88378;
  letter-spacing: 0.06em;
}

.news__item-category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 22.5rem;
  background: #F7F7F7;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
}

.news__item-texts {
  border-left: 1px solid #000;
  border-left: 0.0625rem solid #000;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news__item-texts {
    margin-top: 0.3125rem;
  }
}

.news__item-title, .news__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .news__item-title, .news__item-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* pagination */
.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: 8px 14px;
  gap: 0.5rem 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: 30px;
  width: 1.875rem;
  min-width: 30px;
  min-width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #F7F7F7;
  border-radius: 50%;
  border: 1px solid #EBEBEB;
  border: 0.0625rem solid #EBEBEB;
}
.pagination .current {
  color: #fff;
  background: #F88378;
  border-color: #F88378;
}
.pagination .prev, .pagination .next {
  border: none;
}
.pagination .prev {
  background: url(../img/common/prev-icon.png) no-repeat center/contain;
}
.pagination .next {
  background: url(../img/common/next-icon.png) no-repeat center/contain;
}

/* post */
.post {
  padding: 110px 0 100px;
  padding: 6.875rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .post {
    padding: 3.75rem 0;
  }
}
.post .l-inner {
  max-width: 820px;
  max-width: 51.25rem;
}

.post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 22.5rem;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  padding: 0 11px;
  padding: 0 0.6875rem;
}

.post__date {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F88378;
  margin-left: 10px;
  margin-left: 0.625rem;
}

.post__title {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 600;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 1.5rem;
  }
}

.post__content {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .post__content {
    margin-top: 2.5rem;
  }
}
.post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  font-weight: 700;
  margin: 0;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
    margin-bottom: 1.875rem;
  }
}
.post__content h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  color: #F88378;
  border-bottom: 1px solid #F88378;
  border-bottom: 0.0625rem solid #F88378;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .post__content h2 {
    font-size: 1.375rem;
    padding-bottom: 0.3125rem;
  }
}
.post__content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .post__content h3 {
    font-size: 1.25rem;
  }
}
.post__content h4, .post__content h5, .post__content h6 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .post__content h4, .post__content h5, .post__content h6 {
    font-size: 1.125rem;
  }
}
.post__content p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .post__content p {
    font-size: 1rem;
  }
}
.post__content p:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content p:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content ul:not(:last-child), .post__content ol:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content ul:not(:last-child), .post__content ol:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__content li {
    font-size: 1rem;
  }
}
.post__content li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.post__content figure:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content figure:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content strong {
  font-weight: 600;
}
.post__content table {
  width: 100%;
  border-collapse: collapse;
}
.post__content table:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content table:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content table tr:nth-child(odd) {
  background: #FFF8F6;
}
.post__content table th, .post__content table td {
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  padding: 7px 0;
  padding: 0.4375rem 0;
}
@media screen and (max-width: 767px) {
  .post__content table th, .post__content table td {
    font-size: 1rem;
  }
}
.post__content table th {
  font-weight: 600;
  padding: 0 30px;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__content table th {
    width: auto;
    padding: 0 0.9375rem;
  }
}
.post__content table td {
  padding-right: 10px;
  padding-right: 0.625rem;
}
.post__content .bg-gray {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  background: #F7F7F7;
  padding: 25px 30px;
  padding: 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__content .bg-gray {
    font-size: 1rem;
    padding: 1.25rem 0.9375rem;
  }
}
.post__content .bg-gray:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content .bg-gray:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content .bg-gray p:not(:last-child) {
  margin-bottom: 20px;
}
.post__content .bg-pink {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  background: #FFF8F6;
  padding: 25px 30px;
  padding: 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__content .bg-pink {
    padding: 1.25rem 0.9375rem;
  }
}
.post__content .bg-pink:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content .bg-pink:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}

.post__box {
  background: #FFF8F6;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 60px 60px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .post__box {
    margin-top: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}

.post__box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .post__box-header {
    display: block;
  }
}

.post__box-logos {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .post__box-logos {
    width: 100%;
  }
}

.post__box-company {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .post__box-company {
    font-size: 1rem;
  }
}

.post__box-logo {
  width: 145px;
  width: 9.0625rem;
  max-width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.post__box-lead {
  width: 73%;
  line-height: 2;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .post__box-lead {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.post__box-body {
  background: #fff;
  margin-top: 45px;
  margin-top: 2.8125rem;
  padding: 20px 30px 30px;
  padding: 1.25rem 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__box-body {
    margin-top: 1.875rem;
    padding: 1.25rem 1.25rem;
  }
}

.post__box-text {
  font-weight: 600;
  line-height: 2;
}
.post__box-text a {
  color: #F88378;
  word-break: break-all;
}

.post__box-subtext {
  line-height: 2;
}

.post__box-ipass {
  display: inline-block;
  line-height: 1.63;
  border: 1px solid #EBEBEB;
  border: 0.0625rem solid #EBEBEB;
  border-radius: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
.post__box-ipass span {
  display: inline-block;
  margin-left: 1em;
}

.post__btn {
  text-align: center;
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #000;
  letter-spacing: 0.06em;
  margin: 80px auto 0;
  margin: 5rem auto 0;
  padding: 15px;
  padding: 0.9375rem;
}

.post__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #000;
  border-top: 0.0625rem solid #000;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 7px 70px 7px 0;
  padding: 0.4375rem 4.375rem 0.4375rem 0;
}
@media screen and (max-width: 767px) {
  .post__sns {
    padding: 0.3125rem 0;
  }
}

.post__sns-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.post__sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 60px;
  gap: 0 3.75rem;
  margin-left: 70px;
  margin-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .post__sns-links {
    gap: 0 2.5rem;
    margin-left: 2.5rem;
  }
}

.post__sns-link:first-child {
  width: 20px;
  width: 1.25rem;
}
.post__sns-link:nth-child(2) {
  width: 10px;
  width: 0.625rem;
}
.post__sns-link:nth-child(3) {
  width: 22px;
  width: 1.375rem;
}
.post__sns-link a {
  display: block;
}

.post__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 80px;
  margin-top: 5rem;
}

.post__link {
  width: 240px;
  width: 15rem;
  max-width: 100%;
}

.post__link-nav {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .post__link-nav {
    font-size: 1rem;
  }
}

.post__link-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .post__link-title {
    font-size: 1rem;
  }
}

.post__link-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F88378;
}

.post__prev .post__link-nav {
  background: url(../img/common/prev-icon.png) no-repeat center left/30px;
  background: url(../img/common/prev-icon.png) no-repeat center left/1.875rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}

.post__next {
  text-align: right;
}
.post__next .post__link-nav {
  background: url(../img/common/next-icon.png) no-repeat center right/30px;
  background: url(../img/common/next-icon.png) no-repeat center right/1.875rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}

/* related */
.related {
  background: #F7F7F7;
  padding: 55px 0 130px;
  padding: 3.4375rem 0 8.125rem;
}
@media screen and (max-width: 767px) {
  .related {
    padding-bottom: 3.75rem;
  }
}
.related .l-inner {
  max-width: 950px;
  max-width: 59.375rem;
}

.related__title.subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.related__cards {
  margin: 35px -8px 0;
  margin: 2.1875rem -0.5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .related__cards {
    margin: 1.25rem 0 0;
  }
}
.related__cards .card {
  margin: 0 8px;
  margin: 0 0.5rem;
}
.related__cards .card__inner {
  background: #fff;
}
.related__cards .card__body {
  padding: 15px 15px 20px;
  padding: 0.9375rem 0.9375rem 1.25rem;
}
.related__cards .card__title {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.related__cards .slide-arrow {
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.related__cards .slide-arrow:hover {
  opacity: 1;
}
.related__cards .prev-arrow {
  left: -80px;
  left: -5rem;
  background: url(../img/common/prev-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .related__cards .prev-arrow {
    left: -0.625rem;
  }
}
.related__cards .next-arrow {
  right: -80px;
  right: -5rem;
  background: url(../img/common/next-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .related__cards .next-arrow {
    right: -0.625rem;
  }
}

/* subtitle */
.subtitle {
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.375rem;
  }
}

/* tag */
.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 20px;
  gap: 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .tag {
    gap: 0.625rem 1.25rem;
  }
}
.tag a, .tag span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  border-radius: 22.5rem;
  padding: 3px 11px;
  padding: 0.1875rem 0.6875rem;
}

/* text */
.text {
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.67;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.text span {
  font-weight: 700;
  background: #FFF8F6;
}

/* title-wrapper */
.title-wrapper {
  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) {
  .title-wrapper {
    display: block;
    text-align: center;
  }
}

/* title */
.title {
  display: inline-block;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-weight: 700;
  color: #F88378;
  border-top: 1px solid #F88378;
  border-top: 0.0625rem solid #F88378;
  border-bottom: 1px solid #F88378;
  border-bottom: 0.0625rem solid #F88378;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .title {
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}

/* column-archive */
.column-archive__content {
  padding: 60px 0 140px;
  padding: 3.75rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .column-archive__content {
    padding: 2.5rem 0 5rem;
  }
}

.column-archive__tag {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .column-archive__tag {
    margin-top: 1.5625rem;
  }
}

.column-archive__category {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .column-archive__category {
    margin-top: 2.5rem;
  }
}

.column-archive__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .column-archive__cards {
    margin-top: 2.5rem;
  }
}

.column-archive__pagination {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .column-archive__pagination {
    margin-top: 2.5rem;
  }
}

/* column-single */
/* pickup */
.pickup {
  background: #F7F7F7;
  padding: 55px 0 60px;
  padding: 3.4375rem 0 3.75rem;
}

.pickup__title.subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.pickup__cards {
  margin: 35px -8px 0;
  margin: 2.1875rem -0.5rem 0;
}
@media screen and (max-width: 767px) {
  .pickup__cards {
    margin: 1.25rem 0 0;
  }
}
.pickup__cards .card {
  margin: 0 8px;
  margin: 0 0.5rem;
}
.pickup__cards .card__inner {
  background: #fff;
}
.pickup__cards .card__body {
  padding: 15px 15px 20px;
  padding: 0.9375rem 0.9375rem 1.25rem;
}
.pickup__cards .card__title {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  gap: 10px 0;
  gap: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .slider-controls {
    margin-top: 1.5625rem;
  }
}
.slider-controls .slider-dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  gap: 0 1.25rem;
}
.slider-controls .slider-dots li {
  background: #ddd;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-radius: 50%;
  cursor: pointer;
}
.slider-controls .slider-dots li button {
  text-indent: -9999px;
}
.slider-controls .slider-dots li.slick-active {
  background: #000;
}
.slider-controls .slide-arrow {
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}
.slider-controls .slide-arrow:hover {
  opacity: 1;
}
.slider-controls .prev-arrow {
  margin-right: 30px;
  margin-right: 1.875rem;
  background: url(../img/common/prev-icon.png) no-repeat center/contain;
}
.slider-controls .next-arrow {
  margin-left: 30px;
  margin-left: 1.875rem;
  background: url(../img/common/next-icon.png) no-repeat center/contain;
}

/* news-archive */
.news-archive .mv__title {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}

.news-archive__content {
  padding: 60px 0 100px;
  padding: 3.75rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__content {
    padding: 1.25rem 0 3.75rem;
  }
}

.news-archive__body {
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 0 60px;
  padding: 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-archive__body {
    padding: 0;
    margin-top: 2.5rem;
  }
}

.news-archive__pagination {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__pagination {
    margin-top: 3.75rem;
  }
}

/* news-single */
/* notfound */
.notfound {
  padding: 150px 0 100px;
  padding: 9.375rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .notfound {
    padding: 7.5rem 0 3.75rem;
  }
}

.notfound__content {
  text-align: center;
  padding-top: 50px;
  padding-top: 3.125rem;
  position: relative;
  z-index: 1;
}
.notfound__content::before {
  position: absolute;
  content: "";
  width: 600px;
  width: 37.5rem;
  height: 370px;
  height: 23.125rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/common/notfound-bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .notfound__content::before {
    width: 25rem;
    height: 15.625rem;
  }
}

.notfound__title {
  font-family: "Montserrat", sans-serif;
  font-size: 177px;
  font-size: 11.0625rem;
  font-weight: 500;
  color: #F88378;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .notfound__title {
    font-size: 6.25rem;
  }
}

.notfound__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .notfound__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.notfound__btn {
  margin: 150px auto 0;
  margin: 9.375rem auto 0;
}
@media screen and (max-width: 767px) {
  .notfound__btn {
    margin-top: 6.25rem;
  }
}

/* about */
.about {
  background: #F7F7F7;
  position: relative;
  z-index: 2;
}
.about .l-section {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .about .l-section {
    padding: 3.75rem 0;
  }
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about__inner {
    display: block;
  }
}

.about__body {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .about__body {
    width: 100%;
  }
}

.about__texts {
  margin-left: 45px;
  margin-left: 2.8125rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .about__texts {
    margin: 2.1875rem auto 0;
  }
}

.about__subtitle {
  display: inline-block;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 1.375rem;
    line-height: 1.45;
    padding-left: 2.1875rem;
    display: block;
    width: 21.875rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
.about__subtitle::before, .about__subtitle::after {
  position: absolute;
  content: "";
  width: 36px;
  width: 2.25rem;
  height: 32px;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .about__subtitle::before, .about__subtitle::after {
    width: 1.5625rem;
    height: 1.3125rem;
  }
}
.about__subtitle::before {
  top: 0;
  left: -45px;
  left: -2.8125rem;
  background: url(../img/common/comment-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .about__subtitle::before {
    top: -0.3125rem;
    left: 0;
  }
}
.about__subtitle::after {
  bottom: 0;
  right: -45px;
  right: -2.8125rem;
  background: url(../img/common/comment-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .about__subtitle::after {
    bottom: 0.3125rem;
    right: 0;
  }
}

.about__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1rem;
  }
}

.about__subtext {
  line-height: 2.25;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .about__subtext {
    line-height: 2;
    margin-top: 1.875rem;
  }
}

.about__unit {
  width: 40%;
  background: #fff;
  padding: 30px 40px 25px;
  padding: 1.875rem 2.5rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .about__unit {
    width: 100%;
    margin-top: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
}

.about__unit-img {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  margin: 0 auto;
}
.about__unit-img img {
  border-radius: 50%;
}

.about__unit-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.about__unit-subtitle {
  font-weight: 700;
  color: #F88378;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.about__unit-text {
  line-height: 1.75;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

/* case */
.case {
  position: relative;
  z-index: 2;
}

.case__subtitle {
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F88378;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .case__subtitle {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}

.case__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.case__items {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .case__items {
    margin-top: 2.5rem;
  }
}

.case__item {
  min-height: 160px;
  min-height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 60px;
  padding: 1.25rem 3.75rem;
  background: #FFF8F6;
}
@media screen and (max-width: 767px) {
  .case__item {
    min-height: unset;
    display: block;
    padding: 1.25rem 1.25rem;
  }
}
.case__item + .case__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.case__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F88378;
}
@media screen and (max-width: 767px) {
  .case__item-title {
    font-size: 1.125rem;
  }
}

.case__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  padding-left: 40px;
  padding-left: 2.5rem;
  margin-left: 62px;
  margin-left: 3.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case__item-text {
    font-size: 1rem;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0.625rem;
  }
}
.case__item-text::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 80px;
  height: 5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #F88378;
}
@media screen and (max-width: 767px) {
  .case__item-text::before {
    display: none;
  }
}
.case__item-text span {
  font-weight: 700;
}

.case__units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 20px 40px;
  gap: 1.25rem 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .case__units {
    display: block;
    margin-top: 2.5rem;
  }
}

.case__unit {
  background: #fff;
  border: 10px solid #FFF8F6;
  border: 0.625rem solid #FFF8F6;
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case__unit {
    padding: 1.875rem 1.25rem;
  }
  .case__unit + .case__unit {
    margin-top: 2.5rem;
  }
  .case__unit + .case__unit::before {
    position: absolute;
    content: "";
    width: 1.25rem;
    height: 1.875rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: -2.8125rem;
    background: url(../img/common/arrow-icon.png) no-repeat center/contain;
  }
}
.case__unit:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
}
.case__unit:first-child::after {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -40px;
  right: -2.5rem;
  background: url(../img/common/arrow-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .case__unit:first-child::after {
    display: none;
  }
}
.case__unit:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
.case__unit:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.case__unit:nth-child(3)::before {
  display: none;
}

.case__unit-number {
  width: 55px;
  width: 3.4375rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .case__unit-number {
    width: 2.5rem;
  }
}

.case__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .case__unit-inner {
    display: block;
  }
}
.case__unit-inner .case__unit-number {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .case__unit-inner .case__unit-number {
    margin: 0 auto;
  }
}
.case__unit-inner .case__unit-title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .case__unit-inner .case__unit-title {
    text-align: center;
  }
}
.case__unit-inner .case__unit-img {
  width: 53%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .case__unit-inner .case__unit-img {
    width: 100%;
    margin: 1.25rem auto 0;
  }
}

.case__unit-title {
  text-align: center;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F88378;
  line-height: 1.3;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .case__unit-title {
    font-size: 1.25rem;
  }
}

.case__unit-body {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .case__unit-body {
    width: 100%;
  }
}

.case__unit-img {
  width: 440px;
  width: 27.5rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .case__unit-img {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.case__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .case__footer {
    display: block;
    margin-top: 2.5rem;
  }
}

.case__footer-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.1;
  padding: 5px 55px;
  padding: 0.3125rem 3.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case__footer-text {
    font-size: 1rem;
    padding: 0.3125rem 1.25rem;
    margin-top: 1.25rem;
  }
}
.case__footer-text::before, .case__footer-text::after {
  position: absolute;
  content: "";
  width: 36px;
  width: 2.25rem;
  height: 32px;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .case__footer-text::before, .case__footer-text::after {
    width: 1.5625rem;
    height: 1.3125rem;
  }
}
.case__footer-text::before {
  top: 0;
  left: 0;
  background: url(../img/common/comment-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .case__footer-text::before {
    left: -0.625rem;
  }
}
.case__footer-text::after {
  bottom: 0;
  right: 0;
  background: url(../img/common/comment-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .case__footer-text::after {
    right: -0.625rem;
  }
}

.case__footer-img {
  width: 200px;
  width: 12.5rem;
  min-width: 200px;
  min-width: 12.5rem;
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .case__footer-img {
    margin: 0 auto;
  }
}
.case__footer-img img {
  border-radius: 50%;
}

/* data */
.data {
  background: #F7F7F7;
  position: relative;
  z-index: 2;
}

.data__subtext {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .data__subtext {
    font-size: 1.125rem;
    margin-top: 1.5625rem;
  }
}

.data__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 80px;
  gap: 0 5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .data__boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem 0;
    margin-top: 1.875rem;
  }
}

.data__box {
  background: #fff;
  padding: 60px 50px;
  padding: 3.75rem 3.125rem;
}
@media screen and (max-width: 1200px) {
  .data__box {
    padding: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .data__box {
    padding: 1.875rem 1.25rem;
  }
}
.data__box + .data__box {
  position: relative;
}
.data__box + .data__box::before {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -60px;
  left: -3.75rem;
  background: url(../img/common/cross-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .data__box + .data__box::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -3.125rem;
  }
}

.data__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  gap: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .data__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem 0;
  }
}

.data__item-logo {
  width: 102px;
  width: 6.375rem;
  max-width: 100%;
  margin: 0 auto;
}

.data__item-img {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.data__item-text {
  text-align: center;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.data__unit + .data__unit {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
  border-top: 1px solid #F88378;
  border-top: 0.0625rem solid #F88378;
}

.data__unit-title {
  text-align: center;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .data__unit-title {
    font-size: 1.125rem;
  }
}

.data__unit-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
  gap: 0.625rem 0.625rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .data__unit-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem 0;
    margin-top: 1.25rem;
  }
}

.data__unit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF8F6;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}
.data__unit-item:nth-child(2) .data__unit-item-logo {
  width: 60px;
  width: 3.75rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}

.data__unit-item-logo {
  width: 77px;
  width: 4.8125rem;
  max-width: 100%;
}

.data__unit-item-text {
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F88378;
}
@media screen and (max-width: 767px) {
  .data__unit-item-text {
    font-size: 1.25rem;
  }
}

.data__unit-text {
  text-align: right;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .data__unit-text {
    font-size: 0.9375rem;
  }
}

.data__text {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .data__text {
    margin-top: 1.5625rem;
  }
}

/* dokucho */
.dokucho {
  position: relative;
  z-index: 2;
}

.dokucho__subtext {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .dokucho__subtext {
    font-size: 1.125rem;
    margin-top: 1.5625rem;
  }
}

.dokucho__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.dokucho__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 60px;
  gap: 0 3.75rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .dokucho__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
    margin-top: 1.875rem;
  }
}

.dokucho__item {
  border: 10px solid #FFF8F6;
  border: 0.625rem solid #FFF8F6;
  background: #fff;
  padding: 40px 25px 15px;
  padding: 2.5rem 1.5625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .dokucho__item {
    padding: 1.875rem 1.25rem;
  }
}
.dokucho__item + .dokucho__item {
  position: relative;
}
.dokucho__item + .dokucho__item::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -50px;
  left: -3.125rem;
  background: url(../img/common/arrow-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .dokucho__item + .dokucho__item::before {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: -2.8125rem;
  }
}
.dokucho__item:nth-child(2) .dokucho__item-icon {
  width: 91px;
  width: 5.6875rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
.dokucho__item:nth-child(3) .dokucho__item-icon {
  width: 108px;
  width: 6.75rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .dokucho__item:nth-child(3) .dokucho__item-icon {
    margin-top: 1.5625rem;
  }
}

.dokucho__item-text {
  line-height: 1.75;
  width: 240px;
  width: 15rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .dokucho__item-text {
    width: 100%;
  }
}

.dokucho__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.dokucho__item-subtext {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.dokucho__subitems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.dokucho__subitem:first-child {
  width: 42%;
}
.dokucho__subitem:first-child .dokucho__subitem-icon {
  width: 93px;
  width: 5.8125rem;
}
.dokucho__subitem:nth-child(2) {
  width: 55%;
}
.dokucho__subitem:nth-child(2) .dokucho__subitem-icon {
  width: 76px;
  width: 4.75rem;
}

.dokucho__subitem-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 102px;
  min-height: 6.375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
}

.dokucho__subitem-icon {
  max-width: 100%;
  margin: 0 auto;
}

.dokucho__subitem-subtext {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

/* fv */
.fv {
  padding: 40px 0 60px;
  padding: 2.5rem 0 3.75rem;
  position: relative;
  z-index: 2;
}
.fv .breadcrumb {
  background: none;
  padding: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.fv__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;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    display: block;
  }
}

.fv__body {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .fv__body {
    width: 100%;
  }
}

.fv__title {
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 1.75rem;
  }
}

.fv__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1rem;
  }
}

.fv__img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .fv__img {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

/* service */
/* solution */
.solution {
  background: #F7F7F7;
  position: relative;
  z-index: 2;
}

.solution__text {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .solution__text {
    margin-top: 1.5625rem;
  }
}

.solution__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
  gap: 1.25rem 1.25rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .solution__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.875rem;
  }
}

.solution__item {
  background: #fff;
  border: 10px solid #FFF8F6;
  border: 0.625rem solid #FFF8F6;
  padding: 25px 50px 35px 40px;
  padding: 1.5625rem 3.125rem 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .solution__item {
    padding: 1.875rem 1.25rem;
  }
}

.solution__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.solution__item-icon {
  width: 56px;
  width: 3.5rem;
  min-width: 56px;
  min-width: 3.5rem;
}

.solution__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F88378;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .solution__item-title {
    font-size: 1.375rem;
    line-height: 1.3;
    margin-left: 0.9375rem;
  }
}
.solution__item-title span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  min-width: 50px;
  min-width: 3.125rem;
}
@media screen and (max-width: 767px) {
  .solution__item-title span {
    font-size: 1.75rem;
    min-width: 2.8125rem;
  }
}

.solution__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .solution__item-text {
    font-size: 1rem;
  }
}

/* value */
.value {
  position: relative;
  z-index: 2;
}

.value__text {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .value__text {
    margin-top: 1.5625rem;
  }
}

.value__content {
  padding: 0 80px;
  padding: 0 5rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .value__content {
    padding: 0;
    margin-top: 1.25rem;
  }
}
.value__content::before, .value__content::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .value__content::before, .value__content::after {
    display: none;
  }
}
.value__content::before {
  width: 57px;
  width: 3.5625rem;
  height: 57px;
  height: 3.5625rem;
  background: url(../img/common/cross-icon.png) no-repeat center/contain;
}

.value__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 80px;
  gap: 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .value__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
  }
}

.value__item {
  background: #fff;
  border: 10px solid #FFF8F6;
  border: 0.625rem solid #FFF8F6;
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .value__item {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}
.value__item:first-child .value__item-title, .value__item:nth-child(2) .value__item-title {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.value__item-header {
  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;
}
@media screen and (max-width: 767px) {
  .value__item-header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0.625rem;
  }
}

.value__item-icon {
  width: 72px;
  width: 4.5rem;
  min-width: 72px;
  min-width: 4.5rem;
}

.value__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F88378;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .value__item-title {
    line-height: 1.2;
    text-align: center;
  }
}

.value__item-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .value__item-text {
    text-align: left;
    font-size: 1rem;
  }
}

/* tag-archive */
.tag-archive .card__title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tag-archive .card__title {
    margin-bottom: 0.625rem;
  }
}

.tag-archive__content {
  background: #F7F7F7;
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .tag-archive__content {
    padding: 3.75rem 0;
  }
}

.tag-archive__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.tag-archive__filter-text {
  font-size: 14px;
  font-size: 0.875rem;
}

.tag-archive__filter-select {
  width: 140px;
  width: 8.75rem;
  max-width: 100%;
  background: #fff;
  border-radius: 0.25rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
.tag-archive__filter-select select {
  width: 100%;
  height: 40px;
  height: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  border: 1px solid #D9D9D9;
  border: 0.0625rem solid #D9D9D9;
  color: #000;
  background: url(../img/common/select-icon.png) no-repeat center right 16px/8px;
  background: url(../img/common/select-icon.png) no-repeat center right 1rem/0.5rem;
  padding: 10px 30px 10px 15px;
  padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
}

.tag-archive__cards {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.tag-archive__cards .card__inner {
  background: #fff;
}

.tag-archive__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.tag-archive__footer {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .tag-archive__footer {
    padding: 3.75rem 0 5rem;
  }
}

.tag-archive__box {
  background: #F7F7F7;
  padding: 100px 60px;
  padding: 6.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .tag-archive__box {
    padding: 2.5rem 1.25rem;
  }
}

.tag-archive__tag {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .tag-archive__tag {
    margin-top: 1.875rem;
  }
}
.tag-archive__tag span {
  background: unset;
}

.tag-archive__other {
  margin-top: 95px;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .tag-archive__other {
    margin-top: 3.75rem;
  }
}

.tag-archive__other-cards {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .tag-archive__other-cards {
    margin-top: 1.875rem;
  }
}

/* top-about */
.top-about {
  padding: 120px 0 80px;
  padding: 7.5rem 0 5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding: 5.3125rem 0 3.75rem;
  }
}

.top-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    display: block;
  }
}

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

.top-about__logo {
  width: 264px;
  width: 16.5rem;
  max-width: 100%;
  margin-left: 45px;
  margin-left: 2.8125rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .top-about__logo {
    width: 13.75rem;
    margin: 1.875rem auto 0;
  }
}

.top-about__subtitle {
  display: inline-block;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.67;
  margin-left: 45px;
  margin-left: 2.8125rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about__subtitle {
    font-size: 1.375rem;
    line-height: 1.45;
    padding-left: 2.1875rem;
    display: block;
    width: 21.875rem;
    max-width: 100%;
    margin: 2.1875rem auto 0;
  }
}
.top-about__subtitle::before, .top-about__subtitle::after {
  position: absolute;
  content: "";
  width: 36px;
  width: 2.25rem;
  height: 32px;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .top-about__subtitle::before, .top-about__subtitle::after {
    width: 1.5625rem;
    height: 1.3125rem;
  }
}
.top-about__subtitle::before {
  top: 0;
  left: -45px;
  left: -2.8125rem;
  background: url(../img/common/comment-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-about__subtitle::before {
    top: -0.3125rem;
    left: 0;
  }
}
.top-about__subtitle::after {
  bottom: 0;
  right: -45px;
  right: -2.8125rem;
  background: url(../img/common/comment-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-about__subtitle::after {
    bottom: 0.3125rem;
    right: 0;
  }
}

.top-about__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-left: 45px;
  margin-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    margin-top: 0.9375rem;
    margin-left: 0;
  }
}

.top-about__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-left: 45px;
  margin-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-about__btn {
    margin: 1.875rem auto 0;
  }
}

.top-about__img {
  width: 35%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-about__img {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

/* top-column */
.top-column {
  padding-top: 50px;
  padding-top: 3.125rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-column {
    padding-top: 5rem;
  }
}

.top-column__cards {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-column__cards {
    margin-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem 0.6875rem;
  }
  .top-column__cards .card:nth-child(n+3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.34375rem);
            flex: 0 1 calc(50% - 0.34375rem);
  }
  .top-column__cards .card:nth-child(n+3) .card__body {
    padding: 0.625rem 0.625rem 0.75rem;
  }
  .top-column__cards .card:nth-child(n+3) .card__header {
    display: block;
  }
  .top-column__cards .card:nth-child(n+3) .card__title {
    font-size: 0.875rem;
    margin-top: 0;
  }
}

.top-column__tag {
  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;
  gap: 0 35px;
  gap: 0 2.1875rem;
  width: 790px;
  width: 49.375rem;
  max-width: 100%;
  border-top: 1px solid #000;
  border-top: 0.0625rem solid #000;
  padding: 30px 100px 0;
  padding: 1.875rem 6.25rem 0;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-column__tag {
    display: block;
    margin-top: 1.875rem;
    padding: 1.25rem 0 0 5.625rem;
  }
}
.top-column__tag::before {
  position: absolute;
  content: "";
  width: 65px;
  width: 4.0625rem;
  height: 65px;
  height: 4.0625rem;
  top: -10px;
  top: -0.625rem;
  left: 50px;
  left: 3.125rem;
  background: url(../img/common/tag-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-column__tag::before {
    left: 0.625rem;
  }
}
.top-column__tag .tag {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-column__tag .tag {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.625rem 1.25rem;
  }
}

/* top-media */
.top-media {
  position: relative;
  z-index: 2;
}

/* top-mv */
.top-mv__header {
  padding: 57px 0;
  padding: 3.5625rem 0;
  position: relative;
  z-index: 1;
}

.top-mv__title {
  width: 572px;
  width: 35.75rem;
  max-width: 100%;
  margin: 0 auto;
}

.top-mv__content {
  position: relative;
}

.top-mv__img-wrapper:first-child {
  position: absolute;
  z-index: 0;
  inset: 0;
}
.top-mv__img-wrapper:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 500px;
  min-height: 31.25rem;
  height: 150%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, .15);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__img-wrapper:first-child::before {
    min-height: 18.75rem;
  }
}
.top-mv__img-wrapper:nth-child(2) {
  position: relative;
  z-index: 1;
}

.top-mv__imgs {
  display: none;
}
.top-mv__imgs.slick-initialized {
  display: block;
}

.top-mv__img {
  margin: 0 10px;
  margin: 0 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__img {
    margin: 0 0.3125rem;
  }
}

.top-mv__logos {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  margin-top: 40px;
  margin-top: 2.5rem;
  display: none;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-mv__logos {
    margin-top: 1.5625rem;
  }
}
.top-mv__logos.slick-initialized {
  display: block;
}
.top-mv__logos .slick-list {
  height: inherit;
}
.top-mv__logos .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-mv__logo {
  margin: 0 20px;
  margin: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo {
    margin: 0 0.625rem;
  }
}

.top-mv__logo01 {
  width: 80px;
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo01 {
    width: 3.75rem;
  }
}

.top-mv__logo02 {
  width: 90px;
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo02 {
    width: 3.75rem;
  }
}

.top-mv__logo03 {
  width: 214px;
  width: 13.375rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo03 {
    width: 8.875rem;
  }
}

.top-mv__logo04 {
  width: 190px;
  width: 11.875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo04 {
    width: 7.9375rem;
  }
}

.top-mv__logo05 {
  width: 190px;
  width: 11.875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo05 {
    width: 7.875rem;
  }
}

.top-mv__logo06 {
  width: 268px;
  width: 16.75rem;
}
@media screen and (max-width: 767px) {
  .top-mv__logo06 {
    width: 11.125rem;
  }
}

/* top-news */
.top-news {
  padding: 160px 0 100px;
  padding: 10rem 0 6.25rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 3.75rem 0 5rem;
  }
}

.top-news__content {
  padding: 0 60px;
  padding: 0 3.75rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    padding: 0;
    margin-top: 1.5625rem;
  }
}
.top-news__content .news__item:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__content .news__item:not(:first-child) {
    margin-top: 0.9375rem;
  }
}
.top-news__content .news__item-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news__content .news__item-meta {
  min-width: 120px;
  min-width: 7.5rem;
  padding-right: 0;
}

/* top-value */
.top-value {
  padding: 100px 0;
  padding: 6.25rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-value {
    padding: 3.4375rem 0 3.75rem;
  }
}

.top-value__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.67;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-value__text {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 1.5625rem;
  }
}
.top-value__text span {
  font-weight: 700;
  background: #FFF8F6;
}

.top-value__content {
  padding: 0 80px;
  padding: 0 5rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-value__content {
    padding: 0;
    margin-top: 1.25rem;
  }
}
.top-value__content::before, .top-value__content::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top-value__content::before, .top-value__content::after {
    display: none;
  }
}
.top-value__content::before {
  width: 57px;
  width: 3.5625rem;
  height: 57px;
  height: 3.5625rem;
  background: url(../img/common/cross-icon.png) no-repeat center/contain;
}

.top-value__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 80px;
  gap: 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .top-value__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
  }
}

.top-value__item {
  background: #fff;
  border: 10px solid #FFF8F6;
  border: 0.625rem solid #FFF8F6;
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-value__item {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}
.top-value__item:first-child .top-value__item-title, .top-value__item:nth-child(2) .top-value__item-title {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.top-value__item-header {
  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;
}
@media screen and (max-width: 767px) {
  .top-value__item-header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0.625rem;
  }
}

.top-value__item-icon {
  width: 72px;
  width: 4.5rem;
  min-width: 72px;
  min-width: 4.5rem;
}

.top-value__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F88378;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-value__item-title {
    line-height: 1.2;
    text-align: center;
  }
}

.top-value__item-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-value__item-text {
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */
