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

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 400px) and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 399px) {
  html {
    font-size: 4vw;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  background-color: #FFF;
  word-break: break-all;
  overflow: scroll;
}

body {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

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

li {
  list-style: none;
}

.inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 1.25rem;
  }
}

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

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

.s-ttl {
  text-align: center;
}
.s-ttl h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .s-ttl h2 {
    font-size: 1.5rem;
  }
}
.s-ttl h2 span {
  display: block;
  font-family: "Goldman", sans-serif;
  font-size: 1.25rem;
  color: #6E5731;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .s-ttl h2 span {
    font-size: 1rem;
  }
}

.fixed__btn-wrap {
  position: fixed;
  top: 7.5rem;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 50;
}
.fixed__btn-wrap.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .fixed__btn-wrap {
    flex-direction: row;
    top: unset;
    bottom: 0;
    width: 100%;
    gap: 0;
  }
}

.fixed__btn {
  width: 4.625rem;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fixed__btn {
    width: 50%;
  }
}
.fixed__btn a {
  display: flex;
  flex-direction: column;
  border: 0.125rem solid #005344;
  border-radius: 0.5rem 0 0 0.5rem;
  overflow: hidden;
}
.fixed__btn a:hover {
  opacity: 1;
}
.fixed__btn a:hover .fixed__btn-top {
  color: #FFF;
  background-color: #005344;
}
.fixed__btn a:hover .fixed__btn-bottom {
  color: #005344;
  background-color: #FFF;
}
.fixed__btn a:hover .fixed__btn-bottom i {
  color: #005344;
}
@media screen and (max-width: 767px) {
  .fixed__btn a {
    border-radius: unset;
    flex: 1;
  }
}

.fixed__btn.--black a {
  border: 0.125rem solid #333333;
}
.fixed__btn.--black a:hover .fixed__btn-top {
  color: #FFF;
  background-color: #333333;
}
.fixed__btn.--black a:hover .fixed__btn-bottom {
  color: #333333;
  background-color: #FFF;
}
.fixed__btn.--black a:hover .fixed__btn-bottom i {
  color: #333333;
}
.fixed__btn.--black .fixed__btn-top {
  color: #333333;
}
.fixed__btn.--black .fixed__btn-bottom {
  background-color: #333333;
}

.fixed__btn-top {
  background-color: #FFF;
  text-align: center;
  padding: 0.25rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #005344;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fixed__btn-top {
    border-radius: unset;
    padding: 0.125rem 0;
    font-size: 0.625rem;
  }
}

.fixed__btn-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #FFF;
  background-color: #005344;
  padding: 1rem 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fixed__btn-bottom {
    gap: 0;
    border-radius: unset;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 0.25rem 0;
  }
}
.fixed__btn-bottom i {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fixed__btn-bottom i {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

.fixed__btn-bottom-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .fixed__btn-bottom-wrap {
    gap: 0;
    align-items: flex-start;
  }
}
.fixed__btn-bottom-wrap span {
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
}
.fixed__btn-bottom-wrap p {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .fixed__btn-bottom-wrap p {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.--vertical {
  width: fit-content;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .--vertical {
    writing-mode: unset;
  }
}

.btn {
  width: 20rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 16.25rem;
    height: 4rem;
  }
}
.btn a {
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #FFF;
  border: 0.125rem solid #333333;
  border-radius: 2.5rem;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 1rem;
  }
}
.btn a:hover {
  opacity: 1;
  color: #FFF;
  background-color: #333333;
}
.btn a:hover i {
  color: #FFF;
  transition: color 0.3s ease;
}
.btn a i {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: #333333;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .btn a i {
    font-size: 1rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 1.25rem;
}

.header__logo {
  width: 12.5rem;
  height: inherit;
  pointer-events: auto;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 8.75rem;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}
.header__logo a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.header__nav-list {
  display: flex;
  align-items: center;
}

.header__nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  height: inherit;
  font-size: 1rem;
  padding: 1rem;
}

.dropdown {
  position: relative;
}
.dropdown > .dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 42%;
  transform: rotate(135deg);
  width: 0.375rem;
  height: 0.375rem;
  border-top: 0.125rem solid #333333;
  border-right: 0.125rem solid #333333;
  transition: transform 0.5s ease;
}
.dropdown.is-active > .dropdown-toggle::after {
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(-45deg);
  }
}
.dropdown.is-active > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  position: absolute;
  top: 4.5rem;
  left: 1rem;
  width: max-content;
  background-color: #E6E6E6;
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 100;
}

.dropdown__menu-item a {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  color: #333333;
  text-transform: none;
  padding: 0.75rem 1.5rem;
  opacity: 1;
}
.dropdown__menu-item a::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 0.5rem;
  transform: rotate(45deg);
  width: 0.375rem;
  height: 0.375rem;
  border-top: 0.125rem solid #333333;
  border-right: 0.125rem solid #333333;
  transition: transform 0.5s ease;
}
.dropdown__menu-item a::after {
  display: none;
}
.dropdown__menu-item a:hover {
  opacity: 0.7;
}

.header__nav-item a i {
  font-size: 0.625rem;
  margin-left: 0.25rem;
}

.contact__btn {
  width: 11.25rem;
  height: 3rem;
}
.contact__btn a {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border: 0.125rem solid #333333;
  border-radius: 2.5rem;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.contact__btn a:hover {
  opacity: 1;
  color: #FFF;
  background-color: #333333;
}

.header__btn {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 200;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    width: 3.75rem;
    height: 3.75rem;
  }
}

.hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #333333;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .hamburger span {
    width: 1.125rem;
  }
}

.hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}

.hamburger span:nth-of-type(2) {
  top: 0;
}

.hamburger span:nth-of-type(3) {
  top: 0.3125rem;
}

.hamburger.is-open span:nth-of-type(1) {
  top: 0.125rem;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

body.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
  pointer-events: none;
}

.drawer__nav {
  position: fixed;
  top: 0;
  right: -120%;
  max-width: 37.5rem;
  width: 40%;
  height: 100vh;
  background-color: #FFF;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
  z-index: 150;
  overflow: auto;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .drawer__nav {
    width: 80%;
  }
}

.drawer__nav.is-open {
  right: 0;
}

.drawer__nav.is-open .drawer__nav-list {
  opacity: 1;
  visibility: visible;
}

.drawer__nav-list {
  position: absolute;
  z-index: 160;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 20rem;
  width: 80%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease, visibility 2s ease;
}

.drawer__nav-item a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  border-bottom: 0.125rem solid #D5D5D5;
  padding: 1rem 0;
}

.accordion.is-open .accordion-menu {
  max-height: 31.25rem;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  padding-bottom: 1rem;
}
.accordion.is-open p::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion-toggle {
  position: relative;
  border-bottom: none;
}
.accordion-toggle::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 1rem;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #333333;
  border-right: 0.125rem solid #333333;
  transition: transform 0.5s ease;
}

