@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.4em;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  padding: 0;
  text-decoration: none;
  outline: none;
}

input, button {
  background: none;
  border: none;
  outline: none;
}

button {
  font-size: inherit;
  line-height: inherit;
}

textarea {
  resize: none;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
}

/* =======================
 * * VARIABLES
 * * set the default values according to your preference.
 * * ======================= */
/* font styles */
/* colors */
/* =======================
 * * HELPER CLASS
 * * ======================= */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/** 
 * * COLORS
 * */
.color--black {
  color: #434444;
}

.color--white {
  color: #fff !important;
}

.color--darkbrown {
  color: #714E2C !important;
}

.color--brown {
  color: #96683A !important;
}

.color--lightbrown {
  color: #8F7F6F !important;
}

.color--peach {
  color: #E7B8A7 !important;
}

.color--red {
  color: #FF4400 !important;
}

/** 
 * * FONTS
 * */
.font--1 {
  font-family: "Noto Sans JP", sans-serif;
}

.font--2 {
  font-family: "Noto Sans JP", sans-serif;
}

.font--3 {
  font-family: "Montserrat", sans-serif;
}

.font--bold {
  font-weight: 700 !important;
}

.font--semibold {
  font-weight: 500 !important;
}

.font--italic {
  font-style: italic;
}

.font--upcase {
  text-transform: uppercase;
}

.font--shadow {
  text-shadow: 1px 1px 1px rgba(64, 64, 64, 0.53);
}

.font--left {
  text-align: left !important;
}

.font--right {
  text-align: right;
}

.font--center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

p, span, label, a, i, strong, li {
  font-family: "Noto Sans JP", sans-serif;
}

/** 
 * * FRAME & HOLDERS
 * */
.frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.frame.overflow--visible {
  overflow: visible;
}

