@charset 'UTF-8';

/* =============== CSS変数 =============== */

:root {
  /* Color */
  --text: #333;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;

  --bg-light: #faf8f0;
  --bg-light2: #dce1d4;
  --bg-dark: #3f3e3c;

  --warning: #f00;
  --orange: #f3b149;
  --orange-dark: #fa7d3f;

}



/* =============== 共通設定 =============== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.8;
}

img {
  width: 100%;
  height: auto;
}

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

a:hover {
  transition: 0.3s;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }

  body {
    font-size: 1.6rem;
  }
}


.wrap {
  padding: 0 20px;
}

.wrap-full {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .wrap-full {
    margin: 0 auto;
    padding: 0 30px;
  }
}


.pc-only {
  display: none;
}

.tab-only {
  display: none;
}

@media (min-width: 450px) {
  .tab-only {
    display: block;
  }
}

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

  .pc-only {
    display: block;
  }
}


.text-warning {
  color: var(--warning);
}

.ul-list {
  list-style-type: disc;
  margin-left: 2em;
}


.section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
}

.section-header p {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    margin-bottom: 30px;
    font-size: 2.6rem;
  }

  .section-header p {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 70px;
  }

  .section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 2rem;
  }
}


.btn-center-wrap {
  text-align: center;
}

.btn-outline {
  border: 1px solid var(--text);
  line-height: 1;
  padding: 1em 2em;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
}

.btn-outline:hover {
  background-color: var(--text);
  color: var(--white);
}

.btn-solid {
  border: 1px solid var(--text);
  background-color: var(--text);
  color: var(--white);
  line-height: 1;
  padding: 1em 2em;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
}

.btn-solid:hover {
  background-color: rgba(var(--black-rgb), 0);
  color: var(--text);
}



/* ---------- header ---------- */

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: 80px;
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-toggle {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.btn-line {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 40px;
  height: 1px;
  background-color: var(--white);
  transition: .2s;
}

.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: .5s;
}

.btn-line::before {
  transform: translateY(-12px);
}

.btn-line::after {
  transform: translateY(12px);
}

.btn-line.open {
  background-color: transparent;
  /* 真ん中の線を透明に */
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  /* 上下の線の色を変える */
  transition: .2s;
}

.btn-line.open::before {
  transform: rotate(45deg);
  /* 上の線を傾ける */
}

.btn-line.open::after {
  transform: rotate(-45deg);
  /* 下の線を傾ける */
}

/* 暗い背景のとき（darkクラスがついたら黒線） */
.btn-line.dark,
.btn-line.dark::before,
.btn-line.dark::after {
  background-color: var(--text);
}

.gnav-item-wrap {
  overflow: auto;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--black-rgb), 0.7);
  transition: .3s;
}

.gnav-item-wrap.open {
  right: 0;
}

.gnav-item {
  display: table;
}

.gnav-label, .gnav-item li a {
  display: block;
  padding: 12px;
  line-height: 1;
  color: var(--white);
}

.gnav-item li a:hover {
  color: var(--orange);
}

.gnav-sub {
  margin-left: 1em;
}

.gnav-sub li a::before {
  font-family: "Material Symbols Outlined";
  content: "\f108";  
  font-weight: 400;
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 0.3em;
}

@media (min-width: 768px) {
  .header-inner {
    height: 100px;
    padding: 0 40px;
  }

  .gnav-label, .gnav-item li a {
    display: block;
    padding: 15px;
  }
}


/* ---------- footer ---------- */

footer {
  background: var(--bg-dark);
  padding-top: 30px;
  position: relative;
  color: var(--white);
  font-size: 1.3rem;
}

.footer-wrap {
  margin-bottom: 10px;
}