.accordion-menu {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transform: translateY(0.3125rem);
  padding-bottom: 0;
  transition: max-height 0.5s ease, transform 0.5s ease, padding-bottom 0.5s ease;
}
.accordion-menu li a {
  position: relative;
  display: block;
  font-size: 1rem;
  border-bottom: none;
  padding: 0.5rem 0 0.5rem 1.875rem;
}
.accordion-menu li a:before {
  content: "";
  position: absolute;
  top: 44%;
  left: 0;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #333333;
  border-right: 0.125rem solid #333333;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.accordion-menu:before {
  display: none;
}

.drawer__btn {
  width: 100%;
  height: 4rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .drawer__btn a {
    font-size: 1rem;
  }
}

.cta {
  padding: 3.75rem 0 7.5rem;
  background: linear-gradient(135deg, #005344, #66B7A5);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 2.5rem 0 5rem;
  }
}

.cta__inner {
  max-width: 67.5rem;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    max-width: 31.25rem;
  }
}

.cta__ttl {
  text-align: center;
}
.cta__ttl h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .cta__ttl h2 {
    font-size: 1.5rem;
  }
}

.cta__btn-wrap {
  margin-top: 2.5rem;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .cta__btn-wrap {
    gap: 2.5rem;
    flex-direction: column;
  }
}

.cta__btn {
  position: relative;
  max-width: 31.25rem;
  width: 100%;
}
.cta__btn a {
  background-color: #FFF;
  border-radius: 1rem;
  padding: 1.25rem;
  display: block;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cta__btn a:hover {
  opacity: 1;
  transform: translate(0.5rem, 0.5rem);
  box-shadow: none;
}

.cta__btn-ttl {
  width: fit-content;
  margin: 0 auto;
}
.cta__btn-ttl h3 {
  font-size: 1.5rem;
  padding: 0 1rem;
  color: #FFF;
  background-color: #005344;
}
@media screen and (max-width: 767px) {
  .cta__btn-ttl h3 {
    font-size: 1.125rem;
  }
}

.cta__btn-ttl.--black h3 {
  background-color: #333333;
}

.cta__btn-list {
  position: relative;
  margin-top: 1.25rem;
  padding-left: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .cta__btn-list {
    width: fit-content;
    margin: 2rem auto 0;
    gap: 0.5rem;
    padding-left: 0;
  }
}
.cta__btn-list::before {
  content: "";
  position: absolute;
  background-image: url(../img/gold-icon_1.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .cta__btn-list::before {
    top: -4rem;
    left: -1.25rem;
  }
}

.cta__btn-item p {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .cta__btn-item p {
    font-size: 0.875rem;
  }
}
.cta__btn-item p::before {
  content: "";
  position: absolute;
  background-image: url(../img/gold-icon_2.png);
  background-size: contain;
  top: 0.375rem;
  left: 0;
  width: 1rem;
  height: 1rem;
}

#cta .arrow__right {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  #cta .arrow__right {
    top: 1rem;
    transform: unset;
  }
}
#cta .arrow__right::before {
  width: 0.625rem;
  height: 0.625rem;
}

.cta__slider {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cta__slider {
    bottom: -1rem;
  }
}
.cta__slider p {
  font-family: "Goldman", sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .cta__slider p {
    font-size: 5rem;
  }
}

.cta__slider-wrap {
  overflow: hidden;
  white-space: nowrap;
}

.cta__slider {
  display: flex;
  animation: marquee 60s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer {
  padding: 3.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 6.25rem;
  }
}

.footer__inner {
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    max-width: fit-content;
    margin: 0 auto;
  }
}

.footer__wrap {
  width: fit-content;
  padding-bottom: 1.25rem;
}

.footer__logo {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 13.75rem;
  }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__address {
  font-size: 1rem;
  margin-top: 2.5rem;
  white-space: nowrap;
}

.footer__nav-list {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.footer__nav-item {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__nav-item-wrap li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.5rem 0.375rem 1.25rem;
}
.footer__nav-item-wrap li a:before {
  content: "";
  position: absolute;
  top: 1.0625rem;
  left: 0;
  width: 0.75rem;
  height: 0.125rem;
  background-color: #333333;
}
@media screen and (max-width: 767px) {
  .footer__nav-item-wrap li a:before {
    width: 0.5rem;
  }
}

.footer__link-wrap {
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 0.125rem solid #A6A6A6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__link-wrap {
    flex-direction: column;
    gap: 0;
  }
}

.footer__link a {
  display: flex;
  font-size: 1rem;
  padding: 0.5rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer__link a {
    font-size: 0.875rem;
  }
}

.footer__copyright {
  display: block;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

.footer__policy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.footer__policy a {
  font-size: 0.875rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer__policy a {
    font-size: 0.75rem;
  }
}
.footer__policy a span {
  text-transform: uppercase;
}

.page-top {
  position: fixed;
  bottom: 1.25rem;
  right: 5.625rem;
  opacity: 0;
  z-index: 100;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 5rem;
    right: 1.25rem;
  }
}

.page-top a {
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 3.75rem;
  border: 0.125rem solid #333333;
  background-color: #FFF;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page-top a {
    width: 3rem;
    height: 3rem;
  }
}
.page-top a::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 34%;
  transform: rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-top: 0.1875rem solid #333333;
  border-right: 0.1875rem solid #333333;
}
@media screen and (max-width: 767px) {
  .page-top a::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.page-top.appear {
  opacity: 1;
}

.__gy-1 {
  background-color: #f5f5f5;
}

.__wf-2 {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
}

.page-fv {
  position: relative;
  width: 100%;
  height: 25rem;
  background-image: url(../img/page-fv_bg.png), radial-gradient(circle at center bottom, #FFF 0%, #FFF 35%, #DDD9C6 100%);
  background-position: 55%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .page-fv {
    height: 17.5rem;
  }
}

.p-ttl {
  position: absolute;
  top: 50%;
}
.p-ttl h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-ttl h1 {
    font-size: 1.75rem;
  }
}
.p-ttl span {
  position: relative;
  display: block;
  font-family: "Goldman", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #6E5731;
}
@media screen and (max-width: 767px) {
  .p-ttl span {
    font-size: 1.125rem;
  }
}

.breadcrumb {
  padding: 1.25rem 0 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    gap: 0.625rem;
  }
}

.breadcrumb__item {
  font-size: 1rem;
  color: #A6A6A6;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item {
    font-size: 0.875rem;
  }
}

.breadcrumb__item.--current a {
  color: #333333;
}

.tab {
  margin-top: 2.5rem;
}

.tab__link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 0.125rem solid #A6A6A6;
  padding-bottom: 2rem;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .tab__link {
    gap: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.tab__link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  font-size: 1.25rem;
  line-height: 1;
  color: #333333;
  background-color: #FFF;
  border: 0.0625rem solid #333333;
  border-radius: 0.5rem;
  box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .tab__link li a {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }
}

.tab__link li.is-active a {
  color: #FFF;
  background-color: #333333;
  opacity: 1;
  font-weight: 700;
}

.tab__content {
  display: none;
  opacity: 0;
}