.frame__limit {
  position: relative;
  z-index: 2;
  width: 82%;
  max-width: 1000px;
  margin: auto;
  padding: 100px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/** 
 * * FRAME BACKGROUND
 * */
.frame__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.frame__bg.bring--front {
  z-index: -1;
}
.frame__bg.bring--back {
  z-index: -2;
}
.frame__bg.size--cover {
  background-size: cover;
}
.frame__bg.size--contain {
  background-size: contain;
}
.frame__bg.repeat {
  background-position: top !important;
  background-repeat: repeat !important;
}
.frame__bg.align--r {
  left: auto;
  right: 0;
}
.frame__bg.align--l {
  left: 0;
}
.frame__bg.align--c {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.frame__bg-overlay {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.frame__bg-overlay.bg-color--white {
  background: rgba(255, 255, 255, 0.53);
}
.frame__bg-overlay.bg-color--black {
  background: rgba(0, 0, 0, 0.45);
}
.frame__bg-overlay.bg-color--blue {
  background: rgba(53, 68, 139, 0.93);
}

/** 
 * * IMAGES
 * * prerequisite: parent container
 * * purpose: showing its original state according to the
 * width and height of the parent / holder.
 * */
.img-fit {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.img-fit.size--90 {
  max-width: 90% !important;
  max-height: 90% !important;
}
.img-fit.size--55 {
  max-width: 55% !important;
  max-height: 55% !important;
}
.img-fit.size--50 {
  max-width: 50% !important;
  max-height: 50% !important;
}
.img-fit.size--40 {
  max-width: 40% !important;
  max-height: 40% !important;
}

.icon {
  position: relative;
}
.icon.size--25px {
  width: 25px;
  height: 25px;
}
.icon.has--marginl {
  margin-left: 12px;
}
.icon.has--marginr {
  margin-right: 12px;
}

/** 
 * * BUTTON
 * */
.btn {
  position: relative;
  display: block;
  width: 235px;
  margin-top: 35px;
  padding: 0;
  background: #E7B8A7;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn:hover {
  opacity: 0.8;
}
.btn.darkbrown {
  background: #714E2C;
}
.btn.align--r {
  margin-left: auto;
}
.btn.align--l {
  margin-right: auto;
}
.btn.align--c {
  margin: auto;
  margin-top: 30px;
}
.btn a {
  width: 100%;
}

.btn__text {
  width: 100%;
  padding: 18px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.btn__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 17px;
  width: 11px;
}

/** 
 * * FORMS & FIELDS
 * */
.form__row {
  position: relative;
  margin-bottom: 40px;
}

.form__label {
  position: relative;
  width: 300px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #434444;
}

.form__fieldholder {
  position: relative;
  width: calc(100% - 300px);
  padding-left: 20px;
}

.apply-border {
  width: 210px;
  padding: 16px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #434444;
  background: #F7F7F7;
  border: none;
  border-radius: 15px;
}
.apply-border::-webkit-input-placeholder {
  color: #cecece;
}
.apply-border::-moz-placeholder {
  color: #cecece;
}
.apply-border:-ms-input-placeholder {
  color: #cecece;
}
.apply-border::-ms-input-placeholder {
  color: #cecece;
}
.apply-border::placeholder {
  color: #cecece;
}

.select-holder {
  position: relative;
  background: #F7F7F7;
  border-radius: 15px;
  overflow: hidden;
}
.select-holder.apply-border {
  padding: 0;
}
.select-holder.is--disabled {
  background: #f1f1f1 !important;
}
.select-holder.is--disabled .apply-border {
  border: 1px solid #bfbfbf;
}
.select-holder::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 0;
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #ababab;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

select {
  width: 100%;
  height: 53px;
  text-indent: 5px;
  background: transparent !important;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #333;
  cursor: pointer;
}
select:invalid {
  color: gray !important;
}
select option {
  color: #1D1D1D;
}

textarea {
  height: 187px !important;
}

input:-moz-read-only, textarea:-moz-read-only {
  background: #f1f1f1 !important;
}

input:read-only,
textarea:read-only {
  background: #f1f1f1 !important;
}
input:-moz-read-only.bg--white, textarea:-moz-read-only.bg--white {
  background: #fff !important;
}
input:read-only.bg--white,
textarea:read-only.bg--white {
  background: #fff !important;
}

.form__checkbox,
.form__radio {
  text-align: left;
}
.form__checkbox > *,
.form__radio > * {
  display: inline-block;
  vertical-align: top;
}
.form__checkbox input,
.form__radio input {
  width: 16px;
  height: 16px;
  margin: auto;
}
.form__checkbox label,
.form__radio label {
  width: calc(100% - 16px);
}
.form__checkbox p,
.form__radio p {
  padding-left: 10px;
  font-size: 16px;
  line-height: 26px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.tableholder {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.table-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #434444;
}
.table-text.table-price {
  font-size: 21px;
}

/** 
 * * WIDTH & HEIGHT
 * */
.full {
  width: 100%;
  height: 100%;
}

/** 
 * * COLUMNS
 * */
.by-2 > * {
  width: 50%;
}
.by-2 > *:first-child, .by-2 > *:nth-child(2n+1) {
  margin-left: 0%;
}
.by-2.border--s > * {
  width: 49.5%;
}
.by-2.border--m > * {
  width: 49.25%;
}
.by-2.border--l > * {
  width: 49%;
}
.by-2.border--xl > * {
  width: 48.5%;
}
.by-2.border--xxl > * {
  width: 47.5%;
}

.by-3 > * {
  width: 33.333%;
}
.by-3 > *:first-child, .by-3 > *:nth-child(3n+1) {
  margin-left: 0%;
}
.by-3.border--s > * {
  width: 32.666666667%;
}
.by-3.border--m > * {
  width: 32.333333333%;
}
.by-3.border--l > * {
  width: 32%;
}
.by-3.border--xl > * {
  width: 30.333333333%;
}
.by-3.border--xxl > * {
  width: 30%;
}

.by-4 > * {
  width: 25%;
}
.by-4 > *:first-child, .by-4 > *:nth-child(4n+1) {
  margin-left: 0%;
}
.by-4.border--s > * {
  width: 24.25%;
}
.by-4.border--m > * {
  width: 23.875%;
}
.by-4.border--l > * {
  width: 23.5%;
}
.by-4.border--xl > * {
  width: 22.75%;
}
.by-4.border--xxl > * {
  width: 21.25%;
}

.by-5 > * {
  width: 20%;
}
.by-5 > *:first-child, .by-5 > *:nth-child(5n+1) {
  margin-left: 0%;
}
.by-5.border--s > * {
  width: 19.2%;
}
.by-5.border--m > * {
  width: 18.8%;
}
.by-5.border--l > * {
  width: 18.4%;
}
.by-5.border--xl > * {
  width: 17.6%;
}
.by-5.border--xxl > * {
  width: 16%;
}

.border--s > * {
  margin-left: 1%;
}

.border--m > * {
  margin-left: 1.5%;
}

.border--l > * {
  margin-left: 2%;
}

.border--xl > * {
  margin-left: 3%;
}

.border--xxl > * {
  margin-left: 5%;
}

/** 
 * * DISPLAY
 * */
.display__inline {
  font-size: 0;
}
.display__inline > * {
  display: inline-block;
  vertical-align: middle;
}
.display__inline.align--t > * {
  vertical-align: top;
}
.display__inline.align--b > * {
  vertical-align: bottom;
}

.display__table {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}

.display__table-cell {
  display: table-cell;
  vertical-align: middle;
}
.display__table-cell.align--t {
  vertical-align: top;
}
.display__table-cell.align--b {
  vertical-align: bottom;
}

.no-margin--b {
  margin-bottom: 0px !important;
}

/** 
 * * SCROLLBAR
 * */
.scroll--custom {
  padding-right: 3px;
  overflow-y: auto;
}
.scroll--custom::-webkit-scrollbar-track {
  background-color: #F0F0F0;
}
.scroll--custom::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #F0F0F0;
}
.scroll--custom::-webkit-scrollbar-thumb {
  height: 2px;
  background-color: #714E2C;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.15);
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: #714E2C;
  border-radius: 10px;
}

/**
 * * VENDOR: SLICK
 * */
.sliderholder {
  position: relative;
  width: 91%;
  margin-left: auto;
}

.slider-arrow {
  position: absolute;
  top: -90px;
  z-index: 9;
  width: 55px;
  height: 55px;
  background: transparent;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slider-arrow:hover {
  opacity: 0.8;
}

.slick-slide {
  outline: none !important;
}

.for--sp {
  display: none;
}

/* * ANIMATION (JS)
 * */
.js-fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

@media screen and (max-width: 1400px) {
  .frame__limit {
    width: 90%;
    max-width: 800px;
  }
}
@media screen and (max-width: 1200px) {
  .frame__limit {
    padding: 75px 0px;
  }
}
@media screen and (max-width: 380px) {
  .form__row {
    margin-bottom: 25px;
  }
  .apply-border,
  .form__label,
  .form__checkbox p,
  .form__radio p {
    font-size: 15px;
  }
}
/* =====================
 * * HEADER
 * * ===================== */
.haru-header {
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
  background: #FDF8F0;
}
.haru-header.on-subpage {
  background: #E7B8A7;
}
.haru-header > div {
  position: relative;
  width: 50%;
  height: 63px;
}
.haru-header > div:first-child {
  background: #E7B8A7;
  padding: 22px 0px;
  padding-left: 2%;
}

.bg--pink {
  background-color: #E7B8A7;
}

.haru-header__logo {
  width: 226px;
}

.haru-header__text {
  position: relative;
  margin-left: 10px;
  font-size: 13px;
  color: #714E2C;
}
.haru-header__text::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #714E2C;
}

.haru-header__menuholder {
  position: fixed;
  top: 13px;
  right: 2%;
  width: 43px;
  margin-left: auto;
  text-align: center;
  cursor: pointer;
}

.haru-header__menu {
  position: relative;
  width: 100%;
}

.haru-header__menu-line {
  max-width: 100%;
  height: 5px;
  margin-bottom: 5px;
}
.haru-header__menu-line:last-child {
  margin-bottom: 0px;
}

.haru-header__menuholder-text {
  margin-top: 10px;
  font-size: 14px;
}

.haru-header__mainmenuwrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  opacity: 0;
  visibility: hidden;
}
.haru-header__mainmenuwrapper.is-active {
  opacity: 1;
  visibility: visible;
}

.haru-header__mainmenu {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 9999;
  width: 640px;
  height: 100%;
  overflow: auto;
  max-height: 850px;
  background: rgba(150, 104, 58, 0.94);
  border-radius: 0px 0px 0px 20px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  opacity: 0;
  visibility: hidden;
}
.haru-header__mainmenu.is-active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.haru-header__mainmenu-closeholder {
  position: relative;
  width: 100%;
  height: 65px;
  text-align: center;
}

.haru-header__mainmenu-close {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3%;
  width: 43px;
  cursor: pointer;
}
.haru-header__mainmenu-close img {
  width: 100%;
}
.haru-header__mainmenu-close p {
  font-size: 14px;
}

.haru-header__mainmenu-body {
  position: relative;
  padding: 25px 130px;
  padding-bottom: 50px !important;
}

.haru-header__mainmenu-logo {
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.haru-header__mainmenu-logo img {
  width: 275px;
}

.haru-header__mainmenu-link {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}
.haru-header__mainmenu-link:last-child {
  margin-bottom: 0px !important;
}
.haru-header__mainmenu-link p {
  font-size: 18px;
}

.haru-header__mainmenu-btn.btn {
  width: 100%;
  margin-top: 50px;
  background: #fff;
}

.haru-header__mainmenu-socialmedias {
  margin-top: 25px;
}

.haru-header__mainmenu-socialmedia {
  position: relative;
  width: 36px;
  height: 36px;
  margin-left: 20px;
  border-radius: 50%;
}
.haru-header__mainmenu-socialmedia:first-child {
  margin-left: 0px;
}
.haru-header__mainmenu-socialmedia img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .haru-header {
    background: #E7B8A7;
  }
}
@media screen and (max-width: 850px) {
  .haru-header__text {
    display: none;
  }
}
@media screen and (max-width: 730px) {
  .haru-header {
    padding: 0px 15px;
  }
  .haru-header > div:first-child {
    width: calc(100% - 43px);
    padding-left: 0px;
  }
  .haru-header > div:last-child {
    width: 43px;
    padding-right: 0px;
  }
  .haru-header__logo {
    width: 226px;
  }
  .haru-header__mainmenu {
    width: 90%;
    max-width: 500px;
  }
  .haru-header__mainmenu-logo img {
    width: 100%;
    max-width: 280px;
  }
  .haru-header__mainmenu-body {
    padding: 20px 50px;
    padding-bottom: 30px !important;
  }
  .haru-header__mainmenu-link:last-child p {
    font-family: "Noto Sans JP", sans-serif !important;
    font-weight: 500 !important;
  }
  .haru-header__mainmenu-link p {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .haru-header__mainmenu-socialmedia {
    margin-left: 15px;
    width: 27px;
    height: 27px;
  }
}
@media screen and (max-width: 650px) {
  .haru-header.on-subpage .haru-header__logoholder {
    display: none;
  }
}
@media screen and (max-width: 437px) {
  .haru-header__mainmenu-body {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 395px) {
  .haru-header__mainmenu {
    width: 92%;
  }
}
@media screen and (max-width: 385px) {
  .haru-header__mainmenu-body {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 372px) {
  .haru-header__mainmenu {
    width: 100%;
    height: 100%;
    overflow: auto;
    border-radius: 0px;
  }
  .haru-header__mainmenu-body {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 340px) {
  .haru-header__mainmenu-link p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (max-width: 318px) {
  .haru-header__logo {
    width: 180px;
  }
}
/* =====================
 * * FOOTER
 * * ===================== */
.haru-footer {
  position: relative;
  width: 100%;
  background: #714E2C;
}

.haru-footer__inner {
  position: relative;
  width: 88%;
  max-width: 1000px;
  margin: auto;
  padding: 60px 0px;
}

.haru-footer__logo {
  width: 230px;
  margin-bottom: 30px;
}

.haru-footer__links {
  position: relative;
  margin-bottom: 33px;
}

.haru-footer__link {
  position: relative;
}
.haru-footer__link::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #fff;
}

.haru-footer__link-text {
  padding: 5px 0px;
  font-size: 16px;
  color: #fff;
}

.haru-footer__socialmedias {
  margin-bottom: 20px;
}

.haru-footer__socialmedia {
  margin-left: 25px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.haru-footer__socialmedia:first-child {
  margin-left: 0px;
}
.haru-footer__socialmedia:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0.85;
}
.haru-footer__socialmedia img {
  width: auto;
  height: 37px;
}

.haru-footer__copyright {
  font-size: 11px;
  line-height: 21px;
  color: #fff;
}

@media screen and (max-width: 730px) {
  .haru-footer__inner {
    padding: 45px 0px;
  }
  .haru-footer__logo {
    width: 208px;
    margin-bottom: 25px;
  }
  .haru-footer__links {
    margin-bottom: 25px;
  }
  .haru-footer__socialmedia {
    margin-left: 22px;
  }
  .haru-footer__socialmedia img {
    height: 28px;
  }
}
/* =====================
 * * HOME PAGE
 * * ===================== */
.haru-home {
  position: relative;
}

/* * KV
 * */
.hh-kv__bg.frame__bg {
  height: 80%;
}

.hh-kv__limit.frame__limit {
  width: 100%;
  max-width: none;
  padding: 0px;
}

.hh-kv__sliderholder {
  position: relative;
}

@media screen and (min-width: 768px) {
  .hh-nursing__limit.frame__limit {
    padding-top: 100px;
  }
}
@media screen and (min-width: 980px) {
  .hh-nursing__limit.frame__limit {
    padding-top: 0px;
    padding-bottom: 0;
  }
}
.hh-kv__slider {
  width: 100%;
  height: 100%;
}

.hh-kv__slider-item {
  position: relative;
  width: 60%;
  height: 300px;
  overflow: hidden;
  border-radius: 0px 50px 50px 0px;
}

@media screen and (min-width: 768px) {
  .hh-kv__slider-item {
    width: 50%;
    height: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .hh-kv__slider-item {
    width: 50%;
    height: 680px;
  }
}
@media screen and (min-width: 1500px) {
  .hh-kv__slider-item {
    width: 50vw;
    height: 740px;
  }
}
@media screen and (min-width: 1700px) {
  .hh-kv__slider-item {
    width: 50vw;
    height: 800px;
  }
}
@media screen and (min-width: 768px) {
  .hh-kv__textholder {
    padding-left: 50px;
  }
}
@media screen and (min-width: 980px) {
  .hh-kv__textholder {
    padding-left: 5.5vw;
  }
}
@media screen and (min-width: 1400px) {
  .hh-kv__textholder {
    padding-left: 8vw;
  }
}
@media screen and (min-wdith: 1600px) {
  .hh-kv__textholder {
    padding-left: 10vw;
  }
}
.hh-kv__featuredtext {
  width: 300px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 0 auto 20px;
}

@media screen and (min-width: 768px) {
  .hh-kv__featuredtext {
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 30px 0px 30px;
  }
}
@media screen and (min-width: 1100px) {
  .hh-kv__featuredtext {
    width: 442px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 60px 0px 30px;
  }
}
.hh-kv__featuredtext-longtermcare {
  width: 100%;
}

.hh-kv__featuredtext-lines {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.hh-kv__featuredtext-line {
  position: relative;
  width: 100%;
  margin-bottom: 78px;
}
.hh-kv__featuredtext-line:last-child {
  margin-bottom: 0px;
}

.hh-kv__home {
  position: relative;
  width: 270px;
}
.hh-kv__home img {
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .hh-kv__home {
    margin-left: 100px;
  }
}
.hh-kv_bg_pink {
  position: relative;
}

.hh-kv_bg_pink::after {
  content: "";
  position: absolute;
  background-image: url("../images/kv/kv_bg_sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0px;
  right: -50%;
  width: 900px;
  height: 900px;
}

.hh-kv_bg_pink::before {
  content: "";
  position: absolute;
  display: block;
  top: 0%;
  left: 0;
  width: 100vw;
  height: 408px;
  background-color: #E7B8A7;
  z-index: 2;
}

@media screen and (min-width: 560px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: 0px;
    right: -30%;
    width: 900px;
    height: 900px;
  }
}
@media screen and (min-width: 630px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: 0px;
    right: -10%;
    width: 900px;
    height: 900px;
  }
}
@media screen and (min-width: 768px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: -15%;
    right: -30%;
    width: 900px;
    height: 800px;
    z-index: 1;
  }
  .hh-kv_bg_pink::before {
    content: "";
    position: absolute;
    display: block;
    top: 0%;
    left: 0;
    width: 100vw;
    height: 208px;
    background-color: #E7B8A7;
    z-index: 2;
  }
}
@media screen and (min-width: 980px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: -15%;
    left: initial;
    right: -10%;
    width: 908px;
    height: 898px;
  }
}
@media screen and (min-width: 1100px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: -7%;
    left: initial;
    right: 0%;
    width: 900px;
    height: 898px;
  }
  .hh-kv_bg_pink::before {
    content: "";
    position: absolute;
    display: block;
    top: 0%;
    left: 0;
    width: 100vw;
    height: 408px;
    background-color: #E7B8A7;
    z-index: 2;
  }
}
@media screen and (min-width: 1400px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: -25%;
    left: initial;
    right: 0%;
    width: 80%;
    height: 100%;
  }
  .hh-kv_bg_pink::before {
    content: "";
    position: absolute;
    display: block;
    top: 0%;
    left: 0;
    width: 100vw;
    height: 408px;
    background-color: #E7B8A7;
    z-index: 2;
  }
}
@media screen and (min-width: 1700px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: -30%;
    left: initial;
    right: 0%;
    width: 80%;
    height: 100%;
  }
}
@media screen and (min-width: 2000px) {
  .hh-kv_bg_pink::after {
    content: "";
    position: absolute;
    background-image: url("../images/kv/kv_bg_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: -35%;
    left: initial;
    right: 0%;
    width: 80%;
    height: 100%;
  }
}
/* NURSING*/
.hh-nursing.frame {
  z-index: 3;
}

.hh-nursing__limit.frame__limit {
  width: 100%;
  max-width: none;
}

.hh-nursing__scrollindicator {
  position: absolute;
  top: -20px;
  right: calc(50% - 35px);
  background-color: #fff;
  width: 76px;
  height: 76px;
  border-radius: 50%;
}
.hh-nursing__scrollindicator p {
  font-size: 16px;
  color: #8F7F6F;
  text-align: center;
  margin-top: 30px;
}

@-webkit-keyframes scrollLine {
  0% {
    height: 0px;
  }
  80% {
    height: 240px;
  }
  100% {
    height: 0px;
  }
}

@keyframes scrollLine {
  0% {
    height: 0px;
  }
  80% {
    height: 240px;
  }
  100% {
    height: 0px;
  }
}
@media screen and (min-width: 768px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -23%;
    right: 15%;
    background-color: #fff;
    width: 76px;
    height: 76px;
    border-radius: 50%;
  }
}
@media screen and (min-width: 980px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -18%;
    right: 22%;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  .hh-nursing__scrollindicator p {
    font-size: 16px;
    color: #8F7F6F;
    text-align: center;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -40%;
    right: 20%;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -50%;
    right: 21%;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1500px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -56%;
    right: 23%;
  }
}
@media screen and (min-width: 1600px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -50%;
    right: 23%;
  }
}
@media screen and (min-width: 1700px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -65%;
  }
}
@media screen and (min-width: 1800px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -55%;
  }
}
@media screen and (min-width: 1900px) {
  .hh-nursing__scrollindicator {
    position: absolute;
    top: -45%;
    right: 25%;
  }
}
.media_box {
  padding: 50px 40px;
  text-align: center;
}
.media_box .media_title_en {
  font-size: 30px;
  color: #714E2C;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #714E2C;
  text-underline-offset: 10px;
}
.media_box .media_title_ja {
  margin-top: 30px;
  font-size: 20px;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #714E2C;
}
.media_box .movie_container {
  position: relative;
  text-align: center;
  margin: 30px auto 0;
  width: 100%;
  max-width: 420px;
}
.media_box .movie_container.show::before,
.media_box .movie_container.show::after {
  opacity: 0;
}
@media screen and (min-width: 980px) {
  .media_box .movie_container:hover:after {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  .media_box .movie_container:hover:before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.media_box .movie_container::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000;
  z-index: 4;
  margin-top: -10px;
  margin-left: -8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.media_box .movie_container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 71px;
  height: 71px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.media_box video {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 420px;
}
@media screen and (min-width: 980px) {
  .media_box video.sp {
    display: none;
  }
}
@media screen and (max-width: 979px) {
  .media_box video.pc {
    display: none;
  }
}
.media_box .media_text {
  max-width: 700px;
  width: 100%;
  margin: 30px auto 0;
}
.media_box .media_text p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.8;
  font-size: 15px;
  text-align: left;
}
@media screen and (min-width: 980px) {
  .media_box .media_title_en {
    font-size: 20px;
  }
  .media_box .media_title_ja {
    font-size: 25px;
  }
  .media_box .media_text p {
    font-size: 17px;
  }
}

.hh-nursing__disclaimer {
  position: absolute;
  top: 20px;
  right: 27%;
}
.hh-nursing__disclaimer * {
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 1px;
  color: #8F7F6F;
}

.hh-nursing__englishtitle.hh-englishtitle {
  width: 100%;
  margin-bottom: -33px;
  padding-left: 45px;
}
.hh-nursing__englishtitle.hh-englishtitle * {
  font-size: 231px;
}

.hh-nursing__box {
  position: relative;
  width: 50%;
  padding-top: 90px;
  padding-bottom: 130px;
  padding-left: 10%;
  padding-right: 200px;
  background: #E7B8A7;
  border-radius: 0px 60px 60px 0px;
}

.hh-nursing__box-title {
  width: 100%;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #fff;
}
.hh-nursing__box-title * {
  font-size: 30px;
  font-weight: normal;
  line-height: 60px;
  letter-spacing: 3px;
}

.hh-nursing__box-desc {
  margin-bottom: 100px;
}
.hh-nursing__box-desc * {
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
}
.hh-nursing__box-desc .marginl-decr {
  margin-left: -8px;
}

.hh-nursing__box-note * {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
}

.hh-nursing__featuredimg {
  position: absolute;
  top: 28.5%;
  right: 10%;
  width: 820px;
}
.hh-nursing__featuredimg img {
  width: 100%;
  margin-bottom: 30px;
}

.hh-nursing__featuredimg-texts > * {
  margin-bottom: 5px;
}
.hh-nursing__featuredimg-texts > *:last-child {
  margin-bottom: 0px;
}
.hh-nursing__featuredimg-texts .text--1 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.6px;
}
.hh-nursing__featuredimg-texts .text--2 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
}
.hh-nursing__featuredimg-texts .text--3 {
  font-size: 16px;
  line-height: 26px;
}

/* * NEWS
 * */
.hh-news {
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .hh-news {
    padding-top: 100px;
  }
}
@media sceen and (min-width: 980px) {
  .hh-news {
    padding-top: 120px;
  }
}
.hh-news .hh-news__limit {
  padding: 0 0 100px 0;
  max-width: 800px;
}