.footer-cont {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.footer-nav {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-bottom: 5px;
}

.footer-nav li a::before {
  font-family: "Material Symbols Outlined";
  content: "\f108";  
  font-weight: 400;
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 0.3em;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-info {
  margin: 0 auto;
}

.footer-logo {
  height: auto;
  text-align: center;
  font-weight: 600;
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-logo img {
  margin-top: 5px;
  max-width: 120px;
}

.footer-info-ad {
  display: table;
  line-height: 1.4;
}

.copyright {
  text-align: center;
  background-color: var(--text);
  line-height: 1;
  padding: 7px 0 10px;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  footer {
    padding-top: 40px;
    font-size: 1.5rem;
  }
  
  .footer-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-nav {
    display: flex;
    border: none;
    width: calc(100% - 300px);
  }

  .footer-nav ul {
    width: 30%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }
  
  .footer-info {
    text-align: left;
    width: 280px;
  }

  .footer-logo {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .copyright {
    padding: 13px 0 15px;
    font-size: 1.4rem;
  }
}





/* =================================== */
/* =============== TOP =============== */
/* =================================== */


.top {
  overflow: hidden;
}

.top .section-header p {
  font-size: 1.5rem;
  font-weight: normal;
}


/* ---------- slide ---------- */

.slide {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
}

.slide-items {
  position: relative;
}

.slide-item {
  position: relative;
}

.slide-item img {
  height: 100vh;
  object-fit: cover;
}

.slide-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black-rgb), 0.8);
  opacity: 1;
  transition: background-color 1.2s ease;
}

.slide-logo-img {
  width: 120px;
  height: auto;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央配置 */
  opacity: 0;
  transition: opacity 2s ease;
}

.slide-logo-text {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.65rem;
  letter-spacing: 0.3rem;
  color: var(--white);
  writing-mode: vertical-rl;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 2s ease;
  transition-delay: 2.2s;
}

.slide-logo-btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 2s ease;
  transition-delay: 3.2s;
  z-index: 10000;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.slide-logo-btn a {
  display: block;
  padding: 4px 15px 6px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  border: 1px solid var(--white);
  text-align: center;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

.slide-logo-btn a:hover {
  color: var(--text);
  background-color: var(--bg-light);
}

/* === アニメーション開始クラス === */

/* ① まず中央に表示（フェードイン） */
.slide-logo.start .slide-logo-img {
  opacity: 1;
}

/* ② 1秒後にロゴを上へ移動＋背景を薄く */
.slide-logo.move .slide-logo-img {
  top: 6%;
  transform: translate(-50%, 0);
  transition: top 1.5s ease, transform 1.5s ease;
}

.slide-logo.move {
  background-color: rgba(var(--black-rgb), 0.3);
  transition: background-color 1.2s ease, left 1.5s ease;
}

/* ③ テキスト表示 */
.slide-logo.show-text .slide-logo-text {
  opacity: 1;
}

.slide-logo.show-btn .slide-logo-btn {
  opacity: 1;
}

@media (min-width: 768px) {
  .slide-logo-img {
    width: 160px;
  }

  .slide-logo.move .slide-logo-img {
    top: 50%;
    left: 7%;
    transform: translate(0, -50%);
    transition: left 1.5s ease, transform 1.5s ease;
  }

  .slide-logo-text {
    top: 50%;
    left: auto;
    right: 7%;
    transform: translate(0, -50%);
    font-size: 1.8rem;
  }

  .slide-logo-btn a {
    padding: 6px 20px 8px;
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .slide-logo-img {
    width: 190px;
  }

  .slide-logo-text {
    font-size: 2.2rem;
  }
}

/* ---------- top-about ---------- */

.top-about {
  margin-top: 100vh;
  padding: 50px 0 30px;
  background-color: var(--bg-light);
  position: relative;
}

.top-about .section-header h2 {
  font-size: 1.8rem;
}

.top-about-text {
  padding: 20px;
  line-height: 2;
}

.top-about-text .btn-center-wrap {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .top-about {
    padding: 60px 0 90px;
  }

  .top-about .section-header h2 {
    font-size: 2.6rem;
  }

  .top-about-cont {
    position: relative;
  }

  .top-about-img {
    width: 50%;
  }

  .top-about-text {
    position: absolute;
    top: 20px;
    right: -5%;
    width: 50%;
    padding: 3% 5%;
    margin-right: 10%;
    font-size: 1.6rem;
    background-color: rgba(var(--white-rgb), 0.8);
  }
}

@media (min-width: 1024px) {
  .top-about {
    padding: 90px 0 110px;
  }

  .top-about .section-header h2 {
    font-size: 3.2rem;
  }

  .top-about-text {
    font-size: 1.8rem;
    top: 50px;
  }

  .top-about-text .btn-center-wrap {
    margin-top: 30px;
  }
}


/* ---------- reason ---------- */

.reason {
  padding: 50px 0 60px;
  position: relative;
  background-color: var(--bg-dark);
}

.reason .section-header {
  color: var(--white);
}

.reason .section-header h2 {
  font-size: 1.8rem;
}

.reason-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.reason-item:last-of-type {
  margin-bottom: 0;
}

.reason-item:nth-child(2) .reason-img-wrap {
  margin-left: auto;
}

.reason-img-wrap {
  position: relative;
  width: 82%;
}

.reason-img-wrap h3 {
  position: absolute;
  top: 10px;
  right: -40px;
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
  white-space: nowrap;
  background-color: rgba(var(--white-rgb), 0.8);
  padding: 15px;
  z-index: 100;
}

.reason-item:nth-child(2) .reason-img-wrap h3 {
  right: auto;
  left: -40px;
}

.reason-text {
  z-index: 100;
  width: 82%;
  color: var(--white);
  margin-top: 20px;
  text-align: center;
}

.reason-item:nth-child(2) .reason-text {
  margin-left: auto;
}

.reason-text h3 {
  display: none;
}

.reason-text .btn-center-wrap {
  margin-top: 20px;
}

.reason .btn-outline {
  border: 1px solid var(--white);
}

.reason .btn-outline:hover {
  background-color: var(--bg-light);
  color: var(--text);
}

@media (min-width: 768px) {
  .reason {
    padding: 60px 0 80px;
  }

  .reason .section-header h2 {
    font-size: 2.6rem;
  }

  .reason-img-wrap h3 {
    display: none;
  }

  .reason-item {
    flex-direction: row;
    align-items: center;
  }

  .reason-text {
    margin: -25px auto 0;
    width: 92%;
  }

  .reason-item:nth-child(2) {
    flex-direction: row-reverse;
  }

  .reason-item:nth-child(2) .top-reason-text {
    margin-left: auto;
  }

  .reason-text h3 {
    font-size: 2rem;
    display: table;
    margin: 0 auto 10px;
  }
}

@media (min-width: 1024px) {
  .reason {
    padding: 90px 0 110px;
  }

  .reason .section-header h2 {
    font-size: 3.2rem;
  }

  .reason-item-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .reason-item {
    margin-bottom: 80px;
  }

  .reason-img-wrap {
    width: 55%;
  }

  .reason-img {
    width: 100%;
    aspect-ratio: 16 / 9;     /* 3:1の表示枠を作る（モダンブラウザ向け） */
    overflow: hidden;        /* はみ出した部分は隠す */
    position: relative;
  }

  .reason-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 比率を保って枠にフィットさせる（切り抜き） */
    object-position: center;
  }

  .reason-text {
    width: 45%;
  }

  .reason-text h3 {
    font-size: 2.2rem;
    display: table;
    margin: 0 auto 10px;
  }

  .reason-text .btn-center-wrap {
    margin-top: 30px;
  }
}


/* ---------- top-sns ---------- */

.sns {
  position: relative;
  padding: 50px 0 70px;
  background-color: var(--bg-light);
}

.sns-cont {
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto 35px;
  padding: 20px;
  border: 1px solid var(--text);
}

.insta-logo {
  width: 70px;
}

.insta-logo a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .sns {
    padding: 60px 0 90px;
  }

  .sns-cont {
    font-size: 1.8rem;
    max-width: 600px;
    gap: 50px;
    padding: 25px;
    margin: 0 auto 60px;
  }

  .insta-logo {
    width: 80px;
  }
}

@media (min-width: 1024px) {
  .sns {
    padding: 90px 0 110px;
  }
}

/*--　top-img-loop　--*/
.top-img-loop {
  position: relative;
  display: flex;
  overflow: hidden;
}

.top-img-loop-box {
  display: flex;
  animation: loop-list 40s linear infinite;
  flex: 0 0 auto;
}

.top-img-loop-box li {
  flex-shrink: 0;
  width: calc(100vw / 2);
}

.top-img-loop-box img {
  width: 100%;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .top-img-loop-box li {
    width: calc(100vw / 5);
  }
}


/* ---------- top-contact ---------- */

.top-contact {
  padding: 60px 0 70px;
  position: relative;
  background-color: var(--bg-dark);
}

.top-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.top-contact-wrap > div {
  padding: 20px 15px;
  background-color: rgba(var(--white-rgb), 0.8);
  text-align: center;
}

.top-contact-cont h3 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0;
  border-bottom: 1px solid var(--text);
}