.tab__content.is-active {
  display: block;
  opacity: 1;
  -webkit-animation-name: displayAnime;
  animation-name: displayAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pagination {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .nav-links {
    margin-top: 1.875rem;
  }
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  border: 0.0625rem solid #333333;
  border-radius: 50%;
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9375rem;
  }
}

.page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.current {
  color: #fff;
  background-color: #333333;
}

.page-numbers.dots {
  color: #FFF;
  background-color: unset;
  pointer-events: none;
}

.page-numbers.prev,
.page-numbers.next,
.page-numbers.prev,
.page-numbers.next {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  background-color: unset;
  border: none;
}

.single-pagination {
  margin-top: 3.75rem;
}

.single-pagination__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-pagination__wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border: 0.0625rem solid #333333;
}
@media screen and (max-width: 767px) {
  .single-pagination__wrap a {
    font-size: 1rem;
  }
}
.single-pagination__wrap a i {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .single-pagination__wrap a i {
    font-size: 1rem;
  }
}

.--prev,
.--next {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.--prev i,
.--next i {
  font-size: 1rem;
  color: #333333;
}

.--back {
  background-color: #333333;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .wp__ttl {
    font-size: 0.875rem;
  }
}
.wp__ttl h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .wp__ttl h2 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .wp__ttl iframe {
    width: 100%;
    height: auto;
  }
}
.wp__ttl p {
  font-size: 1rem;
  margin-bottom: 1.5%;
}
.wp__ttl p a {
  text-decoration: underline;
  color: #007bff;
}

.wp__ttl h3 {
  margin: 1em 0;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: #EAEADF;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wp__ttl h3 {
    font-size: 1.25rem;
  }
}

.wp__ttl h4 {
  position: relative;
  margin: 1em 0;
  width: fit-content;
  padding: 0.5rem 1rem;
  font-size: 1.375rem;
  font-weight: 700;
}
.wp__ttl h4:before {
  position: absolute;
  content: "";
  width: 0.375rem;
  height: 100%;
  background-color: #C5BBA4;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .wp__ttl h4 {
    font-size: 1.25rem;
  }
}

.wp__ttl h5 {
  position: relative;
  margin: 1em 0;
  width: fit-content;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.wp__ttl h5:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #C5BBA4;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .wp__ttl h5 {
    font-size: 1.125rem;
  }
}

.wp__ttl h6 {
  margin: 0.5em 0;
  width: fit-content;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wp__ttl h6 {
    font-size: 1.125rem;
  }
}

.wp__txt p {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .wp__txt p {
    font-size: 0.875rem;
  }
}

.wp__img {
  margin: 1.25rem 0;
  width: 100%;
}
.wp__img img {
  display: block;
  width: 100%;
  height: 100%;
}

#wp-article .single-article__inner {
  flex-direction: column;
}

#wp-article .main-content {
  max-width: unset;
}

.rotate-in {
  position: relative;
  opacity: 0;
  -webkit-transform: perspective(62.5rem) rotateY(90deg);
  transform: perspective(62.5rem) rotateY(90deg);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.rotate-in.show {
  opacity: 1;
  -webkit-transform: perspective(62.5rem) rotateY(0deg);
  transform: perspective(62.5rem) rotateY(0deg);
}

.rotate-in-reverse {
  position: relative;
  opacity: 0;
  -webkit-transform: perspective(62.5rem) rotateY(-90deg);
  transform: perspective(62.5rem) rotateY(-90deg);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.rotate-in-reverse.show {
  opacity: 1;
  -webkit-transform: perspective(62.5rem) rotateY(0deg);
  transform: perspective(62.5rem) rotateY(0deg);
}

.slide-in {
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(-2.5rem);
  -ms-transform: translateX(-2.5rem);
  transform: translateX(-2.5rem);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.slide-in.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.slide-in-reverse {
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(2.5rem);
  -ms-transform: translateX(2.5rem);
  transform: translateX(2.5rem);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.slide-in-reverse.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.slide-up {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(2.5rem);
  -ms-transform: translateY(2.5rem);
  transform: translateY(2.5rem);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  overflow: visible;
}
.slide-up.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.fade-in.show {
  opacity: 1;
}

.slide-up-noscroll {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out 0.3s;
  animation: slideFadeUp 0.6s ease-out 0.3s forwards;
  overflow: visible;
}

@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-5 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-10 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.delay-15 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-20 {
  transition-delay: 2s;
  animation-delay: 2s;
}

.delay-25 {
  transition-delay: 2.5s;
  animation-delay: 2.5s;
}

.delay-30 {
  transition-delay: 3s;
  animation-delay: 3s;
}

.top-fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40.625rem;
}
@media screen and (max-width: 767px) {
  .top-fv {
    padding-bottom: 1.75rem;
    height: 30rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .top-fv {
    height: auto;
  }
}
.top-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top-fv_bg.png);
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-fv::before {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.top-fv__inner {
  width: 100%;
  height: inherit;
}

.top-fv__wrap {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .top-fv__wrap {
    margin-top: 3.5rem;
  }
}

.top-fv__img {
  width: 25rem;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-fv__img {
    width: 15rem;
    margin: 2.5rem auto 0;
  }
}
.top-fv__img img {
  display: block;
  width: 100%;
  height: 100%;
}

.top-fv__ttl {
  width: max-content;
  margin: 1.25rem auto 0;
}
.top-fv__ttl h1 {
  font-family: "Noto Serif JP", serif;
  color: #272323;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-fv__ttl h1 {
    font-size: 1.125rem;
  }
}
.top-fv__ttl h1 p {
  color: #272323;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-fv__ttl h1 p {
    font-size: 0.625rem;
  }
}
.top-fv__ttl h1 span {
  position: relative;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-fv__ttl h1 span {
    font-size: 1.25rem;
  }
}
.top-fv__ttl h1 span:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0.625rem;
  background-color: #EBEBA1;
  z-index: -1;
}

.top-fv__btn {
  width: 20rem;
  height: 4.25rem;
  margin-top: clamp(3.75rem, 3.438rem + 1.56vw, 5rem);
}
@media screen and (max-width: 767px) {
  .top-fv__btn {
    width: 15rem;
    height: 3.5rem;
  }
}
.top-fv__btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  font-size: 1.25rem;
  font-weight: 43.75rem;
  color: #FFF;
  background-color: #bd292b;
  border: 0.125rem solid #bd292b;
  border-radius: 0.5rem;
  box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.top-fv__btn a:hover {
  opacity: 1;
  color: #bd292b;
  background-color: #FFF;
}
.top-fv__btn a:hover i {
  color: #bd292b;
}
@media screen and (max-width: 767px) {
  .top-fv__btn a {
    font-size: 1rem;
  }
}
.top-fv__btn a i {
  position: absolute;
  font-size: 1.25rem;
  color: #FFF;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-fv__btn a i {
    font-size: 1rem;
    right: 1rem;
  }
}

.top-slider {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .top-slider {
    padding: 2.5rem 0;
  }
}

