:root {
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-raleway: 'Raleway', sans-serif;
  --color-primary: #4B3B2A;
  --color-secondary: #5D6C81;

  --text-black: #000;
  --text-blue: #50b0b6;
  --text-red: #a10005;

  --highlight-blue: #e3ebf7;
  --highlight-yellow: #f7f6e0;
  --highlight-red: #f8eff0;
  --highlight-white: #fff;

  --transition_a: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}


*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  overflow: auto;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
  overscroll-behavior-y: none;
  overflow: clip;
  background: #4B3B2A;
  color: #fff;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-style: normal;
}


section {
  /* width: 100%; */
}

ul,
li {
  font-size: 100%;
  font-weight: normal;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: 'Cormorant Infant',
    'Zen Old Mincho',
    'Hiragino Mincho ProN',
    'ヒラギノ明朝 ProN',
    'Yu Mincho',
    serif;
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

nav {
  font-family: var(--font-mincho);
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

caption {
  text-align: left;
}

table {
  border-spacing: 0;
  border-color: inherit;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 500;
}

input,
textarea,
td {
  outline-color: #eee;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

mark {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
}



.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.show-desktop {
  display: block;
}

.hide-desktop {
  display: none;
}

.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}


.show-phone {
  display: none;
}

@media (max-width: 768px) {
  .show-desktop {
    display: none;
  }

  .hide-desktop {
    display: block;
  }

  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

}

@media (max-width: 440px) {

  .show-phone {
    display: block;
  }

  .hide-phone {
    display: none;
  }
}

/* ----------------------------------------------------- */
.container {
  width: 100%;
  margin: 0 auto;
}

.mincho {
  font-family: var(--font-mincho);
  font-weight: 400;
}

.gothic {
  font-family: var(--font-gothic);
}

.noto {
  font-family: var(--font-noto);
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.cormorant {
  font-family: 'Cormorant Infant', Georgia, 'Times New Roman', serif;
}

.josefin {
  font-family: 'Josefin Sans', 'Arial', 'Helvetica', sans-serif;
}

.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



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

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}


/* ボタン */

.btn {
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
  padding: 15px 20px;
  width: 280px;
  transition: var(--transition_a);
  position: relative;
}

.btn02 {
  background-color: var(--color-secondary);
  padding: 20px 20px;
}


.btn:hover {
  background-color: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn02:hover {
  background-color: #fff;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}



@media screen and (max-width: 768px) {
  .btn {
    font-size: 18px;
    margin: 0 auto;
    padding: 20px 20px;
    width: 280px;
  }
}

@media screen and (max-width: 440px) {
  .btn {
    font-size: 16px;
    margin: 0 auto;
    padding: 15px 15px;
    width: 260px;
  }
}





/**********************************
 HEADER
***********************************/

header {
  /* position: fixed; */
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  padding: 30px 10px 60px;
  text-align: center;
  z-index: 1000;
}

header .logo-box {}

header .logo-box img {
  height: 155px;
  width: 162px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-right {
  display: flex;
  list-style: none;
  gap: 50px;
}

.nav-right a {
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
  transition: color 0.3s ease;
}

.nav-right a:hover {
  color: #aaa;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 10px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 20px;
}

.menu-toggle span {
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.4s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(3px) rotate(23deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-23deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(75, 59, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(75, 59, 42, 0.95) 0%, rgba(93, 108, 129, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mobile-menu.active .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 40px 20px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu__content {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.mobile-menu__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__nav {
  margin-bottom: 60px;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__item {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu__item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-menu__item:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu__item:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu__item:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu.active .mobile-menu__item:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu.active .mobile-menu__item:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu.active .mobile-menu__item:nth-child(6) {
  transition-delay: 0.6s;
}

.mobile-menu.active .mobile-menu__item:nth-child(7) {
  transition-delay: 0.7s;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-raleway);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
}

.mobile-menu__text {
  text-align: center;
}

.mobile-menu__footer {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.8s;
}

.mobile-menu.active .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
  font-family: var(--font-noto);
}

body.menu-open {
  overflow: hidden;
}

/* モバイルメニューのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .mobile-menu__content {
    padding: 30px 15px;
  }

  .mobile-menu__header {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }

  .mobile-menu__logo img {
    height: 35px;
  }

  .mobile-menu__link {
    padding: 18px 25px;
    font-size: 16px;
  }

  .mobile-menu__nav {
    margin-bottom: 40px;
  }

  .mobile-menu__item {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .mobile-menu__content {
    padding: 25px 15px;
  }

  .mobile-menu__header {
    margin-bottom: 30px;
  }

  .mobile-menu__logo img {
    height: 30px;
  }

  .mobile-menu__link {
    padding: 15px 20px;
    font-size: 15px;
  }
}


@media screen and (max-width: 1200px) {

  .nav-right a {
    font-size: 16px;
  }

}

@media screen and (max-width: 1100px) {

  .nav-right {
    display: flex;
    list-style: none;
    gap: 30px;
  }

}

@media screen and (max-width: 1000px) {

  .nav-right {
    display: flex;
    list-style: none;
    gap: 20px;
  }

  .nav-right a {
    font-size: 15px;
  }
}


@media screen and (max-width: 768px) {

  header {
    height: 100px;
    padding: 0;
  }


  .nav-right {
    display: none;
  }

  .nav {
    justify-content: center;
  }

  header .logo-box {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  header .logo-box img {
    height: 114.81px;
    width: 120px;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    z-index: 1000;
  }
}



@media screen and (max-width: 440px) {

  header .logo-box img {
    height: 95.67px;
    width: 100px;
  }

}


/**********************************
 ローディングアニメーション
***********************************/


#shader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  /* background: linear-gradient(to bottom, #bdc6d5, #ffffff); */
  background: var(--color-secondary);
  opacity: 0;
  transition: opacity 2s ease;
  animation: shaderBackgroundTransition 4.5s ease-in-out forwards;
}

@keyframes shaderBackgroundTransition {
  0% {
    background: var(--color-secondary);
  }

  100% {
    background: #4B3B2A;
  }
}

#shader-bg.show {
  opacity: 1;
}

/* イントロロゴ */
.intro-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-logo.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.intro-logo.fade-out {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.intro-logo img {
  width: 200px;
  height: auto;
  filter: brightness(0) saturate(100%);
}

/* イントロロゴのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .intro-logo img {
    width: 150px;
  }
}

@media screen and (max-width: 480px) {
  .intro-logo img {
    width: 120px;
  }
}

#shader-bg canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

#shader-bg.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  background: #ffffff !important;
  transition: all 4.5s ease;
}

#hero-section {
  opacity: 0;
  transition: opacity 4.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero-section.show {
  opacity: 1;
}

/**********************************
 basic font-size
***********************************/

h2 {
  font-size: 75px;
  text-align: center;
}

h3 {
  font-size: 48px;
  text-align: center;
}

h4 {
  font-size: 20px;
  text-align: center;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-family: var(--font-gothic);
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 15px;
  }
}

@media screen and (max-width: 440px) {

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 18px;
    text-align: center;
  }

  p {
    font-size: 14px;
  }
}




/**********************************
 トップページ
***********************************/


#top-page {
  padding: 0 0 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#top-page.show {
  opacity: 1;
}

#top-page h5 {
  font-size: 28px;
}

#top-page p {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {

  #top-page h5 {
    font-size: 24px;
  }

  #top-page p {
    font-size: 15px;
    line-height: 1.8;
  }

}

@media screen and (max-width: 440px) {

  #top-page h5 {
    font-size: 20px;
  }
}

#top-page .hero-section {
  position: relative;
  margin: 0 0 100px;
}

#top-page .hero-section p {
  font-size: 24px;
  font-family: var(--font-mincho);
}

#top-page .hero-section .hero-swiper {
  width: 100%;
  height: 900px;
}

#top-page .hero-section .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
}

#top-page .hero-section .main-img {
  width: 100%;
  height: 100%;
  margin-left: calc((100% - 1200px) / 2);
  width: calc(100% - ((100% - 1200px) / 2));
}

#top-page .hero-section .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top-page .hero-section .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: fit-content;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
}

@media screen and (max-width: 1200px) {

  #top-page .hero-section h2 {
    font-size: 60px;
  }


}


@media screen and (max-width: 768px) {

  #top-page {
    padding: 60px 0 0;
  }

  #top-page .hero-section h2 {
    font-size: 40px;
  }

  #top-page .hero-section p {
    font-size: 20px;
  }

  #top-page .hero-section .main-img {
    margin-left: -140px;
  }

  #top-page .hero-section .hero-swiper {
    height: 500px;
  }
}

@media screen and (max-width: 440px) {

  #top-page {
    padding: 30px 0 0;
  }

  #top-page .hero-section h2 {
    font-size: 26px;
  }

  #top-page .hero-section p {
    font-size: 16px;
  }

  #top-page .hero-section .hero-swiper {
    height: 350px;
  }

  #top-page .hero-section .main-img {
    margin-left: 0;
    width: 100%;
  }
}



/* about-section */

#top-page .about-section {
  position: relative;
  max-width: 1500px;
  margin: 0 auto 180px;
}

#top-page .about-section .illust-box {
  position: absolute;
  top: 50px;
  right: 0;
}

#top-page .about-section .row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 70px;
  max-width: 1500px;
  margin: 0 auto;
}

#top-page .about-section .img-box {
  width: 50%;
}

