@charset "UTF-8";
/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
figure,
dl,
dd,
dt,
hr,
table,
tr,
td,
th {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

textarea {
  width: 100%;
}

button:focus {
  outline: none;
}

.forPC {
  display: inline-block;
}

.forSP {
  display: none;
}

@media screen and (max-width: 768px) {
  .forPC {
    display: none;
  }
  .forSP {
    display: inline-block;
  }
}
body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #001C30;
}

body.fixed {
  position: fixed;
  width: 100vw;
  left: 0;
}

.cm__en {
  font-family: "Lato", sans-serif;
}

.cm__color {
  color: #ED4646;
  font-weight: bold;
}

.cm__marker {
  display: inline-block;
  background: linear-gradient(transparent 50%, #faff79 50%);
}

.cm__sm {
  font-size: 0.75rem;
  display: inline;
}

.cm__b {
  font-weight: bold;
}

.cm__num {
  font-family: "din-2014", sans-serif;
}

.inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

a {
  transition: all ease 0.3s;
  cursor: pointer;
}

a:hover {
  opacity: 0.6;
}

.cm__lineBtn {
  width: calc(100vw - 32px);
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #09c655;
  background: rgb(84, 242, 147);
  background: linear-gradient(180deg, rgb(84, 242, 147) 0%, rgb(9, 198, 85) 35%, rgb(37, 157, 86) 100%);
  animation: mochimochi 1s infinite;
}

@keyframes mochimochi {
  0% {
    transform: scale(1, 0.8);
  }
  20% {
    transform: scale(0.8, 1.1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
.cm__lineBtn a {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  position: relative;
  justify-content: space-between;
  letter-spacing: 0.02em;
  align-items: center;
  padding: 1.1875rem 1.1875rem 1.1875rem 1.875rem;
}

.cm__lineBtn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url(../images/icon_arrow_r_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.cm__btn {
  display: block;
  width: 100%;
  background-color: #176B87;
  border-radius: 4px;
  border-bottom: 4px solid #000000;
}
.cm__btn a {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: relative;
  font-weight: bold;
}
.cm__btn a::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrwo_wh_r.svg);
  width: 32px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.cm__caution {
  font-size: 0.625rem;
}

.body__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .body__inner {
    max-width: 375px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
.pc__gallery {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .pc__gallery {
    display: none;
  }
}
.pc__nav {
  width: 220px;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 140px;
}

@media screen and (max-width: 1024px) {
  .pc__nav {
    display: none;
  }
}
.pc__nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.pc__nav-item + .pc__nav-item {
  padding-top: 0.5rem;
}

.pc__nav-item a {
  color: #b5b5b5;
  width: 100%;
  position: relative;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

.pc__nav-item a:hover {
  color: #000;
  opacity: 1;
}

.pc__nav-item a.current {
  border-bottom: 1px solid #000;
  color: #000;
  font-weight: bold;
}

.pc__nav-item a.current::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.pc__nav-en {
  display: block;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #64CCC5;
}

.pc__nav p {
  font-weight: bold;
}

.header {
  padding-top: 0.875rem;
  padding-bottom: 12px;
  position: relative;
  padding-right: 1rem;
  padding-left: 1rem;
  background-color: #001C30;
}

@media screen and (min-width: 769px) {
  .header {
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
  }
}
.header__logo {
  max-width: 145px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}

.header__logo img {
  width: 100%;
}

.header__img {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: -1;
}

.header__toggle {
  display: none;
}

.headerMenu__sp {
  display: none;
  transition: all ease 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .header__logo {
    position: relative;
    z-index: 9999;
  }
  .header__toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all ease 0.3s;
    position: absolute;
    right: 16px;
    z-index: 9999;
  }
  .header__toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 100px;
    position: relative;
    transition: all ease 0.3s;
  }
  .header__toggle.clicked span:first-of-type {
    transform: rotate(45deg);
  }
  .header__toggle.clicked span:nth-of-type(2) {
    display: none;
  }
  .header__toggle.clicked span:last-of-type {
    transform: rotate(-45deg);
    top: -11px;
  }
  .headerMenu__sp.open {
    z-index: 9998;
    transition: all ease 0.3s;
    position: absolute;
    display: block;
    left: 0;
  }
  .headerMenu__sp {
    width: 100vw;
    background-color: #001C30;
    height: 100vh;
    transition: all ease 0.3s;
    padding: 105px 20px;
    left: 100%;
    display: block;
  }
  .headerMenu__sp a {
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #fff;
    color: #000;
    gap: 25px;
    font-weight: bold;
    pointer-events: none;
  }
  .headerMenu__sp.open a {
    pointer-events: initial;
    justify-content: space-between;
  }
  .headerMenu__sp .sp__nav-en {
    font-size: 14px;
    color: #64CCC5;
    letter-spacing: 0.1em;
  }
  .headerMenu__sp .sp__nav-item:last-of-type a {
    border-bottom: 1px solid #fff;
  }
  .sp__nav-item a {
    color: #fff;
  }
}
.container {
  background-color: #F5EFE7;
}

@media screen and (max-width: 768px) {
  .body__inner {
    padding-top: 58px;
  }
}
.mv {
  position: relative;
}

.mv__heading {
  margin-top: -0.25rem;
  max-width: 36.375rem;
  width: 72.7vw;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  top: -10px;
}

@media screen and (min-width: 769px) {
  .mv__heading img {
    max-width: 290px;
  }
}
.fixedBtns {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: fixed;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  z-index: 9998;
}
.fixedBtns a {
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  .fixedBtns {
    max-width: 375px;
  }
}
.fixedBtns .inner {
  width: 100%;
}

.fixedBtns__desc {
  font-weight: bold;
  font-size: 0.75rem;
  color: #ed4646;
  text-align: center;
}

.fixedBtns__wrap {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.fixedBtns .ctaBtn__btn {
  overflow: hidden;
}

.fixedBtns .ctaBtn__btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: kiran 3s ease-in-out infinite;
  z-index: 2;
}

.footer {
  padding-top: 40px;
  padding-bottom: 2.5rem;
  position: relative;
  background-color: #001C30;
  z-index: 9998;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .footer {
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
.footer__logo {
  width: 154px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.footer__list {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer__item a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__item img {
  width: 24px;
}

.footer__ttl {
  margin-top: 1.5rem;
  font-weight: bold;
}

.footer__address {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 24px;
}

.footer__tel {
  font-size: 14px;
  margin-top: 0.375rem;
}

.footer__bnr {
  margin-top: 0.375rem;
}

.footer .cm__caution {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
}

.footer dl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.625rem;
}

.footer dl dt {
  font-size: 0.75rem;
  color: #fff;
}

.footer dl dd {
  font-size: 0.875rem;
}

.footer__caution {
  font-size: 0.75rem;
  color: #656565;
  margin-top: 0.75rem;
}

.footer__caution a {
  color: inherit;
}

.footer .copyright {
  text-align: center;
  font-weight: bold;
  color: #aaaaaa;
  font-size: 0.75rem;
  margin-top: 3.5rem;
}

/* メタリフページ */
.webpage {
  margin-top: 40px;
}

.webpage__logo {
  text-align: center;
}

.webpage__logo img {
  max-width: 227px;
}

.webpage__container {
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}

.webpage__main {
  width: 100%;
  height: 335px;
  background-color: #CDD6DD;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.webpage__main p {
  text-align: center;
  font-weight: bold;
  margin-top: 16px;
}

.webpage__bottom p {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}

.webpage footer p {
  color: #AAAAAA;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-top: 32px;
}

/**
 * Lines
 */
.sec__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #DAFFFB;
  padding: 0.75rem 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 4px solid #64CCC5;
}
.sec__heading-ttl {
  color: #176B87;
  font-size: 1.25rem;
  position: relative;
  display: table;
}
.sec__heading-ttl::after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 4px;
  background-color: #176B87;
  position: absolute;
  bottom: -18px;
  left: -20px;
}
.sec__heading-en {
  color: #64CCC5;
  font-weight: bold;
  font-size: 1.5rem;
}
.sec__subheading {
  font-weight: bold;
  font-size: 1.125rem;
  color: #176B87;
  border-bottom: 2px solid #64CCC5;
  display: table;
  margin-right: auto;
  margin-left: auto;
}
.sec__ttl {
  font-size: 1.25rem;
  color: #176B87;
}

.osusume {
  background-color: #F5F5F5;
  padding-bottom: 24px;
}
.osusume__ttl {
  background-color: #F5EFE7;
  padding: 0.75rem 1.25rem;
  border-bottom: 4px solid #64CCC5;
}
.osusume__list {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding-top: 24px;
}
.osusume__item {
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.osusume__item img {
  width: 80px;
}
.osusume__item p {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5;
}

.merit__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.merit__item img {
  width: 184px;
  height: auto;
  object-fit: cover;
}
.merit__item-detail {
  margin-left: 24px;
  margin-right: 0;
}
.merit__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.merit__item:nth-of-type(even) .merit__item-detail {
  margin-right: 24px;
  margin-left: 0;
}
.merit__item-ttl {
  color: #176B87;
  font-weight: bold;
}
.merit__item-txt {
  font-size: 0.875rem;
  margin-top: 4px;
  line-height: 1.75;
}

.equipment {
  margin-top: 40px;
}
.equipment .equipment01__heading {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.equipment .equipment01__heading .num {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: block;
  text-align: center;
  line-height: 30px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 8px;
}
.equipment .equipment01__heading p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipment .equipment01__heading__item-num {
  position: relative;
  border: 1px solid #fff;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: inline-block;
}
.equipment .equipment01__heading-01 .num {
  background-color: #64CCC5;
  color: #000;
}
.equipment .equipment01__heading-02 .num {
  background-color: #176B87;
  color: #fff;
}
.equipment .equipment01__desc {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.75;
}
.equipment .equipment01__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}
.equipment .equipment01__item-ttl {
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}
.equipment .equipment01__item-txt {
  text-align: center;
  font-size: 0.875rem;
}
.equipment .equipment01__item-img {
  position: relative;
}
.equipment .equipment01__item-img.img02 {
  margin-top: 12px;
}
.equipment .equipment01__item-num {
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.equipment .equipment01__item .num01,
.equipment .equipment01__item .num02 {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
  font-size: 1.25rem;
  border: 1px solid #fff;
}
.equipment .equipment01__item .num01 {
  background-color: #64CCC5;
  color: #000;
}
.equipment .equipment01__item .num02 {
  background-color: #176B87;
  color: #fff;
}
.equipment .equipment02 {
  margin-top: 40px;
}
.equipment .equipment02__desc {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.75;
}
.equipment .equipment02__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.equipment .equipment02__item {
  border-radius: 8px;
  flex: 1;
  max-width: 104px;
  border: 1px solid #64CCC5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.equipment .equipment02__item-ttl {
  font-weight: bold;
  font-size: 0.75rem;
  color: #176B87;
  margin-top: 6px;
}
.equipment .equipment02__item img {
  width: auto;
}
.equipment .equipment02__item-txt {
  font-size: 0.625rem;
  color: #176B87;
}
.equipment .equipment02__item-01 img {
  margin-top: 8px;
}
.equipment .equipment02__item-01 .equipment02__item-ttl {
  margin-top: 8px;
}
.equipment .equipment03 {
  margin-top: 40px;
}
.equipment .equipment03__desc {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.75;
}
.equipment .equipment03__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.equipment .equipment03__item {
  border-radius: 8px;
  flex: 1;
  max-width: 104px;
  border: 1px solid #64CCC5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  justify-content: center;
}
.equipment .equipment03__item-ttl {
  font-weight: bold;
  font-size: 0.75rem;
  color: #176B87;
  margin-top: 6px;
}
.equipment .equipment03__item img {
  width: auto;
}

.youtube {
  margin-top: 40px;
}
.youtube iframe {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.price {
  margin-top: 44px;
}
.price__cont {
  background-image: url(../images/price_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 1.5rem;
  padding-bottom: 0.75rem;
}
.price__cont-heading {
  background-color: rgba(23, 107, 135, 0.9);
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-weight: bold;
  padding: 12px 0;
  line-height: 1;
}
.price__cont-heading .cm__num {
  font-weight: bold;
}
.price__cont-heading .sm {
  font-size: 1rem;
}
.price__cont-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: bold;
  margin-top: 12px;
}
.price__cont-txt img {
  width: auto;
}
.price__cont-cards {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-top: 16px;
  text-align: center;
  font-size: 0.875rem;
}
.price__cont-cards p {
  line-height: 1.75;
  margin-bottom: 8px;
}

.flow {
  margin-top: 40px;
}
.flow__list {
  margin-top: 27px;
}
.flow__item-link {
  color: #176B87;
  text-decoration: underline;
}
.flow__item-txt {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 16px;
}
.flow__item img {
  margin-top: 16px;
}
.flow__item-02 {
  margin-top: 16px;
}
.flow__item-caution {
  background-color: #DAFFFB;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: bold;
  margin-top: 16px;
  font-size: 0.875rem;
  padding: 0.9375rem;
  justify-content: space-around;
}
.flow__item-caution img {
  width: 37px;
  height: 37px;
  margin-top: 0;
}
.flow__btn {
  margin-top: 16px;
}

.access {
  margin-top: 89px;
}
.access__cont-ttl {
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 18px;
  line-height: 175%;
}
.access__cont-address {
  font-size: 0.875rem;
  margin-top: 8px;
  line-height: 175%;
}
.access__cont-map {
  display: block;
  margin: 16px auto 0;
}
.access__cont-map iframe {
  display: block;
  margin: 16px auto 0;
}
.access__cont-txt {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 175%;
  margin-top: 10px;
}
.access__box {
  margin-top: 32px;
  border: 3px solid #E22C29;
  border-radius: 8px;
  padding: 18px;
}
.access__box-ttl {
  font-weight: bold;
  color: #E22C29;
  text-align: center;
  font-size: 1.125rem;
}
.access__box-txt {
  margin-top: 8px;
  line-height: 1.75;
  font-size: 0.875rem;
}
.access__box-map {
  margin-top: 16px;
}
.access__box-map iframe {
  max-width: 100%;
  display: block;
}
.access__box-name {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 8px;
}
.access__box-address {
  font-size: 0.875rem;
  line-height: 1.75;
}

.line {
  background-color: #06C755;
  margin-top: 40px;
  padding-top: 8px;
}
.line__wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.line__detail {
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  font-weight: bold;
}
.line__btn {
  background-color: #fff;
  border-radius: 4px;
  border-bottom: 4px solid #000;
  width: 200px;
}
.line__btn a {
  color: #06C755;
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.75;
  padding: 16px 0;
}
.line__btn a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/icon_arrow_gr_r.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.line__img img {
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .line__img img {
    width: 32vw;
  }
}
.faq {
  margin-top: 40px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.faq__item {
  background-color: #F5F5F5;
  padding: 16px 16px 16px 16px;
  border-radius: 8px;
}
.faq__q, .faq__a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: bold;
}
.faq__q::before, .faq__a::before {
  content: "";
  display: block;
  background-image: url(../images/icon_q.svg);
  min-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 3px;
}
.faq__q {
  cursor: pointer;
  padding-right: 20px;
}
.faq__q::after {
  content: "";
  background-image: url(../images/icon_arrow_bl_d.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 12px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  transition: all ease 0.3s;
}
.faq__q.opened::after {
  transform: translate(0, -50%) rotate(-180deg);
}
.faq__a {
  font-weight: initial;
  margin-top: 8px;
  line-height: 1.75;
}
.faq__a::before {
  background-image: url(../images/icon_a.svg);
  top: 7px;
}

.interview {
  margin-top: 80px;
}
.interview__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.interview__item-header {
  position: relative;
}
.interview__item-header-name {
  position: absolute;
  left: 0;
  bottom: 1px;
  line-height: 1.75;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.interview__item-cont-ttl {
  background-color: #176B87;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  padding: 0.75rem 2.875rem 0.75rem 1.25rem;
  position: relative;
}
.interview__item-cont-ttl::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_wh_d.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all ease 0.3s;
}
.interview__item-cont-ttl.opened::after {
  transform: translateY(-50%) rotate(-180deg);
}
.interview__item-cont-txt {
  background-color: #F5EFE7;
  padding: 1rem 1.5rem;
  border: 1px solid #176B87;
}
.interview__item-cont-txt ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.interview__item-cont-txt .num {
  color: #176B87;
  font-weight: bold;
  font-size: 1.5rem;
}
.interview__item-cont-txt .ttl {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.interview__item-cont-txt .txt {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 8px;
}

.caution {
  margin-top: 80px;
}
.caution__cont-catch {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 24px;
}
.caution__cont-list {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.75;
}
.caution__btn {
  margin-top: 16px;
}

.company {
  background-color: #F5EFE7;
  margin-top: 32px;
  padding-top: 32px;
  padding-bottom: 30px;
}
.company__ttl img {
  width: auto;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.company__desc {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 24px;
}
.company__btn {
  margin-top: 16px;
}
.company__btn span {
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: relative;
  font-weight: bold;
}
.company__btn span::after {
  background-image: url(../images/icon_arrow_wh_dn.svg);
  top: 56%;
  content: "";
  display: block;
  width: 32px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
.company__btn.clicked span::after {
  transform: translateY(-50%) rotate(-180deg);
}

.service {
  margin-top: 3.625rem;
}

.service__heading-ttl {
  margin-right: auto;
  margin-left: auto;
  display: table;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #000;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.625rem 1.875rem;
}
.service__heading-ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 12px solid #000;
}

.service__desc {
  margin-top: 1.875rem;
  font-weight: bold;
  line-height: 2;
  font-size: 0.875rem;
}

.service__list {
  border-top: 2px solid #000;
  padding-bottom: 2.5rem;
  margin-top: 1.25rem;
}

.service__item {
  padding: 1.5rem 0;
  border-bottom: 2px solid #000;
}
.service__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.service__item-type {
  font-weight: bold;
}

.service__item-ttl {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}
.service__item-ttl .sm {
  font-size: 1rem;
}

.service__item-img {
  margin-top: 1.25rem;
}

.service__item-txt {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.8;
}

.service__item-sns {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.service__item-sns.one {
  justify-content: center;
}
.service__item-sns a {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  color: #000;
  font-weight: bold;
  border-radius: 100px;
  font-size: 0.625rem;
  padding: 0.25rem 1rem 0.25rem 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  height: 30px;
}
.service__item-sns a img {
  width: 20px;
}

.service__item-btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #000;
  border-radius: 46px;
  margin-top: 1rem;
  max-width: 210px;
  margin-right: auto;
  margin-left: auto;
}
.service__item-btn a {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 2rem;
}
.service__item-btn a::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_wh_triangle.svg);
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 24px;
}

.service__item-btn.-hb {
  max-width: 270px;
  width: 100%;
  background-color: #ae2f5b;
  width: 270px;
}
.service__item-btn.-hb img {
  width: 84px;
}
.service__item-btn.-hb a {
  justify-content: center;
}

.page {
  padding-bottom: 80px;
}
.page .breadcrumbs {
  background-color: #F5EFE7;
}
.page .breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.page .breadcrumbs a {
  color: #000;
  text-decoration: underline;
}
.page .breadcrumbs > * {
  font-size: 14px;
}
.page .inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.page .inner h1 {
  text-align: center;
  line-height: 1.5;
  margin-top: 24px;
  font-size: 24px;
}
.page .inner .policy__wrap {
  margin-top: 24px;
  line-height: 1.8;
  padding-bottom: 58px;
}
.page .inner .policy__wrap b {
  margin-top: 24px;
  margin-bottom: 24px;
  display: block;
}
.page .inner .policy__wrap > * {
  font-size: 14px;
}
.page .inner .toReturn {
  text-decoration: underline;
  display: block;
  text-align: center;
  color: #000;
}

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