@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555;
  background-color: #fff;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #555;
  text-decoration: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

hr {
  margin: 0 auto;
}

.container {
  max-width: 59rem;
  box-sizing: border-box;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .container {
    max-width: 112rem;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 6rem;
  background: #fff;
  padding-left: 2rem;
  margin: 0;
  box-shadow: 0 0.5rem 1rem rgba(85, 85, 85, 0.05);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (min-width: 769px) {
  header {
    height: 10rem;
    background: transparent;
    box-shadow: none;
    padding-left: 5.3rem;
    transition: background 0.3s ease-in;
  }
}
@media (min-width: 769px) {
  header.pc-bg-white {
    background: #fff;
    border-bottom: 0.1rem solid #eee;
  }
}

@media (min-width: 769px) {
  .top-header.change-color {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0.5rem 1rem rgba(85, 85, 85, 0.05);
    transition: background 0.3s ease-in;
  }
}

.header-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 769px) {
  .header-logo a {
    gap: 1.5rem;
  }
}
.header-logo a img {
  width: 3rem;
}
@media (min-width: 769px) {
  .header-logo a img {
    width: 3.6rem;
  }
}

.header-logo-text {
  font: 600 1.5rem/1 "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  .header-logo-text {
    font-size: 1.6rem;
  }
}
.header-logo-text span {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}
@media (min-width: 769px) {
  .header-logo-text span {
    font-size: 1.2rem;
  }
}

.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #d2c9a2;
  margin-right: 2rem;
}
.nav-btn::before {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
}
@media (min-width: 769px) {
  .nav-btn {
    display: none;
  }
}

header.open .nav-btn::before {
  content: "\f00d";
}

.sp-nav {
  display: none;
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  background: rgba(210, 201, 162, 0.95);
  text-align: center;
  padding: 13.5rem 0 16rem;
  z-index: 999;
}

.sp-nav-list {
  width: 85%;
  max-width: 55rem;
  font: 500 1.5rem/1 "Noto Sans JP", sans-serif;
  margin: 0 auto;
}
.sp-nav-list li {
  border-bottom: 0.1rem solid #555;
}
.sp-nav-list li a {
  display: block;
  padding: 2.4rem 0;
}

.nav-sns-list {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  margin: 3.2rem auto 0;
}
.nav-sns-list li {
  margin-right: 1.9rem;
}
.nav-sns-list li:last-of-type {
  margin-right: 0;
}
.nav-sns-list li a {
  width: 3rem;
  height: 3rem;
  color: #fff;
  background: #555;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-nav {
  display: none;
}
@media (min-width: 769px) {
  .pc-nav {
    display: block;
  }
}

.pc-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5.3rem 0 0;
}
.pc-nav-list li {
  font: 500 2rem/1 "Noto Sans JP", sans-serif;
  margin-left: 5.5rem;
}
.pc-nav-list li a {
  padding: 1rem 0;
  position: relative;
}
.pc-nav-list li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background: #555;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease-in;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pc-nav-list li a:hover::after {
  transform: scale(1, 1);
}