#top-page .about-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top-page .about-section .text-box {
  max-width: 530px;
}

@media screen and (max-width: 1300px) {

  #top-page .about-section .illust-box {
    top: 0;
    right: 0;
  }

}

@media screen and (max-width: 1200px) {

  #top-page .about-section .row {
    gap: 30px;
  }

  #top-page .about-section .text-box {
    padding-right: 20px;
  }

}


@media screen and (max-width: 768px) {

  #top-page .about-section .row {
    flex-direction: column;
    gap: 50px;
    margin: 120px auto 0;
  }

  #top-page .about-section .illust-box {
    top: 80px;
    right: 10px;
  }

  #top-page .about-section .illust-box img {
    height: 114px;
    width: 120px;
  }

  #top-page .about-section .text-box {
    max-width: 100%;
    margin: 0 20px;
  }


}


@media screen and (max-width: 440px) {

  #top-page p {
    font-size: 14px;
  }

  #top-page .about-section .img-box {
    padding: 0 20px;
    width: 100%;
  }

  #top-page .about-section .mobile-only-btn {
    margin: 50px auto 50px;
  }
}




/* service-section */

#top-page .service-section {
  margin: 0 0 100px;
}

#top-page .service-section .service-title {
  position: relative;
  height: 200px;
  margin-bottom: 120px;
  overflow: hidden;
}

#top-page .service-section .service-title::before {
  content: "";
  position: absolute;
  top: 0;
  /* left: calc((100% - 1200px) / 2); */
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #4B3B2A 0%, #5D6C81 30%, #5D6C81 100%);
  z-index: 0;
  animation: none;
}

#top-page .service-section .title-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  text-align: right;
}



#top-page .service-section .service-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto 230px;
  padding: 0 0;
}

#top-page .service-section .service-box02 {
  justify-content: flex-start;
  max-width: 1200px;
}

#top-page .service-section .service-box03 {
  align-items: flex-start;
}



#top-page .service-section .service-box .text-box {
  position: relative;
  width: 50%;
}

#top-page .service-section .service-box .text-box .illust-box {
  position: absolute;
  left: -16%;
  bottom: -300px;
}


#top-page .service-section .service-box03 .text-box .illust-box {
  position: relative;
  left: 0;
  bottom: 0;
}


#top-page .service-section .service-box02 .text-box {
  max-width: 530px;
  width: unset;
}


#top-page .service-section .service-box .img-box {
  width: 50%;
}

#top-page .service-section .service-box03 .img-box {
  margin-top: 90px;
}

#top-page .service-section .img-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}


@media screen and (max-width: 1200px) {

  #top-page .service-section .service-box {
    gap: 30px;
    margin: 0 auto 350px;
  }

  #top-page .service-section .service-title {
    height: 180px;
  }

  #top-page .service-section .title-inner {
    font-size: 26px;
  }

  #top-page .service-section .service-title::before {
    top: 0;
    left: 0;
    right: 0;
  }

  #top-page .service-section .service-box .text-box {
    margin-left: 20px;
  }

  #top-page .service-section .service-box02 .text-box {
    margin-right: 20px;
  }

  #top-page .service-section .service-box .text-box .illust-box {
    position: absolute;
    left: 0;
    bottom: -300px;
  }

}

@media screen and (max-width: 768px) {

  #top-page .service-section .service-title {
    height: 150px;
  }

  #top-page .service-section .title-inner {
    font-size: 24px;
  }

  #top-page .service-section .service-box {
    flex-direction: column-reverse;
    gap: 50px;
    margin: 0 auto 230px;
  }

  #top-page .service-section .service-box02 {
    flex-direction: column;
  }

  #top-page .service-section .service-box03 {
    align-items: center;
  }

  #top-page .service-section .service-box .text-box {
    margin: 0 auto 0;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
  }

  #top-page .service-section .service-box .text-box .illust-box {
    position: absolute;
    left: 20px;
    bottom: -185px;
  }

  #top-page .service-box .illust-box img {
    height: 126px;
    width: 120px;
  }

  #top-page .service-box03 .illust-box img {
    height: 158.27px;
    width: 170px;
  }

  #top-page .service-section .service-box03 .img-box {
    margin-top: 0;
  }

}


@media screen and (max-width: 440px) {

  #top-page .service-section .service-title {
    height: 140px;
  }

  #top-page .service-section .title-inner {
    font-size: 20px;
  }

  #top-page .service-section .service-box .img-box {
    width: 100%;
    padding: 0 20px;
  }


}


/* banner-section */
#top-page .banner-section {
  margin: 0 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0s;
}

#top-page .banner-section .banner-box {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  #top-page .banner-section {
    gap: 30px;
    margin: 0 20px 100px;

  }
}

@media screen and (max-width: 768px) {
  #top-page .banner-section {
    gap: 15px;
    margin: 0 15px 100px;

  }
}

@media screen and (max-width: 440px) {

  #top-page .banner-section {
    flex-direction: column;
  }

  #top-page .banner-section .banner-box {
    width: 100%;
  }
}




/* bg-section */

#bg-section {
  margin: 100px 0 0;
  padding: 0;
  text-align: center;
}

#bg-section .fixed-bg-box {
  width: 100%;
  height: 500px;
  background-image: url('../img/top-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#bg-section .fixed-bg-box02 {
  width: 100%;
  height: 500px;
  background-image: url('../img/bg-fixed-02.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#bg-section .fixed-bg-box03 {
  width: 100%;
  height: 500px;
  background-image: url('../img/bg-fixed-03.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#bg-section .fixed-bg-box04 {
  width: 100%;
  height: 500px;
  background-image: url('../img/bg-fixed-04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#bg-section .fixed-bg-box05 {
  width: 100%;
  height: 500px;
  background-image: url('../img/bg-fixed-05.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}



@media screen and (max-width: 768px) {
  #bg-section .fixed-bg-box {
    width: 100%;
    height: 280px;
    background-image: url('../img/top-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box02 {
    width: 100%;
    height: 280px;
    background-image: url('../img/bg-fixed-02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box03 {
    width: 100%;
    height: 280px;
    background-image: url('../img/bg-fixed-03.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box04 {
    width: 100%;
    height: 280px;
    background-image: url('../img/bg-fixed-04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box05 {
    width: 100%;
    height: 280px;
    background-image: url('../img/bg-fixed-05.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

}

@media screen and (max-width: 440px) {


  #bg-section .fixed-bg-box {
    width: 100%;
    height: 180px;
    background-image: url('../img/top-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box02 {
    width: 100%;
    height: 180px;
    background-image: url('../img/bg-fixed-02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box03 {
    width: 100%;
    height: 180px;
    background-image: url('../img/bg-fixed-03.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box04 {
    width: 100%;
    height: 180px;
    background-image: url('../img/bg-fixed-04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: unset;
  }

  #bg-section .fixed-bg-box05 {
    width: 100%;
    height: 180px;
    background-image: url('../img/bg-fixed-05.jpg');
    background-size: cover;
    background-position: center 80%;
    background-attachment: unset;
  }

}



/* contact-section */

/* #top-page .contact-section {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #fff;
  padding: 160px 20px;
  text-align: center;
}


#top-page .contact-form {
  max-width: 625px;
  margin: 0 auto;
  background: none;
}

#top-page .form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
}

#top-page .form-group {
  margin-bottom: 65px;
  text-align: left;
}

#top-page .form-group02 {
  margin-bottom: 150px;
}


#top-page .form-group input,
#top-page .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  background-color: #fff;
  color: #333;
}

#top-page .form-group textarea {
  resize: vertical;
}

#top-page .submit-button {
  background: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#top-page .submit-button:hover {
  background: rgba(255, 255, 255, 0.1);
}



@media screen and (max-width: 768px) {

  #top-page .form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 20px;
    color: #fff;
  }

  #top-page .form-group {
    margin-bottom: 40px;
    text-align: left;
  }

  #top-page .form-group02 {
    margin-bottom: 80px;
  }


  #top-page .form-group input,
  #top-page .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fff;
    color: #333;
  }


}

@media screen and (max-width: 600px) {}


@media screen and (max-width: 440px) {

  #top-page .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
  }

  #top-page .form-group {
    margin-bottom: 30px;
    text-align: left;
  }

  #top-page .form-group02 {
    margin-bottom: 70px;
  }


  #top-page .form-group input,
  #top-page .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
  }

}

@media screen and (max-width: 390px) {}

@media screen and (max-width: 370px) {}

 */




/* ===========================
   Contact Section (Top / Contact)
   =========================== */

/* トップページ */
#top-page .contact-section {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #ffffff;
  padding: 160px 20px;
  text-align: center;
}

/* お問い合わせページ */
#contact-page .contact-form-section {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #ffffff;
  padding: 160px 20px;
  text-align: center;
}

/* 共通ラッパー */
#top-page .contact-box,
#contact-page .contact-box {
  max-width: 625px;
  margin: 0 auto;
}

#top-page .contact-form,
#contact-page .contact-form {
  max-width: 625px;
  margin: 0 auto;
  background: none;
}

/* ラベル・レイアウト */
#top-page .form-group label,
#contact-page .form-group label {
  display: block;
  font-size: 16px;
  /* margin-bottom: 30px; */
  color: #ffffff;
  text-align: left;
}

#top-page .form-group,
#contact-page .form-group {
  margin-bottom: 65px;
  text-align: left;
}

#top-page .form-group02,
#contact-page .form-group02 {
  margin-bottom: 120px;
}

/* 入力 */
#top-page .form-group input:not([type="submit"]),
#top-page .form-group textarea,
#contact-page .form-group input:not([type="submit"]),
#contact-page .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ffffff;
  color: #333333;
  outline: none;
}


#top-page .form-group textarea,
#contact-page .form-group textarea {
  resize: vertical;
  min-height: 160px;
}


/* CF7 バリデーション表示 */
#top-page .wpcf7-not-valid,
#contact-page .wpcf7-not-valid {
  border: 1px solid #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

#top-page .wpcf7-not-valid-tip,
#contact-page .wpcf7-not-valid-tip {
  color: #ffffff;
  font-size: 13px;
  margin-top: 6px;
}

#top-page .wpcf7-response-output,
#contact-page .wpcf7-response-output {
  margin-top: 20px;
  font-size: 14px;
  color: #ffffff;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

#top-page .wpcf7-spinner,
#contact-page .wpcf7-spinner {
  display: none;
}


@media (max-width: 1200px) {

  #top-page .contact-section,
  #contact-page .contact-form-section {
    padding: 140px 20px;
  }
}