.top-slider__img {
  width: 46.875rem;
  height: auto;
  aspect-ratio: 16/9;
  transform: scale(0.8);
  border-radius: 1rem;
  transition: transform 1s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-slider__img {
    width: 21.875rem;
  }
}
.top-slider__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s ease;
}

.top-slider__img:hover {
  opacity: 1;
}
.top-slider__img:hover img {
  transform: scale(1.1);
}

.top-slider__list .slick-list {
  position: relative;
  padding-bottom: 3.125rem;
}

.top-slider__img.slick-center {
  transform: scale(1);
}

.slick__arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .slick__arrow-wrap {
    gap: 9.375rem;
  }
}

.js-offer-slider {
  margin: 0 auto 2.5rem;
}

.js-offer-slider .top-slider__img img:hover {
  transform: scale(1);
}

.arrow__left,
.arrow__right {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #333333;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .arrow__left,
  .arrow__right {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.arrow__left::before,
.arrow__right::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.1875rem solid #FFF;
  border-right: 0.1875rem solid #FFF;
}
@media screen and (max-width: 767px) {
  .arrow__left::before,
  .arrow__right::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.arrow__left:before {
  left: 40%;
  transform: translateY(-50%) rotate(-135deg);
}

.arrow__right:before {
  right: 40%;
  transform: translateY(-50%) rotate(45deg);
}

.slick-dots {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: -3.75rem;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .slick-dots li {
    margin: 0 0.375rem;
  }
}

.slick-dots button {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  color: transparent;
  background-color: #D5D5D5;
  border-radius: 50%;
  outline: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .slick-dots button {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.slick-dots .slick-active button {
  background-color: #676767;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  z-index: 200;
  opacity: 0;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}
.modal.is-active {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 70%;
  max-width: 50rem;
  background: #000;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .modal-content {
    width: 50%;
  }
}
.is-active .modal-content {
  transform: scale(1);
  opacity: 1;
}
.modal-content .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: 0;
  right: -3rem;
  font-size: 2rem;
  line-height: 1;
  color: #FFF;
  cursor: pointer;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.popup {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  background-color: #FFF;
  border: 2px solid #333333;
  padding: 1rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 767px) {
  .popup {
    padding: 0.5rem;
    width: 70%;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .popup {
    width: 50%;
  }
}
.popup img {
  display: block;
  width: 100%;
  height: 100%;
}

.popup a:hover {
  opacity: 1;
}

.overlay.show,
.popup.show {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 0;
  right: -3rem;
  font-size: 2rem;
  line-height: 1;
  color: #FFF;
  cursor: pointer;
}

.worry {
  position: relative;
  padding: 3.75rem 0;
  background: linear-gradient(to bottom, #333333, #FFF 90%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .worry {
    padding: 2.5rem 0;
  }
}

.worry__inner {
  max-width: 67.5rem;
}

.worry__ttl {
  text-align: center;
}
.worry__ttl h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .worry__ttl h2 {
    font-size: 1rem;
  }
}
.worry__ttl h2 span {
  font-size: 2.5rem;
  font-size: 1.5rem;
}

.worry__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .worry__wrap {
    max-width: 25rem;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.25rem auto 0;
  }
}
.worry__wrap:before {
  content: "";
  position: absolute;
  top: -3.125rem;
  right: 0;
  background-image: url(../img/worry_1.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 7.5rem;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .worry__wrap:before {
    top: -3.75rem;
    right: -2.5rem;
    width: 5rem;
    height: 10rem;
  }
}
.worry__wrap:after {
  content: "";
  position: absolute;
  bottom: -13.75rem;
  left: 0;
  background-image: url(../img/worry_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 7.5rem;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .worry__wrap:after {
    bottom: -7.5rem;
    left: -2.5rem;
    width: 5rem;
    height: 10rem;
  }
}

.worry__list {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .worry__list {
    width: 100%;
    margin-top: 0;
    gap: 1.25rem;
  }
}

.worry__list .worry__item {
  position: relative;
  width: fit-content;
  background-color: #FFF;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-right: auto;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .worry__list .worry__item {
    padding: 0.5rem;
  }
}
.worry__list .worry__item:nth-of-type(even) {
  margin-right: 0;
  margin-left: auto;
}
.worry__list .worry__item i {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  font-size: 2rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .worry__list .worry__item i {
    top: -0.625rem;
    left: -0.375rem;
    font-size: 1.5rem;
  }
}

.worry__txt p {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .worry__txt p {
    font-size: 0.875rem;
  }
}

.worry__triangle {
  width: 10rem;
  height: 3.75rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #A4957B;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .worry__triangle {
    width: 3.75rem;
    height: 1.25rem;
    margin: 1.25rem auto 0;
  }
}

.worry__ttl.--black {
  margin-top: 1.25rem;
}
.worry__ttl.--black h2 {
  color: #333333;
}

.strengths {
  padding: 3.75rem 0;
  background: linear-gradient(to bottom, #EAEADF 90%, #FFF 100%);
}
@media screen and (max-width: 767px) {
  .strengths {
    padding: 2.5rem 0;
  }
}

.strengths__inner {
  max-width: 52.5rem;
}
@media screen and (max-width: 767px) {
  .strengths__inner {
    max-width: 31.25rem;
  }
}

.strengths__list {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .strengths__list {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.strengths__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFF;
  border-radius: 1rem;
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .strengths__item {
    flex-direction: column-reverse;
    padding: 2rem 1rem 1rem 1rem;
    gap: 1rem;
  }
}

.strengths__ttl {
  position: relative;
}
.strengths__ttl span {
  font-family: "Goldman", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #DDD9C6;
}
@media screen and (max-width: 767px) {
  .strengths__ttl span {
    font-size: 4.5rem;
  }
}
.strengths__ttl h3 {
  position: absolute;
  bottom: 0;
  left: 3.75rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .strengths__ttl h3 {
    font-size: 1.25rem;
  }
}

.strengths__txt {
  margin-top: 1.25rem;
}
.strengths__txt p {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .strengths__txt p {
    font-size: 0.875rem;
  }
}

.--list {
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .--list {
    padding-left: 1.125rem;
  }
}
.--list:before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #DDD9C6;
}
@media screen and (max-width: 767px) {
  .--list:before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.strengths__img {
  width: 7.5rem;
}
.strengths__img img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .strengths__img {
    width: 6.25rem;
  }
}

.approaches {
  padding: 3.75rem 0;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .approaches {
    padding: 2.5rem 0;
  }
}

#approaches .s-ttl p {
  margin-top: 1.5%;
  font-size: 1.125rem;
}

.approaches__inner {
  max-width: 75rem;
}
@media screen and (max-width: 767px) {
  .approaches__inner {
    max-width: 29.25rem;
  }
}

.approaches__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5%;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .approaches__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

.approaches__item {
  position: relative;
  background-color: #EAEADF;
  border-radius: 1rem;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .approaches__item {
    width: calc(100% - 2rem);
    padding: 1rem;
  }
}
.approaches__item:hover {
  opacity: 1;
  transform: translate(0.5rem, 0.5rem);
  box-shadow: none;
}

.approaches__img {
  margin: 0 auto;
  max-width: 10rem;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .approaches__img {
    width: 7.5rem;
  }
}
.approaches__img img {
  display: block;
  width: 100%;
  height: 100%;
}

.approaches__body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .approaches__body {
    margin-top: 1rem;
  }
}

.approaches__ttl {
  text-align: center;
}
.approaches__ttl h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.approaches__txt {
  margin-top: 0.5rem;
}
.approaches__txt p {
  font-size: 1rem;
}

#approaches .arrow__right {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
}
#approaches .arrow__right::before {
  width: 0.625rem;
  height: 0.625rem;
}