.top-contact-number {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
  line-height: 1;
}

.top-contact-tel ul {
  line-height: 1.5;
  display: table;
  margin: 0 auto;
  text-align: left;
}

.top-contact-mail h3 {
  margin-bottom: 25px;
}

.top-contact-mail p {
  margin-top: 15px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .top-contact {
    padding: 90px 0;
  }

  .top-contact-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }

  .top-contact-wrap > div {
    width: 50%;
    padding: 30px 50px;
  }

  .top-contact-cont h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .top-contact-number {
    font-size: 4rem;
    margin-bottom: 15px;
  }

  .top-contact-tel ul {
    font-size: 1.6rem;
  }

  .top-contact-mail h3 {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .top-contact {
    padding: 100px 0 110px;
  }
}


/* ---------- img-btn ---------- */

.img-btn {
  padding: 50px 0 70px;
  background-color: var(--bg-light);
  position: relative;
}

.img-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.img-btn-item {
  position: relative;
  z-index: 1;
}

.img-btn-item::after {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid var(--white);
  z-index: 100;
}

.img-btn-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black-rgb), 0.3);
  z-index: 10;
  transition: 0.3s;
}

.img-btn-img {
  overflow: hidden;
}

.img-btn-img img {
  transition: 0.3s;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.img-btn a:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.img-btn-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  color: var(--blue);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5em 1em;
  z-index: 100;
}

.img-btn a:hover::before {
  background-color: rgba(var(--black-rgb), 0.1);
  transition: 0.3s;
}

@media (min-width: 768px) {
  .img-btn {
    padding: 90px 0 100px;
  }

  .img-btn-wrap {
    flex-direction: row;
    gap: 30px;
  }
}



/* ================================= */
/* ============== aos ============== */
/* ================================= */