/* 1100px */
@media (max-width: 1100px) {

  #top-page .contact-box,
  #contact-page .contact-box {
    max-width: 680px;
  }
}

/* 768px */
@media (max-width: 768px) {
  #contact-page {
    margin-top: 100px;
  }

  #top-page .form-group label,
  #contact-page .form-group label {
    font-size: 15px;
    /* margin-bottom: 20px; */
  }

  #top-page .form-group,
  #contact-page .form-group {
    margin-bottom: 40px;
  }

  #top-page .form-group02,
  #contact-page .form-group02 {
    margin-bottom: 60px;
  }

  #top-page .form-group input:not([type="submit"]),
  #top-page .form-group textarea,
  #contact-page .form-group input:not([type="submit"]),
  #contact-page .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fff;
    color: #333;
  }
}

/* 430px */
@media (max-width: 440px) {

  #top-page .contact-section,
  #contact-page .contact-form-section {
    padding: 70px 20px 120px;
  }

  #top-page .form-group label,
  #contact-page .form-group label {
    font-size: 14px;
    /* margin-bottom: 15px; */
  }

  #top-page .form-group,
  #contact-page .form-group {
    margin-bottom: 30px;
  }

  #top-page .form-group02,
  #contact-page .form-group02 {
    margin-bottom: 50px;
  }

  #top-page .form-group input:not([type="submit"]),
  #top-page .form-group textarea,
  #contact-page .form-group input:not([type="submit"]),
  #contact-page .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
  }

}





/**********************************
 FOOTER
***********************************/

footer {
  background-color: var(--color-secondary);
  color: #fff;
  width: 100%;
  padding: 56px 10px;
  text-align: center;
}

footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

footer .logo-box {
  margin: 0 0 20px;
  width: 162px;
}

footer .logo-box img {
  height: 155px;
  width: 162px;
}

footer .link-box ul.link-box-01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  font-size: 18px;
  margin: 0 0 30px;
}

footer .link-box ul.link-box-02 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  font-size: 15px;
}

footer p {
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 1200px) {

  footer .link-box ul.link-box-01 {}

}

@media screen and (max-width: 768px) {
  footer {
    padding: 56px 10px 30px;
  }

  footer .row {
    flex-direction: column-reverse;
  }

  footer .link-box ul.link-box-01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    margin: 0 0 30px;
    flex-direction: column;
  }

  footer .link-box ul.link-box-02 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    flex-direction: column;
    margin-bottom: 70px;
  }

  footer .logo-box img {
    height: 114.81px;
    width: 120px;
  }

}

@media screen and (max-width: 440px) {

  footer .logo-box img {
    height: 95.67px;
    width: 100px;
  }

}










.fade {
  opacity: 0;
}

/* ヘッダーとフッターの表示制御（イントロ中は非表示） */
body.intro-active header.fade,
body.intro-active footer.fade {
  opacity: 0 !important;
}

header.fade,
footer.fade {
  opacity: 1;
}

.fade.on {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.69, 0, 0.33, 1);
}

.scroll_up {
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}



.zoom {
  display: block;
  overflow: hidden;
}

.zoom img {
  width: 100%;
  transition: 0.4s;
}

.zoom img:hover {
  transform: scale(1.05, 1.05);
  transition: 0.6s;
}

.zoom-out {
  display: block;
  overflow: hidden;
}

.zoom-out img {
  width: 100%;
  transform: scale(1.1, 1.1);
}

.zoom-out.on img {
  transform: scale(1, 1);
  transition: 3s;
}

.timing1 {
  transition-delay: 0.2s;
}

.timing2 {
  transition-delay: 0.4s;
}

.timing3 {
  transition-delay: 0.6s;
}

.timing4 {
  transition-delay: 0.8s;
}

.timing5 {
  transition-delay: 2s;
}




/**********************************
  マージン
***********************************/

.mar_b10 {
  margin-bottom: 10px !important;
}

.mar_b20 {
  margin-bottom: 20px !important;
}

.mar_b30 {
  margin-bottom: 30px !important;
}

.mar_b40 {
  margin-bottom: 40px !important;
}

.mar_b50 {
  margin-bottom: 50px !important;
}

.mar_b60 {
  margin-bottom: 60px !important;
}

.mar_b70 {
  margin-bottom: 70px !important;
}

.mar_b80 {
  margin-bottom: 80px !important;
}

.mar_b90 {
  margin-bottom: 90px !important;
}

.mar_b100 {
  margin-bottom: 100px !important;
}

.mar_b110 {
  margin-bottom: 110px !important;
}

.mar_b120 {
  margin-bottom: 120px !important;
}

.mar_b140 {
  margin-bottom: 140px !important;
}

.mar_b150 {
  margin-bottom: 150px !important;
}

.mar_b180 {
  margin-bottom: 180px !important;
}

.mar_b200 {
  margin-bottom: 200px !important;
}

.mar_b220 {
  margin-bottom: 220px !important;
}


.mar_b250 {
  margin-bottom: 250px !important;
}

.mar_b300 {
  margin-bottom: 300px !important;
}


@media screen and (max-width: 768px) {

  .mar_b20 {
    margin-bottom: 20px !important;
  }

  .mar_b30 {
    margin-bottom: 25px !important;
  }

  .mar_b40 {
    margin-bottom: 30px !important;
  }

  .mar_b50 {
    margin-bottom: 40px !important;
  }

  .mar_b60 {
    margin-bottom: 40px !important;
  }

  .mar_b80 {
    margin-bottom: 60px !important;
  }

  .mar_b100 {
    margin-bottom: 80px !important;
  }

  .mar_b110 {
    margin-bottom: 90px !important;
  }

  .mar_b120 {
    margin-bottom: 100px !important;
  }

  .mar_b140 {
    margin-bottom: 120px !important;
  }

  .mar_b150 {
    margin-bottom: 130px !important;
  }


  .mar_b180 {
    margin-bottom: 150px !important;
  }

  .mar_b200 {
    margin-bottom: 160px !important;
  }

  .mar_b220 {
    margin-bottom: 170px !important;
  }

  .mar_b250 {
    margin-bottom: 200px !important;
  }

  .mar_b300 {
    margin-bottom: 250px !important;
  }

}

@media screen and (max-width: 440px) {
  .mar_b20 {
    margin-bottom: 15px !important;
  }

  .mar_b30 {
    margin-bottom: 20px !important;
  }

  .mar_b40 {
    margin-bottom: 30px !important;
  }

  .mar_b50 {
    margin-bottom: 35px !important;
  }

  .mar_b60 {
    margin-bottom: 35px !important;
  }

  .mar_b80 {
    margin-bottom: 55px !important;
  }

  .mar_b100 {
    margin-bottom: 70px !important;
  }

  .mar_b110 {
    margin-bottom: 80px !important;
  }

  .mar_b120 {
    margin-bottom: 90px !important;
  }

  .mar_b140 {
    margin-bottom: 100px !important;
  }

  .mar_b150 {
    margin-bottom: 120px !important;
  }


  .mar_b180 {
    margin-bottom: 130px !important;
  }

  .mar_b200 {
    margin-bottom: 140px !important;
  }

  .mar_b220 {
    margin-bottom: 150px !important;
  }

  .mar_b250 {
    margin-bottom: 180px !important;
  }

  .mar_b300 {
    margin-bottom: 200px !important;
  }

}


/**********************************
 ABOUTページ
***********************************/
#about-page {
  padding: 0;
}

/* ------------------------------
  about-main-section
------------------------------ */
#about-page h2 {
  font-size: 48px;
}

#about-page .about-section {
  position: relative;
  width: 100%;
  height: 1150px;
  overflow: hidden;
  margin: 0 0 180px;
}

#about-page .about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/about-main.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

#about-page .about-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

#about-page .about-text-overlay h3 {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: normal;
  white-space: nowrap;
}

#about-page .about-text-overlay p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
  white-space: nowrap;
}

/* ------------------------------
  profile-section
------------------------------ */
#about-page .profile-section {
  padding: 80px 0 200px;
  position: relative;
}

#about-page .profile-section h4 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 30px;
  text-align: left;
}

#about-page .profile-section p {
  font-size: 16px;
  line-height: 2;
}