.top-service {
  background: linear-gradient(to bottom, #FFF, #EAEADF 10%);
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding: 2.5rem 0;
  }
}

.top-service__inner {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-service__wrap {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .top-service__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.top-service__btn.--pc {
  margin-top: 3.75rem;
}

.top-service__btn.--sp {
  margin: 0 auto;
}

.top-service__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.top-service__item {
  position: relative;
  display: block;
  padding: 1.25rem 3.75rem 1.25rem 1.25rem;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  border-radius: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.top-service__item:hover {
  opacity: 1;
  transform: translate(0.5rem, 0.5rem);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .top-service__item {
    padding: 1.25rem;
  }
}

.top-service__ttl h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-service__ttl h3 {
    font-size: 1.25rem;
  }
}

.top-service__txt {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-service__txt {
    margin-top: 0.75rem;
  }
}
.top-service__txt p {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .top-service__txt p {
    font-size: 0.875rem;
  }
}

#top-service .arrow__right {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  #top-service .arrow__right {
    top: 2.5rem;
  }
}
#top-service .arrow__right::before {
  width: 0.625rem;
  height: 0.625rem;
}

.top-service__bubble {
  position: absolute;
  top: -1.25rem;
  left: 1.25rem;
  background-image: url(../img/service-bubble.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9rem;
  height: 2.75rem;
}
.top-service__bubble p {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
}

.top-archivements {
  padding: 3.75rem 0;
  background-color: #E6E6E6;
}
@media screen and (max-width: 767px) {
  .top-archivements {
    padding: 2.5rem 0;
  }
}

.top-archivements__inner {
  max-width: 55rem;
}

.wp__content {
  margin-top: 2.5rem;
  border-radius: 1rem;
  background-color: #FFF;
  padding: 2.5rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .wp__content {
    padding: 1.25rem;
  }
}

.top-archivements__btn {
  margin: 2.5rem auto 0;
}

.wp__content-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  margin-left: auto;
  font-size: 1.25rem;
  padding: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wp__content-btn {
    font-size: 1rem;
  }
}
.wp__content-btn i {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .wp__content-btn i {
    font-size: 1rem;
  }
}

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

.wp__content-hidden {
  display: none;
  overflow: hidden;
}

.company {
  padding: 3.75rem 0;
  background-color: #333333;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 2.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .company__inner {
    max-width: 37.5rem;
  }
}

#company .s-ttl h2 {
  color: #FFF;
}
#company .s-ttl h2 span {
  color: #FFF;
}

.company-top {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .company-top {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.company-top__img-wrap {
  position: relative;
  width: 40%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .company-top__img-wrap {
    max-width: 25rem;
    width: 100%;
    margin: 0 auto;
  }
}

.company-top__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5rem 0 5rem;
}

.company-top__img.--slogan {
  position: absolute;
  bottom: 0;
  left: -1.25rem;
  width: 20rem;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .company-top__img.--slogan {
    width: 50%;
    bottom: -2.5rem;
    left: 0;
  }
}
.company-top__img.--slogan img {
  border-radius: unset;
}

.company-top__body {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .company-top__body {
    width: 100%;
    margin-top: 5rem;
  }
}

.company__ttl {
  width: fit-content;
}
.company__ttl h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #FFF;
  padding: 0.25rem 1rem;
}
@media screen and (max-width: 767px) {
  .company__ttl h3 {
    font-size: 1.25rem;
  }
}

.company-top__txt {
  margin-top: 2.5rem;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .company-top__txt {
    margin-top: 1.25rem;
  }
}
.company-top__txt p {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .company-top__txt p {
    font-size: 0.875rem;
  }
}
.company-top__txt h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-top__txt h4 {
    font-size: 1.25rem;
    margin: 1.25rem 0;
  }
}

.company-bottom {
  max-width: 61.25rem;
  margin: 3.75rem auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .company-bottom {
    flex-direction: column;
  }
}

.company-bottom__list {
  max-width: 45rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-bottom__list {
    margin-top: 2.5rem;
  }
}

.company-bottom__item {
  display: flex;
  border-bottom: 0.0625rem solid #FFF;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-bottom__item {
    flex-direction: column;
    padding-bottom: 0.75rem;
  }
}

.company-bottom__ttl {
  width: 11.25rem;
  color: #FFF;
}
.company-bottom__ttl h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company-bottom__ttl h4 {
    font-size: 1rem;
  }
}

.company-bottom__txt {
  color: #FFF;
}
.company-bottom__txt p {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-bottom__txt p {
    font-size: 1rem;
  }
}

/* 吹き出し（左） */
.balloon-left {
  display: flex;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 1rem;
}

.balloon-left .icon {
  margin-right: 10px;
}

.balloon-left .icon img {
  width: 50px;
  height: 50px;
}

.balloon .speaker-name {
  font-size: 0.8em;
  color: #333;
  text-align: center;
}

.balloon-left .text {
  background: #f0f0f0;
  padding: 15px 20px;
  border-radius: 10px;
  position: relative;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .balloon-left .text {
    font-size: 0.875rem;
  }
}

.balloon-left .text::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -17px;
  border: 10px solid transparent;
  border-right: 10px solid #f0f0f0;
}

/* 吹き出し（右） */
.balloon-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 1rem;
}

.balloon-right .icon {
  margin-left: 10px;
  order: 2;
}

.balloon-right .icon img {
  width: 50px;
  height: 50px;
}

.balloon-right .text {
  background: #bad7d0;
  padding: 15px 20px;
  border-radius: 10px;
  position: relative;
  order: 1;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .balloon-right .text {
    font-size: 0.875rem;
  }
}

.balloon-right .text::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -17px;
  border: 10px solid transparent;
  border-left: 10px solid #bad7d0;
}

.service {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 2.5rem 0;
  }
}

