@charset "UTF-8";
/* layout.scss
-----------------------------------------*/
/* setting
-----------------------------------------*/
.button__link,
.tab__button {
  background: #fff;
  border: 1px solid #27903a;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 1.5rem;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .button__link,
  .tab__button {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .button__link,
  .tab__button {
    font-size: 2rem;
    padding: 2rem 0;
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
  }
}

@keyframes hvr-bob-float {
  100% {
    transform: translateY(-10px);
  }
}

@keyframes hvr-bob {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes hvr-bob-float-b {
  100% {
    transform: translateY(-10px) translateX(-50%) rotate(-60deg);
  }
}

@keyframes hvr-bob-b {
  0% {
    transform: translateY(-10px) translateX(-50%) rotate(-60deg);
  }
  50% {
    transform: translateY(-4px) translateX(-50%) rotate(-60deg);
  }
  100% {
    transform: translateY(-10px) translateX(-50%) rotate(-60deg);
  }
}

@keyframes line-move {
  0% {
    margin-left: 14rem;
    width: 0;
  }
  50% {
    width: 14rem;
    margin-left: 0;
  }
  100% {
    width: 0;
  }
}

@keyframes loader {
  0% {
    opacity: 1;
    transform: scale(0.1);
  }
  70% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 62.5%;
  /*   scroll-behavior:smooth;
 */
}

body {
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.8rem;
  margin-top: 5.166rem;
  line-height: 1.6;
  overflow-x: hidden;
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
@media (min-width: 1024px) {
  body {
    margin-top: 0;
  }
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}

button {
  outline: none;
}

@media (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  vertical-align: bottom;
}

/* common
-----------------------------------------*/
.main .anchor {
  padding-top: 7.166rem;
  margin-top: -7.166rem;
}
@media (min-width: 1024px) {
  .main .anchor {
    padding-top: 12.6rem;
    margin-top: -12.6rem;
  }
}

#rates .main .anchor,
#rates-th .main .anchor,
#rates-en .main .anchor {
  margin-top: -7.166rem;
}
@media (min-width: 1024px) {
  #rates .main .anchor,
  #rates-th .main .anchor,
  #rates-en .main .anchor {
    margin-top: -12.6rem;
  }
}

.back-to-top {
  font-family: "Open Sans", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size: 1.4rem;
  bottom: 1rem;
  position: fixed;
  right: 1rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .back-to-top {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .back-to-top {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .back-to-top {
    bottom: 3rem;
    right: 3rem;
    z-index: 3;
  }
}

.back-to-top__text {
  background: #27903a;
  border-radius: 50%;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  height: 5rem;
  width: 5rem;
}
@media (min-width: 1024px) {
  .back-to-top__text {
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    height: 8rem;
    width: 8rem;
  }
  .back-to-top__text:hover {
    animation-delay: 0s, 0.3s;
    animation-direction: normal, alternate;
    animation-duration: 0.3s, 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1, infinite;
    animation-name: hvr-bob-float, hvr-bob;
    animation-timing-function: ease-out, ease-in-out;
  }
}
.back-to-top__text::before,
.back-to-top__text::after {
  content: "";
  position: absolute;
  margin: auto;
}
.back-to-top__text::before {
  background: #fff;
  bottom: 0;
  height: 2.5rem;
  left: 0rem;
  right: 0;
  top: 0;
  width: 0.2rem;
}
@media (min-width: 1024px) {
  .back-to-top__text::before {
    height: 4rem;
  }
}
.back-to-top__text::after {
  border-top: 2px solid #fff;
  right: 38%;
  top: 30.5%;
  transform: rotate(60deg);
  width: 0.8rem;
}
@media (min-width: 1024px) {
  .back-to-top__text::after {
    right: 40%;
    width: 1rem;
  }
}

.button {
  margin: 2rem auto 0;
  max-width: 25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .button {
    max-width: 30rem;
  }
}
@media (min-width: 1024px) {
  .button {
    margin: 6rem auto 0;
    max-width: 38rem;
  }
}
.button.button--small {
  max-width: 24rem;
}
@media (min-width: 1024px) {
  .button.button--small {
    max-width: 33rem;
  }
}
@media (min-width: 768px) {
  .column-box .button {
    margin: 2rem 1rem 0;
  }
}
@media (min-width: 1024px) {
  .column-box .button {
    margin: 6rem 3rem 0;
  }
}
.faq__content .button {
  margin: 0.5rem 0 2.5rem;
  width: 90%;
}
@media (min-width: 1024px) {
  .faq__content .button {
    margin: 0.5rem 0 3.5rem;
    width: 100%;
  }
}
.accordion__content .button {
  margin: 0.5rem 0 3rem;
  width: 90%;
}
@media (min-width: 1024px) {
  .accordion__content .button {
    margin: 0.5rem 0 4rem;
    width: 100%;
  }
}

.button__link {
  text-decoration: none;
}
.section--legal .button__link {
  border-color: #fd5858;
}
.section--work .button__link {
  border-color: #35a6e0;
}
.section--live .button__link {
  border-color: #f2bc00;
}
.section--pension .button__link {
  border-color: #f06b02;
}
.section--elite .button__link {
  border-color: #f2bc00;
}

.error {
  font-size: 1.4rem;
  background: #f8e6e6;
  color: #b80d0d;
  font-weight: bold;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .error {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .error {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .error {
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
  }
}

.footer {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 6rem auto 0;
  position: relative;
}
@media (min-width: 1024px) {
  .footer {
    margin: 14rem auto 0;
  }
}

@media (min-width: 1024px) {
  .footer__bottom,
  .footer__link-wrap {
    display: flex;
    justify-content: space-between;
  }
}

.footer__container {
  background: #f2f8f3;
  padding: 3rem 2rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 3rem 2rem 4rem;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    padding: 6rem 4rem;
  }
}
.footer__container + .footer__container {
  background: #27903a;
  color: #fff;
  max-width: initial;
}
@media (min-width: 768px) {
  .footer__container + .footer__container {
    padding: 3rem 2rem 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__container + .footer__container {
    padding: 2rem 4rem;
  }
}
.footer__container > * {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__container > * {
    max-width: 136.6rem;
  }
}

.footer__container-sub {
  margin-bottom: 1.8rem;
}

.footer__copyright {
  border-top: 1px solid #fff;
  padding-top: 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__copyright {
    border-top: none;
    padding-top: 0;
    text-align: left;
  }
}

.footer__copyright-text {
  font-size: 1.4rem;
}

@media (min-width: 1024px) {
  .footer__head {
    margin: 0 auto 6rem;
    display: flex;
    align-items: center;
  }
}

.footer__bottom .footer__link {
  color: #fff;
}

.footer__link-item {
  margin: 0 0 0.8rem 0;
}
@media (min-width: 1024px) {
  .footer__link-item {
    border-right: 1px solid #f2f8f3;
    margin: 0 2rem 0 0;
    padding: 0 2rem 0 0;
  }
}
.footer__link-item:last-child {
  border-right: none;
  margin: 0 0 1.5rem 0;
}
@media (min-width: 1024px) {
  .footer__link-item:last-child {
    margin: 0 2rem 0 0;
  }
}

.footer__logo {
  align-items: center;
  display: flex;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .footer__logo {
    border-right: 1px solid #000;
    margin: 0 3rem 0 0;
    min-width: 43rem;
    padding: 0 3rem 0 0;
  }
}

.footer__logo-image {
  height: auto;
  width: 100%;
  max-width: 6rem;
}
@media (min-width: 1024px) {
  .footer__logo-image {
    max-width: 8rem;
  }
}

.footer__logo-text {
  font-size: 1.8rem;
  margin: 0 0 0 0.8rem;
}
@media (min-width: 1024px) {
  .footer__logo-text {
    font-size: 2.2rem;
    margin: 0 0 0 1.2rem;
  }
}

.footer__logo-text-sub {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .footer__logo-text-sub {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.footer__item {
  margin: 4rem auto;
}
@media (min-width: 1024px) {
  .footer__item {
    margin: 0 7rem 0 0;
  }
}
@media (min-width: 1024px) {
  .footer__item:last-child {
    margin: 0;
  }
}
.footer__item:last-child > .footer__nav-link {
  font-size: 1.8rem;
  margin: 0 auto 1.8rem;
}
.footer__item > .footer__nav-link {
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 1024px) {
  .footer__item > .footer__nav-link {
    margin: 0 auto 2rem;
  }
}

.footer__nav-link {
  margin: 0.8rem auto;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .footer__nav-link {
    margin: 1.3rem auto;
  }
  .footer__nav-link:hover {
    text-decoration: underline;
  }
}

.footer__nav-wrap {
  display: none;
}

@media (min-width: 1024px) and (min-width: 768px) {
  .footer__nav-wrap {
    display: flex;
  }
}

.footer__tel-number {
  display: inline-block;
  text-decoration: none;
}

.footer__separator:last-child {
  display: none;
}

.form {
  margin: 3rem auto 0;
  word-break: break-word;
}
@media (min-width: 768px) {
  .form {
    margin: 4rem auto 0;
  }
}
@media (min-width: 1024px) {
  .form {
    margin: 5rem auto 0;
  }
}

.form__agreement-wrap {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 3rem 2rem 0;
}
@media (min-width: 768px) {
  .form__agreement-wrap {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .form__agreement-wrap {
    font-size: 1.8rem;
  }
}
.form__agreement-wrap .form__label {
  white-space: normal;
  width: 100%;
}
.form__agreement-wrap .form__checkbox-text {
  display: inline-block;
  line-height: 1.6;
  padding-left: 4.5rem;
}

.form__anchor {
  display: inline-block;
}

.form__button {
  background: #27903a;
  border: 0;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.5rem;
  transition: all 0.2s ease;
  /* 必須項目未入力時の送信ボタン */
}
@media all and (-ms-high-contrast: none) {
  .form__button {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
@media (min-width: 1024px) {
  .form__button {
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    padding: 2rem 0;
  }
  .form__button:hover {
    opacity: 0.8;
  }
}
.form__button:disabled {
  background: #d9d9d9;
  box-shadow: none;
}
.form__button:disabled:hover {
  opacity: 1;
}
.form__button.form__button--back {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background: #919191;
}

.form__checkbox-wrap {
  width: 100%;
}
@media (min-width: 1024px) {
  .form__checkbox-wrap {
    width: 60%;
  }
}

.form__error {
  width: 100%;
}

.form__item {
  font-size: 1.4rem;
  border-bottom: 1px solid #d9d9d9;
  flex-wrap: wrap;
  font-weight: bold;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .form__item {
    display: flex;
  }
}
@media (min-width: 768px) {
  .form__item {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .form__item {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .form__item {
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
  }
}
.form__item:nth-child(7),
.form__item:nth-child(8),
.form__item:nth-child(10) {
  align-items: flex-start;
}
.form__item:last-child {
  border-bottom: none;
}

.form__input {
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid #919191;
  line-height: 1.2;
  padding: 1.2rem;
  width: 100%;
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}
@media (min-width: 768px) {
  .form__input {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .form__input {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .form__input {
    padding: 1.5rem;
  }
}
@media all and (-ms-high-contrast: none) {
  .form__input {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
.form__input:focus {
  outline: 1px solid #d9d9d9;
}
.form--confirm .form__input {
  border: none;
  line-height: 1.8;
  resize: none;
}

.form__input--textarea {
  display: block;
  height: 15rem;
  min-height: 15rem;
  overflow: auto;
  resize: vertical;
  margin-left: auto;
}
.form--confirm .form__input--textarea {
  padding: 0 1rem;
  height: auto;
}
@media (min-width: 768px) {
  .form__input--textarea {
    height: 20rem;
    min-height: 20rem;
  }
}

.form__label {
  cursor: pointer;
  display: inline-block;
  line-height: 135%;
  margin: 0.2rem 0 2rem;
  max-width: 25rem;
  min-width: 19rem;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  width: 30%;
}
@media (min-width: 1024px) {
  .form__label {
    width: 100%;
  }
}
.form--confirm .form__label {
  margin: 0.2rem 0 0;
  padding: 0 1.5rem;
  max-width: inherit;
  width: 100%;
}

.form__note {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 1.5rem 0 2.5em;
  position: relative;
}
@media (min-width: 1024px) {
  .form__note {
    font-size: 1.4rem;
    padding: 0 2rem 0 3em;
  }
}
.form__note::before {
  content: "※";
  left: 1.5rem;
  position: absolute;
}
@media (min-width: 1024px) {
  .form__note::before {
    left: 2rem;
  }
}

.form__optional,
.form__required {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .form__optional,
  .form__required {
    font-size: 1.3rem;
    padding: 0.5rem 0.7rem;
  }
}
@media (min-width: 1024px) {
  .form__optional,
  .form__required {
    padding: 0.6rem 0.7rem;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}

.form__option {
  border: 1px solid #919191;
  color: #000;
  padding: 1.5rem;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .form__option:hover,
  .form__option:checked {
    background: #f2f8f3;
    color: #000;
  }
}

.form__optional {
  background: #919191;
}

.form__required {
  background: #b80d0d;
}

.form__select {
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  border: 1px solid #919191;
  color: #000;
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  padding: 1.2rem 3rem 1.2rem 1.2rem;
  width: 100%;
  background-image: url(../img/common/icon_form-arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: right 10px center;
}
@media (min-width: 768px) {
  .form__select {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .form__select {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .form__select {
    margin-right: 35%;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    width: 50%;
  }
}
@media all and (-ms-high-contrast: none) {
  .form__select {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
.form__select:focus {
  outline: none;
}
.form__select::-ms-value {
  background: none;
  color: #000;
}
.form__select::-ms-expand {
  display: none;
}
.form--confirm .form__select {
  color: #000;
  border: none;
  background: none;
  margin: 0;
}
@media (min-width: 1024px) {
  .form--confirm .form__select {
    width: 60%;
  }
}

.form__subject {
  display: inline-block;
  line-height: 1.5;
  margin: 0 auto 1rem;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .form__subject {
    margin: 0;
    width: 40%;
  }
}

.form__subject-note {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .form__subject-note {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .form__subject-note {
    position: absolute;
  }
}

.form__submit {
  display: none;
}

.form__wrap {
  border-top: 1px solid #d9d9d9;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .form__wrap {
    margin: 1.5rem auto 0;
  }
}

#contact-tel {
  ime-mode: disabled;
}

#contact-note-others-textarea {
  width: 100%;
  margin-top: 1.5rem;
}

::placeholder {
  font-size: 1.4rem;
  color: #d9d9d9;
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  vertical-align: middle;
}
@media (min-width: 768px) {
  ::placeholder {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  ::placeholder {
    font-size: 1.8rem;
  }
}
@media all and (-ms-high-contrast: none) {
  ::placeholder {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}

::-ms-input-placeholder {
  font-size: 1.4rem;
  color: #d9d9d9;
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  vertical-align: middle;
}
@media (min-width: 768px) {
  ::-ms-input-placeholder {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  ::-ms-input-placeholder {
    font-size: 1.8rem;
  }
}
@media all and (-ms-high-contrast: none) {
  ::-ms-input-placeholder {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}

/* iOS特有のスタイルをリセット */
.form input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* Contact Form 7 カスタマイズ */
input[type="checkbox"] {
  display: none;
  /*デフォルトのチェックボックスを見えなくする*/
  position: absolute;
}

.wpcf7-list-item-label {
  display: block;
  padding-left: 3.5rem;
  position: relative;
}
.wpcf7-list-item-label::after {
  background-size: contain;
  background: url(../img/common/icon_check.svg);
  content: "";
  display: block;
  height: 1.3rem;
  left: 0.45rem;
  position: absolute;
  top: 0.6rem;
  transform: scale(0, 0);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  width: 1.8rem;
}
.wpcf7-list-item-label::before {
  border: 1px solid #919191;
  content: "";
  display: block;
  height: 2.5rem;
  left: 0;
  margin-top: -0.2rem;
  position: absolute;
  top: 0;
  width: 2.5rem;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  transform: scale(1, 1);
  background-repeat: no-repeat;
}

.wpcf7-list-item {
  cursor: pointer;
  display: inline-block;
  line-height: 135%;
  margin: 0.2rem 0 2rem;
  max-width: 28rem;
  min-width: 19rem;
  position: relative;
  vertical-align: middle;
  width: 30%;
}
@media (min-width: 1024px) {
  .wpcf7-list-item {
    width: 100%;
  }
}
.wpcf7-list-item:last-child {
  margin: 0.2rem 0 0;
  max-width: none;
}

.wpcf7-free-text {
  font-size: 1.4rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border-radius: 0;
  border: 1px solid #919191;
  display: block;
  font-family: YuGothic, "游ゴシック", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 1.5rem;
  max-width: 25rem;
  padding: 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .wpcf7-free-text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .wpcf7-free-text {
    font-size: 1.8rem;
  }
}
@media all and (-ms-high-contrast: none) {
  .wpcf7-free-text {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
.wpcf7-free-text:focus {
  outline: 1px solid #d9d9d9;
}

.wpcf7-form-control-wrap {
  width: 100%;
}
@media (min-width: 1024px) {
  .wpcf7-form-control-wrap {
    width: 60%;
  }
}
.form__checkbox-wrap .wpcf7-form-control-wrap {
  width: 100%;
}

.form__checkbox-wrap .wpcf7-form-control {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.form__agreement-wrap .wpcf7-form-control-wrap,
.form__agreement-wrap .wpcf7-form-control,
.form__agreement-wrap .wpcf7-list-item {
  display: block;
  width: 100%;
}

.form__agreement-wrap label {
  white-space: normal;
}

.form__agreement-wrap .wpcf7-list-item-label {
  display: inline-block;
  line-height: 1.6;
  padding-left: 4.5rem;
}

/* バリデーションの装飾 */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  background: #f8e6e6;
  border: none;
  color: #b80d0d;
  font-weight: bold;
  margin: 1rem auto 0;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    margin: 2rem auto;
    padding: 1rem 1.5rem;
  }
}

.header {
  position: relative;
}

.header__logo {
  display: none;
}
@media (min-width: 1024px) {
  .header__logo {
    display: block;
    left: 0;
    margin: auto;
    max-width: 1600px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
  }
}

.header__logo-image {
  height: auto;
  width: 100%;
  max-width: 8rem;
}

.header__logo-link {
  align-items: center;
  background: #fff;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  font-weight: bold;
  left: 12rem;
  line-height: 1.2;
  padding: 2rem 2.5rem;
  position: absolute;
  text-decoration: none;
}

.header__logo-text {
  font-size: 2.2rem;
  margin: 0 0 0 1.2rem;
}

.header__logo-text-sub {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service .kome {
  margin: 1.5rem 0 0;
}
@media (min-width: 1024px) {
  .service .kome {
    margin: 2.5rem 0 0;
  }
}

.service__summary .kome {
  margin: 1rem 1rem 0;
}
@media (min-width: 1024px) {
  .service__summary .kome {
    margin: 2rem 2rem 0;
  }
}

#members-fee .kome,
#members-fee-th .kome,
#members-fee-en .kome {
  margin: 1rem 0 0;
}
@media (min-width: 1024px) {
  #members-fee .kome,
  #members-fee-th .kome,
  #members-fee-en .kome {
    margin: 2rem 0 0;
  }
}

.card .kome {
  margin: 0;
}

.kome.kome--accordion {
  margin: -1rem 0 2rem 0;
}

.kome.kome--flow {
  padding: 1.5rem;
  margin-top: 1.5rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .kome.kome--flow {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .kome.kome--flow {
    padding: 2.5rem 3rem;
    margin-top: 2rem;
  }
}
.lower-page--legal .kome.kome--flow {
  background: #fff5f5;
}
.lower-page--work .kome.kome--flow {
  background: #f3fafd;
}
.lower-page--live .kome.kome--flow {
  background: #fef8e5;
}
.lower-page--pension .kome.kome--flow {
  background: #fef0e5;
}
.lower-page--elite .kome.kome--flow {
  background: #fef8e5;
}

.kome__item {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  position: relative;
  padding-left: 1.2em;
}
@media (min-width: 768px) {
  .kome__item {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .kome__item {
    font-size: 1.6rem;
  }
}
.kome__item:last-child {
  margin: 0;
}
.kome__item::before {
  content: "※";
  left: 0;
  position: absolute;
}

.loader {
  position: relative;
}
.loader::before {
  animation-fill-mode: both;
  animation: loader 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  border-radius: 100%;
  border: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 2rem;
  margin: auto;
  position: absolute;
  right: 3rem;
  top: 0;
  width: 2rem;
}

.section-head {
  margin: 0 auto 3rem;
  text-align: center;
}
.lower-page .section-head {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section-head {
    margin: 0 auto 4rem;
  }
  .lower-page .section-head {
    margin: 0 auto;
  }
}

.section-head__catch {
  display: block;
  margin: 0 auto 0.5rem;
  max-width: 16rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .section-head__catch {
    max-width: 20rem;
    margin: 0 auto -0.2rem;
  }
}
@media (min-width: 1024px) {
  .section-head__catch {
    margin: 0 auto 0.2rem;
    max-width: 30rem;
    font-size: 2rem;
  }
}

.section-head__tel-number {
  display: inline;
  font-weight: bold;
  text-decoration: none;
}

.section-head__title {
  font-size: 2.4rem;
  letter-spacing: 0.3rem;
  padding: 0 0 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .section-head__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .section-head__title {
    font-size: 3.8rem;
    padding: 0 0 1.5rem;
  }
}
.section-head__title::after {
  background: #27903a;
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 3.5rem;
}
@media (min-width: 1024px) {
  .section-head__title::after {
    height: 0.3rem;
    width: 5rem;
  }
}
.section--legal .section-head__title::after {
  background: #fd5858;
}
.section--work .section-head__title::after {
  background: #35a6e0;
}
.section--live .section-head__title::after {
  background: #f2bc00;
}
.section--pension .section-head__title::after {
  background: #f06b02;
}
.section--elite .section-head__title::after {
  background: #f2bc00;
}
.lower-page .section-head__title::after {
  content: none;
}
.section--contact .section-head__title::after {
  content: "";
}
#contact .section--contact .section-head__title,
#contact-th .section--contact .section-head__title,
#contact-en .section--contact .section-head__title {
  display: none;
}

.section-head__kome {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  position: relative;
  padding-left: 1.4em;
}
@media (min-width: 1024px) {
  .section-head__kome {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
.section-head__kome::before {
  content: "※";
  left: 0;
  position: absolute;
}

.section-head__lead {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  line-height: 1.6;
  margin: 2rem auto 0;
}
@media (min-width: 768px) {
  .section-head__lead {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .section-head__lead {
    font-size: 2rem;
    line-height: 1.7;
    margin: 3rem auto 0;
  }
}
.section--lead .section-head__lead {
  margin: 0 auto;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .section--lead .section-head__lead {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  .section--lead .section-head__lead {
    font-size: 2.6rem;
  }
}
#contact .section--contact .section-head__lead,
#contact-th .section--contact .section-head__lead,
#contact-en .section--contact .section-head__lead {
  margin: 0 auto;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  #contact .section--contact .section-head__lead,
  #contact-th .section--contact .section-head__lead,
  #contact-en .section--contact .section-head__lead {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  #contact .section--contact .section-head__lead,
  #contact-th .section--contact .section-head__lead,
  #contact-en .section--contact .section-head__lead {
    font-size: 2.6rem;
  }
}

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

.section-head__text {
  margin: 0 auto;
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
  margin: 1.5rem auto 0;
  text-align: left;
}
@media (min-width: 1024px) {
  .section-head__text {
    max-width: 100rem;
  }
}
@media (min-width: 768px) {
  .section-head__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .section-head__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .section-head__text {
    line-height: 2.25;
    margin: 2.5rem auto 0;
  }
}

.section__container {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .section__container {
    max-width: 136.6rem;
  }
}

.section__container--variation {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .section__container--variation {
    max-width: 100rem;
  }
}

.section {
  padding: 5rem 2rem;
}
@media (min-width: 1024px) {
  .section {
    padding: 10rem 4rem;
  }
}
.lower-page .section {
  padding: 3rem 2rem 0;
}
@media (min-width: 1024px) {
  .lower-page .section {
    padding: 8rem 4rem 0;
  }
}
.section > * {
  word-break: break-word;
}
.section.section--legal {
  background: #fff5f5;
}
.section.section--work {
  background: #f3fafd;
}
.section.section--live {
  background: #fef8e5;
}
.section.section--pension {
  background: #fef0e5;
}
.section.section--elite {
  background: #fef8e5;
}
.section.section--lead {
  padding: 4rem 2rem 0;
}
@media (min-width: 1024px) {
  .section.section--lead {
    padding: 8rem 4rem 0;
  }
}
#contact .section.section--contact {
  padding: 4rem 2rem 0;
}
@media (min-width: 1024px) {
  #contact .section.section--contact {
    padding: 10rem 4rem 0;
  }
}
.section.section--breadcrumbs {
  background: #f2f8f3;
  padding: 1rem 2rem;
}
@media (min-width: 1024px) {
  .section.section--breadcrumbs {
    padding: 2rem 4rem;
  }
}
#top-page .section:nth-child(n + 2):nth-child(-n + 6) {
  margin: 0.5rem auto 0;
}
@media (min-width: 1024px) {
  #top-page .section:nth-child(n + 2):nth-child(-n + 6) {
    margin: 1rem auto 0;
  }
}
#top-page .section:nth-child(n + 7) {
  padding-bottom: 0;
}
.section.section--title {
  height: 12rem;
  display: flex;
  align-items: center;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 5.166rem;
  padding: 0;
}
@media (min-width: 1024px) {
  .section.section--title {
    height: 23rem;
    margin-top: 8.6rem;
  }
}
#about-us .section.section--title {
  background-image: url(../img/info/img_about.jpg);
  background-position: right 20% center;
}
@media (min-width: 1024px) {
  #about-us .section.section--title {
    background-position: right center;
  }
}
#rates .section.section--title {
  background-image: url(../img/rates/img_rates.jpg);
}
#review .section.section--title,
#review-index .section.section--title {
  background-image: url(../img/review/img_review.jpg);
  background-position: right 10% center;
}
@media (min-width: 768px) {
  #review .section.section--title,
  #review-index .section.section--title {
    background-position: right center;
  }
}
#faq .section.section--title {
  background-image: url(../img/info/img_faq.jpg);
  background-position: right 20% center;
}
@media (min-width: 768px) {
  #faq .section.section--title {
    background-position: right center;
  }
}
#contact .section.section--title,
#contact-thanks .section.section--title {
  background-image: url(../img/info/img_contact.jpg);
  background-position: right 5% center;
}
@media (min-width: 768px) {
  #contact .section.section--title,
  #contact-thanks .section.section--title {
    background-position: right center;
    background-size: auto;
    background-color: #fbfbfd;
  }
}
.lower-page--work .section.section--title {
  background-image: url(../img/service_work/img_service-work.jpg);
}
@media (min-width: 1024px) {
  .lower-page--work .section.section--title {
    background-position: right bottom;
  }
}
.lower-page--live .section.section--title {
  background-image: url(../img/service_live/img_service-live.jpg);
  background-position: right 5% center;
}
@media (min-width: 768px) {
  .lower-page--live .section.section--title {
    background-position: right center;
  }
}
@media (min-width: 1024px) {
  .lower-page--live .section.section--title {
    background-position: right bottom;
  }
}
.lower-page--pension .section.section--title {
  background-image: url(../img/service_pension/img_service-pension.jpg);
  background-position: right 5% center;
}
@media (min-width: 768px) {
  .lower-page--pension .section.section--title {
    background-position: right center;
  }
}
@media (min-width: 1024px) {
  .lower-page--pension .section.section--title {
    background-position: right bottom;
  }
}
.lower-page--legal .section.section--title {
  background-image: url(../img/service_lawyer/img_service-lawyer.jpg);
  background-position: right 5% center;
}
@media (min-width: 768px) {
  .lower-page--legal .section.section--title {
    background-position: right center;
  }
}
@media (min-width: 1024px) {
  .lower-page--legal .section.section--title {
    background-position: right bottom;
  }
}
.lower-page--elite .section.section--title {
  background-image: url(../img/service_live/img_service-live.jpg);
  background-position: right 20% center;
}
@media (min-width: 768px) {
  .lower-page--elite .section.section--title {
    background-position: right center;
  }
}
.lower-page--guideline .section.section--title {
  background-image: url(../img/guideline/img_guideline.jpg);
  background-position: right 22% center;
}
@media (min-width: 768px) {
  .lower-page--guideline .section.section--title {
    background-position: right center;
  }
}

.sns {
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .sns {
    padding: 0 4rem;
  }
}

.sns__container {
  justify-content: center;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .sns__container {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .sns__container {
    margin: 0 auto;
    position: relative;
    margin: 0 auto 3rem;
    text-align: right;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .sns__container {
    max-width: 136.6rem;
  }
}

.sns__item {
  width: 100%;
  margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .sns__item {
    margin: 0 1% 0 0;
  }
}
@media (min-width: 1024px) {
  .sns__item {
    max-width: 25rem;
  }
}
.sns__item:last-child {
  margin: 0;
}

.sns__link {
  display: flex;
  justify-content: center;
  padding: 0.9rem;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .sns__link {
    padding: 1.2rem;
  }
}
.sns__item--facebook .sns__link {
  background: #1877f2;
}
.sns__item--line .sns__link {
  background: #00b900;
}
/*
.sns__item--twitter .sns__link {
  background: #1da1f2;
}
*/
.sns__item--x .sns__link {
  background: #000000;
}
.sns__image {
  max-height: 2.2rem;
}

.sns__text {
  color: #fff;
  margin-left: 0.5rem;
}

.tel {
  margin: 0 auto;
  position: relative;
  background: #fef8e5;
  border-radius: 1rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 5rem;
  padding: 2rem;
  width: 90%;
}
@media (min-width: 1024px) {
  .tel {
    max-width: 100rem;
  }
}
@media (min-width: 1024px) {
  .tel {
    margin-top: 8rem;
    padding: 2.5rem;
    width: 100%;
  }
}

.tel__heading,
.tel__time-detail {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tel__heading,
  .tel__time-detail {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .tel__heading,
  .tel__time-detail {
    font-size: 2.2rem;
    text-align: left;
  }
}

.tel__heading {
  margin-bottom: 0.5rem;
  display: block;
}
@media (min-width: 768px) {
  .tel__heading {
    margin-bottom: 0.3rem;
  }
}
@media (min-width: 1024px) {
  .tel__heading {
    margin-bottom: 1rem;
  }
}

.tel__number {
  color: #27903a;
  font-size: 8vw;
  text-decoration: none;
  margin-bottom: 0.6rem;
}
@media all and (-ms-high-contrast: none) {
  .tel__number {
    font-size: 6vw;
  }
}
@media (min-width: 1024px) {
  .tel__number {
    font-size: 4.8rem;
    margin-bottom: 0.8rem;
  }
}

.tel__inner {
  padding-left: 6rem;
  margin: 0 auto 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .tel__inner {
    padding-left: 7.5rem;
  }
}
@media (min-width: 1024px) {
  .tel__inner {
    padding-left: 12rem;
  }
}
.tel__inner + .tel__inner {
  margin-top: 2rem;
}
.tel__inner::before {
  background: #27903a;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  height: 5rem;
  left: 0;
  line-height: 3.2;
  position: absolute;
  text-align: center;
  width: 5rem;
}
@media (min-width: 768px) {
  .tel__inner::before {
    bottom: 0.2rem;
    height: 7rem;
    width: 7rem;
    background-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .tel__inner::before {
    bottom: 0.2rem;
    height: 9rem;
    width: 9rem;
    background-size: 4.5rem 5rem;
  }
}

.tel__time-detail {
  margin-top: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .tel__time-detail {
    margin-top: 0;
    text-align: left;
  }
}

.tel__time-heading {
  background: #fff;
  border: 1px solid #27903a;
  color: #27903a;
  padding: 0.3rem 0;
  font-size: 1.3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .tel__time-heading {
    font-size: 1.7rem;
    margin: 0 1rem 0 0;
    padding: 0.3rem 0.5rem;
  }
}
@media (min-width: 1024px) {
  .tel__time-heading {
    font-size: 1.9rem;
    margin: 0 2rem 0 0;
    padding: 0.5rem 1.5rem;
  }
}

.tel__time-info {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .tel__time-info {
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  .tel__inner,
  .tel__time-inner {
    max-width: 91%;
  }
}

@media (min-width: 1024px) {
  .tel__inner,
  .tel__time-inner {
    max-width: 68rem;
  }
}
@media all and (min-width: 1024px) and (-ms-high-contrast: none) {
  .tel__inner,
  .tel__time-inner {
    max-width: 73rem;
  }
}

.tel__time-inner {
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .tel__time-inner {
    display: flex;
  }
}

/* nav
-----------------------------------------*/
.global-nav {
  position: relative;
  -webkit-overflow-scrolling: touch;
  min-width: 32rem;
  width: 100%;
  z-index: 3;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 1024px) {
  .global-nav {
    height: 0;
    overflow: visible;
  }
}
.global-nav::-webkit-scrollbar {
  display: none;
}

.global-nav__box {
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .global-nav__box {
    margin: 0 auto;
    position: relative;
    background: #fff;
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .global-nav__box {
    max-width: 136.6rem;
  }
}

.global-nav__container-sub {
  background: #fff;
  list-style: none;
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .global-nav__container-sub {
    background: #f2f8f3;
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    left: 0;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    width: 100%;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    justify-content: center;
    transition: all 0.5s;
  }
  .global-nav__item-main:hover > .global-nav__container-sub {
    opacity: 1;
    transition: 0.3s;
    visibility: visible;
  }
}

.global-nav__checkbox {
  display: none;
}

.global-nav__icon {
  cursor: pointer;
  display: block;
  width: 3.5rem;
  height: 2.8rem;
  position: fixed;
  right: 1.5rem;
  top: 1.2rem;
  z-index: 5;
}
@media (min-width: 1024px) {
  .global-nav__icon {
    display: none;
    outline: none;
  }
}

.global-nav__icon-parts::before,
.global-nav__icon-parts::after {
  content: "";
}

.global-nav__icon-parts,
.global-nav__icon-parts::before,
.global-nav__icon-parts::after {
  background: #27903a;
  border-radius: 0.4rem;
  display: block;
  height: 0.4rem;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transition: all 0.5s;
}

.global-nav__icon-parts {
  top: 0;
}

.global-nav__icon-parts::before {
  top: 1.3rem;
}

.global-nav__icon-parts::after {
  top: 2.6rem;
}

.global-nav__item-main {
  flex: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  .global-nav__item-main {
    transition: opacity 1s;
  }
}
@media (min-width: 1024px) {
  .global-nav__item-main:nth-child(6),
  .global-nav__item-main:nth-child(n + 9) {
    display: none;
  }
  .language_en .global-nav__item-main:nth-child(5),
  .language_en .global-nav__item-main:nth-child(n + 8),
  .language_th .global-nav__item-main:nth-child(5),
  .language_th .global-nav__item-main:nth-child(n + 8) {
    display: none;
  }
  .language_en .global-nav__item-main:nth-child(6),
  .language_th .global-nav__item-main:nth-child(6) {
    display: block;
  }
}
.global-nav__item-main:nth-child(14) {
  display: block;
}
.language_en .global-nav__item-main:nth-child(13),
.language_th .global-nav__item-main:nth-child(13) {
  display: block;
}
.global-nav__item-main:last-child {
  padding-bottom: 6rem;
}
@media (min-width: 1024px) {
  .global-nav__item-main:last-child {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .global-nav__item-main:hover > .global-nav__link {
    background: #f2f8f3;
  }
}

.global-nav__item-sub {
  border-bottom: 1px solid #eee;
}
@media (min-width: 1024px) {
  .global-nav__item-sub {
    border-bottom: none;
  }
}
.global-nav__item-sub:last-child {
  border-bottom: none;
}

.global-nav__link {
  border-bottom: 2px solid #fff;
  color: #000;
  display: table;
  font-size: 1.6rem;
  font-weight: bold;
  height: 100%;
  line-height: 1;
  padding: 2rem 0.5rem;
  position: relative;
  text-decoration: none;
  transition: font-size 0s, padding 0s;
  width: 100%;
}
.global-nav__link::after {
  background: #27903a;
  bottom: 2rem;
  content: "";
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
  visibility: hidden;
  width: 5rem;
}
.global-nav__link img {
  vertical-align: middle;
}
.global-nav__item-sub > .global-nav__link {
  font-size: 1.4rem;
  border-bottom: none;
  padding: 1.5rem 2rem;
}
@media (min-width: 768px) {
  .global-nav__item-sub > .global-nav__link {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .global-nav__item-sub > .global-nav__link {
    font-size: 1.8rem;
  }
}
.global-nav__item-sub > .global-nav__link::after {
  content: none;
}
.global-nav__link .global-nav__link-inner {
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .global-nav__link {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .global-nav__link {
    border-bottom: none;
    font-size: 2rem;
    padding: 4rem 1rem;
    line-height: 1.3;
  }
  .global-nav__link:hover {
    opacity: 1;
  }
  .global-nav__item-main:hover > .global-nav__link::after {
    bottom: 2.5rem;
    opacity: 1;
    visibility: visible;
  }
  .global-nav__item-sub > .global-nav__link:hover {
    color: #666;
  }
}

.global-nav__logo {
  background: #fff;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 4;
}
@media (min-width: 1024px) {
  .global-nav__logo {
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    display: none;
  }
}

.global-nav__logo-image {
  height: auto;
  width: 100%;
  max-width: 4rem;
}
@media (min-width: 1024px) {
  .global-nav__logo-image {
    max-width: 5rem;
  }
}

.global-nav__logo-link {
  align-items: center;
  display: flex;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  max-width: 21rem;
}

.global-nav__logo-text {
  margin: 0 0 0 0.8rem;
  font-size: 1.6rem;
}

.global-nav__logo-text-main {
  display: none;
}
@media (min-width: 1024px) {
  .global-nav__logo-text-main {
    display: block;
  }
}

.global-nav__logo-text-sub {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .global-nav__logo-text-sub {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
}

.global-nav__menu {
  background: #f2f8f3;
  color: #000;
  max-width: 70%;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 5.166rem;
  right: -80%;
  z-index: 3;
  transition: all 0.5s;
}
@media (min-width: 1024px) {
  .global-nav__menu {
    max-width: inherit;
    height: auto;
    background: none;
    position: relative;
    right: 0;
    top: 0;
    overflow: visible;
  }
}

.global-nav__overlay {
  background: #000;
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  transition: all 0.5s;
}
@media (min-width: 1024px) {
  .global-nav__overlay {
    display: none;
  }
}

.global-nav__checkbox:checked ~ .global-nav__icon .global-nav__icon-parts {
  background: transparent;
}

.global-nav__checkbox:checked
  ~ .global-nav__icon
  .global-nav__icon-parts::before {
  transform: translateY(1.3rem) rotate(-45deg);
  top: 0;
}

.global-nav__checkbox:checked
  ~ .global-nav__icon
  .global-nav__icon-parts::after {
  transform: translateY(-1.3rem) rotate(45deg);
}

.global-nav__checkbox:checked ~ .global-nav__overlay {
  opacity: 0.5;
  pointer-events: auto;
}

.global-nav__checkbox:checked ~ .global-nav__menu {
  right: 0;
}

.global-nav__checkbox:checked ~ .global-nav__icon-parts,
.global-nav__checkbox:checked ~ .global-nav__icon-parts::after,
.global-nav__checkbox:checked ~ .global-nav__icon-parts::before,
.global-nav__checkbox:checked ~ .global-nav__overlay,
.global-nav__checkbox:checked ~ .global-nav__menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.global-nav__checkbox:checked ~ body {
  overflow: hidden;
  height: 100%;
}

@media (min-width: 1024px) {
  .lower-page .global-nav {
    background: #fff;
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    height: 8.6rem;
    left: 50%;
    max-width: inherit;
    position: fixed;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__box {
    box-shadow: none;
    background: none;
    transform: translateX(-50%);
    justify-content: flex-end;
    padding-left: 30rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__container {
    box-shadow: none;
    justify-content: flex-end;
    padding-left: 28rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__container-sub {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__item-main {
    flex: 0 1 auto;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__item-sub:first-child {
    margin: 0 2rem 0 0;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__link {
    font-size: 1.6rem;
    padding: 2.2rem 1.5rem;
  }
  .lower-page .global-nav__link::after {
    bottom: 1rem;
    width: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__item-main:hover > .global-nav__link::after {
    bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__item-main > .global-nav__link {
    display: flex;
    align-items: center;
    height: 8.6rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__logo {
    margin: 0 auto;
    position: relative;
    background: none;
    box-shadow: none;
    display: block;
    padding: 0;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .lower-page .global-nav__logo {
    max-width: 136.6rem;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__logo-image {
    height: auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__logo-link {
    position: absolute;
    top: 1.8525rem;
    z-index: 1;
    max-width: none;
  }
  .lower-page .global-nav__logo-link:hover {
    opacity: 0.8;
  }
}

@media (min-width: 1024px) {
  .lower-page .global-nav__container-sub .global-nav__item-sub:first-child {
    margin-left: calc((100vw - 100%) / 2);
  }
}

@media (min-width: 1366px) {
  .lower-page .global-nav__container-sub .global-nav__item-sub:first-child {
    margin-left: 2rem;
  }
}

.js-locked {
  overflow-y: hidden;
  height: 100vh;
}

/* breadcrumbs
-----------------------------------------*/
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .breadcrumbs {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs {
    font-size: 1.6rem;
  }
}

.breadcrumbs__item {
  display: flex;
  margin-right: 0.7rem;
  white-space: nowrap;
}
.breadcrumbs__item::after {
  content: ">";
  margin-left: 0.7em;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}
.breadcrumbs__item:last-child::after {
  content: none;
}

/* pages
-----------------------------------------*/
.accordion__answer {
  font-size: 1.4rem;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .accordion__answer {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .accordion__answer {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .accordion__answer {
    padding: 2.5rem 0;
  }
}

.accordion__content {
  background: #f2f8f3;
  padding: 0 1rem 0 5.5rem;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  max-height: 0;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 0 2.5rem 0 6rem;
  }
}
@media (min-width: 1024px) {
  .accordion__content {
    padding: 0 2.5rem 0 8rem;
  }
}
.accordion__content::before {
  background: #27903a;
  border-radius: 50%;
  color: #fff;
  content: "A";
  display: block;
  font-size: 2rem;
  font-weight: bold;
  height: 3rem;
  left: 1.5rem;
  line-height: 1.5;
  padding-left: 1px;
  position: absolute;
  text-align: center;
  top: 1.5rem;
  width: 3rem;
  z-index: 1;
}
@media (min-width: 1024px) {
  .accordion__content::before {
    font-size: 2.8rem;
    height: 4rem;
    left: 2.5rem;
    top: 2rem;
    width: 4rem;
  }
}

.accordion__head {
  cursor: pointer;
  position: relative;
  margin: 2rem auto 0;
}
.accordion__head:first-child {
  margin: 0 auto;
}
.accordion__head::before {
  background: #fff;
  border-radius: 50%;
  bottom: 0;
  color: #27903a;
  content: "Q";
  display: block;
  font-size: 2rem;
  height: 3rem;
  left: 1.5rem;
  line-height: 1.4;
  margin: auto 0;
  padding-left: 1px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 3rem;
  z-index: 1;
}
@media (min-width: 1024px) {
  .accordion__head::before {
    font-size: 2.8rem;
    height: 4rem;
    left: 2.5rem;
    width: 4rem;
  }
}

.accordion__question {
  background: #27903a;
  color: #fff;
  cursor: pointer;
  line-height: 1.6;
  padding: 1rem 4.5rem 1rem 5.5rem;
  position: relative;
  font-size: 1.4rem;
  display: block;
}
@media (min-width: 768px) {
  .accordion__question {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .accordion__question {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .accordion__question {
    padding: 1.5rem 6rem;
  }
}
@media (min-width: 1024px) {
  .accordion__question {
    padding: 2.5rem 8rem;
  }
}
.accordion__question::before,
.accordion__question::after {
  background: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  margin: auto 0;
  position: absolute;
  right: 1.5rem;
  top: 0;
  transition: 0.3s;
  width: 1.9rem;
}
@media (min-width: 1024px) {
  .accordion__question::before,
  .accordion__question::after {
    right: 2.5rem;
  }
}
.accordion__question::before {
  transform: rotate(90deg);
}

input[name="accordion__button"] {
  display: none;
}

input[type="checkbox"]:checked + .accordion__head .accordion__question::before {
  opacity: 0;
  transform: rotate(270deg);
}

input[type="checkbox"]:checked + .accordion__head .accordion__question::after {
  transform: rotate(180deg);
}

#question--001:checked ~ #answer--001,
#question--002:checked ~ #answer--002,
#question--003:checked ~ #answer--003,
#question--004:checked ~ #answer--004,
#question--005:checked ~ #answer--005,
#question--006:checked ~ #answer--006,
#question--007:checked ~ #answer--007,
#question--008:checked ~ #answer--008,
#question--009:checked ~ #answer--009,
#question--010:checked ~ #answer--010,
#question--011:checked ~ #answer--011,
#question--012:checked ~ #answer--012,
#question--013:checked ~ #answer--013,
#question--014:checked ~ #answer--014,
#question--015:checked ~ #answer--015,
#question--016:checked ~ #answer--016,
#question--017:checked ~ #answer--017,
#question--018:checked ~ #answer--018,
#question--019:checked ~ #answer--019,
#question--020:checked ~ #answer--020,
#question--021:checked ~ #answer--021,
#question--022:checked ~ #answer--022,
#question--023:checked ~ #answer--023,
#question--024:checked ~ #answer--024,
#question--025:checked ~ #answer--025,
#question--026:checked ~ #answer--026,
#question--027:checked ~ #answer--027,
#question--028:checked ~ #answer--028,
#question--029:checked ~ #answer--029,
#question--030:checked ~ #answer--030 {
  max-height: 100vh;
  opacity: 1;
}

.arrow {
  position: relative;
}
.arrow::before,
.arrow::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  transition: all 0.2s ease;
}
.arrow::before {
  background: #27903a;
  bottom: 0;
  height: 0.1rem;
  width: 2rem;
}
@media (min-width: 1024px) {
  .arrow::before {
    height: 0.2rem;
  }
}
.arrow::after {
  border-top: 1px solid #27903a;
  bottom: -0.4rem;
  height: 1rem;
  transform: rotate(30deg);
  width: 1rem;
}
@media (min-width: 1024px) {
  .arrow::after {
    border-top: 2px solid #27903a;
  }
}
.section--legal .arrow::before {
  background: #fd5858;
}
.section--legal .arrow::after {
  border-color: #fd5858;
}
.section--work .arrow::before {
  background: #35a6e0;
}
.section--work .arrow::after {
  border-color: #35a6e0;
}
.section--live .arrow::before {
  background: #f2bc00;
}
.section--live .arrow::after {
  border-color: #f2bc00;
}
.section--pension .arrow::before {
  background: #f06b02;
}
.section--pension .arrow::after {
  border-color: #f06b02;
}
.section--elite .arrow::before {
  background: #f2bc00;
}
.section--elite .arrow::after {
  border-color: #f2bc00;
}
.arrow.button__link::before {
  right: 2rem;
}
@media (min-width: 1024px) {
  .arrow.button__link::before {
    right: 2.9rem;
  }
}
.arrow.button__link::after {
  right: 2.1rem;
}
@media (min-width: 1024px) {
  .arrow.button__link::after {
    right: 3rem;
  }
}
@media (min-width: 1024px) {
  .arrow.button__link:hover::before {
    right: 2.4rem;
  }
  .arrow.button__link:hover::after {
    right: 2.5rem;
  }
}

.break {
  display: none;
}
@media (min-width: 768px) {
  .break {
    display: inherit;
  }
}

.break-tb {
  display: none;
}
@media (min-width: 1024px) {
  .break-tb {
    display: inherit;
  }
}

@media (min-width: 768px) {
  .break-tb-remove {
    display: none;
  }
}

@media (min-width: 1024px) {
  .break-pc {
    display: none;
  }
}

.card {
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .card {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .card {
    margin: 3rem 0;
  }
}

.card__inner {
  padding: 1rem;
}

.card__box {
  border: 1px solid #27903a;
  border-collapse: collapse;
  width: 100%;
  max-width: 48rem;
  position: relative;
  margin: 0 auto 3rem;
}
@media (min-width: 1024px) {
  .card__box {
    margin: 0 0 4rem;
    width: 48%;
  }
}
.lower-page--legal .card__box {
  border-color: #fd5858;
}
.lower-page--work .card__box {
  border-color: #35a6e0;
}
.lower-page--live .card__box {
  border-color: #f2bc00;
}
.lower-page--pension .card__box {
  border-color: #f06b02;
}
.lower-page--elite .card__box {
  border-color: #f2bc00;
}
.card__box::after {
  content: "";
  display: inline-block;
  width: 14rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  .card__box::after {
    width: 17rem;
  }
}
.lower-page--legal .card__box::after {
  background: #fff5f5;
}
.lower-page--work .card__box::after {
  background: #f3fafd;
}
.lower-page--live .card__box::after {
  background: #fef8e5;
}
.lower-page--pension .card__box::after {
  background: #fef0e5;
}
.lower-page--elite .card__box::after {
  background: #fef8e5;
}

.card__title {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 0.3rem 0;
}
@media (min-width: 1024px) {
  .card__title {
    font-size: 2.2rem;
  }
}
.lower-page--legal .card__title {
  background: #fd5858;
}
.lower-page--work .card__title {
  background: #35a6e0;
}
.lower-page--live .card__title {
  background: #f2bc00;
}
.lower-page--pension .card__title {
  background: #f06b02;
}
.lower-page--elite .card__title {
  background: #f2bc00;
}

.card__item {
  display: flex;
  position: relative;
}
.card__item::after {
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0.1rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: calc(100% - 0.5rem);
}
@media (min-width: 1024px) {
  .card__item::after {
    width: calc(100% - 2rem);
  }
}
.lower-page--legal .card__item::after {
  background: #fd5858;
}
.lower-page--work .card__item::after {
  background: #35a6e0;
}
.lower-page--live .card__item::after {
  background: #f2bc00;
}
.lower-page--pension .card__item::after {
  background: #f06b02;
}
.lower-page--elite .card__item::after {
  background: #f2bc00;
}
.card__item:last-child::after {
  content: none;
}

.card__head {
  width: 13rem;
}
@media (min-width: 1024px) {
  .card__head {
    width: 17rem;
  }
}

.card__detail {
  flex: 1;
}

.card__head,
.card__detail {
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .card__head,
  .card__detail {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .card__head,
  .card__detail {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .card__head,
  .card__detail {
    padding: 2rem;
  }
}

.column-box {
  justify-content: center;
}
@media (min-width: 768px) {
  .column-box {
    display: flex;
  }
}

.details.details--sns {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .details.details--sns {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .details.details--sns {
    margin-bottom: 6rem;
  }
}

.details__box {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .details__box {
    max-width: 100rem;
  }
}
@media (min-width: 768px) {
  .lower-page .details__box {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .lower-page .details__box {
    margin-bottom: 5rem;
  }
}

.details__catch {
  color: #27903a;
  display: block;
  font-family: "Open Sans", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .details__catch {
    font-size: 3.4rem;
  }
}
@media (min-width: 1024px) {
  .details__catch {
    font-size: 4.4rem;
  }
}

@media (min-width: 768px) {
  .details__column {
    display: flex;
    margin-bottom: 3rem;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .details__column {
    margin-bottom: 5rem;
  }
}

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

.section--about .details__column {
  margin: 2rem auto 0;
}
@media (min-width: 1024px) {
  .section--about .details__column {
    margin: 4rem auto 0;
  }
}
@media (min-width: 768px) {
  .section--about .details__column .details__inner {
    width: 48%;
  }
}

.section--legal .details__column {
  margin: 2rem auto 0;
}
@media (min-width: 1024px) {
  .section--legal .details__column {
    margin: 4rem auto 0;
  }
}

.details__description {
  background: #fff;
  line-height: 1.6;
  padding: 1.2rem 1.8rem 1.8rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 1024px) {
  .details__description {
    padding: 2rem 2.5rem 2.5rem;
  }
}

.details__emphasis {
  color: #fd5858;
  font-weight: bold;
}

.details__image {
  height: auto;
  margin: -4rem 0 -4rem;
  transition-duration: 0.5s;
  width: 100%;
}
.details--sns .details__image {
  max-width: 0.9rem;
  padding-bottom: 0.3rem;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .details--sns .details__image {
    max-width: 1rem;
  }
}
@media (min-width: 768px) {
  .section--about .details__image {
    margin: 0;
  }
}
.section--about .details__box .details__image {
  margin: -1rem 0;
  width: auto;
}
@media (min-width: 768px) {
  .section--about .details__box .details__image {
    height: auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .details__image {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .details__inner:hover .details__image {
    filter: blur(5px);
    opacity: 0.6;
    transform: scale(1.2) rotate(3deg);
    transition-duration: 0.5s;
  }
  .details--sns .details__inner:hover .details__image {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

.details__inner {
  background-repeat: no-repeat;
  background: #fff;
  border: 1px solid #27903a;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.section--about .details__inner {
  height: 12rem;
}
@media (min-width: 768px) {
  .section--about .details__inner {
    height: auto;
  }
}
.details--sns .details__inner {
  border-color: #1877f2;
}
.section--legal .details__inner {
  border-color: #fd5858;
}
.details--sns .details__inner,
.section--legal .details__box .details__inner,
.lower-page--legal .details__box .details__inner {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 2rem 40%;
  height: auto;
}
@media (min-width: 768px) {
  .details--sns .details__inner,
  .section--legal .details__box .details__inner,
  .lower-page--legal .details__box .details__inner {
    background-size: contain;
    padding: 1.5rem 2rem 2rem;
  }
}
@media (min-width: 1024px) {
  .details--sns .details__inner,
  .section--legal .details__box .details__inner,
  .lower-page--legal .details__box .details__inner {
    padding: 3rem 4rem 4rem;
  }
}
.details--sns .details__inner {
  background-position: center bottom 75%;
  padding: 5rem 2rem 2rem;
}
@media (min-width: 768px) {
  .details--sns .details__inner {
    padding: 5.5rem 2rem 2rem;
    background-position: left center, right center;
  }
}
@media (min-width: 1024px) {
  .details--sns .details__inner {
    padding: 6rem 4rem 3rem;
  }
}
.section--work .details__inner {
  border-color: #35a6e0;
}
.section--live .details__inner {
  border-color: #f2bc00;
}
.section--pension .details__inner {
  border-color: #f06b02;
}
.section--elite .details__inner {
  border-color: #f2bc00;
}
.lower-page--legal .details__inner {
  border-color: #fd5858;
}
.lower-page--work .details__inner {
  border-color: #35a6e0;
}
.lower-page--live .details__inner {
  border-color: #f2bc00;
}
.lower-page--pension .details__inner {
  border-color: #f06b02;
}
.lower-page--elite .details__inner {
  border-color: #f2bc00;
}
.details__column .details__inner {
  margin: 2rem auto;
}
@media (min-width: 768px) {
  .details__column .details__inner {
    width: 31.5%;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .details__inner {
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
  }
  .section--legal .details__box .details__inner:hover,
  .lower-page--legal .details__box .details__inner:hover {
    opacity: 0.8;
    transition-duration: 0.5s;
  }
}

.details__intro {
  background: #1877f2;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  left: 0;
  margin: auto;
  padding: 0.5rem 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .details__intro {
    font-size: 1.8rem;
  }
}

.details__subtitle {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .details__subtitle {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .details__subtitle {
    font-size: 2.4rem;
  }
}

.details__text {
  font-size: 1.4rem;
  text-align: left;
}
@media (min-width: 768px) {
  .details__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .details__text {
    font-size: 1.8rem;
  }
}
.details--sns .details__text,
.lower-page--legal .details__box .details__text {
  margin: 0 auto;
  max-width: 58rem;
  text-align: center;
  text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px,
    #fff -1px -1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px,
    #fff -1px -1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px,
    #fff -1px -1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px,
    #fff -1px -1px 10px;
}

.details__title {
  font-size: 1.8rem;
  margin: 0 auto 0.5rem;
}
@media (min-width: 768px) {
  .details__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .details__title {
    font-size: 2.8rem;
  }
}
.section--about .details__title {
  font-size: 1.4rem;
  left: 50%;
  line-height: 1.4;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (min-width: 768px) {
  .section--about .details__title {
    font-size: 1.8rem;
  }
}
.details--sns .details__title {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 auto 1rem;
  max-width: 28rem;
  position: relative;
}
@media (min-width: 768px) {
  .details--sns .details__title {
    font-size: 2.7rem;
    margin: 0 auto 1.2rem;
    max-width: 33rem;
  }
}
@media (min-width: 1024px) {
  .details--sns .details__title {
    font-size: 3.2rem;
    margin: 0 auto 1.5rem;
    max-width: 36rem;
  }
}
@media (min-width: 768px) {
  .details--sns .details__title {
    max-width: 100%;
  }
}

.flow {
  position: relative;
}
.flow::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 100%;
  position: absolute;
  left: calc(3rem - 0.3rem);
}
@media (min-width: 768px) {
  .flow::before {
    width: 0.8rem;
    left: calc(4rem - 0.4rem);
  }
}
@media (min-width: 1024px) {
  .flow::before {
    width: 1rem;
    left: calc(5rem - 0.5rem);
  }
}
.lower-page--legal .flow::before {
  background: #fff5f5;
}
.lower-page--work .flow::before {
  background: #f3fafd;
}
.lower-page--live .flow::before {
  background: #fef8e5;
}
.lower-page--pension .flow::before {
  background: #fef0e5;
}
.lower-page--elite .flow::before {
  background: #fef8e5;
}

.flow__box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .flow__box {
    margin-bottom: 5rem;
  }
}
.flow__box:last-child {
  margin-bottom: 0;
}

.flow__circle {
  background: #27903a;
  border-radius: 50%;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  height: 6rem;
  width: 6rem;
  line-height: 1;
  text-align: center;
  margin-right: 2rem;
  position: relative;
}
.lower-page--legal .flow__circle {
  background: #fd5858;
}
.lower-page--work .flow__circle {
  background: #35a6e0;
}
.lower-page--live .flow__circle {
  background: #f2bc00;
}
.lower-page--pension .flow__circle {
  background: #f06b02;
}
.lower-page--elite .flow__circle {
  background: #f2bc00;
}
@media (min-width: 768px) {
  .flow__circle {
    height: 8rem;
    width: 8rem;
    font-size: 3.6rem;
  }
}
@media (min-width: 1024px) {
  .flow__circle {
    font-size: 4.4rem;
    height: 10rem;
    margin-right: 4rem;
    width: 10rem;
  }
}

.flow__decoration {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .flow__decoration {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .flow__decoration {
    font-size: 1.8rem;
  }
}

.flow__summary {
  flex: 1;
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .flow__summary {
    margin-top: 1.5rem;
  }
}

.flow__heading {
  flex: 1;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .flow__heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

.flow__text {
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .flow__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .flow__text {
    font-size: 1.8rem;
  }
}

.lead {
  background: #f2f8f3;
  padding: 5rem 2rem;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  .lead {
    padding: 12rem 2rem;
  }
}
.lead::before,
.lead::after {
  animation-delay: 0s, 0.3s;
  animation-direction: normal, alternate;
  animation-duration: 0.3s, 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1, infinite;
  animation-timing-function: ease-out, ease-in-out;
  content: "";
  position: absolute;
}
.lead::before {
  animation-name: hvr-bob-float, hvr-bob;
  background: #27903a;
  bottom: -4rem;
  height: 6rem;
  left: 50%;
  width: 0.2rem;
}
@media (min-width: 768px) {
  .lead::before {
    bottom: -4.5rem;
    height: 7rem;
  }
}
@media (min-width: 1024px) {
  .lead::before {
    bottom: -7.5rem;
    height: 15rem;
  }
}
.lead::after {
  animation-name: hvr-bob-float-b, hvr-bob-b;
  border-top: 2px solid #27903a;
  bottom: -3.2rem;
  left: 50%;
  margin-left: 0.6rem;
  width: 2rem;
}
@media (min-width: 768px) {
  .lead::after {
    bottom: -3.8rem;
  }
}
@media (min-width: 1024px) {
  .lead::after {
    bottom: -6.3rem;
    margin-left: 0.8rem;
    width: 3rem;
  }
}

.lead__body {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  line-height: 2;
  margin: 1.5rem auto 0;
  max-width: 78rem;
}
@media (min-width: 1024px) {
  .lead__body {
    font-size: 2.2rem;
    margin: 3rem auto 0;
    line-height: 2.36;
  }
}

.lead__heading {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 1024px) {
  .lead__heading {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .lead__heading {
    font-size: 3.4rem;
  }
}

.list {
  border-top: 1px solid #27903a;
  border-bottom: 1px solid #27903a;
}

.list__addition {
  margin-top: 0.2rem;
}
@media (min-width: 1024px) {
  .list__addition {
    margin-top: 0.5rem;
  }
}

.list__item {
  border-bottom: 1px solid #beddc4;
  padding: 2rem 1.2rem;
}
@media (min-width: 1024px) {
  .list__item {
    padding: 2.5rem 3rem;
  }
}
.list__item:last-child {
  border-bottom: none;
}

.list__tag {
  border: 1px solid #27903a;
  color: #27903a;
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 0.1rem 0;
  text-align: center;
  width: 8rem;
}
@media (min-width: 768px) {
  .list__tag {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.list__title {
  font-weight: bold;
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .list__title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .list__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .list__title {
    margin-top: 1rem;
  }
}

.overlap {
  align-items: flex-start;
  margin: 0 auto 4rem;
  position: relative;
}
@media (min-width: 768px) {
  .overlap {
    margin: 0 auto 6rem;
  }
}
@media (min-width: 1024px) {
  .overlap {
    display: flex;
    margin: 0 auto 8rem;
  }
}
.overlap:last-child {
  margin: 0;
}
.overlap:nth-child(even) {
  flex-direction: row-reverse;
}

.overlap__image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 80rem;
  width: 100%;
}
@media (min-width: 768px) {
  .overlap__image {
    margin: 0 auto;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .overlap__image {
    margin: 0;
    width: 70%;
  }
}

.overlap__text {
  font-size: 1.4rem;
  margin: 1.5rem 0 0;
}
@media (min-width: 768px) {
  .overlap__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .overlap__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .overlap__text {
    margin: 2rem 0 0;
  }
}

.overlap__title {
  border-bottom: 1px solid #27903a;
  font-size: 2.2rem;
  padding: 0 0 0.5rem 0;
}
@media (min-width: 1024px) {
  .overlap__title {
    font-size: 2.8rem;
    padding: 0 0 0.5rem 0;
  }
}
.lower-page--legal .overlap__title {
  border-color: #fd5858;
}
.lower-page--work .overlap__title {
  border-color: #35a6e0;
}
.lower-page--live .overlap__title {
  border-color: #f2bc00;
}
.lower-page--pension .overlap__title {
  border-color: #f06b02;
}
.lower-page--elite .overlap__title {
  border-color: #f2bc00;
}

.overlap__wrap {
  background: #fff;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 80rem;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .overlap__wrap {
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    max-width: 65rem;
    padding: 4rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
  }
}
.overlap:nth-child(even) .overlap__wrap {
  left: 0;
  right: auto;
}

.plan {
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .plan {
    display: flex;
  }
}

.plan__box {
  border: 1px solid #27903a;
  width: 100%;
  max-width: 66rem;
  margin: 3rem auto 0;
}
.lower-page--legal .plan__box {
  border-color: #fd5858;
}
.lower-page--work .plan__box {
  border-color: #35a6e0;
}
.lower-page--live .plan__box {
  border-color: #f2bc00;
}
.lower-page--pension .plan__box {
  border-color: #f06b02;
}
.lower-page--elite .plan__box {
  border-color: #f2bc00;
}
.lower-page--legal .plan__box {
  background: #fff5f5;
}
.lower-page--work .plan__box {
  background: #f3fafd;
}
.lower-page--live .plan__box {
  background: #fef8e5;
}
.lower-page--pension .plan__box {
  background: #fef0e5;
}
.lower-page--elite .plan__box {
  background: #fef8e5;
}
@media (min-width: 1024px) {
  .plan__box {
    width: 48%;
    margin: 4% 0 0;
  }
}
.plan__box:first-child {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .plan__box:first-child {
    margin: 4% 0 0;
  }
}
@media (min-width: 1024px) {
  .plan__box:nth-child(-n + 2) {
    margin: 0;
  }
}

.plan__detail,
.plan__head {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .plan__detail,
  .plan__head {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .plan__detail,
  .plan__head {
    font-size: 1.8rem;
  }
}

.plan__detail {
  width: 80%;
  padding: 0 0 0 1.5rem;
}
@media (min-width: 1024px) {
  .plan__detail {
    padding: 0 0 0 2rem;
  }
}

.plan__head {
  color: #fff;
  max-width: 14rem;
  width: 25%;
  text-align: center;
  padding: 0.6rem;
  line-height: 1.2;
}
.lower-page--legal .plan__head {
  background: #fd5858;
}
.lower-page--work .plan__head {
  background: #35a6e0;
}
.lower-page--live .plan__head {
  background: #f2bc00;
}
.lower-page--pension .plan__head {
  background: #f06b02;
}
.lower-page--elite .plan__head {
  background: #f2bc00;
}
.plan__detail + .plan__head {
  margin: 1.5rem 0 0;
}

.plan__emphasis {
  font-size: 2.2rem;
  vertical-align: text-bottom;
  display: inline-block;
}
@media (min-width: 1024px) {
  .plan__emphasis {
    font-size: 2.8rem;
    margin-bottom: -0.15rem;
  }
}

.plan__item {
  font-weight: bold;
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #27903a;
  justify-content: space-between;
  padding: 1rem 0.5rem;
}
@media (min-width: 1024px) {
  .plan__item {
    padding: 1.5rem 2rem;
  }
}
.plan__item:last-child {
  border-bottom: none;
}
.lower-page--legal .plan__item {
  border-color: #fd5858;
}
.lower-page--work .plan__item {
  border-color: #35a6e0;
}
.lower-page--live .plan__item {
  border-color: #f2bc00;
}
.lower-page--pension .plan__item {
  border-color: #f06b02;
}
.lower-page--elite .plan__item {
  border-color: #f2bc00;
}

.plan__item--brother {
  border-bottom: none;
  padding-bottom: 0;
}

.plan__inner {
  padding: 1rem 1.5rem;
}
@media (min-width: 1024px) {
  .plan__inner {
    padding: 2rem 3rem;
  }
}

.plan__label {
  font-size: 1.4rem;
  background: #fff;
  display: inline-block;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 3rem;
  line-height: 1;
  margin-top: 0.5rem;
  padding: 0.1rem 2.5rem;
}
@media (min-width: 768px) {
  .plan__label {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .plan__label {
    font-size: 1.8rem;
  }
}
.lower-page--legal .plan__label {
  color: #fd5858;
}
.lower-page--work .plan__label {
  color: #35a6e0;
}
.lower-page--live .plan__label {
  color: #f2bc00;
}
.lower-page--pension .plan__label {
  color: #f06b02;
}
.lower-page--elite .plan__label {
  color: #f2bc00;
}

.plan__list {
  position: relative;
  margin-left: 1.5rem;
}
.plan__list::before {
  content: "・";
  left: -1.5rem;
  position: absolute;
}

.plan__subtitle {
  font-size: 1.6rem;
  display: block;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .plan__subtitle {
    font-size: 2rem;
  }
}

.plan__title {
  font-size: 2.2rem;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .plan__title {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

.plan__title-box {
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .plan__title-box {
    padding: 2.5rem;
  }
}
.lower-page--legal .plan__title-box {
  background: #fd5858;
}
.lower-page--work .plan__title-box {
  background: #35a6e0;
}
.lower-page--live .plan__title-box {
  background: #f2bc00;
}
.lower-page--pension .plan__title-box {
  background: #f06b02;
}
.lower-page--elite .plan__title-box {
  background: #f2bc00;
}

.service {
  margin: 0 auto 4rem;
}
@media (min-width: 768px) {
  .service {
    margin: 0 auto 6rem;
  }
}
@media (min-width: 1024px) {
  .service {
    margin: 0 auto 8rem;
  }
}
.lower-page .service:last-child {
  margin: 0 auto;
}

.service__subtitle + .service__list {
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .service__subtitle + .service__list {
    padding: 0 2rem;
  }
}

.service__list-item {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  padding: 0 0 0 1em;
  position: relative;
}
@media (min-width: 768px) {
  .service__list-item {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .service__list-item {
    font-size: 1.8rem;
  }
}
.service__list-item:last-child {
  margin-bottom: 0;
}
.service__list-item::before {
  content: "・";
  left: 0;
  position: absolute;
}

.service__title {
  font-size: 2rem;
  margin: 0 auto 2rem;
  padding: 0 0 1rem;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .service__title {
    font-size: 2.4rem;
    margin: 0 auto 3rem;
  }
}
@media (min-width: 1024px) {
  .service__title {
    font-size: 2.6rem;
    margin: 0 auto 5rem;
  }
}
.service__title::after {
  background: #27903a;
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2.5rem;
}
.lower-page--legal .service__title::after {
  background: #fd5858;
}
.lower-page--work .service__title::after {
  background: #35a6e0;
}
.lower-page--live .service__title::after {
  background: #f2bc00;
}
.lower-page--pension .service__title::after {
  background: #f06b02;
}
.lower-page--elite .service__title::after {
  background: #f2bc00;
}
@media (min-width: 1024px) {
  .service__title::after {
    height: 0.3rem;
    width: 3.5rem;
  }
}
.tab-content--lawyer .service__title::after {
  background: #fd5858;
}
.tab-content--work .service__title::after {
  background: #35a6e0;
}
.tab-content--live .service__title::after {
  background: #f2bc00;
}
.tab-content--pension .service__title::after {
  background: #f06b02;
}

.service__summary {
  margin: 0 auto 2rem;
}
@media (min-width: 1024px) {
  .service__summary {
    margin: 0 auto 4rem;
  }
}
.service__summary:last-child {
  margin: 0 auto;
}
.service__summary > .service__subtitle {
  border-bottom: 1px solid #27903a;
  margin: 2rem auto 1rem;
  padding: 0 1rem 0.5rem;
}
@media (min-width: 1024px) {
  .service__summary > .service__subtitle {
    margin: 4rem auto 2rem;
    padding: 0 2rem 1rem;
  }
}
.service__summary > .service__subtitle:first-child {
  margin: 0 auto 1rem;
}
@media (min-width: 1024px) {
  .service__summary > .service__subtitle:first-child {
    margin: 0 auto 2rem;
  }
}
.lower-page--legal .service__summary > .service__subtitle {
  border-color: #fd5858;
}
.lower-page--work .service__summary > .service__subtitle {
  border-color: #35a6e0;
}
.lower-page--live .service__summary > .service__subtitle {
  border-color: #f2bc00;
}
.lower-page--pension .service__summary > .service__subtitle {
  border-color: #f06b02;
}
.lower-page--elite .service__summary > .service__subtitle {
  border-color: #f2bc00;
}

.service__subtitle {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .service__subtitle {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .service__subtitle {
    font-size: 2.2rem;
  }
}

.service__text {
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .service__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .service__text {
    font-size: 1.8rem;
  }
}
.service__subtitle + .service__text {
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .service__subtitle + .service__text {
    padding: 0 2rem;
  }
}
.service__subtitle + .service__text + .service__text {
  padding: 0 1rem;
  margin: 1.5rem auto 0;
}
@media (min-width: 1024px) {
  .service__subtitle + .service__text + .service__text {
    padding: 0 2rem;
    margin: 2.5rem auto 0;
  }
}

.service__note {
  font-size: 1.4rem;
  margin: 2rem 0;
  padding: 1.3rem 1.2rem;
}
@media (min-width: 768px) {
  .service__note {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .service__note {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .service__note {
    padding: 1.5rem 1.2rem;
  }
}
@media (min-width: 1024px) {
  .service__note {
    margin: 3rem 0;
    padding: 3rem;
  }
}
.lower-page--legal .service__note {
  background: #fff5f5;
}
.lower-page--work .service__note {
  background: #f3fafd;
}
.lower-page--live .service__note {
  background: #fef8e5;
}
.lower-page--pension .service__note {
  background: #fef0e5;
}
.lower-page--elite .service__note {
  background: #fef8e5;
}
.tab-content--lawyer .service__note {
  background: #fff5f5;
}
.tab-content--work .service__note {
  background: #f3fafd;
}
.tab-content--live .service__note {
  background: #fef8e5;
}
.tab-content--pension .service__note {
  background: #fef0e5;
}

.tab-content {
  font-size: 1.4rem;
  display: none;
  padding: 3rem 0 0;
  width: 100%;
}
@media (min-width: 768px) {
  .tab-content {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .tab-content {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .tab-content {
    padding: 5rem 0 0;
  }
}

.tab-content__title {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 auto 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .tab-content__title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .tab-content__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .tab-content__title {
    margin: 0 auto 5rem;
  }
}

.tab-content__catch {
  color: #27903a;
  display: block;
  font-family: "Open Sans", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size: 3.2rem;
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) {
  .tab-content__catch {
    font-size: 3.6rem;
    margin-bottom: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .tab-content__catch {
    font-size: 4.4rem;
    margin-bottom: 1rem;
  }
}
#rates .tab-content__catch,
#faq .tab-content__catch {
  color: #000;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  #rates .tab-content__catch,
  #faq .tab-content__catch {
    font-size: 3.2rem;
  }
}
@media (min-width: 1024px) {
  #rates .tab-content__catch,
  #faq .tab-content__catch {
    font-size: 3.8rem;
  }
}

.tab-content__text {
  line-height: 2;
}
@media (min-width: 1024px) {
  .tab-content__text {
    line-height: 2.25;
  }
}
.tab-content--message .tab-content__text {
  margin: 2rem auto;
  max-width: 80rem;
}
@media (min-width: 1024px) {
  .tab-content--message .tab-content__text {
    margin: 3rem auto;
  }
}

.tab-content__text--right {
  text-align: right;
}

.tab-content__image {
  margin: 0 auto 2rem;
  width: 100%;
}

.tab__radio:checked + .tab__button + .tab-content {
  display: block;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .tab {
    justify-content: center;
  }
}

.tab__button {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  order: -1;
  padding: 0.8rem 1rem;
  transition: all 0.2s ease;
  width: calc(100% / 2 - 0.5rem);
  min-height: 6.2rem;
}
@media (min-width: 768px) {
  .tab__button {
    margin: 0 0 0 2rem;
    width: calc(60rem / 4 - 1.4rem);
  }
}
@media (min-width: 1024px) {
  .tab__button {
    width: calc(80rem / 4 - 1.4rem);
  }
}
@media (min-width: 1024px) {
  .tab__button:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  #faq .tab__button {
    padding: 0.9rem 1rem;
    width: calc(100% / 5 - 1.6rem);
  }
}

@media (min-width: 768px) {
  .tab__button--first {
    margin: 0;
  }
}

input[name="tab__button"] {
  display: none;
}

.tab input:checked + .tab__button {
  background-color: #27903a;
  color: #fff;
  position: relative;
}
@media (min-width: 1024px) {
  .tab input:checked + .tab__button::after {
    border-color: #27903a transparent transparent transparent;
    border-style: solid;
    border-width: 1rem 0.6rem 0 0.6rem;
    bottom: -1rem;
    content: "";
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 0;
  }
}

.table {
  font-size: 1.4rem;
  border-bottom: 1px solid #27903a;
  border-collapse: collapse;
  border-top: 1px solid #27903a;
  line-height: 1.9;
  margin: 3rem auto 0;
  width: 100%;
}
@media (min-width: 768px) {
  .table {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .table {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .table {
    margin: 5rem auto 0;
  }
}
#about-us .table {
  line-height: 1.6;
}
.lower-page--legal .table {
  border-color: #fd5858;
}
.lower-page--work .table {
  border-color: #35a6e0;
}
.lower-page--live .table {
  border-color: #f2bc00;
}
.lower-page--pension .table {
  border-color: #f06b02;
}
.lower-page--elite .table {
  border-color: #f2bc00;
}
.tab-content--lawyer .table {
  border-color: #fd5858;
}
.tab-content--work .table {
  border-color: #35a6e0;
}
.tab-content--live .table {
  border-color: #f2bc00;
}
.tab-content--pension .table {
  border-color: #f06b02;
}

.table__addition {
  text-align: left;
}

.table__row {
  border-bottom: 1px solid #27903a;
}
.lower-page--legal .table__row {
  border-color: #fd5858;
}
.lower-page--work .table__row {
  border-color: #35a6e0;
}
.lower-page--live .table__row {
  border-color: #f2bc00;
}
.lower-page--pension .table__row {
  border-color: #f06b02;
}
.lower-page--elite .table__row {
  border-color: #f2bc00;
}
.table__row:last-child {
  border: none;
}
.tab-content--lawyer .table__row {
  border-color: #fd5858;
}
.tab-content--work .table__row {
  border-color: #35a6e0;
}
.tab-content--live .table__row {
  border-color: #f2bc00;
}
.tab-content--pension .table__row {
  border-color: #f06b02;
}

.table__caption {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .table__caption {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .table__caption {
    font-size: 2.2rem;
    margin-bottom: 1.4rem;
  }
}

.table__title,
.table__detail {
  display: block;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  width: 100%;
}
@media (min-width: 768px) {
  .table__title,
  .table__detail {
    padding: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .table__title,
  .table__detail {
    padding: 2.5rem 4rem;
    display: table-cell;
  }
}

.table__title {
  background: #f2f8f3;
  width: 100%;
}
@media (min-width: 1024px) {
  .table__title {
    width: 35%;
  }
}
@media (min-width: 1024px) {
  #about-us .table__title {
    width: 30%;
  }
}
.tab-content--lawyer .table__title {
  background: #fff5f5;
}
.tab-content--work .table__title {
  background: #f3fafd;
}
.tab-content--live .table__title {
  background: #fef8e5;
}
.tab-content--pension .table__title {
  background: #fef0e5;
}
.lower-page--legal .table__title {
  background: #fff5f5;
}
.lower-page--work .table__title {
  background: #f3fafd;
}
.lower-page--live .table__title {
  background: #fef8e5;
}
.lower-page--pension .table__title {
  background: #fef0e5;
}
.lower-page--elite .table__title {
  background: #fef8e5;
}

.table__detail {
  text-align: right;
  font-weight: bold;
}
#about-us .table__detail {
  text-align: left;
  font-weight: normal;
}

.table__detail-head {
  display: block;
  margin-top: 2rem;
}

.table__detail--column {
  display: flex;
  justify-content: space-between;
}

.table__map {
  width: 100%;
  margin: 2rem auto 0;
}

.table__article {
  margin: 0 auto 2rem;
  display: block;
}
.table__article:last-child {
  margin: 0 auto;
}

.table__tel {
  text-decoration: none;
  display: inline-block;
}

/* lawyers-list
-----------------------------------------*/
.lawyers-list {
  align-items: flex-start;
  margin: 0 auto 5rem;
}
@media (min-width: 768px) {
  .lawyers-list {
    display: flex;
  }
}
@media (min-width: 768px) {
  .lawyers-list {
    margin: 0 auto 6rem;
  }
}
@media (min-width: 1024px) {
  .lawyers-list {
    margin: 0 auto 10rem;
  }
}
.lawyers-list:last-child {
  margin: 0;
}
.lawyers-list:nth-child(even) {
  flex-direction: row-reverse;
}

.lawyers-list__field {
  border-bottom: 0.1rem solid #d9d9d9;
  font-size: 1.8rem;
  margin: 0 0 1.5rem;
  padding: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  .lawyers-list__field {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 0 0 1rem;
  }
}

.lawyers-list__image {
  display: block;
  flex-shrink: 0;
  height: auto;
  margin: 0 auto;
  max-width: 60rem;
  width: 100%;
}
@media (min-width: 768px) {
  .lawyers-list__image {
    width: 50%;
  }
}

.lawyers-list__kana {
  font-size: 1.4rem;
  display: block;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .lawyers-list__kana {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .lawyers-list__kana {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .lawyers-list__kana {
    margin: 0 0 1rem;
  }
}

.lawyers-list__name {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 3.5rem;
  padding: 0 0 2rem;
  position: relative;
}
@media (min-width: 1024px) {
  .lawyers-list__name {
    font-size: 3.4rem;
    margin: 0 0 5.5rem;
    padding: 0 0 3rem;
  }
}
.lawyers-list__name::after {
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  margin: auto;
  position: absolute;
  width: 4.5rem;
}
@media (min-width: 1024px) {
  .lawyers-list__name::after {
    height: 0.3rem;
    width: 7rem;
  }
}
.lower-page--legal .lawyers-list__name::after {
  background: #fd5858;
}
.lower-page--work .lawyers-list__name::after {
  background: #35a6e0;
}
.lower-page--live .lawyers-list__name::after {
  background: #f2bc00;
}
.lower-page--pension .lawyers-list__name::after {
  background: #f06b02;
}
.lower-page--elite .lawyers-list__name::after {
  background: #f2bc00;
}

.lawyers-list__summary {
  margin: 3rem auto 0;
  max-width: 60rem;
}
@media (min-width: 768px) {
  .lawyers-list__summary {
    margin: 2rem 0 2rem 4rem;
    max-width: inherit;
  }
  .lawyers-list:nth-child(even) .lawyers-list__summary {
    margin: 2rem 4rem 2rem 0;
  }
}
@media (min-width: 1024px) {
  .lawyers-list__summary {
    margin: 3rem 0 3rem 6rem;
  }
  .lawyers-list:nth-child(even) .lawyers-list__summary {
    margin: 3rem 6rem 3rem 0;
  }
}

.lawyers-list__text {
  font-size: 1.6rem;
  line-height: 1.9;
}
@media (min-width: 1024px) {
  .lawyers-list__text {
    font-size: 2rem;
  }
}

/* guideline
-----------------------------------------*/
.guideline {
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 1024px) {
  .guideline {
    font-size: 1.6rem;
  }
}
.guideline:nth-child(n + 2) {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .guideline:nth-child(n + 2) {
    margin-top: 6rem;
  }
}
@media (min-width: 1024px) {
  .guideline:nth-child(n + 2) {
    margin-top: 8rem;
  }
}

.guideline__text.guideline__text--date {
  margin: 4rem 0 0;
  text-align: right;
}
@media (min-width: 1024px) {
  .guideline__text.guideline__text--date {
    margin: 7rem 0 0;
  }
}

.guideline__headding {
  font-size: 1.4rem;
  border-bottom: 1px solid #27903a;
  padding: 0 0 0.3rem;
  margin: 3rem 0 1rem;
}
@media (min-width: 768px) {
  .guideline__headding {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .guideline__headding {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .guideline__headding {
    padding: 0 0 0.5rem;
    margin: 5rem 0 2rem;
  }
}

.guideline__subheadding {
  margin: 0.5rem 0 0;
}
@media (min-width: 1024px) {
  .guideline__subheadding {
    margin: 1rem 0 0;
  }
}

.guideline__link {
  display: inline;
}

.guideline__list {
  padding-left: 2em;
  text-indent: -2em;
  margin: 1rem 0 0;
}
@media (min-width: 1024px) {
  .guideline__list {
    margin: 1.5rem 0 0;
  }
}
.guideline__list:first-child {
  margin: 1.5rem 0 0;
}
@media (min-width: 1024px) {
  .guideline__list:first-child {
    margin: 2rem 0 0;
  }
}
.guideline__list.guideline__list--disc {
  margin: 0;
}
@media (min-width: 1024px) {
  .guideline__list.guideline__list--disc {
    margin: 0;
  }
}
#disclaimer .guideline__list {
  margin: 2.5rem 0 0;
}
@media (min-width: 1024px) {
  #disclaimer .guideline__list {
    margin: 3.5rem 0 0;
  }
}

.guideline__list-item {
  padding-left: 2em;
  text-indent: -2em;
  margin: 1rem 0 0;
}
@media (min-width: 1024px) {
  .guideline__list-item {
    margin: 1.5rem 0 0;
  }
}
.guideline__list--disc .guideline__list-item {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0;
}
@media (min-width: 1024px) {
  .guideline__list--disc .guideline__list-item {
    margin: 0;
  }
}
.guideline__list--disc .guideline__list-item::before {
  content: "・";
}
#disclaimer .guideline__list-item {
  margin: 1.5rem 0 0;
}
@media (min-width: 1024px) {
  #disclaimer .guideline__list-item {
    margin: 2.5rem 0 0;
  }
}

.guideline__title {
  font-size: 2rem;
  margin: 0 auto 2rem;
  padding: 0 0 1rem;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .guideline__title {
    font-size: 2.4rem;
    margin: 0 auto 3rem;
  }
}
@media (min-width: 1024px) {
  .guideline__title {
    font-size: 2.6rem;
    margin: 0 auto 5rem;
  }
}
.guideline__title::after {
  background: #27903a;
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2.5rem;
}
@media (min-width: 1024px) {
  .guideline__title::after {
    height: 0.3rem;
    width: 3.5rem;
  }
}

/* review
-----------------------------------------*/
.review {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .review {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .review {
    margin: 0 auto 4rem;
  }
}
@media (min-width: 768px) {
  .review:nth-child(even) {
    flex-direction: row-reverse;
  }
}
#review .review {
  display: block;
  max-width: 90rem;
}

.review__caption {
  font-size: 1.2rem;
  margin: 0.5rem auto 0;
}
@media (min-width: 768px) {
  .review__caption {
    font-size: 1.4rem;
    margin: 1rem auto 0;
  }
}
@media (min-width: 1024px) {
  .review__caption {
    font-size: 1.6rem;
    margin: 1.5rem auto 0;
  }
}
#review .review__caption {
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  #review .review__caption {
    margin: 1.5rem auto 0;
  }
}
@media (min-width: 1024px) {
  #review .review__caption {
    margin: 2rem auto 0;
  }
}

.review__caption-inner::after {
  content: " ／";
}

.review__caption-inner:last-child::after {
  content: none;
}

.review__category {
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  margin: 0 0.5rem 0 0;
}
@media (min-width: 768px) {
  .review__category {
    font-size: 1.4rem;
    margin: 0 0.5rem 0.8rem 0;
  }
}
@media (min-width: 1024px) {
  .review__category {
    font-size: 1.8rem;
  }
}

.review__category-box {
  margin: 0 auto 0.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .review__category-box {
    margin: 0 auto;
  }
}

.review__category-link {
  border-radius: 3rem;
  color: #fff;
  padding: 0.3rem 0.8rem;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .review__category-link {
    padding: 0.4rem 1.2rem;
  }
}
.review__category--legal .review__category-link {
  background: #fd5858;
}
.review__category--work .review__category-link {
  background: #35a6e0;
}
.review__category--live .review__category-link {
  background: #f2bc00;
}
.review__category--pension .review__category-link {
  background: #f06b02;
}
.review__category--elitecard .review__category-link {
  background: #f2bc00;
}

.review__image {
  height: auto;
  width: 11rem;
}
@media (min-width: 768px) {
  .review__image {
    width: 15rem;
  }
}
@media (min-width: 1024px) {
  .review__image {
    width: auto;
  }
}

.review__image-box {
  margin: 0 auto 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .review__image-box {
    margin: 0 3rem 0 0;
  }
}
@media (min-width: 1024px) {
  .review__image-box {
    margin: 0 4rem 0 0;
  }
}
@media (min-width: 768px) {
  .review:nth-child(even) .review__image-box {
    margin: 0 0 0 3rem;
  }
}
@media (min-width: 1024px) {
  .review:nth-child(even) .review__image-box {
    margin: 0 0 0 4rem;
  }
}
#review .review__image-box {
  margin: 2.5rem auto 4rem;
  max-width: 50rem;
}
@media (min-width: 768px) {
  #review .review__image-box {
    margin: 2.5rem auto 6rem;
  }
}

.review__interview-question,
.review__interview-response {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .review__interview-question,
  .review__interview-response {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .review__interview-question,
  .review__interview-response {
    font-size: 1.8rem;
  }
}

.review__interview-question {
  background: #f2f8f3;
  padding: 0.5rem 1.5rem;
  margin: 2.5rem auto 0;
}
@media (min-width: 768px) {
  .review__interview-question {
    padding: 1rem 2rem;
    margin: 4rem auto 0;
  }
}

.review__interview-response {
  font-weight: normal;
  padding: 0 1.5rem;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .review__interview-response {
    padding: 0 2rem;
    margin: 1.5rem auto 0;
  }
}

.review__link {
  display: inline-block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .review__link {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .review__link {
    font-size: 1.8rem;
  }
}
.review__link.arrow::before {
  bottom: -0.2rem;
  left: -2.5rem;
}
@media (min-width: 1024px) {
  .review__link.arrow::before {
    bottom: 0;
    left: -3rem;
  }
}
.review__link.arrow::after {
  bottom: -0.7rem;
  left: -1.5rem;
  width: 0.8rem;
}
@media (min-width: 1024px) {
  .review__link.arrow::after {
    bottom: -0.4rem;
    left: -2rem;
  }
}
@media (min-width: 1024px) {
  .review__link.arrow:hover::before {
    left: -2.5rem;
  }
  .review__link.arrow:hover::after {
    left: -1.5rem;
  }
}

.review__link-box {
  margin: 0.5rem auto 0;
  text-align: right;
}

.review__title {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .review__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .review__title {
    font-size: 2.4rem;
  }
}

.review__text-box {
  background: #fff;
  border: 1px solid #27903a;
  box-shadow: 4px 4px 12px 1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  position: relative;
  max-width: 75rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .review__text-box {
    box-shadow: 8px 8px 18px 1px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 3rem;
  }
}
.review__text-box::before,
.review__text-box::after {
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  width: 0;
}
@media (min-width: 768px) {
  .review__text-box::before,
  .review__text-box::after {
    left: auto;
  }
}
.review__text-box::before {
  border: 0.8rem solid transparent;
  border-bottom: 0.8rem solid #fff;
  margin: -0.8rem;
  top: -0.8rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .review__text-box::before {
    border-bottom: 1.2rem solid transparent;
    border-right: 1.2rem solid #fff;
    left: -1.2rem;
    top: 8.5rem;
  }
}
.review__text-box::after {
  border: 0.9rem solid transparent;
  border-bottom: 0.9rem solid #27903a;
  margin: -0.9rem;
  top: -0.9rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .review__text-box::after {
    border-bottom: 1.3rem solid transparent;
    border-right: 1.3rem solid #27903a;
    left: -1.35rem;
    top: 8.5rem;
  }
}
@media (min-width: 768px) {
  .review:nth-child(even) .review__text-box::before {
    border-left: 1.2rem solid #fff;
    border-right: 1.2rem solid transparent;
    left: auto;
    right: -1.6rem;
  }
}
@media (min-width: 768px) {
  .review:nth-child(even) .review__text-box::after {
    border-left: 1.3rem solid #27903a;
    border-right: 1.3rem solid transparent;
    left: auto;
    right: -1.7rem;
  }
}
#review .review__text-box {
  margin: 2rem auto 4rem;
}
@media (min-width: 768px) {
  #review .review__text-box {
    margin: 4rem auto 6rem;
  }
}
#review .review__text-box::before {
  border: 0.8rem solid transparent;
  border-top: 0.8rem solid #fff;
  top: 105%;
  left: 50%;
  margin-left: -0.8rem;
}
@media (min-width: 768px) {
  #review .review__text-box::before {
    border: 1.2rem solid transparent;
    border-top: 1.2rem solid #fff;
    margin-left: -1.2rem;
    top: 104%;
  }
}
#review .review__text-box::after {
  border: 0.8rem solid transparent;
  border-top: 0.8rem solid #27903a;
  top: 106%;
  left: 50%;
  margin-left: -0.8rem;
}
@media (min-width: 768px) {
  #review .review__text-box::after {
    border: 1.2rem solid transparent;
    border-top: 1.2rem solid #27903a;
    margin-left: -1.2rem;
    top: 105%;
  }
}

.review__name {
  border-bottom: 1px solid #27903a;
  border-top: 1px solid #27903a;
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 1rem auto 0;
  padding: 0.5rem 0;
}
@media (min-width: 1024px) {
  .review__name {
    font-size: 2.4rem;
    margin: 1.5rem auto 0;
    padding: 1rem 0;
  }
}
#review .review__name {
  margin: 1.5rem auto 0;
}
@media (min-width: 1024px) {
  #review .review__name {
    margin: 2.5rem auto 0;
  }
}

.review__honorific-title {
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .review__honorific-title {
    font-size: 1.6rem;
  }
}

.review__subtitle {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  .review__subtitle {
    font-size: 1.6rem;
  }
}

.review__text {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .review__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .review__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .review__text {
    line-height: 2;
    margin: 2rem auto 0;
  }
}

.review__emphasis {
  color: #27903a;
  font-weight: bold;
}

/* 20240625追記 */
/* 「住まい」のカラーリング*/
.section--estate .button__link {
  border-color: #f2bc00;
}
.lower-page--estate .kome.kome--flow {
  background: #fef8e5;
}
.section--estate .section-head__title::after {
  background: #f2bc00;
}
.section.section--estate {
  background: #fef8e5;
}
.lower-page--estate .section.section--title {
  background-image: url(../img/real_estate/img_real-estate.jpg);
  background-position: right 20% center;
}
@media (min-width: 768px) {
  .lower-page--estate .section.section--title {
    background-position: right center;
  }
}
.section--estate .arrow::before {
  background: #671e8b;
}
.section--estate .arrow::after {
  border-color: #671e8b;
}
.lower-page--estate .card__box {
  border-color: #671e8b;
}
.lower-page--estate .card__box::after {
  background: #f8f5fa;
}
.lower-page--estate .card__title {
  background: #671e8b;
}
.lower-page--estate .card__item::after {
  background: #671e8b;
}
.section--estate .details__inner {
  border-color: #671e8b;
}
.lower-page--estate .details__inner {
  border-color: #671e8b;
}
.lower-page--estate .flow::before {
  background: #f8f5fa;
}
.lower-page--estate .flow__circle {
  background: #671e8b;
}
.lower-page--estate .overlap__title {
  border-color: #671e8b;
}
.lower-page--estate .plan__box {
  border-color: #671e8b;
}
.lower-page--estate .plan__box {
  background: #f8f5fa;
}
.lower-page--estate .plan__head {
  background: #671e8b;
}
.lower-page--estate .plan__item {
  border-color: #671e8b;
}
.lower-page--estate .plan__label {
  color: #671e8b;
}
.lower-page--estate .plan__title-box {
  background: #671e8b;
}
.lower-page--estate .service__title::after {
  background: #671e8b;
}
.lower-page--estate .service__summary > .service__subtitle {
  border-color: #671e8b;
}
.lower-page--estate .service__note {
  background: #f8f5fa;
}
.lower-page--estate .table {
  border-color: #671e8b;
}
.lower-page--estate .table__row {
  border-color: #671e8b;
}
.lower-page--estate .table__title {
  background: #f8f5fa;
}
.lower-page--estate .lawyers-list__name::after {
  background: #671e8b;
}
.lower-page--estate .service__subtitle {
  border-bottom: 1px solid #671e8b;
  margin: 0 auto 1rem;
  padding: 0 1rem 0.5rem;
}
@media (min-width: 768px) {
  .lower-page--estate .service__subtitle {
    margin: 0 auto 2rem;
    padding: 0 2rem 1rem;
  }
}
.lower-page--estate .service__subtitle--space {
  margin-top: 4rem !important;
}
.lower-page--estate .service__text {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .lower-page--estate .service__text {
    padding: 0 2rem;
  }
}
.lower-page--estate .table {
  margin-top: 3rem;
}
.lower-page--estate .kome {
  margin-top: 2rem;
}

/* ホームケア サービスのMV処理*/
#homecare .section.section--lead .section__container {
  position: relative;
  padding: 50px 0;
  background-size: cover;
  max-height: 220px;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  #homecare .section.section--lead .section__container {
    max-height: 440px;
  }
}
#homecare .section.section--lead .section-head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 「暮らす」内の記事のスタイル */
.service__title--only {
  margin-bottom: 0;
}

.overlap--gap {
  gap: 40px;
}
.overlap--center {
  align-items: center;
}

.overlap__block--video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .overlap__block--video {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .overlap__block {
    width: calc(100% / 2);
  }
}
.overlap__iframe {
  width: 100%;
  height: 100%;
}
.overlap__sub-title {
  border-left: 3px solid #671e8b;
  padding-left: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2rem;
}
.overlap--none {
  display: block;
}
.overlap__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .overlap__contents {
    flex-direction: unset;
  }
}
.overlap-list {
  margin: 2rem 0 0;
}
.overlap-list__item {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.overlap-list__item::before {
  content: "・"; /* 空の要素作成 */
}

.overlap__sub-text {
  margin-top: 1rem;
}
.overlap__image--ratio {
  aspect-ratio: 801 / 500;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .overlap__image--ratio {
    aspect-ratio: auto;
  }
}
@media (min-width: 768px) {
  .overlap--condominium .overlap__image {
    width: calc(100% / 2 - 20px);
  }
}
.overlap--condominium {
  margin-top: 2rem !important;
}
@media (min-width: 768px) {
  .overlap--condominium {
    margin-top: 3rem !important;
  }
}
.overlap--project:nth-child(even),
.overlap--condominium:nth-child(even) {
  flex-direction: row;
}
.overlap--project {
  display: flex;
  flex-wrap: wrap;
}
.overlap__image--project {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .overlap--project .overlap__block {
    width: calc(100% / 2 - 2rem);
  }
}
.overlap--project .overlap__title {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .overlap--project .overlap__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .overlap__image--no-column,
  .overlap__wrap--no-column {
    width: 100%;
    max-width: 100%;
  }
  .overlap__wrap--no-column {
    position: relative;
    transform: none;
    z-index: 2;
    max-width: calc(100% - 40px * 2);
    margin: -40px auto 0;
  }
  .overlap__box {
    width: calc(100% / 2);
  }
}

.condominium-list {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .condominium-list {
    padding: 0 2rem;
  }
}
.condominium-list__item {
  text-indent: -0.5em;
  padding-left: 0.5em;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .condominium-list__item {
    font-size: 1.8rem;
  }
}
.condominium-list__item::before {
  content: "・"; /* 空の要素作成 */
}

.column-table {
  border-spacing: 0 20px;
  margin-bottom: -20px;
}
@media (min-width: 768px) {
  .column-table {
    margin: -10px auto 0;
    border-spacing: 0 10px;
    width: calc(100% / 2 - 20px);
  }
}
.column-table__row {
  background: #f7f4f9;
}
.column-table__title,
.column-table__detail {
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .column-table__title,
  .column-table__detail {
    display: table-cell;
    font-size: 1.8rem;
  }
}
.column-table__title {
  background: #671e8b;
  color: #fff;
  list-style: 1.4;
}
@media (min-width: 768px) {
  .column-table__title {
    width: 30%;
  }
}
@media (min-width: 768px) {
  .column-table__detail {
    width: 70%;
  }
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.facility-list__item {
  width: calc(100% / 2 - 1.5rem);
  border-radius: 10px;
  border: solid 1px #671e8b;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .facility-list__item {
    width: calc(100% / 4 - 1.5rem);
  }
}
.facility-list__image {
  display: block;
  max-width: 70px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .facility-list__image {
    max-width: 100px;
  }
}
.facility-list__title {
  color: #671e8b;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 1rem 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .facility-list__title {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .table-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
}

.table-list__item {
  text-align: left;
}
@media (min-width: 768px) {
  .table-list__item {
    width: calc(100% / 2 - 1rem);
  }
}

.service__text--condominium {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.details__table {
  border-spacing: 0 20px;
  margin-bottom: -20px;
  width: 100%;
}
@media (min-width: 768px) {
  .details__table {
    margin: 10px auto 0;
    border-spacing: 0 10px;
  }
}

.details__row {
  background: #f7f4f9;
}
.details__header,
.details__detail {
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .details__header,
  .details__detail {
    display: table-cell;
    font-size: 1.8rem;
  }
}
.details__header {
  background: #671e8b;
  color: #fff;
}
@media (min-width: 768px) {
  .details__header {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .details__detail {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .column-table--developer {
    margin-top: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .category-condominium_investment .details__inner {
    width: calc(100% / 2 - 20px);
  }
}