#about-page .profile-title {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

#about-page .profile-title-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#about-page .profile-bg {
  background: linear-gradient(to right, #4B3B2A 0%, #5D6C81 30%, #5D6C81 100%);
  height: 500px;
  width: 100%;
  padding: 0;
}

#about-page .profile-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 60px;
  padding: 60px 0;
  box-sizing: border-box;
}

#about-page .profile-left {
  flex: 1 1 0;
  color: #fff;
  min-width: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

#about-page .profile-right {
  flex: 0 0 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #5d6c81; */
  margin-top: -150px;
}

#about-page .profile-right img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}

/* ------------------------------
  mission-section（強化版）
  画像は「セルフマネジメント」「YouTube」の2箇所のみで使用
------------------------------ */
#about-page .mission-section {
  max-width: 1200px;
  margin: 0 auto 180px;
  padding: 0;
  color: #fff;
}

#about-page .mission-section h3 {
  /* text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 32px; */
}

/* #about-page .mission-section .lead {
  font-size: 20px;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 40px;
} */

#about-page .text-box p {
  line-height: 2.6;
  text-align: center;
  margin-bottom: 22px;
}

#about-page .mission-title {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 24px;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: right;
  position: relative;
  overflow: hidden;
}

#about-page .mission-title br {
  display: none;
}

#about-page .mission-title-left {
  text-align: left;
}

#about-page .mission-block p {
  line-height: 2.0;
  text-align: left;
  margin-bottom: 22px;
  color: #fff;
}

#about-page .vision-text p {
  line-height: 2.0;
}


#about-page .mission-section h5 {}


#about-page .mission-block {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  gap: 40px;
  align-items: center;
}

#about-page .mission-block .mission-text {
  width: 50%;
}

#about-page .mission-block .mission-image {
  width: 50%;
}

#about-page .mission-block.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

#about-page .mission-block .mission-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}



#about-page .mission-block .mission-text blockquote {
  margin: 16px 0 20px;
  padding: 16px 20px;
  border-left: 4px solid rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .05);
  font-style: italic;
  color: #fff;
}


/* ------------------------------
  company-section
------------------------------ */
#about-page .company-section {
  margin: 0 auto;
  padding: 160px 0;
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #fff;
}

#about-page .company-content {
  margin: 100px auto 0;
  max-width: 900px;
}

#about-page .company-table {
  font-size: 16px;
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

#about-page .company-table th,
#about-page .company-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#about-page .company-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: 25%;
}

#about-page .company-table td {
  color: #fff;
}

#about-page .company-table ul {
  margin: 0;
}

#about-page .company-table li {
  margin-bottom: 5px;
}

/* ------------------------------
  Responsive
------------------------------ */
@media screen and (max-width: 1230px) {

  #about-page .about-section .row,
  #about-page .profile-section .row {
    gap: 30px;
  }

  #about-page .mission-section {
    max-width: 1200px;
    margin: 0 auto 180px;
    padding: 0 20px;
  }

  #about-page .profile-title-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 15px;
  }

  #about-page .profile-inner {
    padding: 0 15px;
  }


  #about-page .profile-right img {
    width: 430px;
    height: 430px;
  }
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 1000px) {
  #about-page .profile-bg {
    height: auto;
    min-height: 400px;
  }

  #about-page .profile-inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 10px;
  }

  #about-page .profile-left {
    border-radius: 8px 8px 0 0;
    padding: 40px 20px;
  }

  #about-page .profile-right {
    border-radius: 0 0 8px 8px;
  }

  #about-page .profile-right {
    margin-top: -50px;
  }

  #about-page .profile-right img {
    width: 400px;
    height: 400px;
  }

}

@media screen and (max-width: 930px) {
  #about-page .company-table {
    width: 100%;
    padding: 0 15px;
  }
}


@media screen and (max-width: 768px) {
  #about-page {
    margin-top: 100px;
  }

  #about-page .about-section {
    height: 800px;
    margin-bottom: 120px;
  }

  #about-page .about-bg {
    background-attachment: scroll;
    background-position: center center;
  }

  #about-page .about-text-overlay {
    max-width: 90%;
    padding: 0 15px;
  }


  #about-page .about-text-overlay h3 {
    font-size: 28px;
    white-space: nowrap;
    margin-bottom: 25px;
  }

  #about-page .about-text-overlay p {
    font-size: 16px;
    white-space: normal;
    margin-bottom: 18px;
  }

  #about-page .profile-section {
    padding: 60px 0 150px;
  }

  #about-page .profile-title-wrapper {
    padding: 0 20px;
  }

  #about-page .profile-title {
    margin-bottom: 40px;
  }

  #about-page .profile-bg {
    height: auto;
    min-height: 400px;
  }

  #about-page .profile-inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    max-width: 100%;
  }

  #about-page .profile-left {
    min-width: auto;
    padding: 30px 0;
  }

  #about-page .profile-right {
    margin-top: -80px;
  }

  #about-page .profile-right img {
    width: 400px;
    height: 400px;
  }

  /* MISSION：1カラム化 */
  #about-page .mission-section {
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 120px;
  }

  #about-page .mission-section h3 {
    margin-bottom: 24px;
  }

  #about-page .mission-title {
    font-size: 20px;
    padding: 30px 25px;
    margin-bottom: 60px;
  }

  #about-page .mission-block {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }


  #about-page .company-section {
    padding: 120px 20px;
  }

  #about-page .company-content {
    margin: 80px auto 0;
  }

  #about-page .company-table th,
  #about-page .company-table td {
    display: block;
    width: 100%;
  }

  #about-page .company-table th {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  #about-page .about-section {
    height: 700px;
    margin-bottom: 100px;
  }

  #about-page .about-text-overlay {
    max-width: 95%;
    padding: 0 10px;
  }

  #about-page .about-text-overlay h2 {
    font-size: 26px;
    white-space: normal;
    margin-bottom: 20px;
  }

  #about-page .about-text-overlay p {
    font-size: 15px;
    white-space: normal;
    margin-bottom: 15px;
  }

  #about-page .profile-section {
    padding: 50px 0 120px;
  }

  #about-page .profile-title-wrapper {
    padding: 0 15px;
  }

  #about-page .profile-title {
    margin-bottom: 30px;
  }

  #about-page .profile-bg {
    min-height: 350px;
  }

  #about-page .profile-inner {
    gap: 30px;
    padding: 30px 15px;
  }

  #about-page .profile-left {
    padding: 20px 0;
  }

  #about-page .profile-section h4 {
    font-size: 17px;
  }

  #about-page .profile-text p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  #about-page .profile-text strong {
    font-size: 17px;
    margin-bottom: 10px;
  }

  #about-page .profile-right {
    margin-top: -60px;
  }

  #about-page .profile-right img {
    width: 350px;
    height: 350px;
  }

  #about-page .mission-section {
    padding: 0 15px;
    margin-bottom: 100px;
  }

  #about-page .mission-title {
    font-size: 20px;
    padding: 25px 20px;
    margin-bottom: 50px;
  }



  #about-page .company-section {
    padding: 100px 15px;
  }

  #about-page .company-table {
    font-size: 15px;
  }

}

@media screen and (max-width: 440px) {
  #about-page h2 {
    font-size: 30px;
  }

  #about-page h4 {
    font-size: 17px;
  }

  #about-page .text-box p {
    line-height: 2;
  }

  #about-page .about-section {
    height: auto;
    min-height: 800px;
    margin-bottom: 80px;
  }

  #about-page .about-bg {
    background-position: left center;
  }

  #about-page .about-text-overlay {
    max-width: 100%;
    padding: 50px 10px;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    background-color: rgba(0, 0, 0, 0.3);
  }

  #about-page .about-text-overlay h3 {
    font-size: 19px;
    white-space: normal;
    margin-bottom: 35px;
    line-height: 1.4;
  }

  #about-page .about-text-overlay p {
    font-size: 14px;
    white-space: normal;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    line-height: 1.8;
  }

  #about-page .profile-section {
    padding: 40px 0 100px;
  }

  #about-page .profile-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  #about-page .profile-title-wrapper {
    padding: 0;
  }

  #about-page .profile-title {
    margin-bottom: 25px;
  }

  #about-page .profile-bg {
    min-height: 300px;
  }

  #about-page .profile-inner {
    gap: 25px;
    padding: 25px 10px;
  }

  #about-page .profile-left {
    padding: 15px 0;
  }

  #about-page .profile-right {
    margin-top: -50px;
  }

  #about-page .profile-right img {
    width: 380px;
    height: 380px;
  }

  #about-page .mission-section {
    padding: 0 15px;
    margin-bottom: 80px;
  }

  #about-page .mission-section h4 {
    text-align: left;
  }

  #about-page .mission-section p {
    text-align: left;
  }

  #about-page .mission-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-direction: column-reverse;
  }

  #about-page .mission-block .mission-image {
    width: 100%;
  }

  #about-page .mission-block .mission-text {
    width: 100%;
  }

  #about-page .mission-title {
    font-size: 17px;
    letter-spacing: 0.5px;
    padding: 20px 15px;
    margin-bottom: 40px;
  }

  #about-page .mission-title br {
    display: block;
  }



  #about-page .company-section {
    padding: 80px 10px;
  }

  #about-page .company-table {
    font-size: 14px;
  }

  #about-page .company-content {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 400px) {
  #about-page .about-text-overlay {
    padding: 50px 8px;
  }

  #about-page .about-text-overlay h3 {
    font-size: 18px;
    white-space: normal;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  #about-page .about-text-overlay p {
    font-size: 14px;
    white-space: normal;
    margin-bottom: 20px;
    letter-spacing: 0.1px;
    line-height: 1.8;
  }

  #about-page .profile-right img {
    width: 350px;
    height: 350px;
  }

  #about-page .mission-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 20px 15px;
    margin-bottom: 40px;
  }

}