.service__link-list {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #A6A6A6;
}
@media screen and (max-width: 767px) {
  .service__link-list {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.service__link {
  height: 5.25rem;
}
@media screen and (max-width: 767px) {
  .service__link {
    width: 21.25rem;
    height: 4.375rem;
  }
}
.service__link a {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 0.75rem;
  font-weight: 700;
  border: 0.0625rem solid #333333;
  border-radius: 0.5rem;
  font-size: 1rem;
  padding: 0 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__link a {
    padding: 0 1.25rem;
  }
}
.service__link a i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 1rem;
}

.service__content {
  margin: 2.5rem 0;
  padding: 2.5rem;
  background-color: #efefef;
  width: 78.5%;
  margin-left: auto;
}
.service__content:nth-of-type(odd) {
  background-color: #dfeae8;
}
@media screen and (max-width: 767px) {
  .service__content {
    padding: 1rem;
    width: auto;
    max-width: 30rem;
  }
}

.service__ttl h3 {
  display: inline-block;
  font-size: 1.5rem;
  background-color: #EAEADF;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .service__ttl h3 {
    font-size: 1.25rem;
  }
}
.service__ttl h5 {
  display: inline-block;
  font-size: 1.375rem;
  background-color: #015242;
  padding: 0.5rem 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service__ttl h5 {
    font-size: 1.25rem;
  }
}
.service__ttl h6 {
  display: inline-block;
  font-size: 1.25rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .service__ttl h6 {
    font-size: 1.25rem;
  }
}

.service__bg {
  background-color: #fff;
  padding: 1.125rem;
}

.service__img {
  width: 100%;
}
.service__img img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .service__img img {
    width: 750px;
  }
}

.img-wd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .img-wd {
    width: 100%;
  }
}

.font-20 {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .font-20 {
    font-size: 0.875rem;
  }
}

.font-16 {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .font-16 {
    font-size: 0.75rem;
  }
}

.font-14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .font-14 {
    font-size: 0.75rem;
  }
}

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

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

.mt-12 {
  margin-top: 0.75rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

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

@media screen and (max-width: 767px) {
  .txt-left-sp {
    text-align: left;
  }
}

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

.service__ttl h4,
.service__ttl p {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #333333;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .service__ttl h4,
  .service__ttl p {
    font-size: 0.875rem;
  }
}

.service__ttl h4 {
  color: #FFF;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .service__ttl h4 {
    font-size: 1.25rem;
  }
}

.service__ttl.--gray p {
  background-color: #E6E6E6;
}

.service__ttl.--green1 p {
  background-color: #DFEAE8;
}

.service__ttl.--green2 p {
  background-color: #BBD7D0;
}

.service__ttl.--green3 p {
  background-color: #66B7A5;
}

.management__content {
  width: 85%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .management__content {
    width: auto;
    max-width: 31.25rem;
    margin: 0 auto;
  }
}

.school__table-scroll-message {
  display: none;
}
@media screen and (max-width: 767px) {
  .school__table-scroll-message {
    display: block;
    font-size: 1rem;
    margin-top: 1.25rem;
    color: #A6A6A6;
  }
}

.school__table-img {
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
}
.school__table-img img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .school__table-img img {
    width: 175%;
  }
}

.__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.__scroll::-webkit-scrollbar {
  height: 4px;
}
.__scroll::-webkit-scrollbar-track {
  background: #eee;
}
.__scroll::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
.__scroll::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.school__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .school__list {
    gap: 1.25rem;
    justify-content: center;
  }
}

.school__item {
  max-width: 17.5rem;
  width: 26.7%;
  background: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .school__item {
    width: 100%;
  }
}

.-school__item {
  width: 21%;
}
@media screen and (max-width: 767px) {
  .-school__item {
    aspect-ratio: 2/1;
    width: 100%;
  }
}
.-school__item .school__ttl {
  justify-content: center;
}
.-school__item .school__ttl span {
  font-size: 1rem;
  text-align: center;
}
.-school__item .school__ttl span b {
  font-size: 1.125rem;
  background: linear-gradient(transparent 60%, #ebeba0 60%);
}

.school__ttl {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.school__ttl span {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .school__ttl span {
    font-size: 1rem;
  }
}

.school__img {
  width: 7.5rem;
  height: auto;
  border: solid 3px #eaeadf;
  border-radius: 1000px;
}
.school__img img {
  display: block;
  width: 100%;
  height: 100%;
}

.tools__list {
  margin: 5.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.875rem, 1fr));
  column-gap: 2.5rem;
  row-gap: 4.25rem;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .tools__list {
    margin: 3.25rem auto 0;
    grid-template-columns: repeat(auto-fit, minmax(10.625rem, 1fr));
    column-gap: 1rem;
    row-gap: 3rem;
  }
}

.tools__item {
  position: relative;
  width: 100%;
}

.tools__ttl {
  position: absolute;
  top: -3rem;
  left: 0;
  display: inline-block;
  width: fit-content;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .tools__ttl {
    height: 2rem;
    top: -2rem;
  }
}
.tools__ttl span {
  display: flex;
  align-items: center;
  text-align: center;
  height: inherit;
  font-size: 1rem;
  line-height: 1.2;
  color: #FFF;
  background-color: #005344;
  padding: 0 1rem;
  border-radius: 0 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .tools__ttl span {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
}

.tools__img {
  width: 100%;
  height: auto;
}
.tools__img img {
  display: block;
  width: 100%;
  height: 100%;
}

.toc-sidebar {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.toc-sidebar.is-show {
  opacity: 1;
  pointer-events: auto;
}

.toc-sidebar {
  position: fixed;
  top: 120px;
  left: 0;
  width: 275px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1rem;
  font-size: 1rem;
  z-index: 0;
}

.toc-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.toc-sidebar li {
  margin: 0.5em 0;
}

.toc-sidebar a {
  text-decoration: none;
  color: #333;
  display: block;
}

.toc-sidebar a.active {
  font-weight: bold;
  color: #015242;
}

.toc-sidebar .toc-h4 {
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .toc-sidebar {
    display: none;
  }
}
.archive-column {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .archive-column {
    padding: 2.5rem 0;
  }
}

#archive-column .article__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  #archive-column .article__list {
    margin-top: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.25rem;
  }
}

.column__item {
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
}

#archive-column .article__item {
  border-bottom: unset;
}
#archive-column .article__item a:hover {
  opacity: 1;
}
#archive-column .article__item a:hover .culumn__img img {
  transform: scale(1.1);
}

.column__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.column__img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.column__body {
  background-color: #EAEADF;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .column__body {
    padding: 0.75rem;
  }
}

#archive-column .article__ttl {
  margin-bottom: 0.5rem;
}
#archive-column .article__ttl h3 {
  padding: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #archive-column .article__ttl h3 {
    font-size: 0.875rem;
  }
}

#archive-column .article__meta-wrap {
  margin-bottom: 0.5rem;
}

#archive-column .article__meta.column__meta {
  margin-bottom: 0;
}

#archive-column .article__date {
  font-size: 0.75rem;
}

.archive-consultant {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .archive-consultant {
    padding: 2.5rem 0;
  }
}

.archive-consultant__txt {
  max-width: 67.5rem;
  margin: 2.5rem auto 0;
}
.archive-consultant__txt p {
  font-size: 1rem;
  margin-bottom: 2.5%;
}
@media screen and (max-width: 767px) {
  .archive-consultant__txt p {
    font-size: 0.875rem;
  }
}
.archive-consultant__txt img {
  display: block;
  width: 100%;
  height: 100%;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .archive-consultant__txt img {
    width: 500px;
  }
}