.hh-news_box {
  background-color: #FDF8F0 !important;
  padding: 50px;
}
.hh-news_box .hh-news__header {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}
.hh-news_box .hh-news__header::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #714E2C;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hh-news_box .hh-news__header h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #714E2C;
  text-align: center;
}
.hh-news_box .hh-news__desc {
  margin-top: 25px;
}
.hh-news_box .hh-news__desc p {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  color: #714E2C;
}
.hh-news_box .hh-news_list li:first-child a::after {
  display: none;
}
.hh-news_box .hh-news_list li:last-child a {
  padding: 30px 0 0 0;
}
.hh-news_box .hh-news_list a {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.hh-news_box .hh-news_list a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.hh-news_box .hh-news_list a:hover .hh-news_date p {
  background-color: #714E2C;
}
.hh-news_box .hh-news_list a:hover .hh-news_title p {
  color: #EDA68C;
}
.hh-news_box .hh-news_date {
  width: 16%;
  min-width: 112px;
  padding-top: 5px;
}
.hh-news_box .hh-news_date p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #EDA68C;
  padding: 6px 20px 7px 20px;
  border-radius: 15px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hh-news_box .hh-news_title {
  width: 79.43%;
}
.hh-news_box .hh-news_title p {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.88;
  color: #714E2C;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

/* * PROBLEM
 * */
.hh-problem__header {
  width: 506px;
  margin: auto;
  margin-bottom: 80px;
}
.hh-problem__header * {
  font-size: 25px;
  font-weight: normal !important;
  line-height: 35px;
  letter-spacing: 1.6px;
}

.hh-problem__header-line {
  width: 95%;
  margin-top: 10px;
}

.hh-problem__case {
  position: relative;
  width: 180px;
  height: 180px;
  margin-left: 9.25%;
}
.hh-problem__case:first-child {
  margin-left: 0px;
}
.hh-problem__case::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
}

.hh-problem__case-title {
  position: absolute;
  top: -25px;
  left: 0px;
  z-index: 2;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}
.hh-problem__case-title .num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0px;
}

.hh-problem__case-desc {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.hh-problem__case-desc * {
  font-size: 16px;
  line-height: 26px;
}

/* * TADAIMA
 * */
.hh-tadaima__bg-overlay {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
  width: 33px;
}

.hh-tadaima__header {
  position: relative;
  width: 100%;
  margin-bottom: 55px;
}

.hh-tadaima__header-text {
  position: relative;
  width: 475px;
  margin: auto;
}

.hh-tadaima__header-text *,
.hh-sonae__header-text * {
  font-size: 22px;
  line-height: 50px;
  letter-spacing: 3px;
}

.hh-tadaima__header-text__dots {
  position: absolute;
  top: 55%;
  left: 4%;
  height: 5px;
  line-height: normal;
}

.hh-tadaima__header-text__dot {
  width: 5px;
  height: 5px;
  margin-left: 0.5em;
  background: #714E2C;
  border-radius: 50%;
  line-height: normal;
}
.hh-tadaima__header-text__dot:first-child {
  margin-left: 0px;
}

.hh-tadaima__header-line {
  position: absolute;
  top: 0px;
  width: 38px;
  height: auto;
}
.hh-tadaima__header-line.line--1 {
  left: 0px;
}
.hh-tadaima__header-line.line--2 {
  right: 0px;
}

.hh-tadaima__chatbubble,
.hh-sonae__chatbubble {
  position: relative;
  width: 600px;
  margin: auto;
  margin-bottom: 70px;
  padding: 18px 0px;
  background: #fff;
  border-radius: 100px;
}
.hh-tadaima__chatbubble > *,
.hh-sonae__chatbubble > * {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}
.hh-tadaima__chatbubble .text--1,
.hh-sonae__chatbubble .text--1 {
  font-size: 20px;
  letter-spacing: 1.6px;
}
.hh-tadaima__chatbubble .text--2,
.hh-sonae__chatbubble .text--2 {
  margin-bottom: 20px;
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 5px;
}
.hh-tadaima__chatbubble .text--3,
.hh-sonae__chatbubble .text--3 {
  font-size: 40px;
  margin-bottom: 0px !important;
  letter-spacing: 1px;
}
.hh-tadaima__chatbubble .arrow,
.hh-sonae__chatbubble .arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -17px;
  z-index: 1;
  width: 36px;
  margin-bottom: 0px !important;
}

.hh-tadaima__featured,
.hh-sonae__featured {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}
.hh-tadaima__featured::before,
.hh-sonae__featured::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100%;
  z-index: 1;
  width: 300%;
  height: calc(100% - 3px);
  background: #E7B8A7;
}

.hh-tadaima__featured-img,
.hh-sonae__featured-img {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hh-tadaima__featured-text,
.hh-sonae__featured-text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -50px;
  z-index: 2;
  width: 85%;
  padding: 30px 20px;
  background: #fff;
  border: 2px solid #714E2C;
  border-radius: 50px;
}
.hh-tadaima__featured-text *,
.hh-sonae__featured-text * {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.6px;
}

.hh-tadaima__desc,
.hh-sonae__desc {
  margin-bottom: 50px;
}
.hh-tadaima__desc *,
.hh-sonae__desc * {
  font-size: 19px;
  line-height: 39px;
  letter-spacing: 1.6px;
}
.hh-tadaima__desc .marginl-decr,
.hh-sonae__desc .marginl-decr {
  margin-left: -7px;
}

.hh-tadaima__group,
.hh-sonae__group {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 80px;
}
.hh-tadaima__group:last-child,
.hh-sonae__group:last-child {
  margin-bottom: 0px;
}

.hh-tadaima__group-type,
.hh-sonae__group-type {
  position: relative;
  display: inline-block;
  margin-bottom: 33px;
  font-size: 20px;
  letter-spacing: 1.6px;
}
.hh-tadaima__group-type::after,
.hh-sonae__group-type::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #E7B8A7;
}

.hh-tadaima__group-title,
.hh-sonae__group-title {
  margin-bottom: 25px;
}
.hh-tadaima__group-title *,
.hh-sonae__group-title * {
  font-size: 25px;
  line-height: 35px;
  letter-spacing: 1px;
}

.hh-tadaima__group-attributes,
.hh-sonae__group-attributes {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.hh-tadaima__group-attribute {
  position: relative;
  width: 50%;
  margin-left: 13px;
  padding: 15px 10px 20px;
  background: #fff;
  border: 3px solid #E7B8A7;
  border-radius: 20px;
  text-align: center;
  max-width: 190px;
}
@media screen and (min-width: 768px) {
  .hh-tadaima__group-attribute {
    width: 50%;
  }
}

.hh-sonae__group-attribute {
  position: relative;
  width: 240px;
  height: 240px;
  margin-left: 13px;
  padding: 10px;
  padding-top: 15px;
  background: #fff;
  border: 3px solid #E7B8A7;
  border-radius: 20px;
}
.hh-sonae__group-attribute:first-child {
  margin-left: 0px;
}

.hh-tadaima__group-attribute__icon,
.hh-sonae__group-attribute__icon {
  position: relative;
  width: 110px;
  height: 110px;
  margin: auto;
  margin-bottom: 8px;
}

.hh-tadaima__group-attribute__text,
.hh-sonae__group-attribute__text {
  position: relative;
  width: 100%;
  height: 60px;
}
.hh-tadaima__group-attribute__text *,
.hh-sonae__group-attribute__text * {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
}
.hh-tadaima__group-attribute__text p,
.hh-sonae__group-attribute__text p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.hh-tadaima__group-desc,
.hh-sonae__group-desc {
  position: relative;
  width: 100%;
  padding: 40px 50px;
  background: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.hh-tadaima__group-desc *,
.hh-sonae__group-desc * {
  font-size: 17px;
  line-height: 32px;
}

.hh-tadaima__group-note,
.hh-sonae__group-note {
  margin-top: 20px;
  text-align: left;
}
.hh-tadaima__group-note *,
.hh-sonae__group-note * {
  font-size: 14px;
  line-height: 24px;
}

.hh-tadaima__englishtitle.hh-englishtitle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -43px;
  z-index: 1;
}
.hh-tadaima__englishtitle.hh-englishtitle * {
  font-size: 328px;
  opacity: 1;
}

.hh-tadaima_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 980px) {
  .hh-tadaima_group {
    gap: 0 15px;
  }
}
.hh-tadaima_group .hh-tadaima__group-attribute {
  width: calc(50% - 10px);
  height: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .hh-tadaima_group .hh-tadaima__group-attribute {
    width: calc(25% - 20px);
    max-width: none;
  }
}

.flex_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  margin-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex_group .hh-tadaima__group-attribute {
  width: calc(50% - 10px);
  margin: 0;
}
@media screen and (768px) {
  .flex_group .hh-tadaima__group-attribute {
    width: 50%;
    max-width: 190px;
  }
}

/* * PRICE
 * */
.hh-price__limit.frame__limit {
  width: 100%;
  max-width: 1980px;
}

.hh-price__header,
.hh-flow__header,
.hh-faq__header,
.hh-message__header,
.hh-profile__header,
.hh-company__header,
.hh-contact__header {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.hh-price__header::before,
.hh-flow__header::before,
.hh-faq__header::before,
.hh-message__header::before,
.hh-profile__header::before,
.hh-company__header::before,
.hh-contact__header::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #fff;
}
.hh-price__header *,
.hh-flow__header *,
.hh-faq__header *,
.hh-message__header *,
.hh-profile__header *,
.hh-company__header *,
.hh-contact__header * {
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 1px;
}

.hh-price__desc,
.hh-flow__desc,
.hh-faq__desc,
.hh-message__desc,
.hh-company__desc,
.hh-contact__desc {
  margin-bottom: 50px;
}
.hh-price__desc *,
.hh-flow__desc *,
.hh-faq__desc *,
.hh-message__desc *,
.hh-company__desc *,
.hh-contact__desc * {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.hh-price__topics {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.hh-price__topic {
  position: relative;
  width: calc(33.3333333333% - 37px);
  margin-left: 55px;
  margin-bottom: 30px;
  padding: 12px 10px 14px 0px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  cursor: pointer;
}
.hh-price__topic:hover {
  background: #714E2C;
}
.hh-price__topic:hover p {
  color: #fff !important;
}
.hh-price__topic:hover .hh-price__topic-arrow {
  right: 10px;
}
.hh-price__topic:hover .hh-price__topic-arrow.arrow--2 {
  opacity: 1;
}
.hh-price__topic:first-child, .hh-price__topic:nth-child(3n+1) {
  margin-left: 0px;
}
.hh-price__topic p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 27px;
  letter-spacing: 1px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.hh-price__topic-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 9px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.hh-price__topic-arrow.arrow--1 {
  opacity: 1;
}
.hh-price__topic-arrow.arrow--2 {
  opacity: 0;
}

.hh-price__sliderholder {
  position: relative;
}
.hh-price__sliderholder .slider-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hh-price__sliderholder .slider-arrow.arrow--prev {
  left: 25%;
}
.hh-price__sliderholder .slider-arrow.arrow--next {
  right: 25%;
}
.hh-price__sliderholder .slick-dots {
  bottom: 45px;
}
.hh-price__sliderholder .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0px 7px;
}
.hh-price__sliderholder .slick-dots li.slick-active button::before {
  background: #C7BAB6;
}
.hh-price__sliderholder .slick-dots li button {
  width: 100%;
  height: 100%;
}
.hh-price__sliderholder .slick-dots li button::before {
  content: "";
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #714E2C;
  font-size: 0px;
  line-height: 0px;
}

.hh-price__slider-item {
  position: relative;
  min-height: 455px;
  max-height: 455px;
  margin: 50px;
  margin-bottom: 0px;
  padding: 50px;
  padding-bottom: 100px;
  background: #fff;
  border-radius: 30px;
}

.hh-price__slider-item__col {
  position: relative;
}
.hh-price__slider-item__col.col--1 {
  width: calc(100% - 294px);
}
.hh-price__slider-item__col.col--2 {
  width: 294px;
}

.hh-price__slider-item__topic {
  margin-bottom: 40px;
}

.hh-price__slider-item__usage,
.hh-price__slider-item__validity,
.hh-price__slider-item__price * {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #714E2C;
}

.hh-price__slider-item__usage {
  font-size: 22px;
}

.hh-price__slider-item__validity {
  font-size: 20px;
}

.hh-price__slider-item__price {
  margin-bottom: 20px;
}
.hh-price__slider-item__price * {
  font-size: 70px;
}
.hh-price__slider-item__price span {
  font-size: 30px;
}

.hh-price__slider-item__session {
  font-size: 14px;
  color: #714E2C;
}

.hh-price__slider-item__list {
  margin-bottom: 25px;
}
.hh-price__slider-item__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.9;
  color: #714E2C;
  letter-spacing: 1px;
  padding-left: 1em;
  text-indent: -1em;
}
.hh-price__slider-item__list li:last-child {
  margin-bottom: 0px;
}

.hh-price__slider-item__notes li {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
  color: #434444;
}
.hh-price__slider-item__notes li:last-child {
  margin-bottom: 0px;
}

/* * SONAE
 * */
.hh-sonae__header {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.hh-sonae__header-line {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 96px;
}
.hh-sonae__header-line.line--1 {
  left: 0px;
}
.hh-sonae__header-line.line--2 {
  right: 0px;
}

.hh-sonae__featured::before {
  display: none !important;
}

.hh-sonae__group-type::after {
  background: #714E2C !important;
}

.hh-sonae__group-attribute {
  border: 3px solid #714E2C !important;
}

.hh-sonae__chatbubble .text--2 {
  color: #B18151;
}

/* * VOICE
 * */
.lity {
  background: rgba(0, 0, 0, 0.7) !important;
}

.voice_wrap .voice_box.type01 {
  background-color: #FDF8F0;
}
.voice_wrap .voice_box.type02 {
  background-color: #FFFFFF;
}
.voice_wrap .voice_box {
  border-radius: 20px;
  padding: 50px 40px;
}
.voice_wrap .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.voice_wrap .right_box {
  max-width: 185px;
  width: 25.7%;
}
.voice_wrap .right_box .voice_img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.voice_wrap .right_box .voice_img:hover {
  opacity: 0.8;
}
.voice_wrap .right_box .voice_img img {
  width: 100%;
}
.voice_wrap .left_box {
  width: 68.7%;
}
.voice_wrap .left_box .voice_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.voice_wrap .left_box .voice_head .voice_num p {
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding: 6px 20px 7px 20px;
  background-color: #E7B8A7;
  border-radius: 15px;
  text-align: left;
}
.voice_wrap .left_box .voice_head .voice_name {
  margin-left: 10px;
}
.voice_wrap .left_box .voice_head .voice_name p {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-heihgt: 1;
  color: #E7B8A7;
  text-align: left;
}
.voice_wrap .left_box .voice_title {
  margin-top: 15px;
}
.voice_wrap .left_box .voice_title h3 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #714E2C;
  text-align: left;
}
.voice_wrap .left_box .voice_prof {
  margin-top: 15px;
}
.voice_wrap .left_box .voice_prof p {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #714E2C;
}
.voice_wrap .left_box .voice_content {
  margin-top: 25px;
}
.voice_wrap .left_box .voice_content p {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.05;
  color: #434444;
  text-align: left;
}