@media screen and (max-width: 380px) {
  #about-page .about-text-overlay {
    padding: 50px 8px;
  }

  #about-page .about-text-overlay p {
    font-size: 14px;
    white-space: normal;
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 1.8;
  }
}


/* ------------------------------
  story-section
------------------------------ */
#about-page .story-section {
  /* max-width: 1200px; */
  margin: 0 auto 180px;
  padding: 0;
}

#about-page .story-text h5 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

#about-page .story-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}



#story-section .story-cards {
  display: grid;
  gap: 0;
  margin-top: 80px;
}

/* カード本体 */
#story-section .story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
}

#story-section .story-card.story-card-even {
  justify-items: end;
}

/* 偶数カードは左右反転（PC時のみ有効） */
#story-section .story-card:nth-child(even) .story-card__image {
  order: 2;
}

#story-section .story-card:nth-child(even) .story-card__body {
  order: 1;
}

#story-section .story-card__image {
  width: 100%;
  height: 100%;
}

#story-section .story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* story-05.jpg（5番目のカード）の画像位置調整 - PC時のみ左側が見えるように */
#story-section .story-card:nth-child(5) .story-card__image img {
  object-position: 30% center;
}

/* story-07.jpg（7番目のカード）の画像位置調整 - PC時のみ右側が見えるように */
#story-section .story-card:nth-child(7) .story-card__image img {
  object-position: 70% center;
}

#story-section .story-card__body {
  padding: 70px 0 100px 40px;
  color: #fff;
  max-width: 600px;
}

#story-section .story-card.story-card-even .story-card__body {
  padding: 70px 40px 100px 0;
}

#story-section .story-card__label {
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 50px;
  border-bottom: 3px solid var(--color-secondary);
  padding-bottom: 5px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}



#story-section .story-card__title {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 50px;
}

#story-section .story-card__text {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 2;
}

/* ストーリーカードのフェードインアニメーション */
#story-section .story-cards {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#story-section .story-cards.show {
  opacity: 1;
  transform: translateY(0);
}



@media screen and (max-width: 1230px) {
  #about-page .story-section {
    max-width: 1200px;
    margin: 0 auto 180px;
    padding: 0 15px;
  }

}

@media screen and (max-width: 768px) {


  #about-page .story-section {
    padding: 0 20px;
    margin-bottom: 120px;
  }

  /* 全カードを1カラム化 */
  #story-section .story-card {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

  #story-section .story-card.story-card-even {
    justify-items: center;
  }

  /* 偶数カードの order をリセット */
  #story-section .story-card:nth-child(even) .story-card__image {
    order: 1;
  }

  #story-section .story-card:nth-child(even) .story-card__body {
    order: 2;
  }

  #story-section .story-cards {
    gap: 50px;
  }

  #story-section .story-card__body {
    padding: 70px 0 80px 0;
  }

  #story-section .story-card.story-card-even .story-card__body {
    padding: 70px 0 80px 0;
  }

  #story-section .story-card__title {
    font-size: 20px;
  }

  #story-section .story-card__text {
    font-size: 15px;
    line-height: 1.8;
  }
}





@media screen and (max-width: 440px) {


  #about-page .story-section {
    padding: 0 15px;
    margin-bottom: 100px;
  }


  #about-page .story-section {
    padding: 0 10px;
    margin-bottom: 80px;
  }

  #story-section .story-card__body {
    padding: 70px 15px 80px;
  }

  #story-section .story-card.story-card-even .story-card__body {
    padding: 70px 15px 80px;
  }

  #story-section .story-card__title {
    font-size: 18px;
    line-height: 1.55;
  }

  #story-section .story-card__text {
    font-size: 14px;
  }
}






/* ================================
   Corporate Service Page Styles
   ================================ */
#corporate-service-page {}

#corporate-service-page .corporate-service-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  margin-bottom: 80px;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#corporate-service-page .corporate-service-hero__inner {
  padding: 0 20px;
}

#corporate-service-page .corporate-service-hero__title {
  font-size: 28px;
  font-weight: normal;
  color: #fff;
}

/* 各セクション共通 */
#corporate-service-page section {}

#corporate-service-page .container {
  max-width: 1200px;
  margin: 0 auto;
}



#corporate-service-page .service-intro {
  text-align: center;
}

#corporate-service-page .service-intro h2 {
  font-size: 30px;
  font-weight: normal;
}

#corporate-service-page .service-intro h3 {
  font-size: 30px;
  font-weight: normal;
}

#corporate-service-page .service-intro p {
  font-size: 16px;
  line-height: 2;
}


#corporate-service-page .service-achievements {
  width: 100%;
}

#corporate-service-page .service-achievements h3 {
  font-size: 48px;
  font-weight: normal;
}

#corporate-service-page .service-achievements h4 {
  font-size: 20px;
  font-weight: normal;
}


#corporate-service-page .service-achievements .text-box {
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 60px 15px 100px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

#corporate-service-page .service-achievements ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}



#corporate-service-page .service-achievements li {
  padding: 12px 16px;
  font-family: var(--font-gothic);
  font-size: 16px;
  text-align: center;
  background: var(--color-secondary);
  border-radius: 8px;
  text-align: left;
}

#corporate-service-page .service-achievements .text-box p {
  font-size: 16px;
  line-height: 2;
}


#corporate-service-page .service-list {
  max-width: 1200px;
  margin: 0 auto;
}

#corporate-service-page .service-list h3 {
  font-size: 48px;
  font-weight: normal;
}

#corporate-service-page .service-list h4 {
  font-size: 20px;
  font-weight: normal;
}

#corporate-service-page .service-list p {
  text-align: center;
  line-height: 2;
}


#corporate-service-page .service-list .service-box h4 {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100% 100%);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: right;
  position: relative;
  overflow: hidden;
}

#corporate-service-page .service-list .service-box h4.title-left {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100% 100%);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: left;
  position: relative;
  overflow: hidden;
}


#corporate-service-page .service-list .text-box02 {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 30px 15px 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* PRセクション */

#corporate-service-page .service-pr {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #ffffff;
  padding: 100px 20px 0;
  text-align: center;
}

#corporate-service-page .service-pr .container {
  background-color: var(--color-secondary);
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 15px;
}

#corporate-service-page .service-pr p {
  line-height: 2;
}

#corporate-service-page .service-pr .text-box p br {
  display: block;
}

#corporate-service-page .service-pr .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}

#corporate-service-page .service-pr .tag {
  background: var(--color-secondary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #fff;
  display: inline-block;
}

#corporate-service-page .service-pr li {
  margin-bottom: 8px;
}


#corporate-service-page .service-contact {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #ffffff;
  padding: 160px 20px;
  text-align: center;
}

#corporate-service-page .service-contact p {
  text-align: center;
}

/* プロフィールセクション */
#corporate-service-page .profile-section {
  padding: 200px 0 0;
  position: relative;
}

#corporate-service-page .profile-title-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

#corporate-service-page .profile-title {
  font-size: 48px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.1em;
}

#corporate-service-page .profile-bg {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 80px 0 120px;
  position: relative;
}

#corporate-service-page .profile-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

#corporate-service-page .profile-left {
  flex: 1;
}

#corporate-service-page .profile-text h4 {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
}

#corporate-service-page .profile-text p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  font-family: var(--font-gothic);
}

#corporate-service-page .profile-right {
  flex: 1;
  text-align: center;
}

#corporate-service-page .profile-right img {
  max-width: 100%;
  height: 600px;
  object-fit: cover;
}


@media screen and (max-width: 1230px) {
  #corporate-service-page .profile-inner {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  #corporate-service-page .profile-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
  }

  #corporate-service-page .profile-text h4 {
    font-size: 18px;
    text-align: center;
  }

  #corporate-service-page .profile-text p {
    font-size: 15px;
    text-align: center;
  }

  #corporate-service-page .profile-right img {
    height: 400px;
  }
}

@media (max-width: 440px) {

  #corporate-service-page .profile-title {
    font-size: 30px;
  }

  #corporate-service-page .profile-text h4 {
    font-size: 17px;
    text-align: left;
  }

  #corporate-service-page .profile-text p {
    font-size: 14px;
    text-align: left
  }


}





/* 1300px以下 */
@media (max-width: 1230px) {

  #corporate-service-page .service-achievements .text-box {
    margin: 0 15px;
  }

  #corporate-service-page .container {
    max-width: 1200px;
    padding: 0 15px;
  }
}



@media (max-width: 768px) {
  #corporate-service-page {
    padding-top: 100px;
  }

  #corporate-service-page .corporate-service-hero {
    padding: 60px 0;
  }

  #corporate-service-page .corporate-service-hero__title {
    font-size: 24px;
  }

  #corporate-service-page .service-intro h2 {
    font-size: 24px;
  }

  #corporate-service-page h2 {
    font-size: 24px;
  }

  #corporate-service-page .service-list {
    padding: 0 15px;
  }

}