.reason-item [data-aos="top-fade"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.reason-item [data-aos="top-fade"].aos-animate {
  opacity: 1;
}

.reason-item:nth-of-type(odd) [data-aos="top-fade"] {
  transform: translateX(-150px);
}

.reason-item:nth-of-type(even) [data-aos="top-fade"] {
  transform: translateX(150px);
}

.reason-item [data-aos="top-fade"].aos-animate {
  transform: translateX(0);
}

/* @media (min-width: 768px) {
  .reason-item:nth-of-type(odd) [data-aos="top-fade"] {
      transform: translateY(150px);
  }

  .reason-item:nth-of-type(even) [data-aos="top-fade"] {
    transform: translateY(150px);
}

  .reason-item [data-aos="top-fade"].aos-animate {
      transform: translateY(0);
  }
} */


.sns [data-aos="top-fade"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.sns [data-aos="top-fade"].aos-animate {
  opacity: 1;
}

.sns [data-aos="top-fade"] {
  transform: translateX(150px);
}

.sns [data-aos="top-fade"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .sns [data-aos="top-fade"] {
      transform: translateY(150px);
  }

  .sns [data-aos="top-fade"] {
    transform: translateY(150px);
}

  .sns [data-aos="top-fade"].aos-animate {
      transform: translateY(0);
  }
}



.img-btn-wrap [data-aos="top-fade"] {
  opacity: 0;
  transition-property: transform, opacity;
}

.img-btn-wrap [data-aos="top-fade"].aos-animate {
  opacity: 1;
}

.img-btn-wrap [data-aos="top-fade"]:nth-of-type(odd) {
  transform: translateX(-150px);
}

.img-btn-wrap [data-aos="top-fade"]:nth-of-type(even) {
  transform: translateX(150px);
}

.img-btn-wrap [data-aos="top-fade"].aos-animate {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .img-btn-wrap:nth-of-type(odd) [data-aos="top-fade"] {
      transform: translateY(150px);
  }

  .img-btn-wrap:nth-of-type(even) [data-aos="top-fade"] {
    transform: translateY(150px);
}

  .img-btn-wrap [data-aos="top-fade"].aos-animate {
      transform: translateY(0);
  }
}





/* =================================== */
/* ============ sub　共通 ============= */
/* =================================== */

.hero {
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black-rgb), 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

.hero h1 {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  color: var(--white);
  line-height: 1;
  position: relative;
  z-index: 10;
  padding: 0.5em;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

@media (min-width: 768px) {
  .hero {
    height: 280px;
  }

  .hero h1 {
    font-weight: 600;
    font-size: 3rem;
    padding: 15px 30px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
}


.form-list {
  display: flex;
  flex-wrap: wrap;
}

.form-note {
  margin-bottom: 5px;
  text-align: right;
}

.form-list dt {
  width: 30%;
  padding: 10px 0;
  border-bottom: 1px dotted var(--text);
}

.form-list dd {
  width: 70%;
  padding: 10px 0;
  border-bottom: 1px dotted var(--text);
}

.form-list input, .form-list textarea {
  width: 100%; 
  padding: 2px 5px;
  font-size: 1.4rem;
  border: 1px solid #ddd;
  background-color: rgba(var(--white-rgb), 0.5);
}

.form-list select {
  width: auto;
  padding: 3px;
  font-size: 1.4rem;
  border: 1px solid #ddd;
}

.form-list .form-postal input {
  width: 6em;
}

.form-btn-outer .form-btn {
  background-color: var(--text);
  color: var(--white);
  padding: 10px 15px;
  font-size: 1.6rem;
  border: 1px solid var(--text);
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 30px auto 0;
}

.form-btn-outer .form-btn:hover {
  transition: 0.3s;
  cursor: pointer;
  background-color: rgba(var(--white-rgb), 0);
  color: var(--text);
  border: 1px solid var(--text);
}

.form-btn-outer .form-btn[disabled] {
  background-color: #ccc;
  cursor: auto;
  border: none;
}

.form-btn-outer .form-btn[disabled]:hover {
  background-color: #ccc;
  cursor: auto;
  color: var(--white);
}

.form-btn-outer {
  text-align: center;
  margin-top: 30px;
}

.form-btn-outer p {
  margin-bottom: 10px;
}

.form-btn-outer input[type='checkbox'] {
  -webkit-appearance: auto;
  appearance: auto;
}

.form-btn-outer span {
  margin-left: 5px;
}

#AgreeBtn {
  width: auto;
}

.form-thanks {
  text-align: center;
  line-height: 2;
}

@media (min-width: 768px) {
  .form-note {
    width: 90%;
    margin: 0 auto 5px;
  }

  .form-list dt {
    width: 25%;
    padding: 20px 10px;
  }

  .form-list dd {
    width: 75%;
    padding: 20px 10px;
  }

.form-list input, .form-list textarea {
  padding: 2px 5px;
  font-size: 1.6rem;
}
}

@media (min-width: 1024px) {
  .form-list {
    width: 90%;
    margin: 0 auto;
  }

  .form-list dt {
    padding: 25px;
  }

  .form-list dd {
    padding: 25px;
  }
}




/* =================================== */
/* ========= 施設について　共通 ========= */
/* =================================== */

.facility h3 {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .facility h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-left: 0.5em;
  }
}

@media (min-width: 1024px) {
  .facility h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
}


.facility-item:not(:last-child) {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .facility-item:not(:last-child) {
    margin-bottom: 70px;
  }
}


.facility-slide {
  max-width: 500px;
  margin: 0 auto;
}

.facility-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slick-prev:before, .slick-next:before {
  color: black;
  font-size: 2.5rem;
}

.slick-next {
  right: 5px;
}

.slick-prev {
  left: 5px;
  z-index: 100;
}

@media (min-width: 768px) {
  .facility-slide {
    max-width: calc(100% - 20px);
  }
  
  .facility-slide li {
    margin: 0 20px;
  }

  .slick-next {
    right: -10px;
  }

  .slick-prev {
    left: -10px;
  }
}

@media (min-width: 1024px) {
  .facility-slide {
    max-width: calc(100% - 40px);
  }
}



/* ============ 施設のご案内 =========== */

.guidance .hero {
  background-image: url(../images/facility/guidance/hero-guidance.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.guidance-cont {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

.guidance-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.guidance-text-wrap img {
  max-width: 500px;
  display: block;
  margin: 0 auto;
}


@media (min-width: 768px) {
  .guidance-cont {
    padding: 70px 0 90px;
  }

  .guidance-text-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 85%;
    margin: 0 auto 30px;
  }

  .guidance-text-wrap div {
    width: 50%;
  }

  .guidance-img {
    width: auto;
    margin-left: 0;
    gap: 2%;
  }

  .guidance-img li {
    width: 32%;
  }
}

@media (min-width: 1024px) {
  .guidance-cont {
    padding: 90px 0 100px;
  }

  .guidance-text-wrap {
    margin: 0 auto 50px;
  }
}



/* ============ 施設について =========== */

.feature .hero {
  background-image: url(../images/facility/guidance/hero-guidance.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.feature-cont {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

.feature-text-wrap {
  margin-bottom: 20px;
}

.feature-img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  flex-wrap: wrap;
}

.feature-img li {
  width: 50%;
}

@media (min-width: 768px) {
  .feature-cont {
    padding: 70px 0 90px;
  }

  .feature-text-wrap {
    width: 85%;
    margin: 0 auto 30px;
  }

  .feature-img {
    width: auto;
    margin-left: 0;
    gap: 25px;
  }

  .feature-img li {
    width: calc((100% - 50px) / 3);;
  }
}

@media (min-width: 1024px) {
  .feature-cont {
    padding: 90px 0 100px;
  }

  .feature-text-wrap {
    margin: 0 auto 50px;
  }
}



/* ============ 立地環境 =========== */

.location .hero {
  background-image: url(../images/facility/guidance/hero-guidance.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.location-cont {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

.location-text-wrap {
  margin-bottom: 20px;
}

.location-text-wrap h4 {
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 5px;
}

.location-text-wrap dl {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  line-height: 1.4;
  border-top: 1px dotted #ccc;
  padding-top: 5px;
}

.location-text-wrap dt {
  font-weight: normal;
  width: 3.5em;
  margin-bottom: 3px;
  border-bottom: 1px dotted #ccc;
  padding: 5px;
}

.location-text-wrap dd {
  width: calc(100% - 3.5em);
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
  padding: 5px;
}

.location-map {
  height: 280px;
}

@media (min-width: 768px) {
  .location-cont {
    padding: 70px 0 90px;
  }

  .location-text-wrap {
    width: 85%;
    margin: 0 auto 30px;
  }

  .location-text-wrap h4 {
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .location-text-wrap dt {
    margin-bottom: 10px;
    padding: 10px;
  }

  .location-text-wrap dd {
    margin-bottom: 10px;
    padding: 10px;
  }

  .location-map {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .location-cont {
    padding: 90px 0 100px;
  }

  .location-text-wrap {
    margin: 0 auto 50px;
  }

  .location-text-wrap h4 {
    font-size: 1.8rem;
  }

  .location-map {
    height: 420px;
  }
}



/* ============ 施設について =========== */

.recreation .hero {
  background-image: url(../images/facility/guidance/hero-guidance.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.recreation-cont {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

.recreation-lead {
  line-height: 2;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.recreation-img-box:first-of-type {
  margin-bottom: 30px;
}

.recreation-img-text {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.recreation-img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.recreation-img-list li {
  width: calc(50% - 2px);
}

@media (min-width: 768px) {
  .recreation-cont {
    padding: 70px 0 90px;
  }

  .recreation-lead {
    width: 85%;
    margin: 0 auto 60px;
    padding: 15px;
  }

  .recreation-img-box {
    display: flex;
  }

  .recreation-img-box:first-child {
    flex-flow: row-reverse;
    margin-bottom: -70px;
  }

  .recreation-img-list {
    width: 55%;
  }

  .recreation-img-text {
    width: 45%;
    font-size: 1.8rem;
    margin-top: 10%;
  }

  .recreation-img-box:last-child .recreation-img-text {
    margin-top: 18%;
  }
}

@media (min-width: 1024px) {
  .recreation-cont {
    padding: 90px 0 100px;
  }

  .recreation-lead {
    margin: 0 auto 80px;
    padding: 20px;
  }

  .recreation-img-box:first-child {
    margin-bottom: -140px;
  }

  .recreation-img-text {
    width: 45%;
    font-size: 2.5rem;
  }
}




/* =================================== */
/* ============ 施設利用料金 =========== */
/* =================================== */

.cost .hero {
  background-image: url(../images/cost/hero-cost.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.cost-items {
  padding: 50px 0;
  background-color: var(--bg-light);
}

.cost-items-b {
  background-color: var(--bg-light2);
}

@media (min-width: 768px) {
  .cost-items {
    padding: 70px 0;
  }
}

@media (min-width: 1024px) {
  .cost-items {
    padding: 90px 0;
  }
}


.cost-item:not(:last-child) {
  margin-bottom: 50px;
}

.cost-item h3 {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  margin-bottom: 20px;
}

.cost-fee {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.cost-fee span {
  font-weight: 600;
  font-size: 3rem;
  margin-left: 1rem;
}

.cost-lists {
  list-style-type: disc;
  margin-left: 2em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cost-lists li {
  margin-bottom: 5px;
}

.cost-case-wrap {
  margin-bottom: 20px;
}

.cost-case {
  margin-bottom: 15px;
  padding: 0 15px 15px;
  border-bottom: 1px dotted var(--text);
}

.cost-case:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cost-sample-wrap {
  background-color: rgba(var(--white-rgb), 0.6);
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px dotted #ccc;
}

.cost-sample {
  margin-bottom: 15px;
  padding: 0 0 15px;
  border-bottom: 1px dotted var(--text);
}

.cost-sample:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media (min-width: 768px) {
  .cost-item:not(:last-child) {
    margin-bottom: 70px;
  }

  .cost-item h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-left: 0.5em;
  }

  .cost-fee {
    padding: 15px;
    margin: 0 auto 30px;
    font-size: 1.8rem;
  }

  .cost-fee span {
   font-size: 3rem;
    margin-left: 2rem;
  }

  .cost-lists {
    margin-left: 3em;
    margin-bottom: 40px;
  }

  .cost-case-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .cost-case {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px dotted var(--text);
    margin-bottom: 20px;
    padding: 0 20px 20px;
  }

  .cost-case dt {
    width: 35%;
  }

  .cost-case dd {
    width: 65%;
  }

  .cost-sample-wrap {
    padding: 30px;
  }

  .cost-sample dt, .cost-sample dd {
    padding: 0 10px;
  }
}

@media (min-width: 1024px) {
  .cost-item h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .cost-item-inner {
    width: 90%;
    margin: 0 auto;
  }

  .cost-fee {
    margin: 0 auto 40px;
    font-size: 2rem;
  }

  .cost-fee span {
   font-size: 4rem;
    margin-left: 3rem;
  }

  .cost-lists {
    margin-left: 3em;
    font-size: 1.8rem;
  }

  .cost-case-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .cost-sample dt, .cost-sample dd {
    padding: 0 20px;
  }
}


.cost-fee-02 {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.9rem;
  font-weight: 600;
}

.cost-fee-02 span {
  display: block;
  font-weight: normal;
  text-align: right;
  font-size: 1.4rem;
}

.cost-fee-table {
  overflow: auto;
  border-left: 1px solid #bbb;
}

.cost-fee-table table {
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1.5;
  width: 560px;
  border-top: 1px solid #bbb;
}

.cost-fee-table table th {
  background-color: rgba(var(--black-rgb), 0.1);
}

.cost-fee-table table th, .cost-fee-table table td {
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  padding: 3px 5px;
}

.cost-fee-table table td {
  background-color: rgba(var(--white-rgb), 0.6);
}

.cost-fee-table-middle {
  width: 110px;
  vertical-align: middle;
}

.cost-fee-table table th:nth-child(2n) {
  width: 150px;
}

.cost-fee-table-note {
  font-size: 1.2rem;
}

.cost-fee-notice {
  margin-top: 30px;
}

.cost-fee-notice p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.cost-fee-notice ul {
  list-style-type: disc;
  margin-left: 3rem;
}

@media (min-width: 768px) {
  .cost-fee-02 {
    font-size: 2.5rem;
    padding: 30px;
    margin: 0 auto 40px;
  }
  
  .cost-fee-02 span {
    display: inline;
    font-size: 1.6rem;
  }

  .cost-fee-table table {
    font-size: 1.6rem;
    width: 100%;
  }

  .cost-fee-table table th, .cost-fee-table table td {
    padding: 10px;
  }

  .cost-fee-table-middle {
    width: 20%;
    text-align: center;
  }

  .cost-fee-table table th:nth-child(2n) {
    width: 26.6%;
  }

  .cost-fee-notice {
    margin-top: 30px;
  }

  .cost-fee-notice p {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .cost-fee-notice ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 60px;
  }
}





/* =================================== */
/* ============= 施設概要 ============= */
/* =================================== */

.about .hero {
  background-image: url(../images/about/hero-about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about-cont {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

@media (min-width: 768px) {
  .about-cont {
    padding: 70px 0 90px;
  }
}

@media (min-width: 1024px) {
  .about-cont {
    padding: 90px 0 100px;
  }
}


.about-greeting {
  margin-bottom: 50px;
}

.about-greeting-item {
  margin-bottom: 30px;
}

.about-greeting-items h3 {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-greeting {
    margin-bottom: 70px;
  }

  .about-greeting-items h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-left: 0.5em;
  }

}

@media (min-width: 1024px) {
  .about-greeting {
    margin-bottom: 90px;
  }

  .about-greeting-items h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
}


.about-lists {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
  border-top: 1px solid var(--text);
}

.about-lists dt {
  width: 30%;
  border-bottom: 1px solid var(--text);
  padding: 15px 0;
}

.about-lists dd {
  width: 70%;
  border-bottom: 1px solid var(--text);
  padding: 15px 0;
}

@media (min-width: 768px) {
  .about-lists dt {
    padding: 20px 10px;
  }

  .about-lists dd {
    padding: 20px 10px;
  }
}

@media (min-width: 1024px) {
  .about-lists dt {
    padding: 30px;
  }

  .about-lists dd {
    padding: 30px;
  }
}




/* =================================== */
/* ============= 採用情報 ============= */
/* =================================== */

.recruit .hero {
  background-image: url(../images/recruit/hero-recruit.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.recruit-info {
  padding: 50px 0;
  background-color: var(--bg-light);
}

.recruit-info-item {
  margin-bottom: 40px;
}

.recruit-info-item h3 {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  margin-bottom: 20px;
}

.recruit-info-text {
  margin-bottom: 10px;
}

.recruit-info-note {
  font-size: 1.6rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .recruit-info {
    padding: 70px 0;
  }

  .recruit-info-item h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-left: 0.5em;
  }

  .recruit-info-text-wrap {
    display: flex;
    gap: 30px;
  }

  .recruit-info-text {
    width: 65%;
    margin-bottom: 0;
  }

  .recruit-info-img {
    width: 35%;
  }

  .recruit-info-note {
    font-size: 2rem;
    display: table;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
  }
}

@media (min-width: 1024px) {
  .recruit-info {
    padding: 90px 0;
  }

  .recruit-info-item h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .recruit-info-text-wrap {
    gap: 50px;
  }

  .recruit-info-text {
    line-height: 2;
  }

  .recruit-info-note {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 70px;
  }
}


.recruit-intvw {
  padding: 50px 0;
  background-color: var(--bg-light2);
}

.recruit-intvw-item {
  margin-bottom: 40px;
}

.recruit-intvw-q {
  border-bottom: 1px solid var(--text);
  margin-bottom: 10px;
}

.recruit-intvw-img {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .recruit-intvw {
    padding: 70px 0;
  }

  /* .recruit-intvw-item {
    display: flex;
    gap: 30px;
  } */

  /* .recruit-intvw-item:nth-of-type(2) {
    display: block;
  } */

  /* .recruit-intvw-item:nth-of-type(2) .recruit-intvw-text {
    width: 100%;
  } */

  /* .recruit-intvw-text {
    width: 65%;
  } */

  /* .recruit-intvw-img {
    width: 35%;
  } */
}

@media (min-width: 1024px) {
  .recruit-intvw {
    padding: 90px 0;
  }

  .recruit-intvw-item {
    gap: 50px;
    margin-bottom: 70px;
  }

  .recruit-intvw-text {
    line-height: 2;
  }

  .recruit-intvw-note {
    line-height: 2;
  }
}


.recruit-disc {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

.recruit-disc-cont {
  display: flex;
  flex-wrap: wrap;
}

.recruit-disc-cont dt {
  width: 4em;
  margin-bottom: 15px;
  margin-right: 1em;
  padding-top: 10px;
  text-align: center;
}

.recruit-disc-cont dd {
  background-color: var(--white);
  padding: 10px 15px;
  width: calc(100% - 5em);
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  text-align: justify;
}

.recruit-disc-cont dd:last-of-type {
  margin-bottom: 0;
}

.recruit-disc-icon img {
  width: 35px;
  height: auto;
}

@media (min-width: 768px) {
  .recruit-disc {
    padding: 70px 0;
  }

  .recruit-disc-cont dt {
    width: 8em;
    margin-bottom: 15px;
    padding-top: 10px;
  }

  .recruit-disc-cont dt span:first-child {
    margin-right: 10px;
  }

  .recruit-disc-cont dd {
    padding: 15px 20px;
    width: calc(100% - 10em);
    margin-bottom: 15px;
  }
}

@media (min-width: 1024px) {
  .recruit-disc {
    padding: 90px 0;
  }

  .recruit-disc-cont {
    width: 85%;
    margin: 0 auto;
  }

  .recruit-disc-cont dt {
    margin-bottom: 30px;
  }

  .recruit-disc-cont dd {
    padding: 20px 30px;
    width: calc(100% - 10em);
    margin-bottom: 30px;
  }

  .recruit-disc-icon img {
    width: 50px;
    height: auto;
    vertical-align: middle;
  }
}



.recruit-cont-wrap {
  padding: 0 0 70px;
  background-color: var(--bg-light);
}

.open-recruit-cont {
  display: block;
  margin: 0 auto;
  width: 250px;
}

.recruit-cont {
  background-color: var(--bg-light2);
  padding: 50px 0 70px;
  margin-top: 60px;
  margin-bottom: -70px;
}

.recruit-item:first-of-type {
  margin-bottom: 60px;
}

.recruit-item h3 {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  margin-bottom: 20px;
}

.recruit-item .btn-center-wrap {
  margin-top: 20px;
}

.recruit-item .btn-solid {
  letter-spacing: 0.3rem;
}

@media (min-width: 768px) {
  .recruit-cont-wrap {
    padding: 0 0 90px;
  }

  .recruit-cont {
    padding: 70px 0 80px;
    margin-top: 80px;
    margin-bottom: -90px;
  }

  .recruit-item:first-of-type {
    margin-bottom: 70px;
  }

  .recruit-item h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .recruit-item .btn-center-wrap {
    margin-top: 30px;
  }

  .recruit-item .btn-solid {
    width: 300px;
  }
}

@media (min-width: 1024px) {
  .recruit-cont-wrap {
    padding: 0 0 100px;
  }

  .recruit-cont {
    margin-top: 90px;
    padding: 90px 0 100px;
    margin-bottom: -100px;
  }

  .recruit-item:first-of-type {
    margin-bottom: 90px;
  }

  .recruit-item h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .recruit-item .btn-center-wrap {
    margin-top: 40px;
  }
}


/* ============= 採用情報 採用応募フォーム ============= */

.recruit-form {
  margin-top: 0;
  margin-bottom: 0;
}

.form-list-recruit {
  border-top: 1px dotted var(--text);
}




/* =================================== */
/* =========== お問い合わせ ============ */
/* =================================== */

.contact .hero {
  background-image: url(../images/contact/hero-contact.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 25% center;
}

.contact-cont {
  padding: 50px 0 60px;
  background-color: var(--bg-light);
}

.form-list-contact {
  border-top: 1px dotted var(--text);
}

@media (min-width: 768px) {
  .contact .hero {
    background-position: left center;
  }

  .contact-cont {
    padding: 70px 0 90px;
  }
}

@media (min-width: 1024px) {
  .contact-cont {
    padding: 90px 0 100px;
  }
}





/* =================================== */
/* ======== プライバシーポリシー ======== */
/* =================================== */

.privacy {
  background-color: var(--bg-light);
}

.privacy-cont {
  padding: 50px 0 60px;
}

.privacy h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--text);
}

.privacy-text {
  margin-bottom: 40px;
}

.privacy-list dt {
  margin-bottom: 5px;
}

.privacy-list dd {
  margin-bottom: 30px;
}

.privacy-list dd:last-child {
  margin-bottom: 0;
}

.privacy-ul-01 {
  list-style-type: decimal;
  margin: 10px 0 10px 20px;
}

.privacy-ul-02 {
  list-style-type: decimal;
  margin: 10px 0 10px 30px;
}

.privacy-address {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .privacy h1 {
    font-size: 3rem;
    margin-bottom: 50px;
  }

  .privacy-cont {
    padding: 70px 0 90px;
  }

  .privacy-text {
    margin-bottom: 50px;
  }

  .privacy-list dt {
    margin-bottom: 10px;
  }
  
  .privacy-list dd {
    margin-bottom: 30px;
  }
  
  .privacy-ul-01 {
    margin: 15px 0 15px 20px;
  }
  
  .privacy-ul-02 {
    list-style-type: decimal;
    margin: 15px 0 15px 30px;
  }
  
  .privacy-address {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .privacy-cont {
    padding: 90px 0 100px;
  }
  
  .privacy h1 {
    font-size: 4rem;
    margin-bottom: 70px;
  }

  .privacy-text {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 70px;
  }

  .privacy-list {
    width: 90%;
    margin: 0 auto;
  }
}