footer {
  background: #eeede7;
  padding: 2rem 0;
  text-align: center;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  footer {
    padding: 4rem 0 3rem;
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer-logo img {
  width: 3rem;
  display: block;
}
.footer-logo p {
  font-weight: 600;
  margin: 0;
}

.address {
  font-size: 1rem;
  margin: 0.3rem auto 2.9rem;
}
@media (min-width: 769px) {
  .address {
    font-size: 1.2rem;
    margin: 0 auto 4.4rem;
  }
}

.footer-sns-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 769px) {
  .footer-sns-list {
    gap: 5rem;
    margin-bottom: 2.3rem;
  }
}
.footer-sns-list li a {
  width: 9rem;
  height: 2.4rem;
  background: #555;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
}
@media (min-width: 769px) {
  .footer-sns-list li a {
    width: 18rem;
    height: 3rem;
    font-size: 1.3rem;
  }
}
@media (min-width: 769px) {
  .footer-sns-list li a:hover {
    opacity: 0.8;
  }
}

small.copyright {
  font-size: 1rem;
  line-height: 1;
}

/* TOPページのcover */
.cover {
  width: 100%;
  height: 100vh;
  background: url(../images/cover_sp.jpg) no-repeat center/cover;
  position: relative;
}
@media (min-width: 769px) {
  .cover {
    background: rgba(210, 201, 162, 0.1);
    display: flex;
    flex-direction: row-reverse;
  }
}

.cover-text {
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem 1rem 1.5rem;
  width: 92%;
  max-width: 40rem;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 49.3%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 769px) {
  .cover-text {
    background: transparent;
    padding: 0;
    width: 50%;
    max-width: none;
    height: auto;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }
}

.bg-beige {
  display: inline-block;
  font: 500 1.2rem/1 "Noto Sans JP", sans-serif;
  color: #fff;
  background: #d2c9a2;
  padding: 0.7rem 2.5rem;
}
@media (min-width: 769px) {
  .bg-beige {
    font-size: 2.1rem;
    padding: 1.4rem 4rem;
  }
}

.page-title {
  font: 500 2.4rem/1.5 "Noto Sans JP", sans-serif;
  margin: 1.2rem auto 2rem;
}
@media (min-width: 769px) {
  .page-title {
    font: 500 3.2rem/1.5 "Noto Sans JP", sans-serif;
    margin: 2.2rem auto 2.5rem;
  }
}
.page-title::after {
  content: "";
  width: 85%;
  height: 0.1rem;
  background: #555;
  display: block;
  padding: 0 1.4rem;
  margin: 1.4rem auto 0;
}
@media (min-width: 769px) {
  .page-title::after {
    width: 42rem;
    margin: 3.2rem 0 0;
    padding: 0;
  }
}

.page-sub-title {
  font: 500 1.5rem/2.4 "Noto Sans JP", sans-serif;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .page-sub-title {
    font-size: 1.8rem;
  }
}
.page-sub-title .dots {
  font: 500 1.5rem/2.4 "Noto Sans JP", sans-serif;
  background-image: radial-gradient(circle at center, #d2c9a2 33%, transparent 33%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.8rem;
}
@media (min-width: 769px) {
  .page-sub-title .dots {
    font-size: 1.8rem;
    padding-top: 1rem;
  }
}

.contact-btn {
  width: 24rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid #555;
  background: rgba(255, 255, 255, 0.35);
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  bottom: 17.6%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.contact-btn i.fa-chevron-right {
  display: block;
  font-size: 1.5rem;
  margin-left: 1.4rem;
}

@media (min-width: 769px) {
  .pc-text-box {
    display: inline-block;
    text-align: left;
    margin-left: 3.5rem;
  }
}

.pc-bg-img {
  display: none;
}
@media (min-width: 769px) {
  .pc-bg-img {
    display: block;
    width: 50%;
    height: 100vh;
  }
}
@media (min-width: 769px) {
  .pc-bg-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* 下層ページのsub-cover  ※sub-cove-titleの位置調整必要 */
.sub-cover {
  width: 100%;
  height: 20rem;
  padding-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .sub-cover {
    height: 42rem;
    padding-top: 10rem;
  }
}

.sub-cover-title {
  font: 600 2.7rem/1 "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  .sub-cover-title {
    font-size: 4rem;
  }
}

/* 下層ページ　sub-coverの画像 */
.sub-cover_service {
  background: url(../images/service-cover_sp.jpg) no-repeat center/cover;
}
@media (min-width: 769px) {
  .sub-cover_service {
    background-image: url(../images/service-cover_pc.jpg);
  }
}

.sub-cover_customer-voice {
  background: url(../images/customer-cover_sp.jpg) no-repeat center/cover;
}
@media (min-width: 769px) {
  .sub-cover_customer-voice {
    background-image: url(../images/customer-cover_pc.jpg);
  }
}

.sub-cover_profile {
  background: url(../images/profile-cover_sp.jpg) no-repeat center/cover;
}
@media (min-width: 769px) {
  .sub-cover_profile {
    background-image: url(../images/profile-cover_pc.jpg);
  }
}

/* セクションタイトル */
.section-title {
  font: 600 2.1rem/1 "Noto Sans JP", sans-serif;
  margin: 0 auto 0;
  text-align: center;
}
@media (min-width: 769px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.text-block {
  display: block;
}

@media (min-width: 769px) {
  .pc-text-block {
    display: block;
  }
}

/* ボタン */
.detail-btn {
  width: 20rem;
  height: 4.8rem;
  border: 0.1rem solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  font-weight: 500;
  transition: all 0.3s ease-in;
}
@media (min-width: 769px) {
  .detail-btn {
    font-size: 1.8rem;
    width: 30rem;
    height: 6.5rem;
  }
}
@media (min-width: 769px) {
  .detail-btn:hover {
    color: #fff;
    background: #f2c84b;
    box-shadow: 0 0 1rem rgba(170, 170, 170, 0.5);
    border: 0.1rem solid #f2c84b;
  }
}
.detail-btn i.fa-chevron-right {
  display: block;
  margin-left: 1rem;
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .detail-btn i.fa-chevron-right {
    font-size: 1.5rem;
    margin-left: 2rem;
  }
}

/* アニメーション設定 */
.animate__animated {
  opacity: 0;
  animation-duration: 1.4s;
}

/* 電話の発信制限(PC画面時) */
@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.intro {
  padding: 7.6rem 0 9rem;
  text-align: center;
}
@media (min-width: 769px) {
  .intro {
    padding: 18.2rem 0 10rem;
  }
}

.intro-text {
  font: 500 1.8rem/1.75 "Noto Sans JP", sans-serif;
  margin: 0 auto 5.3rem;
}
@media (min-width: 769px) {
  .intro-text {
    font-size: 3rem;
    margin: 0 auto 9rem;
  }
}
.intro-text span {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
}
@media (min-width: 769px) {
  .intro-text span {
    font-size: 3.6rem;
  }
}
.intro-text span::after {
  content: "";
  width: 80%;
  height: 0.4rem;
  background: #f4091f;
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 769px) {
  .intro-text span::after {
    height: 0.8rem;
  }
}

.intro-text-02 {
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .intro-text-02 {
    margin-bottom: 6rem;
  }
}

.intro-list {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
  width: 90.5%;
  max-width: 31rem;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .intro-list {
    width: 100%;
    max-width: none;
    flex-direction: row;
    gap: 2.2rem;
  }
}

.intro-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  border-radius: 2rem;
  border: 0.3rem solid rgba(241, 199, 74, 0.7);
  background: #fff;
  padding: 4rem 2rem 3.5rem;
  position: relative;
}
@media (min-width: 769px) {
  .intro-list-item {
    width: calc((100% - 4.4rem) / 3);
    justify-content: flex-end;
    gap: 3.6rem;
    padding-top: 4rem;
    padding-bottom: 4.2rem;
  }
}
.intro-list-item::before, .intro-list-item::after {
  content: "";
  border-style: solid;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.intro-list-item::before {
  border-width: 0 2.2rem 2.8rem 2.2rem;
  border-color: transparent transparent rgba(241, 199, 74, 0.7);
}
.intro-list-item::after {
  content: "";
  border-width: 0 1.8rem 2.3rem 1.8rem;
  border-color: transparent transparent #fff;
}

.intro-list-item-02 {
  padding-top: 4.5rem;
}
@media (min-width: 769px) {
  .intro-list-item-02 {
    animation-delay: 0.5s;
  }
}

@media (min-width: 769px) {
  .intro-list-item-03 {
    animation-delay: 1s;
  }
}

.intro-list-img-01 {
  width: 94.5%;
}

.intro-list-img-02 {
  width: 88.6%;
}

.intro-list-img-03 {
  width: 72.5%;
}

.intro-list-text {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3888888889;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 769px) {
  .intro-list-text {
    min-height: 5rem;
    font-size: 2rem;
    line-height: 1.35;
  }
}
.intro-list-text::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 2.3rem;
  color: #f2c84b;
}
.intro-list-text i.fa-circle-check {
  color: #f2c84b;
  margin-right: 1rem;
}

.intro-list-text-01 {
  width: 80%;
}
@media (min-width: 769px) {
  .intro-list-text-01 {
    width: 75%;
  }
}

.intro-list-text-03::before {
  position: absolute;
  top: 0;
  left: -1.5rem;
}

.chevron-down {
  margin: 6rem auto 3.5rem;
}
@media (min-width: 769px) {
  .chevron-down {
    margin-top: 7.5rem;
    margin-bottom: 8rem;
  }
}

.intro-solution {
  max-width: 58rem;
  margin: 0 auto;
}
@media (min-width: 796px) {
  .intro-solution {
    width: 72%;
    max-width: none;
  }
}

.about-storage {
  line-height: 1.5714285714;
  text-align: left;
  margin: 0 auto 1.7rem;
}
@media (min-width: 769px) {
  .about-storage {
    font-size: 1.7rem;
    line-height: 1.75;
    margin: 0 auto 7.4rem;
  }
}
.about-storage:last-of-type {
  margin: 0 auto 4.1rem;
}
@media (min-width: 769px) {
  .about-storage:last-of-type {
    margin: 0 auto 5rem;
  }
}

/* SPのみで表示 */
.key-phrase {
  font-weight: 500;
  margin: 3.5rem auto;
}
.key-phrase span {
  background: linear-gradient(transparent 60%, #f2c84b 60%);
}

/* PCのみでの表示 */
.storage-definition {
  font: 400 1.6rem/1.75 "Noto Sans JP", sans-serif;
  text-align: left;
  background: #eeede7;
  padding: 4.4rem 0 4.4rem 5rem;
  margin: 0 auto 7.2rem;
  position: relative;
}
.storage-definition p {
  margin: 0 0 2.8rem;
}
.storage-definition p:last-of-type {
  margin-bottom: 0;
}
.storage-definition span {
  font-weight: 700;
}
.storage-definition img {
  width: 27rem;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 8rem;
  right: 5rem;
}

/* TOPページのcustomer-voiceスタイル */
.top_customer-voice {
  padding: 6rem 0 9rem;
  background: rgba(210, 201, 162, 0.2);
  text-align: center;
}
@media (min-width: 769px) {
  .top_customer-voice {
    padding: 10rem 0;
  }
}

.top_customer-voice_intro {
  line-height: 1.4285714286;
  margin: 3rem auto 4.7rem;
}
@media (min-width: 769px) {
  .top_customer-voice_intro {
    font-size: 1.8rem;
    margin: 5.3rem auto;
  }
}

@media (min-width: 769px) {
  .top_customer-voice-content {
    width: 65%;
    margin: 0 auto;
  }
}

.customer-detail {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 0.1rem solid #d2c9a2;
  box-sizing: border-box;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 769px) {
  .customer-detail {
    font-size: 1.8rem;
    margin: 5.6rem auto;
    gap: 4rem;
    padding: 5rem;
  }
}
.customer-detail:first-of-type {
  margin-bottom: 2.5rem;
}
@media (min-width: 769px) {
  .customer-detail:first-of-type {
    margin-bottom: 5rem;
  }
}
.customer-detail:last-of-type {
  margin-bottom: 6rem;
}
@media (min-width: 769px) {
  .customer-detail:last-of-type {
    margin-bottom: 7rem;
  }
}

.customer-info img {
  width: 6.6rem;
}
@media (min-width: 769px) {
  .customer-info img {
    width: 7.6rem;
  }
}
.customer-info p {
  font: 400 1.2rem/1.1666666667 "Noto Sans JP", sans-serif;
  margin: 0.5rem auto 0;
}
@media (min-width: 769px) {
  .customer-info p {
    font-size: 1.4rem;
    margin: 1rem auto 0;
  }
}

.top_customer-comment {
  font: 400 1.2rem/1.3333333333 "Noto Sans JP", sans-serif;
  text-align: left;
  background: rgba(238, 237, 231, 0.7);
  border-radius: 0.8rem;
  padding: 1.2rem 0.8rem;
  margin: 0;
}
@media (min-width: 769px) {
  .top_customer-comment {
    font: 400 1.5rem/1.5333333333 "Noto Sans JP", sans-serif;
    padding: 1.1rem 2rem;
  }
}

/* 下層ページのcustomer-voiceスタイル */
.customer-voice {
  background: rgba(210, 201, 162, 0.2);
  padding: 6rem 0 6rem;
}
@media (min-width: 769px) {
  .customer-voice {
    padding: 11.4rem 0 12rem;
  }
}
.customer-voice .container {
  max-width: 64rem;
}
@media (min-width: 769px) {
  .customer-voice .container {
    max-width: 112rem;
  }
}

.customer-voice_intro {
  font: 600 1.5rem/1.6666666667 "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 0 auto 4rem;
}
@media (min-width: 769px) {
  .customer-voice_intro {
    font-size: 2.1rem;
    margin-bottom: 7.5rem;
  }
}

.customer-voice-item {
  border: 0.1rem solid #d2c9a2;
  background: #fff;
  padding: 3rem 1.4rem 5rem 1.2rem;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .customer-voice-item {
    padding: 5rem;
    margin-bottom: 8rem;
  }
}
.customer-voice-item:last-of-type {
  margin-bottom: 0;
}

.selected-service {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: #d2c9a2;
  padding: 0.7rem 2rem;
  margin: 0 0 4rem;
}
@media (min-width: 769px) {
  .selected-service {
    padding: 0.9rem 1.8rem;
    margin: 0 0 5rem;
  }
}

.customer-review {
  max-width: 55rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  margin: 0 auto 4rem;
}
@media (min-width: 769px) {
  .customer-review {
    max-width: none;
    gap: 5rem;
    margin-bottom: 7rem;
  }
}

.customer-comment {
  font: 400 1.3rem/1.5833333333 "Noto Sans JP", sans-serif;
  text-align: left;
  background: rgba(238, 237, 231, 0.7);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  margin: 0;
}
@media (min-width: 769px) {
  .customer-comment {
    font: 400 1.6rem/1.75 "Noto Sans JP", sans-serif;
    padding: 1rem 1.5rem;
  }
}
.customer-comment span {
  color: #ff6961;
  font-weight: 500;
}

.before-after {
  text-align: center;
}
@media (min-width: 769px) {
  .before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
}
.before-after img {
  width: 27rem;
}
@media (min-width: 769px) {
  .before-after img {
    width: 32rem;
    height: 18rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.before-after img.horizontal-img {
  width: 18rem;
}
@media (min-width: 769px) {
  .before-after img.horizontal-img {
    width: 24rem;
    height: 32rem;
  }
}
.before-after img.gray-border {
  border: 0.1rem solid #eee;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .bigger-gap {
    gap: 10rem;
  }
}

.before-img {
  margin-bottom: 2.7rem;
}
@media (min-width: 769px) {
  .before-img {
    margin-bottom: 0;
  }
}

.img-caption {
  font: 500 1.6rem/1 "Lora", italic;
  margin: 0.7rem auto 0;
}
@media (min-width: 769px) {
  .img-caption {
    font-size: 1.8rem;
    margin: 1.5rem auto 0;
  }
}

.seminar-voice {
  background: rgba(210, 201, 162, 0.2);
  padding-bottom: 6rem;
}
@media (min-width: 769px) {
  .seminar-voice {
    padding-bottom: 12rem;
  }
}
.seminar-voice .container {
  max-width: 64rem;
}
@media (min-width: 769px) {
  .seminar-voice .container {
    max-width: 112rem;
  }
}

.seminar-voice_heading {
  text-align: center;
}

.seminar-voice_intro {
  display: inline-block;
  position: relative;
}

.seminar-voice_intro::before,
.seminar-voice_intro::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 100%;
  background: #d2c9a2;
  position: absolute;
  top: 50%;
}

.seminar-voice_intro::before {
  left: -1.7rem;
  transform: translateY(-50%) rotate(-15deg);
}
@media (min-width: 769px) {
  .seminar-voice_intro::before {
    left: -1.5rem;
  }
}

.seminar-voice_intro::after {
  right: -1.7rem;
  transform: translateY(-50%) rotate(15deg);
}
@media (min-width: 769px) {
  .seminar-voice_intro::after {
    right: -1.5rem;
  }
}

.seminar-voice-item {
  border: 0.1rem solid #d2c9a2;
  background: #fff;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .seminar-voice-item {
    margin-bottom: 8rem;
  }
}
.seminar-voice-item:last-of-type {
  margin-bottom: 0;
}

.seminar-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8rem;
  background: #d2c9a2;
  font: 700 1.4rem/1.4285714286 "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 4rem;
}
@media (min-width: 769px) {
  .seminar-title {
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }
}

.seminar-review {
  padding-right: 1.2rem;
  padding-left: 1rem;
}
@media (min-width: 769px) {
  .seminar-review {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.seminar-review .customer-comment {
  height: 100%;
}
@media (min-width: 769px) {
  .seminar-review .customer-comment {
    width: 72rem;
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
}

.customer-review_01 {
  margin-bottom: 3rem;
}

.customer-review_02 {
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  .customer-review_02 {
    margin-bottom: 3rem;
  }
}

.seminar-img {
  text-align: center;
}
.seminar-img img {
  width: 30rem;
}
@media (min-width: 769px) {
  .seminar-img img {
    width: 62rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.line-break_sp {
  display: block;
}
@media (min-width: 769px) {
  .line-break_sp {
    display: inline-block;
  }
}

/* TOPページのprofileスタイル */
.top-profile {
  text-align: center;
  padding: 6rem 0 9rem;
  text-align: center;
}
@media (min-width: 769px) {
  .top-profile {
    padding: 11.5rem 0 8rem;
  }
}

.top-profile-content {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 8.5rem auto 3.7rem;
}
@media (min-width: 769px) {
  .top-profile-content {
    width: 85%;
    gap: 8rem;
    margin: 10rem auto 6rem;
  }
}

.top-profile-img img {
  width: 13.5rem;
  height: 18.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .top-profile-img img {
    width: 30rem;
    height: 40rem;
  }
}

.top-profile-detail {
  text-align: left;
}

.name {
  font: 500 1.8rem/1 "Noto Sans JP", sans-serif;
  margin: 0;
}
@media (min-width: 769px) {
  .name {
    font-size: 2.4rem;
  }
}

.owner-comment {
  font: 400 1.3rem/1.5 "Noto Sans JP", sans-serif;
  margin: 1.6rem 0 0;
}
@media (min-width: 769px) {
  .owner-comment {
    font: 400 1.8rem/1.75 "Noto Sans JP", sans-serif;
    margin: 4.3rem 0 0;
  }
}

/* 下層ページのprofileスタイル */
.profile {
  padding: 5rem 0 5.6rem;
  text-align: center;
}
@media (min-width: 769px) {
  .profile {
    padding: 12rem 0 4rem;
  }
}
.profile .container {
  max-width: 62.6rem;
  padding: 0 3.8rem;
}
@media (min-width: 769px) {
  .profile .container {
    max-width: 71rem;
  }
}

.profile-img source,
.profile-img img {
  width: 24rem;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .profile-img source,
  .profile-img img {
    width: 54rem;
    height: 39rem;
  }
}

.profile-name {
  font: 500 1.8rem/1 "Noto Sans JP", sans-serif;
  margin: 1.8rem auto 4.6rem;
}
@media (min-width: 769px) {
  .profile-name {
    font-size: 2.8rem;
    margin: 4.5rem auto 6.2rem;
  }
}
.profile-name span {
  display: block;
  font: 500 1rem/1 "Noto Sans JP", sans-serif;
  margin-bottom: 0.8rem;
}
@media (min-width: 769px) {
  .profile-name span {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.profile-message {
  line-height: 1.5714285714;
  text-align: left;
}
@media (min-width: 769px) {
  .profile-message {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}
.profile-message p {
  margin: 3rem auto;
}
@media (min-width: 769px) {
  .profile-message p {
    margin: 4.3rem auto;
  }
}
.profile-message p:last-of-type {
  margin-bottom: 0;
}

.separation-line {
  width: 20rem;
  height: 0.1rem;
  background-color: #d2c9a2;
  border: none;
}
@media (min-width: 769px) {
  .separation-line {
    width: 39rem;
  }
}

.news {
  padding: 6rem 0;
  background: rgba(210, 201, 162, 0.2);
  text-align: center;
}
@media (min-width: 769px) {
  .news {
    padding: 12rem 0 11rem;
  }
}

.news-text {
  display: inline-block;
  font-size: 1.5rem;
  margin: 4rem auto 2rem;
  position: relative;
}
@media (min-width: 769px) {
  .news-text {
    font-size: 2rem;
    margin: 6rem auto 4rem;
  }
}
.news-text::before, .news-text::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 2.5rem;
  background: #555;
  position: absolute;
  top: 50%;
}
@media (min-width: 769px) {
  .news-text::before, .news-text::after {
    height: 4rem;
  }
}
.news-text::before {
  left: -1.2rem;
  transform: translateY(-50%) rotate(-25deg);
}
@media (min-width: 769px) {
  .news-text::before {
    left: -2rem;
  }
}
.news-text::after {
  right: -1.2rem;
  transform: translateY(-50%) rotate(25deg);
}
@media (min-width: 769px) {
  .news-text::after {
    right: -2rem;
  }
}

.news-list {
  display: inline-block;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .news-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
  }
}

.news-list-item {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .news-list-item {
    display: inline-block;
    margin: 0;
    transition: all 0.3s ease-in;
  }
}
@media (min-width: 769px) {
  .news-list-item:hover {
    opacity: 0.75;
  }
}
.news-list-item iframe {
  max-width: 100%;
}

.news-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21rem;
  height: 4.8rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  background: #f2c84b;
  border-radius: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 769px) {
  .news-more {
    width: 30rem;
    height: 6.5rem;
    font-size: 1.8rem;
    margin-top: 5rem;
    transition: 0.3s all ease-in;
  }
}
.news-more .fa-solid {
  font-size: 1.4rem;
  margin-top: 0.2rem;
  margin-left: 0.5rem;
}
@media (min-width: 769px) {
  .news-more:hover {
    opacity: 0.8;
  }
}

.contact {
  padding: 12rem 0 8rem;
  margin-top: -6rem;
}
@media (min-width: 769px) {
  .contact {
    padding: 12rem 0;
    margin-top: 0;
  }
}
.contact .section-title {
  text-align: center;
}

.contact-content {
  margin: 4.4rem auto 0;
}
@media (min-width: 769px) {
  .contact-content {
    margin: 7.4rem auto 0;
  }
}
.contact-content .area {
  background: rgba(210, 201, 162, 0.4);
  padding: 1.8rem 2rem 1.7rem;
}
@media (min-width: 769px) {
  .contact-content .area {
    width: 76.4rem;
    height: 14rem;
    box-sizing: border-box;
    padding: 2.9rem 3rem 3rem 3.7rem;
    margin: 0 auto;
  }
}
.contact-content .area span {
  font: 700 1.4rem/1 "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  .contact-content .area span {
    font-size: 1.8rem;
  }
}
.contact-content .area p {
  font: 400 1.1rem/1.6363636364 "Noto Sans JP", sans-serif;
  margin: 0.9rem auto 0;
}
@media (min-width: 769px) {
  .contact-content .area p {
    font: 400 1.4rem/1.5 "Noto Sans JP", sans-serif;
    margin-top: 1.3rem;
  }
}

.contact-list {
  margin: 0 0 3rem 1rem;
}
@media (min-width: 769px) {
  .contact-list {
    display: flex;
    justify-content: center;
    gap: 7rem;
    margin: 0 auto 4.7rem;
  }
}
.contact-list li:first-of-type {
  margin-bottom: 2.5rem;
}
@media (min-width: 769px) {
  .contact-list li:first-of-type {
    margin-bottom: 0;
  }
}
.contact-list span {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .contact-list span {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
}
.contact-list span i.fa-solid {
  margin-right: 0.6rem;
}
@media (min-width: 769px) {
  .contact-list span i.fa-solid {
    font-size: 3rem;
    margin-right: 1.2rem;
  }
}

.contact-info {
  line-height: 1;
  margin: 1rem 0 1rem 2rem;
}
@media (min-width: 769px) {
  .contact-info a:hover {
    color: #2296f3;
  }
}
@media (min-width: 769px) {
  .contact-info {
    font-size: 1.8rem;
    margin: 1.2rem 0 1.4rem 3.5rem;
  }
}

.contact-notice {
  font: 400 1.2rem/1.5 "Noto Sans JP", sans-serif;
  margin: 0 0 0 2rem;
}
@media (min-width: 769px) {
  .contact-notice {
    font: 400 1.4rem/1.5 "Noto Sans JP", sans-serif;
    margin: 0 0 0 3.5rem;
  }
}

.contact-alert {
  font: 700 1.2rem/1.5 "Noto Sans JP", sans-serif;
  color: #ff6961;
  margin: 0.7rem 0 0 2rem;
}
@media (min-width: 769px) {
  .contact-alert {
    font: 700 1.4rem/1.5 "Noto Sans JP", sans-serif;
    margin: 1.1rem 0 0 3.5rem;
    max-width: 35.8rem;
  }
}

.service {
  padding: 5rem 0 6rem;
  text-align: center;
}
@media (min-width: 769px) {
  .service {
    padding: 11.5rem 0 5rem;
  }
}
@media (min-width: 769px) {
  .service .separation-line {
    width: 50rem;
  }
}

.service-intro {
  font: 500 2.2rem/1 "Noto Sans JP", sans-serif;
  margin: 0 auto 6.8rem;
}
@media (min-width: 769px) {
  .service-intro {
    font-size: 2.7rem;
    margin: 0 auto 12rem;
  }
}

.service-type {
  font: 500 1.8rem/1 "Noto Sans JP", sans-serif;
  margin: 0 auto 5.3rem;
}
@media (min-width: 769px) {
  .service-type {
    font-size: 2rem;
    margin: 0 auto 7.8rem;
  }
}

.counseling-title {
  font: 500 1.6rem/1 "Noto Sans JP", sans-serif;
  color: #fff;
  background: #d2c9a2;
  text-align: left;
  padding: 0.6rem 0 0.8rem 2rem;
}
@media (min-width: 769px) {
  .counseling-title {
    font-size: 1.8rem;
    padding: 1.4rem 0 1.3rem 5rem;
  }
}

.counseling-content {
  margin: 0 auto;
  text-align: left;
}
.counseling-content img {
  width: 28rem;
  height: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .counseling-content img {
    width: 55rem;
    height: 12rem;
  }
}

.counseling-summary {
  font: 500 1.4rem/1.75 "Noto Sans JP", sans-serif;
  margin: 2.5rem 0.2rem 2.4rem;
}
@media (min-width: 769px) {
  .counseling-summary {
    font-size: 1.6rem;
    margin: 4.3rem 5rem;
  }
}

.couseling-detail {
  font-size: 1.2rem;
  line-height: 1.75;
  margin: 3.5rem auto 1rem;
}
@media (min-width: 769px) {
  .couseling-detail {
    font-size: 1.6rem;
    margin: 6rem auto 0.5rem;
  }
}
.couseling-detail span {
  display: block;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0.4rem -0.5rem;
}
@media (min-width: 769px) {
  .couseling-detail span {
    margin: 0 0 0.3rem -0.8rem;
  }
}

.detail-list {
  font: 500 1.2rem/1 "Noto Sans JP", sans-serif;
  width: 100%;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .detail-list {
    font-size: 1.5rem;
    margin-bottom: 8rem;
  }
}
.detail-list tr {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem dashed #d2c9a2;
  padding: 1.3rem 0.8rem 0.3rem;
}
@media (min-width: 769px) {
  .detail-list tr {
    padding: 1.4rem 0.8rem 0.8rem;
  }
}
.detail-list tr th {
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 769px) {
  .detail-list tr th {
    gap: 1.5rem;
  }
}
.detail-list tr i.fa-regular,
.detail-list tr i.fa-solid {
  display: block;
  font-size: 2rem;
}
@media (min-width: 769px) {
  .detail-list tr i.fa-regular,
  .detail-list tr i.fa-solid {
    font-size: 3rem;
  }
}
.detail-list tr td {
  display: flex;
  align-items: center;
}

.couseling-others .others-content {
  margin-bottom: 4.5rem;
}
@media (min-width: 769px) {
  .couseling-others .others-content {
    margin-bottom: 5.4rem;
  }
}
.couseling-others .counseling-summary {
  margin: 2.3rem 0 1rem 1.4rem;
}
@media (min-width: 769px) {
  .couseling-others .counseling-summary {
    margin: 4.4rem auto 3rem;
    text-align: center;
  }
}
.couseling-others .detail-list {
  margin-bottom: 1.5rem;
}
@media (min-width: 769px) {
  .couseling-others .detail-list {
    margin-bottom: 3rem;
  }
}
.couseling-others .detail-list.no-note {
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .couseling-others .detail-list.no-note {
    margin-bottom: 3rem;
  }
}

.option-note {
  font: 400 1.2rem/1.4166666667 "Noto Sans JP", sans-serif;
  text-align: right;
  margin: 0 0 2.6rem;
}
@media (min-width: 769px) {
  .option-note {
    font-size: 1.4rem;
    margin: 0 0 3.7rem;
  }
}

.plan-detail {
  font: 400 1.2rem/1.4166666667 "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 4.5rem auto;
}
@media (min-width: 769px) {
  .plan-detail {
    font-size: 1.4rem;
    margin: 5.7rem auto;
  }
}
.plan-detail a.plan-page-link {
  font-weight: 500;
  color: #2296f3;
  transition: all 0.3s ease-in;
}
@media (min-width: 769px) {
  .plan-detail a.plan-page-link:hover {
    border-bottom: 0.1rem solid #2296f3;
  }
}

.seminar-box .content-box {
  margin-bottom: 0;
}

.seminar-content {
  margin: 0 auto;
  text-align: left;
}

.seminar-item {
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .seminar-item {
    margin-bottom: 6rem;
  }
}
@media (min-width: 769px) {
  .seminar-item.last-item {
    margin-bottom: 8rem;
  }
}
.seminar-item .detail-list {
  margin-bottom: 2.8rem;
}
@media (min-width: 769px) {
  .seminar-item .detail-list {
    margin-bottom: 4rem;
  }
}

.seminar-summary {
  font: 400 1.4rem/1.75 "Noto Sans JP", sans-serif;
  margin: 2.8rem 0.2rem 0.8rem;
}
@media (min-width: 769px) {
  .seminar-summary {
    font-size: 1.6rem;
    margin: 4.8rem 5rem 3rem;
  }
}
.seminar-summary p {
  margin: 0;
}

.seminar-type {
  font: 600 1.5rem/1 "Noto Sans JP", sans-serif;
  margin: 0 0 1.5rem;
}
@media (min-width: 769px) {
  .seminar-type {
    font-size: 1.8rem;
    margin: 0 0 2.2rem;
  }
}

.more-plans {
  font: 400 1.6rem/1.5625 "Noto Sans JP", sans-serif;
  margin: 6.3rem auto 10rem;
}
@media (min-width: 769px) {
  .more-plans {
    font-size: 1.8rem;
    margin: 5.3rem auto 10rem;
  }
}
.more-plans a.plan-btn {
  font-size: 1.4rem;
  color: #fff;
  background: #d2c9a2;
  border: none;
  margin-top: 2.8rem;
}
@media (min-width: 769px) {
  .more-plans a.plan-btn {
    font-size: 1.6rem;
    margin-top: 3.5rem;
    transition: all 0.2s ease-in;
  }
}
@media (min-width: 769px) {
  .more-plans a.plan-btn:hover {
    box-shadow: 0 0 1.5rem rgba(204, 204, 204, 0.7);
  }
}

.banner {
  display: inline-block;
}
@media (min-width: 769px) {
  .banner {
    overflow: hidden;
  }
}
.banner a {
  display: block;
  line-height: 0;
}

.banner img {
  width: 30rem;
}
@media (min-width: 769px) {
  .banner img {
    width: 60rem;
    transition: all 0.3s ease-in;
  }
}
@media (min-width: 769px) {
  .banner img:hover {
    transform: scale(1.05);
  }
}

/* ページ内共通スタイル */
.content-box {
  border-bottom: 0.1rem solid #d2c9a2;
  margin-bottom: 8rem;
}
@media (min-width: 769px) {
  .content-box {
    width: 74%;
    margin: 0 auto 10rem;
  }
}

.content-detail {
  width: 71%;
  max-width: 35rem;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .content-detail {
    width: 45%;
    max-width: none;
  }
}/*# sourceMappingURL=style.css.map */