@media (max-width: 440px) {


  #corporate-service-page .corporate-service-hero {
    padding: 40px 0;
  }

  #corporate-service-page .corporate-service-hero__title {
    font-size: 20px;
  }

  #corporate-service-page .service-intro h2 {
    font-size: 20px;
  }

  #corporate-service-page .service-intro h3 {
    font-size: 19px;
  }

  #corporate-service-page .service-intro p {
    font-size: 14px;
    text-align: left;
  }

  #corporate-service-page .service-achievements h3 {
    font-size: 30px;
  }

  #corporate-service-page .service-list p {
    text-align: left;
  }

  #corporate-service-page .service-achievements h4 {
    font-size: 18px;
  }

  #corporate-service-page .service-achievements ul {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
    padding: 0 10px;
  }

  #corporate-service-page .service-achievements li {
    font-size: 15px;
  }


  #corporate-service-page .service-list h3 {
    font-size: 30px;
  }

  #corporate-service-page .service-list h4 {
    font-size: 18px;
  }

  #corporate-service-page .service-list .service-box h4 {
    font-size: 18px;
  }


  #corporate-service-page .service-pr .text-box p br {
    display: none;
  }

  #corporate-service-page .service-pr p {
    line-height: 2;
    text-align: left;
  }

  #corporate-service-page .service-contact p {
    text-align: left;
  }

  #corporate-service-page h2 {
    font-size: 20px;
  }

  #corporate-service-page h3 {
    font-size: 24px;
  }



  #corporate-service-page h4 {
    font-size: 18px;
  }


}

@media (max-width: 400px) {

  #corporate-service-page .service-intro h3 {
    font-size: 17px;
  }
}

/* =========================================
   Life Coaching Page — High Design Styles
   (px units only / text color #fff)
   ========================================= */
#life-coaching-page {}


/* レイアウト共通 */
#life-coaching-page section {}

#life-coaching-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}



/* ヒーローセクション */
#life-coaching-page .life-coaching-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  margin-bottom: 80px;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#life-coaching-page .life-coaching-hero__inner {
  padding: 0 20px;
}

#life-coaching-page .life-coaching-hero__title {
  font-size: 28px;
  font-weight: normal;
  color: #fff;
}

/* レイアウト共通 */

#life-coaching-page .lifecoaching-intro h2 {
  font-size: 48px;
  font-weight: normal;
}

#life-coaching-page .lifecoaching-intro h3 {
  font-size: 20px;
  font-weight: normal;
}

#life-coaching-page .lifecoaching-intro h4 {
  font-size: 30px;
  font-weight: normal;
}


#life-coaching-page .lifecoaching-intro p {
  text-align: center;
}


#life-coaching-page h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

#life-coaching-page h3 {
  font-size: 48px;
  font-weight: normal;
  text-align: center;
}

#life-coaching-page h4 {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

#life-coaching-page p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.94;
}


#life-coaching-page .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

#life-coaching-page .lifecoaching-intro {
  padding-bottom: 90px;
}

#life-coaching-page .lifecoaching-intro .lead {
  font-size: 18px;
  opacity: 0.96;
}

#life-coaching-page .lifecoaching-intro .headline {
  font-size: 44px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}


#life-coaching-page .lifecoaching-intro-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* CONCERNS */
#life-coaching-page .lifecoaching-concerns {
  background-color: var(--color-secondary);
  padding: 100px 15px;
}

#life-coaching-page .lifecoaching-concerns .container {
  border: 1px solid #fff;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  padding: 45px 15px 15px;
}

#life-coaching-page .lifecoaching-concerns p {
  text-align: center;
}

#life-coaching-page .checkbox-icon,
#life-coaching-page .lifecoaching-concerns li img,
#life-coaching-page .lifecoaching-concerns .checkbox-icon {
  width: 20px;
  height: 20px;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  margin: 0 !important;
  transform: translateX(0) !important;
}

#life-coaching-page .lifecoaching-concerns li {
  position: relative;
  margin-bottom: 26px;
  font-family: var(--font-gothic);
  font-size: 18px;
  line-height: 1.6;
  padding-left: 40px;
  text-align: left;
  width: 100%;
  max-width: 715px;
  margin-left: auto;
  margin-right: auto;
}

#life-coaching-page .lifecoaching-concerns ul {
  text-align: left;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}





/* ROLES */
#life-coaching-page .lifecoaching-roles .roles-list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}


#life-coaching-page .lifecoaching-roles .role {
  border: 1px solid #fff;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  font-size: 20px;
  letter-spacing: 0.4px;
  width: 175px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

#life-coaching-page .lifecoaching-roles p {
  line-height: 2;
  text-align: center;
}


#life-coaching-page .lifecoaching-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 15px 0;
}

#life-coaching-page .lifecoaching-about .img-box {
  margin: 0 auto 70px;
  text-align: center;
  max-width: 575px;
}

#life-coaching-page .lifecoaching-about h4 {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 24px;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#life-coaching-page .lifecoaching-about p {
  line-height: 2;
  text-align: center;
}

#life-coaching-page .lifecoaching-about p span.bold {
  font-weight: bold;
}

#life-coaching-page .lifecoaching-about ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  text-align: left;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#life-coaching-page .lifecoaching-about li {
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
}

#life-coaching-page .lifecoaching-about li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background-color: #a2895b;
  z-index: -1;
}

#life-coaching-page .lifecoaching-goals {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px;
}

#life-coaching-page .lifecoaching-goals h4 {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 24px;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#life-coaching-page .lifecoaching-goals p {
  line-height: 2;
  text-align: center;
}

#life-coaching-page .lifecoaching-goals .list-box {
  border: 1px solid #fff;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 25px;
}

#life-coaching-page .lifecoaching-goals ul {
  list-style: none;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

#life-coaching-page .lifecoaching-goals li {
  font-family: var(--font-gothic);
  font-size: 18px;
  line-height: 2;
  text-align: left;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

#life-coaching-page .lifecoaching-goals li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 18px;
}

#life-coaching-page .lifecoaching-goals li {
  font-family: var(--font-gothic);
  font-size: 18px;
  line-height: 2;
  text-align: left;
}

/* FEATURES*/

#life-coaching-page .lifecoaching-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


#life-coaching-page .lifecoaching-features .feature h4 {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: right;
  position: relative;
  overflow: hidden;
}

#life-coaching-page .lifecoaching-features .feature h4.title-left {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

#life-coaching-page .lifecoaching-features .feature p {
  line-height: 2;
  margin-bottom: 0;
}

#life-coaching-page .lifecoaching-features .feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px;
}

#life-coaching-page .lifecoaching-features .feature-box.reverse {
  flex-direction: row-reverse;
}

#life-coaching-page .lifecoaching-features .feature-box .img-box {
  width: 50%;
}

#life-coaching-page .lifecoaching-features .feature-box .text-box {
  width: 50%;
}




#life-coaching-page .lifecoaching-flow {}

#life-coaching-page .lifecoaching-flow .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

#life-coaching-page .lifecoaching-flow .timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 140px;
  counter-reset: lc-steps;
}


#life-coaching-page .lifecoaching-flow .timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 70px;
  width: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

/* 各ステップ */
#life-coaching-page .lifecoaching-flow .step {
  position: relative;
  margin-bottom: 76px;
}


#life-coaching-page .lifecoaching-flow .step::before {
  counter-increment: lc-steps;
  content: counter(lc-steps, decimal-leading-zero);
  position: absolute;
  left: -120px;
  top: -6px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  font-size: 28px;
  letter-spacing: .06em;
  z-index: 2;
}


#life-coaching-page .lifecoaching-flow .step>p:first-child {
  margin: 0 0 12px;
  font-weight: 800;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: .02em;
}


#life-coaching-page .lifecoaching-flow .step>p:not(:first-child) {
  margin: 0 0 10px;
  line-height: 2;
  font-size: 15px;
}


#life-coaching-page .lifecoaching-flow .step:last-child {
  margin-bottom: 0;
}




#life-coaching-page .lifecoaching-recommend {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


#life-coaching-page .lifecoaching-recommend h4 {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 24px;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


/* EFFECTS */
#life-coaching-page .lifecoaching-effects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#life-coaching-page .lifecoaching-effects h4 {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 30%, var(--color-secondary) 70%, var(--color-primary) 100%);
  font-size: 24px;
  margin-bottom: 80px;
  padding: 35px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#life-coaching-page .lifecoaching-effects .list-box,
#life-coaching-page .lifecoaching-recommend .list-box {
  max-width: 1200px;
  margin: 0 auto;
}

#life-coaching-page .lifecoaching-effects ul,
#life-coaching-page .lifecoaching-recommend ul {
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0;
  padding: 25px 25px 5px;
}

@media (max-width: 440px) {

  #life-coaching-page .lifecoaching-effects ul,
  #life-coaching-page .lifecoaching-recommend ul {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 15px 5px;
  }
}

#life-coaching-page .lifecoaching-effects li,
#life-coaching-page .lifecoaching-recommend li {
  position: relative;
  display: flex;
  align-items: center;
  background: #5D6C81;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  font-family: var(--font-gothic);
  padding: 10px 12px 10px 40px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  word-break: break-word;
}

#life-coaching-page .lifecoaching-effects li::before,
#life-coaching-page .lifecoaching-recommend li::before {
  content: "✔";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}


/* PLANS*/