/* * FLOW
 * */
.hh-flow__header::before,
.hh-faq__header::before,
.hh-message__header::before,
.hh-profile__header::before,
.hh-company__header::before,
.hh-contact__header::before {
  background: #714E2C !important;
}

.hh-flow__desc {
  margin-bottom: 80px;
}

.hh-flow__step {
  position: relative;
  width: 100%;
  margin-bottom: 70px;
}
.hh-flow__step::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -42px;
  width: 45px;
  height: 15px;
  background-image: url("../images/polygon-down-peach.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hh-flow__step:last-child {
  margin-bottom: 0px;
}
.hh-flow__step:last-child::before {
  display: none;
}

.hh-flow__step-indicator {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  z-index: 2;
  width: 100px;
  height: 100px;
  padding: 18px 5px;
  border-radius: 50%;
  background: #E7B8A7;
  text-align: center;
}
.hh-flow__step-indicator p {
  margin-bottom: 7px;
  font-size: 16px;
}
.hh-flow__step-indicator img {
  width: auto;
  height: 44px;
}

.hh-flow__step-textholder {
  position: relative;
  z-index: 1;
  width: calc(100% - 50px);
  margin-left: auto;
  padding: 50px 70px;
  padding-left: 120px;
  background: #fff;
  border-radius: 30px;
  text-align: left;
}

.hh-flow__step-name {
  margin-bottom: 20px;
}
.hh-flow__step-name * {
  font-size: 23px;
  line-height: 33px;
}

.hh-flow__step-desc * {
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 3px;
}
.hh-flow__step-desc .js-goto {
  cursor: pointer;
}

/* * FAQ
 * */
.hh-faq__group {
  position: relative;
  width: 100%;
  margin-bottom: 70px;
}
.hh-faq__group.group--2 .hh-faq__group-title {
  background: #FFF8F7;
}
.hh-faq__group.group--3 .hh-faq__group-title {
  background: #FCF1DF;
}
.hh-faq__group:last-child {
  margin-bottom: 0px !important;
}

.hh-faq__group-title {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  padding: 15px;
  background: #F9FDF8;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  text-align: center;
}
.hh-faq__group-title * {
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 1.6px;
}

.hh-faq__collapse {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #434444;
}
.hh-faq__collapse:last-child {
  margin-bottom: 0px;
}

.hh-faq__collapse-header {
  position: relative;
  padding: 0px 20px;
  cursor: pointer;
}
.hh-faq__collapse-header.is-active .hh-faq__collapse-icon {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.hh-faq__collapse-header__indicator,
.hh-faq__collapse-body__indicator {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #E7B8A7;
}
.hh-faq__collapse-header__indicator p,
.hh-faq__collapse-body__indicator p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 21px;
}

.hh-faq__collapse-header__text,
.hh-faq__collapse-body__desc {
  position: relative;
  width: calc(100% - 45px);
  padding-left: 50px;
}

.hh-faq__collapse-header__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.6px;
  color: #434444;
}
.hh-faq__collapse-header__text .marginl-decr {
  margin-left: -8px;
}

.hh-faq__collapse-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
  width: 14px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.hh-faq__collapse-body {
  position: relative;
  display: none;
  width: 100%;
  margin-top: 15px;
  padding: 30px 20px;
  border-radius: 20px;
  background: #F2F0ED;
}

.hh-faq__collapse-body__indicator {
  background: #fff;
}

.hh-faq__collapse-body__desc * {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 17px;
  color: #434444;
  line-height: 35px;
  letter-spacing: 3px;
  word-break: break-all;
}
.hh-faq__collapse-body__desc .marginl-decr {
  margin-left: -8px;
}

/* * MESSAGE
 * */
.hh-message__englishtitle.hh-englishtitle {
  position: absolute;
  top: -88px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hh-message__englishtitle.hh-englishtitle * {
  font-size: 265px;
  color: #fff;
  opacity: 1;
}

.hh-message__limit.frame__limit {
  width: 100%;
  max-width: 1980px;
}

.hh-message__featured,
.hh-message__featured-img {
  position: relative;
  width: 100%;
}

.hh-message__featured {
  height: 850px;
  margin-bottom: 80px;
  overflow: hidden;
}

.hh-message__featured-img {
  top: -9%;
}

.hh-message__featured-text {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 2;
  width: 100%;
  background: rgba(231, 184, 167, 0.9);
  text-align: left;
}

.hh-message__featured-text__inner,
.hh-message__paragraph,
.hh-profile {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.hh-message__featured-text__inner {
  padding: 20px 0px;
}
.hh-message__featured-text__inner > div:first-child {
  width: 250px;
}
.hh-message__featured-text__inner > div:last-child {
  width: calc(100% - 250px);
  padding-left: 50px;
  border-left: 1px solid #fff;
}

.hh-message__featured-text__name {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}
.hh-message__featured-text__name.name--jp {
  font-size: 25px;
  line-height: 60px;
  letter-spacing: 1.6px;
}

.hh-message__featured-text__representative,
.hh-message__featured-text__experience {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #fff;
}

.hh-message__featured-text__representative {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.6px;
}

.hh-message__featured-text__experience {
  font-size: 16px;
  line-height: 26px;
}

.hh-message__paragraph {
  margin-bottom: 80px;
  text-align: left;
}
.hh-message__paragraph * {
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 1.6px;
}
.hh-message__paragraph h1, .hh-message__paragraph h2 {
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 3px;
}
.hh-message__paragraph h3, .hh-message__paragraph h4, .hh-message__paragraph h5 {
  margin-top: 80px;
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.6px;
}
.hh-message__paragraph .marginl-decr {
  margin-left: -8px;
}

.hh-profile {
  padding: 60px 50px;
  background: #fff;
}

.hh-profile__header {
  margin-bottom: 30px;
}
.hh-profile__header * {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.6px;
}

.hh-profile__desc {
  margin-bottom: 40px;
}
.hh-profile__desc * {
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 1.6px;
}

.hh-profile__group {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid #714E2C;
}
.hh-profile__group:last-child {
  margin-bottom: 0px;
}

.hh-profile__group-title {
  margin-bottom: 15px;
}
.hh-profile__group-title * {
  font-size: 20px;
}

.hh-profile__group-list__item {
  margin-bottom: 8px;
}
.hh-profile__group-list__item:last-child {
  margin-bottom: 0px;
}
.hh-profile__group-list__item * {
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 1.6px;
}

.hh-profile__group-list__item-date {
  width: 70px;
}

.hh-profile__group-list__item-desc {
  width: calc(100% - 70px);
  padding-left: 10px;
}
.hh-profile__group-list__item-desc .marginl-decr {
  margin-left: -8px;
}

/* * COMPANY
 * */
.hh-company__table,
.hh-company__table-row {
  position: relative;
  width: 100%;
}

.hh-company__table-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #96683A;
  text-align: left;
}
.hh-company__table-row:first-child {
  padding-top: 20px;
  border-top: 1px solid #96683A;
}

.hh-company__table-row__label {
  width: 250px;
}

.hh-company__table-row__value {
  width: calc(100% - 250px);
  padding-left: 10px;
}
.hh-company__table-row__value .tel a,
.hh-company__table-row__value .email,
.hh-company__table-row__value .num {
  color: #434444 !important;
}
.hh-company__table-row__value .tel a {
  text-decoration: underline;
}

.hh-company__table-row__label *,
.hh-company__table-row__value * {
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 1.6px;
}

/* * CONTACT
 * */
.hh-contact__limit.frame__limit {
  width: 90%;
  max-width: 1080px;
}

.hh-contact__note {
  margin-bottom: 40px;
}
.hh-contact__note * {
  font-size: 16px;
  line-height: 28px;
}

.hh-contact__form {
  position: relative;
  width: 100%;
  padding: 80px;
  background: #fff;
}
.hh-contact__form .form__radio {
  margin-left: 30px;
  cursor: pointer;
}
.hh-contact__form .form__radio:first-child {
  margin-left: 0px;
}
.hh-contact__form .has-error * {
  color: #FF4400 !important;
}
.hh-contact__form .has-error input,
.hh-contact__form .has-error .select-holder {
  border: 1px solid #FF4400 !important;
  color: #434444 !important;
}
.hh-contact__form .has-error .select-holder * {
  color: #434444 !important;
}
.hh-contact__form .row--servicegender .form__radio > *,
.hh-contact__form .row--servicerelationship .form__radio > * {
  vertical-align: middle;
}
.hh-contact__form .row--serviceage .select-holder {
  width: 100px;
}
.hh-contact__form .row--serviceage .suffix {
  font-size: 16px;
  margin-left: 5px;
}
.hh-contact__form .row--clientaddr .form__label {
  padding-top: 10px;
}
.hh-contact__form .row--clientaddr input[name=client_addr2] {
  display: block;
  width: 100%;
  margin-top: 10px;
}
.hh-contact__form .row--serviceaddr .form__label {
  padding-top: 10px;
}
.hh-contact__form .row--serviceaddr input[name=service_useraddr2] {
  display: block;
  width: 100%;
  margin-top: 10px;
}
.hh-contact__form .row--message .apply-border {
  width: 100%;
}
.hh-contact__form .row--message textarea {
  white-space: pre-wrap;
}
.hh-contact__form .row--iagree {
  text-align: center;
}
.hh-contact__form .row--iagree .form__fieldholder {
  width: 100%;
  padding-left: 0px;
  text-align: center;
}
.hh-contact__form .row--iagree .form__fieldholder label {
  width: auto;
  cursor: pointer;
}
.hh-contact__form .row--iagree .form__checkbox > * {
  vertical-align: middle;
  color: #707070;
}
.hh-contact__form .row--iagree .form__checkbox p {
  font-size: 14px;
}

.ss-contact__link {
  position: relative;
  display: inline-block;
  width: auto;
  margin-top: 10px;
  padding: 5px 10px;
}
.ss-contact__link::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #E7B8A7;
}

.ss-contact__link-text {
  font-size: 16px;
  color: #E7B8A7;
}

.ss-gotop {
  position: fixed;
  right: 10px;
  bottom: 5%;
  width: 69px;
  height: 69px;
  background: #EDA68C;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  cursor: pointer;
}
.ss-gotop p {
  font-size: 16px;
}

.ss-gotop__icon {
  width: 9px;
  margin: auto;
  margin-bottom: 5px;
}

.ss-gotop__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* * FEEL FREE TO CONTACT US
 * */