.article__list.consultant__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.875rem, 1fr));
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .article__list.consultant__list {
    grid-template-columns: repeat(auto-fit, minmax(10.625rem, 1fr));
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.article__item.consultant__item {
  border-bottom: unset;
}
.article__item.consultant__item a:hover .consultant__img img {
  transform: scale(1.1);
}
.article__item.consultant__item a:hover {
  opacity: 1;
}

.consultant__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.consultant__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.consultant__body {
  padding-top: 1rem;
}

.article__ttl.consultant__ttl {
  margin-bottom: 0.5rem;
  text-align: center;
}
.article__ttl.consultant__ttl h3 {
  display: inline-block;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  background-color: #333333;
  padding: 0.25rem 1rem;
}
@media screen and (max-width: 767px) {
  .article__ttl.consultant__ttl h3 {
    font-size: 1rem;
  }
}

.consultant__txt {
  margin-bottom: 0.5rem;
}
.consultant__txt p {
  font-size: 0.875rem;
}

.article__meta-wrap.consultant__meta-wrap {
  margin-bottom: 0.5rem;
}

.article__meta-wrap.consultant__meta-wrap {
  justify-content: center;
}
.article__meta-wrap.consultant__meta-wrap .article__category {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .article__meta-wrap.consultant__meta-wrap .article__category {
    justify-content: flex-start;
  }
}
.article__meta-wrap.consultant__meta-wrap .article__category p {
  margin: 0 0.25rem;
}

.article__meta.consultant__meta {
  margin-bottom: 0;
}

.single-consultant {
  padding: 3.75rem 0;
}

.single-consultant__top {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-consultant__top {
    flex-direction: column-reverse;
  }
}

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

.single-consultant__name h2 {
  font-size: 2rem;
  font-weight: 43.75rem;
}
@media screen and (max-width: 767px) {
  .single-consultant__name h2 {
    font-size: 1.5rem;
  }
}
.single-consultant__name h2 span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single-consultant__name h2 span {
    font-size: 0.75rem;
  }
}

.single-consultant__ttl {
  margin-top: 1.25rem;
}
.single-consultant__ttl h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-consultant__ttl h3 {
    font-size: 1.25rem;
  }
}

.single-consultant__txt {
  margin-top: 1.25rem;
}
.single-consultant__txt p {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .single-consultant__txt p {
    font-size: 0.875rem;
  }
}

.single-consultant__btn {
  width: 23.75rem;
  height: 4.5rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .single-consultant__btn {
    width: 21.25rem;
  }
}

.single-consultant__img {
  max-width: 30rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single-consultant__img {
    margin: 0 auto;
  }
}
.single-consultant__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-consultant__bottom {
  margin: 3.75rem auto 0;
  max-width: 50rem;
}

.archive-archivements {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .archive-archivements {
    padding: 2.5rem 0;
  }
}

#archive-archivements .article__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  #archive-archivements .article__list {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.archivements__item {
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
}

#archive-archivements .article__item {
  border-bottom: unset;
  background-color: #eaeadf;
}
#archive-archivements .article__item a:hover {
  opacity: 1;
}
#archive-archivements .article__item a:hover .archivements__img img {
  transform: scale(1.1);
}

.archivements__img {
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.archivements__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archivements__body {
  background-color: #EAEADF;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .archivements__body {
    padding: 0.75rem;
  }
}

#archive-archivements .article__ttl {
  margin-bottom: 0.5rem;
}
#archive-archivements .article__ttl h3 {
  padding: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #archive-archivements .article__ttl h3 {
    font-size: 0.875rem;
  }
}

#archive-archivements .article__meta-wrap {
  margin-bottom: 0.5rem;
}

#archive-archivements .article__meta {
  margin-bottom: 0;
}

#archive-archivements .article__date {
  font-size: 0.75rem;
}

.archive-news {
  padding: 2.5rem 0;
}

.archive-news__inner {
  max-width: 55rem;
}

.article__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .article__list {
    gap: 1.5rem;
  }
}

.article__item {
  border-bottom: 0.0625rem solid #A6A6A6;
}

.article__meta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

#archive-news .article__meta,
#archive-archivements .article__meta #archive-column .article__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.article__date {
  color: #A6A6A6;
  font-size: 1rem;
  white-space: nowrap;
}

.article__tag .article__category p {
  color: #FFF !important;
  background-color: #333333 !important;
  margin-right: 0.375rem;
}

.works__category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.article__category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.article__category p {
  display: inline-block;
  font-size: 0.75rem;
  color: #333333;
  background-color: #FFF;
  border: 0.0625rem solid #333333;
  padding: 0.25rem 1rem;
  border-radius: 2.5rem;
}

.article__tag {
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 2.5rem;
}

.article__ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.article__ttl h3 {
  padding: 0.75rem 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .article__ttl h3 {
    font-size: 1rem;
  }
}

.single-article {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .single-article {
    padding: 2.5rem 0;
  }
}

.single-article__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-article__inner {
    flex-direction: column;
  }
}

.main-content {
  max-width: 48.75rem;
  width: 100%;
}

.article__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.article__category-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.article__date {
  display: block;
  text-align: right;
  margin-top: 0.5rem;
}

.side-bar {
  max-width: 22.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .side-bar {
    max-width: 37.5rem;
    margin: 0 auto;
  }
}

.side-bar__category h3 {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #EAEADF;
  padding: 0.5rem 1.25rem;
}

.side-bar__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.side-bar__item a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
}

.side-bar__img {
  position: relative;
  max-width: 7.5rem;
  width: 30%;
  height: auto;
  aspect-ratio: 1/1;
}
.side-bar__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-bar__label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 0.875rem;
  color: #FFF;
  background-color: rgba(110, 87, 49, 0.7);
  padding: 0 0.5rem;
}

.side-bar__body {
  flex: 1;
}

.side-bar__ttl h4 {
  font-size: 0.875rem;
  font-weight: 700;
}

.side-bar .article__category {
  margin-top: 0.5rem;
}

.side-bar__label.--new {
  background-color: rgba(51, 51, 51, 0.7);
}

.contact {
  background-color: #E6E6E6;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 2.5rem 0;
  }
}

.contact__inner {
  max-width: 61.25rem;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    max-width: 37.5rem;
  }
}

.contact__con {
  background-color: #FFF;
  border-radius: 1rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact__con {
    padding: 1.25rem;
  }
}

.contact__ttl {
  text-align: center;
}
.contact__ttl h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__ttl h2 {
    font-size: 1.25rem;
  }
}

.contact-status__wrap {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact-status__wrap {
    margin-top: 1.25rem;
  }
}

.contact-status__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 25rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-status__list {
    max-width: 18.75rem;
  }
}
.contact-status__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.125rem;
  background-color: #A6A6A6;
}