#life-coaching-page .lifecoaching-plans {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #ffffff;
  padding: 200px 20px 120px;
  text-align: center;
}

#life-coaching-page .lifecoaching-plans .plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}

#life-coaching-page .lifecoaching-plans .circle-box {
  position: absolute;
  top: -62px;
  right: 23px;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
  z-index: 10;
}

#life-coaching-page .lifecoaching-plans .plan {
  padding: 60px 30px 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#life-coaching-page .lifecoaching-plans .text-box {
  text-align: left;
}

#life-coaching-page .lifecoaching-plans .text-box ul {
  list-style: none;
  padding-left: 0;
  margin: 40px 0;
}

#life-coaching-page .lifecoaching-plans .text-box li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-gothic);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
}

#life-coaching-page .lifecoaching-plans h5 {
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.6;
}

#life-coaching-page .lifecoaching-plans .text-box li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 16px;
}

#life-coaching-page .lifecoaching-plans .text-box p {
  font-size: 14px;
}

#life-coaching-page .lifecoaching-plans .price-box {
  margin: 30px 0 0;
}

#life-coaching-page .lifecoaching-plans .price-box p {
  margin-bottom: 10px;
  font-size: 14px;
  font-family: var(--font-gothic);
}


#life-coaching-page .service-contact {
  background: linear-gradient(to right, #413F3D, #5D6C81);
  color: #ffffff;
  padding: 40px 20px 160px;
  text-align: center;
}






/* 1100px以下 */
@media (max-width: 1100px) {
  #life-coaching-page .container {
    padding: 0 20px;
  }



  #life-coaching-page .lifecoaching-plans .plans {
    grid-template-columns: 1fr 1fr;
  }
}



@media (max-width:768px) {
  #life-coaching-page {
    padding-top: 100px;
  }

  #life-coaching-page p {
    font-size: 15px;
  }

  #life-coaching-page .life-coaching-hero {
    padding: 60px 0;
  }

  #life-coaching-page .life-coaching-hero__title {
    font-size: 24px;
  }



  #life-coaching-page .lifecoaching-intro h4 {
    font-size: 24px;
  }

  #life-coaching-page .lifecoaching-concerns .container {
    max-width: 700px;
  }


  #life-coaching-page .lifecoaching-flow .timeline {
    padding-left: 100px;
  }

  #life-coaching-page .lifecoaching-flow .timeline::before {
    bottom: 100px;
    left: 40px;
    width: 3px;
  }

  #life-coaching-page .lifecoaching-flow .step {
    margin-bottom: 60px;
  }

  #life-coaching-page .lifecoaching-flow .step::before {
    left: -100px;
    width: 84px;
    height: 84px;
    font-size: 24px;
  }

  #life-coaching-page .lifecoaching-effects li,
  #life-coaching-page .lifecoaching-recommend li {
    font-size: 16px;
  }

  #life-coaching-page .lifecoaching-plans .circle-box {
    font-size: 14px;
    top: -57px;
    right: 20px;
    width: 100px;
    height: 100px;
  }


}


@media (max-width:440px) {

  #life-coaching-page h4 {
    font-size: 18px;
  }

  #life-coaching-page p {
    font-size: 14px;
  }

  #life-coaching-page .container {
    padding: 0 15px;
  }

  #life-coaching-page .life-coaching-hero {
    padding: 40px 0;
  }

  #life-coaching-page .life-coaching-hero__title {
    font-size: 20px;
  }

  #life-coaching-page .lifecoaching-intro h2 {
    font-size: 30px;
    font-weight: normal;
  }

  #life-coaching-page .lifecoaching-intro h3 {
    font-size: 18px;
  }

  #life-coaching-page .lifecoaching-intro h4 {
    font-size: 20px;
  }

  #life-coaching-page .lifecoaching-intro p {
    text-align: left;
  }

  #life-coaching-page .lifecoaching-concerns {
    padding: 70px 15px;
  }

  #life-coaching-page .lifecoaching-concerns li {
    font-size: 15px;
    padding-left: 30px;
  }

  #life-coaching-page .lifecoaching-roles .roles-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    gap: 15px;
    max-width: 100%;
    padding: 0 15px;
  }

  #life-coaching-page .lifecoaching-roles .role {
    font-size: 15px;
    width: 120px;
    height: 120px;
  }

  #life-coaching-page .lifecoaching-roles h4 {
    font-size: 16px;
    letter-spacing: 0.4px;
  }

  #life-coaching-page .lifecoaching-roles p {
    text-align: left;
  }

  #life-coaching-page .lifecoaching-about {
    padding: 50px 15px 0;
  }

  #life-coaching-page .lifecoaching-about h4 {
    font-size: 18px;
  }

  #life-coaching-page .lifecoaching-about p {
    text-align: left;
  }

  #life-coaching-page .lifecoaching-about li {
    font-size: 15px;
  }

  #life-coaching-page .lifecoaching-goals h4 {
    font-size: 18px;
  }

  #life-coaching-page .lifecoaching-goals p {
    text-align: left;
  }

  #life-coaching-page .lifecoaching-goals ul {
    padding: 0 10px;
  }

  #life-coaching-page .lifecoaching-goals li {
    font-size: 15px;
    padding-left: 20px;
  }

  #life-coaching-page .lifecoaching-goals li::before {
    font-size: 15px;
  }

  #life-coaching-page .lifecoaching-features h3 {
    font-size: 30px;
  }

  #life-coaching-page .lifecoaching-features h4 {
    font-size: 18px;
  }

  #life-coaching-page .lifecoaching-features .feature h4 {
    font-size: 18px;
  }

  #life-coaching-page .lifecoaching-features .feature h4.title-left {
    font-size: 18px;
  }


  #life-coaching-page .lifecoaching-features .feature-box {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  #life-coaching-page .lifecoaching-features .feature-box.reverse {
    flex-direction: column;
  }

  #life-coaching-page .lifecoaching-features .feature-box .img-box {
    width: 100%;
  }

  #life-coaching-page .lifecoaching-features .feature-box .text-box {
    width: 100%;
  }

  #life-coaching-page .lifecoaching-flow h3 {
    font-size: 30px;
  }

  #life-coaching-page .lifecoaching-flow .step>p:first-child {
    font-size: 16px;
  }

  #life-coaching-page .lifecoaching-effects li,
  #life-coaching-page .lifecoaching-recommend li {
    font-size: 15px;
  }

  #life-coaching-page .lifecoaching-flow .timeline {
    padding-left: 85px;
  }

  #life-coaching-page .lifecoaching-flow .timeline::before {
    left: 30px;
    bottom: 220px;
  }

  #life-coaching-page .lifecoaching-flow .step {
    margin-bottom: 50px;
  }

  #life-coaching-page .lifecoaching-flow .step::before {
    left: -85px;
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  #life-coaching-page .lifecoaching-flow .step>p:not(:first-child) {
    line-height: 1.9;
  }

  #life-coaching-page .lifecoaching-plans {
    padding: 150px 20px 120px;
  }

  #life-coaching-page .lifecoaching-plans .plans {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  #life-coaching-page .lifecoaching-plans .plan {
    padding: 60px 15px 50px;
  }

  #life-coaching-page .lifecoaching-plans h5 {
    font-size: 15px;
  }

  #life-coaching-page .lifecoaching-plans .text-box li {
    font-size: 15px;
  }

  #life-coaching-page .lifecoaching-plans .text-box li::before {
    font-size: 15px;
  }

}

@media (max-width: 420px) {
  #life-coaching-page .lifecoaching-flow .timeline::before {
    left: 30px;
    bottom: 260px;
  }
}

@media (max-width: 400px) {

  #life-coaching-page .lifecoaching-intro h3 {
    font-size: 16px;
  }

  #life-coaching-page .lifecoaching-flow .timeline::before {
    left: 30px;
    bottom: 240px;
  }
}




/* プライバシーポリシーページ */
#privacy-page {
  background: #4B3B2A;
  color: #fff;
  min-height: 100vh;
}

#privacy-page .privacy-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  margin-bottom: 80px;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#privacy-page .privacy-hero__inner {
  padding: 0 20px;
}

#privacy-page .privacy-hero__title {
  font-size: 28px;
  font-weight: normal;
  color: #fff;
}


#privacy-page .privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

#privacy-page .privacy-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}


#privacy-page .privacy-text h4 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  margin: 40px 0 20px;
  padding-left: 20px;
  border-left: 4px solid #5D6C81;
  font-family: var(--font-mincho);
  text-align: left;
}

#privacy-page .privacy-text h4:first-of-type {
  margin-top: 0;
}

#privacy-page .privacy-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e3ebf7;
  font-family: var(--font-noto);
}

#privacy-page .privacy-text ul {
  margin: 20px 0 20px 20px;
  padding-left: 20px;
}

#privacy-page .privacy-text li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #e3ebf7;
  font-family: var(--font-noto);
  position: relative;
}

#privacy-page .privacy-text li::before {
  content: "•";
  color: #5D6C81;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

#privacy-page .contact-info {
  background: rgba(93, 108, 129, 0.2);
  padding: 30px;
  border-radius: 6px;
  margin: 30px 0;
}

#privacy-page .contact-info p {
  margin-bottom: 0;
}