.hh-feelfreetomail {
  position: fixed;
  right: 0px;
  bottom: 22%;
  z-index: 99;
  width: 134px;
  height: 114px;
  overflow: hidden;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  cursor: pointer;
}
.hh-feelfreetomail.is--switched {
  width: 100px;
  height: unset;
  border-radius: 0px;
}
.hh-feelfreetomail.is--switched::before {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.hh-feelfreetomail.is--switched .hh-feelfreetomail__texts {
  opacity: 0;
}
.hh-feelfreetomail.is--switched .hh-feelfreetomail__icon {
  opacity: 1;
  visibility: visible;
}
.hh-feelfreetomail.is--switched .hh-feelfreetomail__icon .side_line_link {
  display: block;
  position: relative;
  height: 100px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hh-feelfreetomail.is--switched .hh-feelfreetomail__icon .side_line_link:hover {
  opacity: 0.8;
}
.hh-feelfreetomail.is--switched .hh-feelfreetomail__icon .side_link_contact {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hh-feelfreetomail.is--switched .hh-feelfreetomail__icon .side_link_contact:hover {
  opacity: 0.8;
}
.hh-feelfreetomail::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background: #06C755;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.hh-feelfreetomail__texts:hover {
  opacity: 0.8;
}

.hh-feelfreetomail__texts {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hh-feelfreetomail__texts > * {
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.hh-feelfreetomail__texts .text--1 {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
  display: block;
}
.hh-feelfreetomail__texts .text--2 {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  line-height: 1.16;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 6px;
  white-space: nowrap;
  display: block;
}
.hh-feelfreetomail__texts span {
  margin: 0px -2px;
  font-size: 18px;
}

.hh-feelfreetomail__icon {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  opacity: 0;
  visibility: hidden;
}

.pink_color_link {
  color: #E7B8A7;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.pink_color_link:hover {
  opacity: 0.7;
}

/* * ENGLISH TITLE
 * */
.hh-englishtitle * {
  font-size: 181px;
  font-weight: normal !important;
  color: #D9E4E8;
  letter-spacing: 20px;
  opacity: 0.3;
}

@media screen and (max-width: 1800px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle * {
    font-size: 208px;
  }
}
@media screen and (max-width: 1760px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 180px;
  }
  .hh-nursing__featuredimg {
    width: 755px;
  }
}
@media screen and (max-width: 1740px) {
  /* * MESSAGE
  * */
  .hh-message__featured {
    height: auto;
  }
  .hh-message__featured-img {
    top: 0px;
  }
}
@media screen and (max-width: 1722px) {
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 22%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 22%;
  }
}
@media screen and (max-width: 1715px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 160px;
  }
}
@media screen and (max-width: 1686px) {
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 20%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 20%;
  }
}
@media screen and (max-width: 1660px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 140px;
  }
  .hh-nursing__featuredimg {
    width: 735px;
  }
}
@media screen and (max-width: 1640px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle {
    margin-bottom: -26px;
  }
  .hh-nursing__englishtitle.hh-englishtitle * {
    font-size: 181px;
  }
}
@media screen and (max-width: 1610px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-left: 8%;
    padding-right: 150px;
  }
  .hh-nursing__featuredimg {
    right: 8%;
  }
}
@media screen and (max-width: 1600px) {
  /* * FEEL FREE TO CONTACT US
  * */
  .hh-feelfreetomail.is--switched .img-fit {
    max-width: 65% !important;
    max-height: 65% !important;
  }
}
@media screen and (max-width: 1555px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 140px;
  }
  .hh-nursing__featuredimg {
    width: 700px;
  }
}
@media screen and (max-width: 1530px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 120px;
  }
}
@media screen and (max-width: 1500px) {
  /* * KV
  * */
  .hh-kv__featuredtext-line {
    margin-bottom: 67px;
  }
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-top: 100px;
    padding-left: 6%;
    padding-bottom: 100px;
  }
  .hh-nursing__featuredimg {
    right: 6%;
  }
}
@media screen and (max-width: 1480px) {
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 15%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 15%;
  }
}
@media screen and (max-width: 1450px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle {
    padding-left: 20px;
  }
  .hh-nursing__disclaimer {
    right: 23%;
  }
  .hh-nursing__box {
    padding-left: 8%;
    padding-right: 100px;
  }
  .hh-nursing__featuredimg {
    right: 8%;
    width: 650px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__englishtitle.hh-englishtitle * {
    font-size: 290px;
  }
}
@media screen and (max-width: 1440px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-top: 80px;
    padding-left: 6%;
    padding-right: 130px;
    padding-bottom: 80px;
  }
  .hh-nursing__featuredimg {
    top: 30%;
    right: 6%;
  }
  .hh-nursing__box-title * {
    font-size: 25px;
    line-height: 60px;
  }
  .hh-nursing__box-desc * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-nursing__box-note * {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1415px) {
  /* * PROBLEM
  * */
  .hh-problem__cases {
    text-align: center;
  }
  .hh-problem__case {
    width: 167px;
    height: 167px;
    margin-left: 44px;
  }
}
@media screen and (max-width: 1400px) {
  /* * TADAIMA
  * */
  .hh-tadaima__desc *,
  .hh-sonae__desc * {
    font-size: 17px;
    line-height: 35px;
  }
  .hh-sonae__group-attribute {
    width: 191px;
    height: 191px;
    margin-left: 12px;
    padding-top: 25px;
  }
  .hh-tadaima__group-attribute__icon,
  .hh-sonae__group-attribute__icon {
    width: 70px;
    height: 70px;
  }
  /* * FLOW
  * */
  .hh-flow__step-textholder {
    padding-left: 80px;
    padding-right: 30px;
  }
  /* * FAQ
  * */
  .hh-faq__collapse-header__text,
  .hh-faq__collapse-body__desc {
    padding-left: 38px;
  }
  .hh-faq__collapse-header__text {
    font-size: 17px;
    line-height: 35px;
  }
  /* * MESSAGE
  * */
  .hh-message__featured-text__inner,
  .hh-message__paragraph,
  .hh-profile {
    width: 90%;
    max-width: 800px;
  }
}
@media screen and (max-width: 1350px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle {
    padding-left: 15px;
  }
  .hh-nursing__disclaimer {
    right: 20%;
  }
}
@media screen and (max-width: 1340px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 110px;
  }
}
@media screen and (max-width: 1300px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle * {
    letter-spacing: 7px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__englishtitle.hh-englishtitle {
    bottom: -34px;
  }
  .hh-tadaima__englishtitle.hh-englishtitle * {
    font-size: 260px;
  }
  /* * MESSAGE
  * */
  .hh-message__englishtitle.hh-englishtitle {
    top: -69px;
  }
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 210px;
  }
  /* * CONTACT
  * */
  .hh-contact__limit.frame__limit {
    padding-bottom: 140px;
  }
  .ss-gotop {
    right: 0px;
    bottom: 25px;
  }
}
@media screen and (max-width: 1290px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 100px;
  }
  .hh-nursing__featuredimg {
    width: 600px;
  }
}
@media screen and (max-width: 1280px) {
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 11%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 11%;
  }
}
@media screen and (max-width: 1275px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-right: 80px;
  }
  .hh-nursing__featuredimg {
    width: 580px;
  }
  .hh-nursing__box-note * {
    font-size: 19px;
  }
}
@media screen and (max-width: 1220px) {
  /* * PRICE
  * */
  .hh-price__slider-item__usage {
    font-size: 20px;
  }
  .hh-price__slider-item__validity {
    font-size: 16px;
  }
  .hh-price__slider-item__price * {
    font-size: 50px;
  }
  .hh-price__slider-item__price span {
    font-size: 25px;
  }
}
@media screen and (max-width: 1200px) {
  /* * KV
  * */
  .hh-kv__featuredtext-line {
    margin-bottom: 60px;
  }
  /* * NURSING
  * */
  .hh-englishtitle * {
    font-size: 155px;
  }
  .hh-nursing__disclaimer {
    right: 20%;
  }
  .hh-nursing__disclaimer * {
    font-size: 18px;
    line-height: 36px;
  }
  /* * FEEL FREE TO CONTACT US
  * */
  .hh-feelfreetomail__texts .text--1 {
    font-size: 18px;
  }
  .hh-feelfreetomail__texts span {
    margin: auto;
    font-size: 13px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__englishtitle.hh-englishtitle * {
    font-size: 220px;
  }
}
@media screen and (max-width: 1180px) {
  /* * NURSING
  * */
  .hh-nursing__box {
    padding-top: 50px;
    padding-right: 80px;
    padding-bottom: 50px;
  }
  .hh-nursing__featuredimg {
    width: 540px;
  }
}
@media screen and (max-width: 1150px) {
  /* * NURSING
  * */
  .hh-englishtitle * {
    font-size: 140px;
  }
  .hh-nursing__featuredimg {
    width: 520px;
  }
}
@media screen and (max-width: 1100px) {
  /* * KV
  * */
  .hh-kv__featuredtext-longtermcare.for--pc {
    display: none;
  }
  .hh-kv__featuredtext-longtermcare.for--sp {
    display: block;
  }
  /* * PRICE
  * */
  .hh-price__slider-item {
    min-height: 560px;
    padding: 50px 65px;
    padding-bottom: 80px;
  }
  .hh-price__slider-item__col.col--1, .hh-price__slider-item__col.col--2 {
    width: 100%;
  }
  .hh-price__slider-item__col.col--2 {
    margin-top: 30px;
  }
  .hh-price__slider-item__topic {
    margin-bottom: 30px;
  }
  .hh-price__slider-item__price {
    margin-bottom: 0px;
  }
  .hh-price__slider-item__session {
    margin-top: 15px;
  }
  /* * MESSAGE
  * */
  .hh-message__englishtitle.hh-englishtitle {
    top: -61px;
  }
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 180px;
  }
  /* * CONTACT
  * */      
  .hh-contact__form {
    padding: 60px 40px;
  }
  .hh-contact__form .form__radio {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1050px) {
  /* * NURSING
  * */
  .hh-nursing__limit.frame__limit {
    padding-bottom: 30px;
  }
  .hh-nursing__box,
  .hh-nursing__featuredimg-texts {
    width: 100%;
    border-radius: 0px;
  }
  .hh-nursing__box {
    padding-left: 0px;
    padding-right: 0px;
  }
  .hh-nursing__box > * {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
  }
  .hh-nursing__box-title {
    padding-bottom: 35px;
  }
  .hh-nursing__box-desc,
  .hh-nursing__box-note {
    margin-top: 35px;
  }
  .hh-nursing__featuredimg {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    overflow: hidden;
  }
  .hh-nursing__featuredimg img {
    margin-top: -200px;
  }
  .hh-nursing__featuredimg-texts {
    width: 90%;
    max-width: 800px;
    margin: auto;
  }
}
@media screen and (max-width: 1000px) {
  /* * KV
  * */
  .hh-kv__featuredtext-line {
    margin-bottom: 58px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__englishtitle.hh-englishtitle {
    bottom: -24px;
  }
  .hh-tadaima__englishtitle.hh-englishtitle * {
    font-size: 180px;
  }
}
@media screen and (max-width: 970px) {
  /* * NURSING
  * */
  .hh-englishtitle * {
    font-size: 100px;
  }
  /* * PRICE
  * */
  .hh-price__topic {
    width: calc(33.3333333333% - 27px);
    margin-left: 40px;
  }
  /* * CONTACT
  * */      
  .hh-contact__form {
    padding: 45px 30px;
  }
  .hh-contact__form .form__radio {
    margin: 5px 10px !important;
  }
}
@media screen and (max-width: 950px) {
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow {
    width: 35px;
    height: 35px;
  }
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 13%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 13%;
  }
  .hh-price__sliderholder .slick-dots {
    bottom: 55px;
  }
  .hh-price__slider-item {
    margin: 30px;
  }
}
@media screen and (max-width: 900px) {
  /* * KV
  * */
  .hh-kv__bg.frame__bg {
    height: 86%;
  }
  .hh-kv__sliderholder {
    width: 450px;
  }
  .hh-kv__textholder {
    width: calc(100% - 500px);
  }
  .hh-kv__featuredtext-line.line--1 {
    opacity: 0;
  }
  /* * NURSING
  * */
  .hh-nursing__disclaimer {
    right: 15%;
  }
  .hh-nursing__disclaimer * {
    font-size: 16px;
  }
  /* * PROBLEM
  * */
  .hh-problem__header {
    margin-bottom: 50px;
  }
  .hh-problem__case {
    margin: 20px !important;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__group-attribute__text *,
  .hh-sonae__group-attribute__text * {
    font-size: 14px;
    line-height: 24px;
  }
  /* * FLOW
  * */
  .hh-flow__step::before {
    bottom: -33px;
  }
  .hh-flow__step-indicator {
    top: -48px;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
  .hh-flow__step-textholder {
    width: 100%;
    margin-top: 100px;
    padding: 50px;
    padding-top: 80px;
  }
  /* * MESSAGE
  * */
  .hh-message__englishtitle.hh-englishtitle {
    top: -41px;
  }
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 120px;
  }
  .hh-message__featured {
    margin-bottom: 50px;
  }
  .hh-message__paragraph h1, .hh-message__paragraph h2 {
    font-size: 35px;
    line-height: 70px;
  }
  .hh-message__paragraph h3, .hh-message__paragraph h4, .hh-message__paragraph h5 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 888px) {
  /* * TADAIMA
  * */
  .hh-tadaima__group-attributes,
  .hh-sonae__group-attributes {
    width: 394px;
    margin: auto;
    margin-bottom: 15px;
  }
  .hh-tadaima__group-attributes.display__inline > *,
  .hh-sonae__group-attributes.display__inline > * {
    margin-bottom: 15px;
  }
  .hh-tadaima__group-attributes.display__inline > *:nth-child(2n+1),
  .hh-sonae__group-attributes.display__inline > *:nth-child(2n+1) {
    margin-left: 0px;
  }
  .hh-tadaima__group-attributes.display__inline > *:nth-last-child(-n+2),
  .hh-sonae__group-attributes.display__inline > *:nth-last-child(-n+2) {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 850px) {
  /* * TADAIMA
  * */
  .hh-tadaima__featured-text *,
  .hh-sonae__featured-text * {
    font-size: 16px;
    line-height: 26px;
  }
  /* * PRICE
  * */
  .hh-price__topics {
    width: 90%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 14%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 14%;
  }
  .hh-price__sliderholder .slick-dots {
    bottom: 55px;
  }
  .hh-price__slider-item {
    padding: 40px;
  }
  /* * COMPANY
  * */
  .hh-company__table-row__label {
    width: 190px;
  }
  .hh-company__table-row__value {
    width: calc(100% - 190px);
  }
  .hh-company__table-row__label *,
  .hh-company__table-row__value * {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 830px) {
  /* * KV
  * */
  .hh-kv__featuredtext {
    width: 235px;
  }
  .hh-kv__featuredtext-line {
    margin-bottom: 50px;
  }
  .hh-kv__featuredtext-line.line--4 {
    opacity: 0;
  }
  .hh-kv__home {
    width: 230px;
  }
  /* * NURSING
  * */
  .hh-nursing__disclaimer {
    top: 0px;
    right: 9%;
  }
  .hh-nursing__disclaimer * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-nursing__featuredimg img {
    margin-top: -100px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__englishtitle.hh-englishtitle {
    bottom: -20px;
  }
  .hh-tadaima__englishtitle.hh-englishtitle * {
    font-size: 140px;
  }
}
@media screen and (max-width: 800px) {
  /* * TADAIMA
  * */
  .hh-tadaima__chatbubble,
  .hh-sonae__chatbubble {
    width: 400px;
  }
  .hh-tadaima__chatbubble .text--1,
  .hh-sonae__chatbubble .text--1 {
    font-size: 16px;
  }
  .hh-tadaima__chatbubble .text--2,
  .hh-sonae__chatbubble .text--2 {
    font-size: 58px;
    letter-spacing: 4px;
  }
  .hh-tadaima__chatbubble .text--3,
  .hh-sonae__chatbubble .text--3 {
    font-size: 30px;
  }
  .hh-tadaima__featured,
  .hh-sonae__featured {
    margin-bottom: 85px;
  }
  .hh-tadaima__desc,
  .hh-sonae__desc {
    margin-bottom: 120px;
  }
  .hh-tadaima__group-attributes {
    width: 100%;
  }
  .hh-sonae__group-attributes {
    width: 400px;
    margin: auto;
    margin-bottom: 15px;
  }
  .hh-sonae__group-attribute {
    width: calc(50% - 10px);
    margin-left: 20px;
    margin-bottom: 20px;
  }
  .hh-sonae__group-attribute:nth-child(4n+1) {
    margin-left: 10px;
  }
  .hh-sonae__group-attribute:first-child, .hh-sonae__group-attribute:nth-child(2n+1) {
    margin-left: 0px;
  }
  /* * PRICE
  * */
  .hh-price__header *,
  .hh-flow__header *,
  .hh-faq__header *,
  .hh-message__header *,
  .hh-company__header *,
  .hh-contact__header * {
    font-size: 30px;
    line-height: 45px;
  }
  .hh-price__desc,
  .hh-flow__desc,
  .hh-faq__desc,
  .hh-message__desc,
  .hh-company__desc,
  .hh-contact__desc {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
  .hh-price__topic {
    width: calc(33.3333333333% - 10px);
    margin-left: 15px;
  }
  .hh-price__topic p {
    font-size: 14px;
    line-height: 18px;
  }
  .hh-price__topic-arrow {
    width: 7px;
  }
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 12%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 12%;
  }
  .hh-price__sliderholder .slick-dots {
    bottom: 35px;
  }
  .hh-price__slider-item {
    margin: 30px 20px;
    margin-bottom: 0px !important;
  }
  /* * CONTACT
  * */
  .form__label,
  .form__fieldholder {
    width: 100%;
  }
  .form__fieldholder {
    margin-top: 10px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 780px) {
  /* * KV
  * */
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle {
    margin-bottom: -16px;
    padding-left: 0px;
  }
  .hh-nursing__englishtitle.hh-englishtitle * {
    font-size: 111px;
  }
  /* * FAQ
  * */
  .hh-faq__collapse-header__text,
  .hh-faq__collapse-body__desc {
    padding-left: 20px;
  }
  .hh-faq__collapse-header__text,
  .hh-faq__collapse-body__desc * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-faq__collapse-icon {
    width: 10px;
  }
}
@media screen and (max-width: 767px) {
  .hh-news .hh-news__limit {
    padding: 0 0 50px 0;
  }
  .hh-news_box {
    padding: 25px;
  }
  .hh-news_box .hh-news__header {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
  }
  .hh-news_box .hh-news__header h2 {
    font-size: 18px;
  }
  .hh-news_box .hh-news__desc {
    margin-top: 20px;
  }
  .hh-news_box .hh-news__desc p {
    font-size: 20px;
  }
  .hh-news_box .hh-news_list {
    margin-top: 20px;
  }
  .hh-news_box .hh-news_list li:last-child a {
    padding: 20px 0 0 0;
  }
  .hh-news_box .hh-news_list a {
    padding: 20px 0;
    display: block;
  }
  .hh-news_box .hh-news_list a::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hh-news_box .hh-news_date {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: unset;
    padding-top: 0px;
  }
  .hh-news_box .hh-news_date p {
    font-size: 13px;
    padding: 5px 18px 6px 18px;
  }
  .hh-news_box .hh-news_title {
    width: unset;
    margin-top: 10px;
  }
  .hh-news_box .hh-news_title p {
    font-size: 15px;
  }
  .voice_wrap .voice_box {
    padding: 20px;
  }
  .voice_wrap .flex_box {
    display: block;
  }
  .voice_wrap .right_box {
    max-width: unset;
    width: 100%;
  }
  .voice_wrap .left_box {
    width: 100%;
  }
  .voice_wrap .left_box .voice_head {
    display: block;
    margin-top: 20px;
  }
  .voice_wrap .left_box .voice_head .voice_num {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .voice_wrap .left_box .voice_head .voice_num p {
    font-size: 16px;
    padding: 6px 20px 7px 20px;
  }
  .voice_wrap .left_box .voice_head .voice_name {
    margin-left: 0px;
    margin-top: 10px;
  }
  .voice_wrap .left_box .voice_head .voice_name p {
    font-size: 16px;
  }
  .voice_wrap .left_box .voice_title {
    margin-top: 16px;
  }
  .voice_wrap .left_box .voice_title h3 {
    font-size: 18px;
    line-height: 1.9;
  }
  .voice_wrap .left_box .voice_prof {
    margin-top: 15px;
  }
  .voice_wrap .left_box .voice_prof p {
    font-size: 16px;
  }
  .voice_wrap .left_box .voice_content {
    margin-top: 15px;
  }
  .voice_wrap .left_box .voice_content p {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2.05;
    color: #434444;
    text-align: left;
  }
}
@media screen and (max-width: 760px) {
  /* * KV
  * */
  .hh-kv__limit.frame__limit {
    padding-bottom: 50px;
  }
  .hh-kv__bg.frame__bg {
    height: 100%;
  }
  .hh-kv__sliderholder {
    width: 90%;
    margin-bottom: 25px;
  }
  .hh-kv__textholder {
    width: 100%;
  }
  .hh-kv__featuredtext-line {
    margin-bottom: 0px;
  }
  .hh-kv__featuredtext-line.line--1 {
    margin-bottom: 45px;
  }
  .hh-kv__featuredtext-line.line--2 {
    margin-bottom: 55px;
  }
  .hh-kv__home {
    width: 160px;
    margin: 0 auto;
  }
  /* * NURSING
  * */
  .hh-nursing__disclaimer {
    top: 95px;
    left: 17%;
    right: auto;
  }
  /* * SONAE
  * */
  .hh-sonae__header {
    margin: auto;
    margin-bottom: 30px;
  }
  .hh-sonae__header-text .for--pc,
  .hh-sonae__featured-text .for--pc,
  .hh-sonae__group-title .for--pc {
    display: none;
  }
  .hh-sonae__header-text .for--sp,
  .hh-sonae__featured-text .for--sp,
  .hh-sonae__group-title .for--sp {
    display: block;
  }
  .hh-sonae__header-line {
    width: 41px;
  }
  /* * MESSAGE
  * */
  .hh-message__paragraph .for--pc {
    display: none;
  }
  .hh-message__paragraph .for--sp {
    display: block;
  }
}
@media screen and (max-width: 690px) {
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 5%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 5%;
  }
}
@media screen and (max-width: 650px) {
  .frame__limit {
    padding: 80px 0px;
  }
  .form__radio .for--pc {
    display: none;
  }
  .form__radio .for--sp {
    display: block;
  }
  /* * NURSING
  * */
  .hh-nursing__box-note * {
    font-family: "Noto Sans JP", sans-serif !important;
  }
  /* * FEEL FREE TO CONTACT US
  * */
  .hh-feelfreetomail {
    bottom: 105px;
    width: 104px;
    height: 114px;
  }
  .hh-feelfreetomail::before {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .hh-feelfreetomail__texts .text--1 {
    font-size: 18px;
  }
  .hh-feelfreetomail__texts .text--2 {
    font-size: 11px;
  }
  .hh-feelfreetomail__texts span {
    font-size: 18px;
  }
  /* * PROBLEM
  * */
  .hh-problem__header {
    width: 236px;
    margin-bottom: 70px;
    text-align: center;
  }
  .hh-problem__header * {
    font-size: 22px;
    line-height: 32px;
  }
  .hh-problem__header .for--pc,
  .hh-problem__header-line .for--pc {
    display: none;
  }
  .hh-problem__header .for--sp,
  .hh-problem__header-line .for--sp {
    display: block;
  }
  .hh-problem__header-line {
    margin-top: 15px;
  }
  .hh-problem__case {
    margin-bottom: 35px !important;
  }
  .hh-problem__case:nth-last-child(-n+2) {
    margin-bottom: 0px !important;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__header {
    max-width: 400px;
    margin: auto;
    margin-bottom: 30px;
  }
  .hh-tadaima__header-text,
  .hh-sonae__header-text {
    width: 240px;
  }
  .hh-tadaima__header-text *,
  .hh-sonae__header-text * {
    font-size: 17px;
    line-height: 40px;
  }
  .hh-tadaima__header-text .for--pc,
  .hh-tadaima__featured-text .for--pc,
  .hh-tadaima__group-title .for--pc {
    display: none;
  }
  .hh-tadaima__header-text .for--sp,
  .hh-tadaima__featured-text .for--sp,
  .hh-tadaima__group-title .for--sp {
    display: block;
  }
  .hh-tadaima__header-line {
    top: 11px;
    width: 41px;
  }
  .hh-tadaima__header-text__dots {
    top: 35%;
    left: 11%;
  }
  .hh-tadaima__header-text__dot {
    margin-left: 14.5px;
  }
  .hh-tadaima__chatbubble,
  .hh-sonae__chatbubble {
    margin-bottom: 55px;
  }
  .hh-tadaima__featured::before,
  .hh-sonae__featured::before {
    height: 100%;
  }
  .hh-tadaima__featured-img.for--pc,
  .hh-sonae__featured-img.for--pc {
    display: none;
  }
  .hh-tadaima__featured-img.for--sp,
  .hh-sonae__featured-img.for--sp {
    display: block;
  }
  .hh-tadaima__featured-text,
  .hh-sonae__featured-text {
    padding: 20px;
    border-radius: 30px;
  }
  .hh-tadaima__desc *,
  .hh-sonae__desc *,
  .hh-tadaima__group-desc *,
  .hh-sonae__group-desc * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-tadaima__desc .sp--bold,
  .hh-sonae__desc .sp--bold,
  .hh-tadaima__group-desc .sp--bold,
  .hh-sonae__group-desc .sp--bold {
    font-weight: 900;
  }
  .hh-tadaima__desc .sp--med,
  .hh-sonae__desc .sp--med,
  .hh-tadaima__group-desc .sp--med,
  .hh-sonae__group-desc .sp--med {
    font-weight: 500 !important;
  }
  .hh-tadaima__group,
  .hh-sonae__group {
    margin-bottom: 50px;
  }
  .hh-tadaima__group-title *,
  .hh-sonae__group-title * {
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 3px;
  }
  .hh-tadaima__group-desc .for--pc {
    display: none;
  }
  .hh-tadaima__group-desc .for--sp {
    display: block;
  }
  .hh-tadaima__group-attribute,
  .hh-sonae__group-attribute {
    height: auto;
  }
  .hh-tadaima__englishtitle.hh-englishtitle {
    bottom: -10px;
  }
  .hh-tadaima__englishtitle.hh-englishtitle * {
    font-size: 120px;
    letter-spacing: 1px;
  }
  /* * PRICE
  * */
  .hh-price__header *,
  .hh-flow__header *,
  .hh-faq__header *,
  .hh-message__header *,
  .hh-profile__header *,
  .hh-company__header *,
  .hh-contact__header * {
    letter-spacing: 3px;
  }
  .hh-price__desc .for--pc {
    display: none;
  }
  .hh-price__desc .for--sp {
    display: block;
  }
  .hh-price__topic {
    width: calc(50% - 8px);
    margin-left: 15px;
  }
  .hh-price__topic:nth-child(3n+1) {
    margin-left: 15px;
  }
  .hh-price__topic:nth-child(2n+1) {
    margin-left: 0px;
  }
  .hh-price__slider-item {
    padding: 60px 40px;
  }
  /* * SONAE
  * */
  .hh-sonae__header-text {
    width: auto !important;
  }
  .hh-sonae__desc {
    margin-bottom: 70px;
  }
  .hh-sonae__desc .for--pc {
    display: none;
  }
  .hh-sonae__desc .for--pc {
    display: block;
  }
  /* * FLOW
  * */
  .hh-flow__step-textholder {
    padding: 30px;
    padding-top: 85px;
  }
  .hh-flow__step-name * {
    font-size: 20px;
  }
  .hh-flow__step-desc * {
    font-size: 15px;
    line-height: 28px;
  }
  /* * MESSAGE
  * */
  .hh-message__englishtitle.hh-englishtitle {
    top: -39px;
  }
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 115px;
    letter-spacing: 1px;
  }
  .hh-message__paragraph {
    width: 81% !important;
  }
  .hh-message__paragraph * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-message__paragraph h1, .hh-message__paragraph h2 {
    font-size: 29px;
    line-height: 50px;
  }
  .hh-message__paragraph h3, .hh-message__paragraph h4, .hh-message__paragraph h5 {
    margin-top: 30px;
    font-size: 20px;
    line-height: 28px;
  }
  .hh-message__featured {
    margin-bottom: 80px;
  }
  .hh-message__featured-img.for--pc {
    display: none;
  }
  .hh-message__featured-img.for--sp {
    display: block;
  }
  .hh-message__featured-text {
    position: relative;
  }
  .hh-message__featured-text__inner {
    padding: 30px 0px;
  }
  .hh-message__featured-text__inner > div {
    display: block !important;
    width: 100% !important;
  }
  .hh-message__featured-text__inner > div:first-child {
    margin-bottom: 20px;
  }
  .hh-message__featured-text__inner > div:last-child {
    padding-top: 20px;
    padding-left: 0px;
    border-top: 1px solid #fff;
    border-left: 0px;
  }
  .hh-message__featured-text__name {
    font-size: 15px;
    line-height: 25px;
  }
  .hh-message__featured-text__name.name--jp {
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 20px;
    font-weight: bold;
    line-height: 35px;
  }
  .hh-message__featured-text__representative {
    font-size: 15px;
    line-height: 25px;
  }
  .hh-message__featured-text__experience {
    font-size: 12px;
    line-height: 25px;
  }
  /* * PROFILE
  * */
  .hh-profile {
    padding: 40px 25px;
  }
  /* * COMPANY
  * */
  .hh-company__desc {
    margin-bottom: 50px;
  }
  .hh-company__table {
    width: 88%;
    margin: auto;
  }
  /* * CONTACT
  * */
  .hh-contact__form .form__radio {
    display: block !important;
    width: 100% !important;
    margin: 0px !important;
    margin-bottom: 10px !important;
  }
  .hh-contact__form .form__radio:last-child {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 580px) {
  /* * KV
  * */
  .hh-kv__home {
    width: 200px;
  }
  .hh-kv__featuredtext-line.line--1 {
    margin-bottom: 33px;
  }
  .hh-kv__featuredtext-line.line--2 {
    margin-bottom: 50px;
  }
  /* * NURSING
  * */
  .hh-nursing__disclaimer * {
    font-size: 22px;
    line-height: 40px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__chatbubble,
  .hh-sonae__chatbubble {
    width: 310px;
  }
  .hh-tadaima__chatbubble .text--1,
  .hh-sonae__chatbubble .text--1 {
    font-size: 13px;
  }
  .hh-tadaima__chatbubble .text--2,
  .hh-sonae__chatbubble .text--2 {
    font-size: 42px;
    letter-spacing: 3px;
  }
  .hh-tadaima__chatbubble .text--3,
  .hh-sonae__chatbubble .text--3 {
    font-size: 20px;
  }
  /* * PRICE
  * */
  .hh-price__sliderholder .slider-arrow.arrow--prev {
    left: 0%;
  }
  .hh-price__sliderholder .slider-arrow.arrow--next {
    right: 0%;
  }
  /* * FAQ
  * */
  .hh-faq__group-title .for--pc {
    display: none;
  }
  .hh-faq__group-title .for--sp {
    display: block;
  }
  .hh-faq__group-title * {
    font-size: 16px;
    line-height: 26px;
  }
  .hh-faq__collapse-header__indicator,
  .hh-faq__collapse-body__indicator {
    width: 35px;
    height: 35px;
  }
  .hh-faq__collapse-header__text,
  .hh-faq__collapse-body__desc {
    width: calc(100% - 35px);
  }
  .hh-faq__collapse-body {
    padding: 20px;
  }
  /* * PROFILE
  * */
  .hh-profile__desc *,
  .hh-profile__group-list__item * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-profile__group-title * {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
  }
  /* * CONTACT
  * */
  .hh-contact__note .for--pc {
    display: none;
  }
  .hh-contact__note .for--sp {
    display: block;
  }
  .hh-contact__note * {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 550px) {
  /* * NURSING
  * */
  .hh-nursing__box-title .for--pc {
    display: none;
  }
  .hh-nursing__box-title .for--sp {
    display: block;
  }
  .hh-nursing__box-title * {
    font-size: 21px;
    line-height: 50px;
  }
  .hh-nursing__englishtitle.hh-englishtitle {
    margin-bottom: -16px;
  }
  .hh-nursing__englishtitle.hh-englishtitle * {
    letter-spacing: 1px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__group-desc,
  .hh-sonae__group-desc {
    padding: 30px 25px;
  }
  /* * COMPANY
  * */
  .hh-company__table-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .hh-company__table-row:first-child {
    padding-top: 15px;
  }
  .hh-company__table-row.display__inline > * {
    vertical-align: top;
  }
  .hh-company__table-row__label {
    width: 150px;
  }
  .hh-company__table-row__value {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 470px) {
  /* * CASE
  * */
  .hh-problem__case {
    width: 143px;
    height: 143px;
    margin-top: 0px !important;
    margin-bottom: 50px !important;
  }
  .hh-problem__case-title {
    top: -15px;
    font-size: 15px;
  }
  .hh-problem__case-title .num {
    font-size: 25px;
  }
  .hh-problem__case-desc * {
    font-size: 14px;
    line-height: 24px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__group-attributes,
  .hh-sonae__group-attributes {
    width: 100%;
  }
  /* * PRICE
  * */
  .hh-price__sliderholder .slick-dots {
    bottom: 50px;
  }
  .hh-price__slider-item {
    padding: 50px 25px;
    padding-bottom: 80px;
  }
  .hh-price__slider-item__usage {
    font-size: 16px;
  }
  .hh-price__slider-item__validity {
    font-size: 14px;
  }
  .hh-price__slider-item__price * {
    font-weight: bold;
    font-size: 54px;
  }
  .hh-price__slider-item__price span {
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 15px;
    font-weight: bold;
  }
  .hh-price__slider-item__session {
    font-size: 13px;
  }
}
@media screen and (max-width: 450px) {
  /* * KV
  * */
  /* * NURSING
  * */
  .hh-nursing__limit.frame__limit {
    padding-bottom: 0px;
  }
  .hh-nursing__disclaimer {
    left: 23%;
  }
  .hh-nursing__englishtitle.hh-englishtitle *,
  .hh-tadaima__englishtitle.hh-englishtitle *,
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 91px;
  }
  .hh-nursing__box {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .hh-nursing__featuredimg img {
    margin-top: -40px;
    margin-bottom: 20px;
  }
  .hh-nursing__featuredimg-texts .text--1,
  .hh-nursing__featuredimg-texts .text--3 {
    font-size: 15px;
  }
  .hh-nursing__featuredimg-texts .text--2 {
    font-size: 18px;
  }
  .hh-nursing__featuredimg-texts * {
    line-height: 28px;
  }
  /* * SONAE
  * */
  .hh-tadaima__header-line,
  .hh-sonae__header-line {
    width: 38px;
  }
  .hh-tadaima__header-line.line--1,
  .hh-sonae__header-line.line--1 {
    left: -4px;
  }
  .hh-tadaima__header-line.line--2,
  .hh-sonae__header-line.line--2 {
    right: -4px;
  }
  /* * MESSAGE
  * */
  .hh-message__englishtitle.hh-englishtitle {
    top: -31px;
  }
  /* * CONTACT
  * */
  .hh-contact__form .row--iagree .form__checkbox p {
    font-size: 11px;
  }
}
@media screen and (max-width: 410px) {
  /* * PROBLEM
  * */
  .hh-problem__case {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  /* * PRICE
  * */
  .hh-price__topic {
    height: 62px;
  }
  .hh-price__topic > p {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0px;
    width: 100%;
  }
  .hh-price__topic .for--pc {
    display: none;
  }
  .hh-price__topic .for--sp {
    display: block;
  }
  .hh-price__slider-item {
    min-height: 600px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 400px) {
  /* * NURSING
  * */
  .hh-nursing__disclaimer {
    left: 21%;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__group-desc *,
  .hh-sonae__group-desc * {
    font-size: 14px;
    line-height: 28px;
  }
  .hh-sonae__group-attribute {
    width: calc(50% - 6px);
    margin-left: 12px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 385px) {
  /* * PROBLEM
  * */
  .hh-problem__case {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  /* * TADAIMA
  * */
  .hh-sonae__group-attributes {
    margin-bottom: 5px;
  }
  .hh-tadaima__group-attribute__icon,
  .hh-sonae__group-attribute__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0px;
  }
  .hh-tadaima__group-attribute__text *,
  .hh-sonae__group-attribute__text * {
    font-size: 12px;
    line-height: 22px;
  }
  .hh-tadaima__group-desc,
  .hh-sonae__group-desc {
    padding: 20px 12px;
  }
  /* * SONAE
  * */
  .hh-sonae__header-text * {
    font-size: 16px;
  }
  /* * FEEL FREE TO CONTACT US
  * */
  .hh-feelfreetomail.is--switched {
    width: 74px;
    height: unset;
  }
  .hh-feelfreetomail.is--switched .img-fit {
    max-width: 80% !important;
    max-height: 80% !important;
  }
  .hh-feelfreetomail.is--switched .hh-feelfreetomail__icon .side_line_link {
    height: 91px;
  }
  .hh-feelfreetomail.is--switched .hh-feelfreetomail__icon .side_link_contact {
    width: 100%;
  }
  /* * CONTACT
  * */
  .hh-contact__limit.frame__limit {
    padding-bottom: 110px;
  }
  .hh-contact__form {
    padding: 25px 15px;
  }
  .ss-gotop {
    width: 53px;
    height: 53px;
  }
  .ss-gotop p {
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 12px;
    font-weight: bold;
  }
}
@media screen and (max-width: 373px) {
  /* * MESSAGE
  * */
  .hh-message__paragraph {
    width: 85% !important;
  }
}
@media screen and (max-width: 370px) {
  /* * NURSING
  * */
  .hh-nursing__disclaimer * {
    font-size: 18px;
    line-height: 38px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__header-text *,
  .hh-sonae__header-text * {
    font-size: 16px;
    line-height: 38px;
  }
  .hh-tadaima__header-text__dots {
    left: 13%;
  }
  /* * PRICE
  * */
  .hh-price__slider-item__usage {
    font-size: 14px;
  }
  .hh-price__slider-item__validity,
  .hh-price__slider-item__session {
    font-size: 12px;
  }
  .hh-price__slider-item__price * {
    font-size: 43px;
  }
  .hh-price__slider-item__list li {
    font-size: 18px;
    line-height: 28px;
  }
  .hh-price__slider-item__notes li {
    font-size: 13px;
    line-height: 23px;
  }
  /* * FLOW
  * */
  .hh-flow__step-textholder {
    padding: 20px 15px;
    padding-top: 70px;
  }
  /* * COMPANY
  * */
  .hh-company__table-row {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .hh-company__table-row:first-child {
    padding-top: 12px;
  }
  .hh-company__table-row__label {
    width: 130px;
  }
  .hh-company__table-row__value {
    width: calc(100% - 130px);
  }
  /* * FOOTER
  * */
  .haru-footer__inner {
    padding: 40px 0px;
  }
  .haru-footer__logo {
    width: 219px;
  }
  .haru-footer__link-text {
    font-size: 13px;
  }
  .haru-footer__socialmedia img {
    height: 22px;
  }
}
@media screen and (max-width: 360px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle {
    margin-bottom: -12px;
  }
  .hh-nursing__englishtitle.hh-englishtitle *,
  .hh-tadaima__englishtitle.hh-englishtitle *,
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 80px;
  }
  .hh-nursing__box-title * {
    font-size: 19px;
    line-height: 40px;
  }
  .hh-nursing__box-note * {
    font-size: 16px;
    line-height: 26px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__header-text *,
  .hh-sonae__header-text * {
    letter-spacing: 1px;
  }
  /* * MESSAGE
  * */
  .hh-message__englishtitle.hh-englishtitle {
    top: -26px;
  }
  /* * COMPANY
  * */
  .hh-company__table {
    width: 100%;
  }
}
@media screen and (max-width: 353px) {
  /* * PROBLEM
  * */
  .hh-problem__case {
    margin-bottom: 30px !important;
  }
  .hh-problem__case:nth-last-child(2) {
    margin-bottom: 30px !important;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__chatbubble,
  .hh-sonae__chatbubble {
    width: 100%;
  }
  .hh-tadaima__group-attribute__text,
  .hh-sonae__group-attribute__text {
    height: 48px;
  }
  .hh-tadaima__group-attribute__text *,
  .hh-sonae__group-attribute__text * {
    font-size: 11px;
    line-height: 18px;
  }
  /* * PRICE
  * */
  .hh-price__slider-item__validity {
    display: block !important;
    margin-top: 10px;
  }
}
@media screen and (max-width: 350px) {
  /* * KV
  * */
  .hh-kv__slider-item {
    height: 250px;
  }
  .hh-kv__featuredtext {
    max-width: 270px;
  }
  .hh-kv__featuredtext-line {
    margin-bottom: 42px;
  }
  /* * PRICE
  * */
  .hh-price__topic {
    width: calc(50% - 4px);
    height: 56px;
    margin-bottom: 10px;
    margin-left: 8px;
  }
  .hh-price__topic:nth-child(3n+1) {
    margin-left: 8px;
  }
  .hh-price__topic:nth-child(2n+1) {
    margin-left: 0px;
  }
  .hh-price__topic p {
    font-size: 12px;
  }
  /* * CONTACT
  * */
  .hh-contact__form .row--iagree .form__checkbox p {
    width: 200px;
  }
}
@media screen and (max-width: 340px) {
  /* * PROBLEM
  * */
  .hh-problem__header {
    width: 250px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__header-text *,
  .hh-sonae__header-text * {
    font-size: 15px;
    line-height: 36px;
  }
  .hh-tadaima__header-text__dots {
    left: 16%;
  }
  .hh-tadaima__header-text__dot {
    margin-left: 10px;
  }
}
@media screen and (max-width: 321px) {
  /* * TADAIMA
  * */
  .hh-tadaima__header-text *,
  .hh-sonae__header-text * {
    font-size: 13px;
    line-height: 30px;
  }
  .hh-tadaima__header-line {
    width: 30px;
  }
  .hh-tadaima__header-text__dots {
    left: 20%;
  }
  .hh-tadaima__header-text__dot {
    width: 4px;
    height: 4px;
    margin-left: 9.5px;
  }
  .hh-tadaima__group-attribute__text *,
  .hh-sonae__group-attribute__text * {
    font-size: 10px;
  }
  /* * PRICE
  * */
  .hh-price__slider-item__price span {
    display: block;
    margin-top: 10px;
    margin-left: -7px;
  }
  /* * MESSAGE
  * */
  .hh-message__paragraph * {
    font-size: 15px;
    line-height: 28px;
  }
  .hh-message__paragraph h1, .hh-message__paragraph h2 {
    font-size: 25px;
    line-height: 43px;
  }
  .hh-message__paragraph h3, .hh-message__paragraph h4, .hh-message__paragraph h5 {
    margin-top: 25px;
    font-size: 17px;
  }
}
@media screen and (max-width: 315px) {
  /* * NURSING
  * */
  .hh-nursing__englishtitle.hh-englishtitle *,
  .hh-message__englishtitle.hh-englishtitle * {
    font-size: 70px;
  }
  /* * TADAIMA
  * */
  .hh-tadaima__featured-text,
  .hh-sonae__featured-text {
    padding: 15px 10px;
  }
  .hh-tadaima__featured-text *,
  .hh-sonae__featured-text * {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (max-width: 300px) {
  /* * TADAIMA
  * */
  .hh-tadaima__group-attribute__text *,
  .hh-sonae__group-attribute__text * {
    font-size: 9px;
    line-heihgt: 18px;
  }
}
@media screen and (max-height: 650px) {
  .hh-feelfreetomail {
    bottom: 0px;
  }
}
.pc_w385 {
  display: block;
}

.sp_w385 {
  display: none;
}

@media screen and (max-width: 650px) {
  .pc_w385 {
    display: none;
  }
  .sp_w385 {
    display: block;
    position: relative;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    height: 100%;
    width: 100%;
  }
  .side_line_link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: #06C755;
    z-index: -1;
  }
}
.lity-image img {
  height: calc(100vh - 60px);
}

@media screen and (max-width: 650px) {
  .lity-wrap::before {
    margin-right: 0 !important;
  }
  .lity-image img {
    height: unset;
    width: calc(100vw - 20px) !important;
  }
}
.popup_container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(70, 70, 70, 0.9);
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup_container .close_btn {
  position: absolute;
  top: -30%;
  right: 0%;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
}
.popup_container .close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 3px;
  background-color: #111;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -10px;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .popup_container .close_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 30px;
    height: 3px;
    background-color: #111;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: -15px;
    margin-top: -1px;
  }
}
.popup_container .close_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 3px;
  background-color: #111;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-left: -10px;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .popup_container .close_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 30px;
    height: 3px;
    background-color: #111;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    margin-left: -15px;
    margin-top: -1px;
  }
}
@media screen and (min-width: 768px) {
  .popup_container .close_btn {
    position: absolute;
    top: -20%;
    right: -3%;
    display: block;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
  }
}
@media screen and (min-width: 980px) {
  .popup_container .close_btn {
    position: absolute;
    top: -10%;
    right: -15%;
    display: block;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
  }
}
.popup_container .popup_body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
}
.popup_container .popup_body video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 980px) {
  .popup_container .popup_body {
    padding: 0;
    width: 70%;
    max-width: 900px;
  }
}

.baner .frame__limit {
  padding-top: 0;
}
.baner .banner_area {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.baner .banner_area .img {
  position: relative;
  width: 100%;
}
.baner .banner_area .img img {
  width: 100%;
}
.baner .banner_area .img .banner_text {
  position: absolute;
  width: 55%;
  top: 15px;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .baner .banner_area .img .banner_text {
    top: 40px;
    left: 40px;
    width: 50%;
  }
}
.baner .banner_area .img .banner_btn {
  position: absolute;
  bottom: 15px;
  right: 10px;
  width: auto;
  background-color: #fff;
  border-radius: 40px;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .baner .banner_area .img .banner_btn {
    bottom: 40px;
    right: 40px;
  }
}
.baner .banner_area .img .banner_btn p {
  position: relative;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: bold;
  color: #434444;
  border-radius: 20px;
  background-color: #fff;
  padding: 6px 26px 6px 11px;
}
@media screen and (min-width: 768px) {
  .baner .banner_area .img .banner_btn p {
    font-size: 15px;
    padding: 16px 70px 16px 45px;
  }
}
.baner .banner_area .img .banner_btn p::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #434444;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .baner .banner_area .img .banner_btn p::after {
    border-width: 5.1px 0 5.1px 10.2px;
    right: 48px;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
}

/* =====================
 * * CONTACT PAGE
 * * ===================== */
.haru-checking,
.haru-thanks {
  position: relative;
}

.hc-data__limit.frame__limit {
  padding-bottom: 150px;
}

.hc-data__header {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.hc-data__header::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #714E2C;
}
.hc-data__header * {
  font-size: 36px;
  line-height: 46px;
}

.hc-data__desc {
  margin-bottom: 50px;
}
.hc-data__desc * {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

.hc-data__note {
  margin-bottom: 100px;
}
.hc-data__note * {
  font-size: 16px;
  line-height: 28px;
  color: #707070;
}

.hc-data__table,
.hc-data__table-row {
  position: relative;
  width: 100%;
}

.hc-data__table-row {
  padding: 20px 0px;
  border-bottom: 1px solid #96683A;
  text-align: left;
}
.hc-data__table-row:first-child {
  border-top: 1px solid #96683A;
}

.hc-data__table-row__label {
  width: 340px;
}

.hc-data__table-row__value {
  width: calc(100% - 340px);
  padding-left: 10px;
}

.hc-data__table-row__label *,
.hc-data__table-row__value * {
  font-size: 16px;
  line-height: 28px;
  color: #707070;
}

.hc-data__btns {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.hc-data__btn.btn--return,
.ht-data__btn.btn--return {
  margin-right: 10%;
}
.hc-data__btn.btn--return .btn__icon,
.ht-data__btn.btn--return .btn__icon {
  left: 17px;
  right: auto;
}

.hc-data__btn.btn--proceed {
  background: #EDA68C;
}

.ht-textholder {
  min-height: 700px;
}

.ht-textholder__header {
  margin-bottom: 50px;
}
.ht-textholder__header * {
  font-size: 30px;
  font-weight: bold;
}

.ht-textholder__desc * {
  font-size: 16px;
  line-height: 28px;
  color: #707070 !important;
}

.ht-data__btn.btn--return {
  margin-top: 80px;
  margin-right: auto;
}

.row--servicefurigana {
  display: none !important;
}
.row--servicefurigana.is-active {
  display: block !important;
}

.form__switchfields.is-active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.form__switchfields.is-active .form__row,
.form__switchfields.is-active .hc-data__table-row {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.form__switchfields .hc-data__table-row:first-child {
  border-top: none;
}

@media screen and (max-width: 800px) {
  .hc-data__header * {
    font-size: 30px;
    line-height: 45px;
  }
  .hc-data__desc {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
  .hc-data__table-row.display__inline > * {
    display: block;
    width: 100%;
  }
  .hc-data__table-row__value {
    margin-top: 10px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 650px) {
  .ht-textholder__header .for--pc {
    display: none;
  }
  .ht-textholder__header .for--sp {
    display: block;
  }
  .hc-data__header *,
  .ht-textholder__header * {
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 600px) {
  .hc-data__header * {
    font-size: 28px;
    line-height: 38px;
  }
  .hc-data__btns {
    margin-top: 50px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .hc-data__btns.display__inline > * {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .hc-data__btns.display__inline > *:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 580px) {
  .hc-data__note * {
    font-size: 14px;
  }
  .ht-textholder__header * {
    font-size: 21px;
    line-height: 31px;
  }
  .ht-textholder__desc {
    text-align: left !important;
  }
  .ht-textholder__desc * {
    font-size: 15px;
  }
}
/* =====================
 * * PRIVACY PAGE
 * * ===================== */
.haru-privacy {
  position: relative;
}

.hp-breadcrumbs {
  position: relative;
  padding: 30px 3%;
  padding-bottom: 0px;
}

.hp-breadcrumb {
  position: relative;
  margin-left: 10px;
  padding-left: 20px;
}
.hp-breadcrumb:first-child {
  margin-left: 0px;
  padding-left: 0px;
}
.hp-breadcrumb:first-child::after {
  display: none;
}
.hp-breadcrumb::after {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  font-size: 15px;
  color: #707070;
}

.hp-breadcrumb__text {
  font-size: 15px;
  color: #707070;
}

.hp-maincontent__limit.frame__limit {
  padding-bottom: 150px;
}

.hp-maincontent__header {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.hp-maincontent__header::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #714E2C;
}
.hp-maincontent__header * {
  font-size: 36px;
  line-height: 46px;
}

.hp-maincontent__desc {
  margin-bottom: 80px;
}
.hp-maincontent__desc * {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

.hp-maincontent__textholder {
  text-align: left;
}
.hp-maincontent__textholder > p {
  margin-bottom: 35px;
}
.hp-maincontent__textholder > p:last-child {
  margin-bottom: 0px;
}
.hp-maincontent__textholder * {
  font-size: 16px;
  line-height: 28px;
  color: #707070 !important;
}

@media screen and (max-width: 800px) {
  .hp-maincontent__header * {
    font-size: 30px;
    line-height: 45px;
  }
  .hp-maincontent__desc {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  .hp-breadcrumb {
    display: none;
  }
  .hp-breadcrumb.is-active {
    display: inline-block;
    margin-left: 0px;
    padding-left: 0px;
  }
  .hp-breadcrumb.is-active::after {
    display: none !important;
  }
  .hp-maincontent__header * {
    letter-spacing: 3px;
  }
  .hp-maincontent__textholder {
    width: 88%;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .hp-maincontent__header * {
    font-size: 28px;
    line-height: 38px;
  }
  .hp-maincontent__textholder * {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 350px) {
  .hp-maincontent__textholder {
    width: 100%;
  }
}
/* =====================
 * * NEWS PAGE
 * * ===================== */
.haru-news {
  position: relative;
}

.hp-breadcrumbs {
  position: relative;
  padding: 30px 3%;
  padding-bottom: 0px;
}

.hp-breadcrumb {
  position: relative;
  margin-left: 10px;
  padding-left: 20px;
}
.hp-breadcrumb:first-child {
  margin-left: 0px;
  padding-left: 0px;
}
.hp-breadcrumb:first-child::after {
  display: none;
}
.hp-breadcrumb::after {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  font-size: 15px;
  color: #707070;
}

.hp-breadcrumb__text {
  font-size: 15px;
  color: #707070;
}

.hp-maincontent__limit.frame__limit {
  padding-bottom: 150px;
}

.hp-maincontent__header {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.hp-maincontent__header::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #714E2C;
}
.hp-maincontent__header * {
  font-size: 36px;
  line-height: 46px;
}

.hp-maincontent__desc {
  margin-bottom: 80px;
}
.hp-maincontent__desc * {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

.hp-maincontent__textholder {
  text-align: left;
}
.hp-maincontent__textholder > p {
  margin-bottom: 35px;
}
.hp-maincontent__textholder > p:last-child {
  margin-bottom: 0px;
}
.hp-maincontent__textholder * {
  font-size: 16px;
  line-height: 28px;
  color: #707070 !important;
}

.news_img img {
  width: 100%;
}

.news_wrap .news_inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.news_wrap .news_date {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.news_wrap .news_date p {
  font-size: 12px;
  line-height: 1;
  padding: 4px 16px 5px 16px;
  font-weight: 500;
  text-align: left;
  color: #fff;
  background-color: #EDA68C;
  border-radius: 15px;
}
.news_wrap .news_title {
  margin-top: 10px;
}
.news_wrap .news_title .title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.68;
  color: #714E2C;
  text-align: left;
}
.news_wrap .news_img {
  margin-top: 25px;
  width: 100%;
  max-width: 800px;
}
.news_wrap .news_img a {
  color: #EDA68C;
}
.news_wrap .news_text {
  margin-top: 25px;
}
.news_wrap .news_text p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.05;
  color: #434444;
  text-align: left;
}
.news_wrap .news_text p a {
  color: #EDA68C;
}
.news_wrap .news_text .news_info {
  margin-top: 30px;
}
.news_wrap .news_text .news_info .text_indent03 {
  padding-left: 3.4em;
  text-indent: -3.4em;
}
.news_wrap .news_text .news_info .text_indent04 {
  padding-left: 4.4em;
  text-indent: -4.4em;
}
.news_wrap .news_text .news_info a {
  color: #EDA68C;
  overflow-wrap: break-word;
}
.news_wrap .news_text .news_info span {
  float: left;
}
.news_wrap .news_text .news_info .link_ajust.text_indent03 a {
  padding-left: 3.4em;
}
.news_wrap .news_text .news_info .link_ajust.text_indent04 a {
  padding-left: 4.4em;
}
.news_wrap .news_text h3 {
  font-size: 18px;
  text-align: left;
  font-weight: 500;
  line-height: 1.7;
}
.news_wrap .news_btn {
  width: 233px;
  height: 48px;
  position: relative;
  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;
  margin-left: auto;
  margin-right: auto;
  background-color: #F2F0ED;
  border-radius: 24px;
  margin-top: 55px;
}
.news_wrap .news_btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #EDA68C transparent transparent;
  position: absolute;
  top: 50%;
  left: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_wrap .news_btn p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #EDA68C;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .news_wrap .news_date p {
    font-size: 14px;
    padding: 6px 20px 7px 20px;
    border-radius: 15px;
  }
  .news_wrap .news_title {
    margin-top: 16px;
  }
  .news_wrap .news_title .title {
    font-size: 22px;
  }
  .news_wrap .news_img {
    margin-top: 35px;
  }
  .news_wrap .news_text {
    margin-top: 35px;
  }
  .news_wrap .news_text p {
    font-size: 16px;
  }
  .news_wrap .news_text h3 {
    font-size: 20px;
  }
  .news_wrap .news_btn {
    width: 233px;
    height: 48px;
    border-radius: 24px;
    margin-top: 55px;
  }
  .news_wrap .news_btn::after {
    border-width: 5px 10px 5px 0;
    left: 32px;
  }
  .news_wrap .news_btn p {
    font-size: 15px;
  }
}
@media screen and (min-width: 980px) {
  .news_wrap .news_date p {
    font-size: 14px;
    padding: 6px 20px 7px 20px;
    border-radius: 15px;
  }
  .news_wrap .news_title {
    margin-top: 20px;
  }
  .news_wrap .news_title .title {
    font-size: 25px;
  }
  .news_wrap .news_img {
    margin-top: 45px;
  }
  .news_wrap .news_text {
    margin-top: 45px;
  }
  .news_wrap .news_text p {
    font-size: 17px;
  }
  .news_wrap .news_text h3 {
    font-size: 22px;
  }
  .news_wrap .news_text a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .news_wrap .news_text a:hover {
    opacity: 0.7;
  }
  .news_wrap .news_btn {
    width: 233px;
    height: 48px;
    border-radius: 24px;
    margin-top: 95px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .news_wrap .news_btn::after {
    border-width: 5px 10px 5px 0;
    left: 32px;
  }
  .news_wrap .news_btn p {
    font-size: 15px;
  }
  .news_wrap .news_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 800px) {
  .hp-maincontent__header * {
    font-size: 30px;
    line-height: 45px;
  }
  .hp-maincontent__desc {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  .hp-breadcrumb {
    display: none;
  }
  .hp-breadcrumb.is-active {
    display: inline-block;
    margin-left: 0px;
    padding-left: 0px;
  }
  .hp-breadcrumb.is-active::after {
    display: none !important;
  }
  .hp-maincontent__header * {
    letter-spacing: 3px;
  }
  .hp-maincontent__textholder {
    width: 88%;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .hp-maincontent__header * {
    font-size: 28px;
    line-height: 38px;
  }
  .hp-maincontent__textholder * {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 350px) {
  .hp-maincontent__textholder {
    width: 100%;
  }
}