.contact-status__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #A6A6A6;
  background-color: #FFF;
  border: 0.125rem solid #A6A6A6;
  border-radius: 50%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .contact-status__item {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.contact-status__item p {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
.contact-status__item:before {
  content: "";
}

.contact-status__item.--current {
  font-weight: 700;
  background-color: #333333;
  border: 0.125rem solid #333333;
}
.contact-status__item.--current span {
  color: #FFF;
}
.contact-status__item.--current p {
  color: #333333;
}

.contact__txt {
  max-width: fit-content;
  text-align: left;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .contact__txt {
    margin: 3rem auto 0;
  }
}
.contact__txt p {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .contact__txt p {
    font-size: 0.875rem;
  }
}

.contact__form,
.contact__confirm {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__form,
  .contact__confirm {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.form__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.form__wrap.--textarea {
  align-items: flex-start;
}

.form__wrap.--textarea .form__label {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .form__wrap.--textarea .form__label {
    margin-top: 0;
  }
}

.form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 14rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form__label {
    font-size: 1rem;
    width: fit-content;
    gap: 0.75rem;
  }
}
.form__label span {
  font-size: 0.75rem;
  color: #FFF;
  background-color: #B40006;
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__label span {
    font-size: 0.625rem;
  }
}

.form__input,
.form__textarea {
  width: 100%;
  flex: 1;
}

.form__input input,
.form__textarea textarea {
  width: calc(100% - 2rem);
  font-size: 1.125rem;
  background-color: #FFF;
  border: 0.0625rem solid #333333;
  border-radius: 0.5rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .form__input input,
  .form__textarea textarea {
    font-size: 1rem;
  }
}

::placeholder {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  color: #D5D5D5;
}
@media screen and (max-width: 767px) {
  ::placeholder {
    font-size: 0.875rem;
  }
}

.form__textarea textarea {
  height: 15rem;
}
@media screen and (max-width: 767px) {
  .form__textarea textarea {
    height: 10rem;
  }
}

.form__privacy {
  text-align: center;
}

.form__privacy input {
  display: none;
}

.form__privacy input + span {
  position: relative;
  display: inline-flex;
  font-size: 1rem;
  padding-left: 2.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form__privacy input + span {
    font-size: 0.875rem;
    padding-left: 1.875rem;
  }
}

.form__privacy span a {
  font-weight: 700;
}

.form__privacy input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #FFF;
  border: 0.125rem solid #333333;
}
@media screen and (max-width: 767px) {
  .form__privacy input + span::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.form__privacy input + span::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.25rem;
  transform: rotate(-45deg);
  display: block;
  width: 0.75rem;
  height: 0.375rem;
  border-bottom: 0.1875rem solid #333333;
  border-left: 0.1875rem solid #333333;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form__privacy input + span a {
  text-decoration: underline;
}

.form__privacy input:checked + span::after {
  opacity: 1;
}

.form__privacy,
.form__privacy p,
.form__privacy p label {
  display: inline-block;
}

.form__btn p {
  width: 17.5rem;
  height: 3.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form__btn p {
    width: 15rem;
    height: 3.875rem;
    margin: 1.25rem auto 0;
  }
}

.form__btn a,
.form__btn input {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  padding: 1rem 0;
  margin: auto;
  height: inherit;
  font-family: "Noto Sans JP", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFF;
  background-color: #333333;
  border: 0.1875rem solid #333333;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .form__btn a,
  .form__btn input {
    font-size: 1rem;
    border: 0.1rem solid #333333;
  }
}

.form__btn a:hover,
.form__btn input:hover {
  color: #333333;
  background-color: #FFF;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #contact-confirm .form__wrap {
    flex-direction: column;
  }
}

#contact-confirm .form__input {
  font-weight: 500;
  text-align: left;
  border-bottom: 0.0625rem solid #D5D5D5;
  padding-bottom: 0.75rem;
}

#contact-confirm .form__wrap.--textarea .form__label {
  margin-top: 0;
}

#contact-confirm .form__btn {
  margin: 0;
}

.form__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem;
  }
}

.form__btn.--white a,
.form__btn.--white p input {
  color: #333333;
  background-color: #FFF;
  border: 0.125rem solid #333333;
}

.form__btn.--white a:hover {
  color: #FFF;
  background-color: #333333;
  opacity: 1;
}

#contact-complete .contact__ttl {
  margin: 3.75rem auto 0;
}
#contact-complete .contact__ttl h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #contact-complete .contact__ttl h2 {
    font-size: 1.25rem;
  }
}

#contact-complete .contact__txt {
  font-size: 1.125rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  #contact-complete .contact__txt {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

#contact-complete .form__btn {
  margin-top: 2.5rem;
}

.legal-notice {
  background-color: #E6E6E6;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .legal-notice {
    padding: 2.5rem 0;
  }
}

.legal-notice__inner {
  max-width: 67.5rem;
}

#legal-notice-breadcrumb.breadcrumb {
  background-color: #E6E6E6;
}

.legal-notice__con {
  background-color: #FFF;
  border-radius: 1rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .legal-notice__con {
    border-radius: 0.5rem;
    padding: 1.25rem;
  }
}

.legal-notice__top {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .legal-notice__top {
    max-width: 37.5rem;
  }
}

.table__list {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .table__list {
    flex-direction: column;
  }
}

.table__ttl {
  width: 15rem;
  height: 3.75rem;
  color: #FFF;
  background-color: #676767;
  padding: 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  border: 0.0625rem solid #676767;
}
@media screen and (max-width: 767px) {
  .table__ttl {
    font-size: 1.125rem;
    padding: 0 0.5rem;
    width: calc(100% - 1rem);
  }
}

.table__txt {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.75rem;
  padding: 0 1rem;
  font-size: 1.125rem;
  border: 0.0625rem solid #676767;
}
@media screen and (max-width: 767px) {
  .table__txt {
    font-size: 1rem;
    padding: 0 0.5rem;
    width: calc(100% - 1rem);
  }
}

.legal-notice__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .legal-notice__bottom {
    margin-top: 2.5rem;
  }
}

.legal-notice__ttl {
  font-size: 1.25rem;
  font-weight: 700;
}

.legal-notice__txt {
  font-size: 1.125rem;
}

.legal-notice__note {
  font-size: 1.125rem;
}

.policy {
  background-color: #E6E6E6;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .policy {
    padding: 2.5rem 0;
  }
}

.policy__inner {
  max-width: 67.5rem !important;
}

#policy-breadcrumb.breadcrumb {
  background-color: #E6E6E6;
}

.policy__con {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  background-color: #FFF;
  border-radius: 1rem;
  padding: 2.5rem;
  width: unset !important;
}
@media screen and (max-width: 767px) {
  .policy__con {
    border-radius: 0.5rem;
    padding: 1.25rem;
  }
}
.policy__con p {
  font-size: 1rem;
  margin-bottom: 1.5%;
}
@media screen and (max-width: 767px) {
  .policy__con p {
    font-size: 0.875rem;
  }
}
.policy__con p a {
  color: #1255cc;
  text-decoration: underline;
}