#privacy-page .contact-info strong {
  color: #fff;
  font-weight: 700;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  #privacy-page {
    padding-top: 100px;
  }

  #privacy-page .privacy-hero {
    padding: 60px 0;
  }

  #privacy-page .privacy-hero__title {
    font-size: 24px;
  }


  #privacy-page .privacy-content {
    padding: 0 15px 60px;
  }

  #privacy-page .privacy-text {
    padding: 40px 30px;
  }

  #privacy-page .privacy-text h2 {
    font-size: 2.2rem;
    margin: 30px 0 15px;
  }

  #privacy-page .privacy-text p,
  #privacy-page .privacy-text li {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 440px) {

  #privacy-page .privacy-hero {
    padding: 40px 0;
  }

  #privacy-page .privacy-hero__title {
    font-size: 20px;
  }


  #privacy-page .privacy-text {
    padding: 30px 20px;
  }

  #privacy-page .privacy-text h2 {
    font-size: 2rem;
    margin: 25px 0 15px;
    padding-left: 15px;
  }

  #privacy-page .privacy-text p,
  #privacy-page .privacy-text li {
    font-size: 1.4rem;
  }

  #privacy-page .contact-info {
    padding: 20px;
  }
}

/* 特定商取引ページ */
#tokutei-page {
  background: #4B3B2A;
  color: #fff;
  min-height: 100vh;
}

.tokutei-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  margin-bottom: 80px;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tokutei-hero__inner {
  padding: 0 20px;
}

.tokutei-hero__title {
  font-size: 28px;
  font-weight: normal;
  color: #fff;
}

.tokutei-content {
  max-width: 900px;
  margin: 0 auto;
}

.tokutei-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.tokutei-row {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.tokutei-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tokutei-label {
  flex: 0 0 200px;
  margin-right: 40px;
}

.tokutei-value {
  flex: 1;
}

.tokutei-text h4 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  padding-left: 20px;
  border-left: 4px solid #5D6C81;
  font-family: var(--font-mincho);
  text-align: left;
}

.tokutei-text h4:first-child {
  margin-top: 0;
}

.tokutei-text p {
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-noto);
}

@media screen and (max-width: 768px) {
  #tokutei-page {
    padding-top: 100px;
  }

  .tokutei-hero {
    padding: 60px 0;
  }

  .tokutei-hero__title {
    font-size: 24px;
  }

  .tokutei-content {
    padding: 60px 0;
  }

  .tokutei-text {
    padding: 40px 20px;
  }

  .tokutei-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .tokutei-label {
    flex: none;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .tokutei-value {
    flex: none;
  }

  .tokutei-text h4 {
    font-size: 18px;
    margin: 0 0 15px 0;
  }

  .tokutei-text p {
    font-size: 15px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 440px) {
  .tokutei-hero {
    padding: 40px 0;
  }

  .tokutei-hero__title {
    font-size: 20px;
  }

  .tokutei-text {
    padding: 30px 15px;
  }

  .tokutei-row {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .tokutei-label {
    margin-bottom: 10px;
  }

  .tokutei-text h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .tokutei-text p {
    font-size: 14px;
    margin-bottom: 0;
  }
}









/* =========================================
   ① サービスページ専用スタイル
   ========================================= */

/* Service hero */
#service-page .service-hero {
  position: relative;
  height: 420px;
  margin: 0 0 60px;
  overflow: hidden;
}

#service-page .service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

#service-page .service-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .0) 50%);
}

#service-page .service-hero__title {
  color: #fff;
  font-size: 28px;
  letter-spacing: .06em;
}


#service-page .service-title {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: normal;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  margin-bottom: 80px;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}




@media (max-width: 768px) {

  #service-page {
    padding-top: 100px;
  }

  #service-page .service-title {
    font-size: 24px;
    padding: 60px 0;
  }
}


@media (max-width: 768px) {

  #service-page .service-title {
    font-size: 20px;
    padding: 40px 0;
  }

}

/* =========================================
   ② Gutenberg 幅制御（クラシックテーマ用）
   ========================================= */

/* 本文の基本幅 */
.wp-content {
  max-width: 1200px;
  margin: 0 auto 200px;
  padding: 0;
}

/* 幅広（alignwide） */
.wp-content .alignwide {
  max-width: 1400px;
  margin-left: calc(50% - 700px);
  margin-right: calc(50% - 700px);
}

/* 全幅（alignfull）を画面いっぱいに広げる */
.wp-content>.alignfull,
.wp-content>.wp-block-cover.alignfull,
.wp-content>.wp-block-group.alignfull,
.wp-content>.wp-block-image.alignfull,
.wp-content>.wp-block-gallery.alignfull {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}

/* alignfull 内のコンテンツ幅を制限（任意） */
.wp-content>.alignfull>.wp-block-cover__inner-container,
.wp-content>.alignfull>.wp-block-group__inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 画像や背景を幅広・全幅でフルサイズ化 */
.wp-content .alignwide img,
.wp-content .alignfull img,
.wp-content .alignwide .wp-block-cover__image-background,
.wp-content .alignfull .wp-block-cover__image-background {
  width: 100%;
  height: auto;
}

/* キャプション */
.wp-content figure.wp-block-image figcaption {
  /* color: #666; */
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
}

/* 余白のベース */
.wp-content>* {
  margin-bottom: 1.6rem;
}



.wp-content h2 {
  font-size: 28px;
  text-align: unset;
  /* スタイル追加 */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 35px 25px;
  margin-bottom: 30px;
}

.wp-content h3 {
  font-size: 24px;
  text-align: unset;
}

.wp-content h4 {
  font-size: 20px;
  text-align: unset;
}

.wp-content h5 {
  font-size: 18px;
  text-align: unset;
}

.wp-content h6 {
  font-size: 16px;
  text-align: unset;
}

.wp-content p {
  font-size: 16px;
  line-height: 1.8;
}

.has-text-align-center {
  text-align: center !important;
}

/* 追加 */
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  padding: 20px;
}

.wp-content ul li {
  list-style: disc;
}

.wp-content ol li {
  list-style: auto;
}


.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
  display: block;
}


/* ===============================
   チェックリスト（Gutenberg: core/list）
   - is-style-checklist …… 1列
   - is-style-checklist-grid …… 2列
   =============================== */

ul.wp-block-list.is-style-checklist,
ul.wp-block-list.is-style-checklist-grid {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* 1列版 */
ul.wp-block-list.is-style-checklist {
  margin: 0;
}

/* 2列版（PCは2列、SPは1列） */
ul.wp-block-list.is-style-checklist-grid {
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0;
  padding: 25px 25px 5px;
}

@media (max-width: 768px) {
  ul.wp-block-list.is-style-checklist-grid {
    grid-template-columns: 1fr;
  }
}

ul.wp-block-list.is-style-checklist li,
ul.wp-block-list.is-style-checklist-grid li {
  position: relative;
  display: flex;
  align-items: center;
  background: #5D6C81;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  padding: 10px 12px 10px 40px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  word-break: break-word;
}

ul.wp-block-list.is-style-checklist li::before,
ul.wp-block-list.is-style-checklist-grid li::before {
  content: "✔";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}



@media (max-width: 1230px) {
  .wp-content {
    max-width: 1200px;
    margin: 0 auto 200px;
    padding: 0 15px;
  }
}


@media (max-width: 1200px) {
  .wp-content .alignwide {
    max-width: 90vw;
    margin-left: calc(50% - 45vw);
    margin-right: calc(50% - 45vw);
  }
}

@media (max-width: 1100px) {

  .wp-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .wp-content .alignwide {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  ul.wp-block-list.is-style-checklist li,
  ul.wp-block-list.is-style-checklist-grid li {
    font-size: 16px;
  }

  .wp-content {
    padding: 0 20px;
  }

  .wp-content h2 {
    font-size: 26px;
    text-align: unset;
  }

  .wp-content h3 {
    font-size: 24px;
    text-align: unset;
  }

  .wp-content h4 {
    font-size: 20px;
    text-align: unset;
  }

  .wp-content h5 {
    font-size: 18px;
    text-align: unset;
  }

  .wp-content h6 {
    font-size: 16px;
    text-align: unset;
  }

  .wp-content p {
    font-size: 15px;
    line-height: 1.8;
  }

}

@media (max-width: 440px) {

  ul.wp-block-list.is-style-checklist li,
  ul.wp-block-list.is-style-checklist-grid li {
    font-size: 15px;
  }

  .wp-content {
    padding: 0 15px;
  }

  .wp-content h2 {
    font-size: 18px;
    text-align: unset;
    /* スタイル追加 */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 25px 10px;
    margin-bottom: 30px;
  }

  .wp-content p {
    font-size: 14px;
  }

}

@media screen and (max-width: 440px) {

  .front-page-intro-text {
    display: none !important;
  }

  /* 詳細はこちらボタンを表示 */
  .mobile-only-btn {
    display: block !important;
  }

  /* 詳細はこちらボタンを非表示 */
  .about-detail-btn {
    display: none !important;
  }
}

/* 440px以上では詳細はこちらボタンを非表示 */
@media screen and (min-width: 441px) {
  .mobile-only-btn {
    display: none !important;
  }
}


/* スマホだけ表示して改行扱い */
.sp-br {
  display: none;
}

@media screen and (max-width: 440px) {
  .sp-br {
    display: block !important;
    height: 22px !important;
  }
}

/* スマホ時は非表示にして改行をなくす */
.pc-br {
  display: inline;
}

@media screen and (max-width: 440px) {
  .pc-br {
    display: none !important;
  }
}