@charset "utf-8";

/* 初期状態 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:hover{
    opacity: 0.6;

}
/* 共通項 */
html {
  font-size: 62.5%; /* 1920px の画面幅で 10px が基準 */
  line-height: 1.8;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
body {
  margin: 0;
  padding: 0;
  font-size: 75%;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
  color: #333333;
  /* background-color: #e4f9e3; */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(
    to bottom right, /* グラデーションの方向を斜めに設定 */
    #fcb9b8 14%,  /* 柔らかい赤 */
    #fdd7ac 28%,  /* 柔らかいオレンジ */
    #fef7b4 42%,  /* 柔らかい黄色 */
    #c1eac5 57%,  /* 柔らかい緑 */
    #b1e1f4 71%,  /* 柔らかい青 */
    #c3b8f7 85%,  /* 柔らかい藍 */
    #e0bafc 100%  /* 柔らかい紫 */

);
}

main {
  flex: 1;



}
.container{
  max-width: 90%;
  margin: 0 auto;
}
section {

  margin-top: 100px;
}
section h2 {

  position:relative;
  padding:8px 15px;
  font-size: 2.4rem;
  color: #e94e77;
  font-weight: bold;
  margin-bottom: 40px;
  border-bottom: 1px solid #e94e77;
}
section h2::before{
  content:"";
  position:absolute;
  background: linear-gradient(
    to bottom right, /* グラデーションの方向を斜めに設定 */
    #fcb9b8 14%,  /* 柔らかい赤 */
    #fdd7ac 28%,  /* 柔らかいオレンジ */
    #fef7b4 42%,  /* 柔らかい黄色 */
    #c1eac5 57%,  /* 柔らかい緑 */
    #b1e1f4 71%,  /* 柔らかい青 */
    #c3b8f7 85%,  /* 柔らかい藍 */
    #e0bafc 100%  /* 柔らかい紫 */

);
  width:50px;
  height:50px;
  border-radius:50%;
  top:50%;
  left:5px;
  transform:translateY(-50%);
  z-index:-1;
 }

section h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #4aa1e6;
  margin: 20px 0;
  line-height: 2.4;
  border-bottom: 1px solid #4aa1e6;
}
section h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #4aa1e6;
  margin: 20px 0;
  line-height: 2.4;
}
section p,dt,dd {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
}

ul{
  font-size: 1.6rem;
}
/* header */

header {
  position: fixed;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.7);
  /* backdrop-filter: blur(10px); */
  z-index: 100;



}


header h1 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
}
.sp__br {
  display: block;
}
.sp__h1 {
  font-size: 1.4rem;
}

.header__info {
  display: none;
}
.header__nav {
  display: none;
  color: rgb(102, 102, 102);
}

.hamburger-menu_container {
  display: block;
}
.red{
  color:#e41a50;
}
.violet{
  color:#c870f8;
}
.navy{
  color:#8a4bf7;
}
.blue{
  color:#4aa1e6;
}
.green{
  color:  #76e2a0;
}
.yellow{
  color:#f9e16f;
}
.orange{
  color: #f6b04d;
}
.magenta{
  color: #f80df8;
}


/*========= ナビゲーションのためのCSS ===============*/
/* メニューの中身をアコーディオンで開く */
.accordion__button {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative; /* Ensure it is positioned relative to its normal flow */

}

.accordion__toggle {
  border: none;
  cursor: pointer;
  padding: 10px;
  text-align: left;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  outline: none;
  position: relative;
  z-index: 1; /* Ensure it is above the content */
  color: #666666;
}

.accordion__content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(to bottom right, #fcb9b8 14%, #fdd7ac 28%, #fef7b4 42%, #c1eac5 57%, #b1e1f4 71%, #c3b8f7 85%, #e0bafc 100%);
  font-size: 1.6rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240%;
  max-width: 320px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 450px;
  z-index: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.accordion__toggle.active + .accordion__content {
  height: auto; /* Expand to fit content */
  opacity: 1; /* Make visible */
}


.accordion__content a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #666666;
  border-bottom: 1px solid #ffffff;
}

.accordion__content a:last-child {
  border-bottom: none;
}

.accordion__content a:hover {
  background-color: #f1f1f1;
}
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 90%;
  height: 100vh; /*ナビの高さ*/
  background-color: rgba(255, 255, 255, 0.9);
  /* backdrop-filter: blur(10px); */
  opacity: 0.9;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 25%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: left;
  font-size: 1.8rem;
}

#g-nav li a {
  color: #666666;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 50%; /* 親要素の中央に位置 */
  right: 10px;
  transform: translateY(-50%); /* 要素の高さの半分だけ上に移動 */
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color:#4aa1e6;/* 柔らかい青 */
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.banner__small__wrapper {
  flex-direction: column;
  gap: 3vh;
}

/* hero__section */

.hero__section {
  width: 100%;
  margin: 70px auto 0;
  text-align: center;
  position: relative; /* 画像とテキストが重なるようにするために相対位置を指定 */
  height: 100vh; /* 画面全体の高さ */

    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 70px);
    background-position: 50% 50%;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.hero__section__inner {
  position: relative; /* 画像の上にテキストを重ねるため */
  width: 100%;
  height:calc(100vh - 70px);
}

/* 画像を画面いっぱいに広げる */
.hero__image {
  position: absolute; /* 画像を絶対位置に配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 画面全体に広がる */
  object-fit: cover; /* 画像が縦横比を保ちながら、画面いっぱいに表示される */
  z-index: -1; /* 画像を背景として配置するためにテキストの後ろに配置 */
}

/* h1スタイル（画像の上に重なる） */
.hero__copy{
  position: relative; /* テキストを画像の上に配置するため */
  z-index: 1; /* テキストを画像の前面に配置 */
 padding:32px 0 240px;
}
.hero__section h1 {
  border-bottom: 1px solid #ffffff;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  width: 90%;
  margin: 50px auto 30px;
  


}

/* h3スタイル（画像の上に重なる） */
.hero__h3 {

  color: #ffffff;

  margin-top: 10px;
  line-height: 1.6;
  border-bottom: none;
}


.hero__section p {
  font-size: 1.6rem;
}
/* youtube */
.youtube__player {
  position: relative;
  width: 90%;
  padding-top: 50.625%; /* 16:9のアスペクト比 */
  height: 0;
  margin-bottom: 30px;
}

.youtube__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ameblo__section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  font-size: 1.6rem;
}

.ameblo__section ul {
  font-size: 1.6rem;
}

.ameblo__section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  font-size: 1.6rem;
}
.ameblo__section ul {
  font-size: 1.6rem;
}
.ameblo__section ul a {
  display: block;
}

/* greeting__section */
.greeting__section {
  margin-bottom: 200px;

}
.greeting__section__img{
  text-align: center;
  margin-top: 80px;
}
.greeting__section__dl{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  margin-bottom: 80px;
}
.greeting__section__dl dt{
  font-weight: bold;
  margin-top: 10px;
}
.greeting__copy{
  margin-top: 40px;
}
.blog__banner img{
  width: 60%;
}
.banner__small__wrapper {
  margin: 30px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vw;
}
.banner__small__wrapper2{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10vw;
}
.banner__small__wrapper2 a img {
  width: 52px;
  height: auto;
}
.youtube{
  font-weight: bold;
  color: #333333;
}
/* menu__section */
.menu__section h3{
  font-size: 2.4rem;
}

.service-item{
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px 20px;
  text-align: left;
  margin-top: 20px;
  border-radius: 5px;
}
.service-item__img, .service-item__img2{
  text-align: center;

}
.service-item__img img{
  width: 70%;
}
.service-item__img2 img{
  width: 80%;
}
.menu__section__dl{
background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 80px;
}
.menu__section__dl dt{
  font-weight: bold;
  margin-top: 10px;
}
.menu__section__dl dt:first-child{
  margin-top: 0;
}
.menu__wrapper__article{
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px 20px;
  text-align: left;
  border-radius:5px ;



}
.menu__wrapper__article__border{
  /* border: 1px solid #e94e77; */
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
  background-color: #ffffff;
}
.menu__wrapper__article ul{
  font-size: 1.6rem;
  line-height: 1.8;
}
.present__article{
  margin-top: 80px;
}
.present__article__img{
  text-align: center;
}
.present__article img{
  margin-top: 20px;
  width: 60%;
}
.ss__img__wrapper{
  text-align: center;
}
.ss__img__wrapper img{
  margin-top: 20px;
  width: 60%;

}
.colored-bullets {
  list-style-type: none; /* デフォルトのリストスタイルを削除 */
  padding-left: 0; /* 左の余白を削除 */
}

.colored-bullets li {
  display: flex; /* 横並びに配置 */
  align-items: flex-start; /* 上端を揃える */
  gap: 10px; /* 丸とテキストの間隔 */
  margin-bottom: 10px; /* アイテム間のスペース */
}

.colored-bullets li::before {
  content: ''; /* コンテンツは空 */
  flex-shrink: 0; /* 縮小しない */
  width: 10px; /* 丸の幅 */
  height: 10px; /* 丸の高さ */
  background-color: #e94e77; /* 丸の色 */
  border-radius: 50%; /* 丸くする */
  margin-top: 6px; /* テキストの1行目と揃えるための微調整 */
}


.sub__p{
  margin: 80px 0 80px;
}
/* フローチャート */
.flowchart {
  text-align: center;
  margin-bottom: 80px;
}

.step {
  background-color: #4caf50;
  color: white;
  padding: 20px 4px;
  margin: 10px;
  border-radius: 5px;
  display: inline-block;
  width: 150px;
  font-size: 1.8rem;
}

.arrow {
  font-size: 24px;
  margin: auto;
}
/* お申込みボタン */
.apply-button__wrapper {
  text-align: center;
  margin-top: 40px;
}
.apply-button {
  display: inline-block;
  background-color: #4caf50;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 90%;
  text-align: center;
}

/* .apply-button:hover {
  background-color: #45a049;
} */



/* feedback__section */
.feedback__section__img{
  margin-bottom: 80px;
}
.feedback__section img {
  margin-top: 10px;
}
.feedback__section dl{
  font-size: 1.6rem;

}
.feedback__section dt {
  font-weight: bold;
  margin-bottom: 10px;
  color: #4aa1e6;
}
/* access__section */
/* .access__section  {
  margin-bottom: 200px;
} */
.access__section h4{
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
}
/* tokusyo__section */

/* テーブル */
.provide_long {
  width: 100%;
  border-collapse: collapse;
  margin: 80px 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.provide_long th,
.provide_long td {
  border: none;
  padding: 10px;
  text-align: left;
  display: block;
  font-size: 16px; /* スマホ用のフォントサイズを統一 */
}

.provide_long th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.provide_long td {
  background-color: rgba(255, 255, 255, 0.3);
}

.provide_long tr {
  margin-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}

.provide_long th {
  background-color: #ffffff;
}

.provide_long td:before {
  content: attr(data-label);
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.ss__wrapper{
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ss__wrapper img{
  width: 30%;
  margin-top: 20px;
}

.important__name{
  font-size: 2.4rem;
}
/* privacy__section */
/* sub__footer */
.sub__footer{
  margin-bottom: 200px;
}
#pagetop {
  position: fixed; /* ページに固定 */
  bottom: 100px; /* 画面下からの距離 */
  right: 20px; /* 画面右からの距離 */
  display: flex; /* フレックスボックスの設定 */
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* 左右中央揃え */


}
#pagetop a {
  display: flex; /* フレックスボックスの設定 */
  align-items: center; /* 上下中央揃え */
  text-decoration: none; /* 下線を消す */
  color: #e94e77; /* テキストの色 */
  font-size: 1.6rem; /* フォントサイズ */
}
#pagetop img {
  margin-right: 5px; /* 画像とテキストの間のスペース */
}
.footer__info {
  display: none;
}
#pagetop {
  display: none; /* デフォルトで非表示にする */
}
.accordion-open #pagetop {
  display: block; /* アコーディオンが閉じているときは表示する */
}
#pagetop a {
  font-size: 2rem;
}
#g-nav #pagetop {
  display: block; /* アコーディオンが閉じているときは表示する */
}




footer {
  padding: 30px 0;
  text-align: center;
  font-size: 1.2rem;
}
footer {
  font-size: 2rem;
  width: 100%;
  box-sizing: border-box;
background-color:#ffffff;
}
.footer__info {
  display: block;
}

.footer__info__icon {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
footer p {
  color: #666666;
  font-size: 1.0rem;

}
@media (min-width: 768px) {
  html {
    /* font-size: calc(100vw * 16 / 768); */
}
.sp__br {
  display: none;
}
/* header */
header h1 {
  font-size: 2.4rem;
  line-height: 1.2;

}

/* youtube */
.youtube__player {
  width: 50%; /* PC幅50% */
  padding-top: 28.125%; /* PC用: 4:3ではなく16:9に対応するため、アスペクト比を調整 */
  margin: 0 auto; /* 中央揃え */
}

/* greeting__section */
.greeting__section__img{
  margin:80px auto 0;
  text-align: center;
}
.greeting__section img{
width: 60%;
  margin-bottom: 160px;
}
/* menu__section */
.present__article__img{
  text-align: center;
  margin: 40px auto;
  width: 60%;

}
.provide_long {
  display: table;
}

.provide_long th, .provide_long td {
  display: table-cell;
  padding: 12px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.provide_long tr {
  border-bottom: none;
}

.provide_long td:before {
  display: none;
}


}

@media (min-width: 1024px) {
  html {
    /* font-size: calc(100vw * 18 / 1024); */
}
.container{
  max-width: 1000px;
  margin: 0 auto;
}
section p,dt,dd {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 2.0;
}
ul{
  font-size: 1.6rem;
}
header{
  height: 100px;
}
/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */
/* header h1 {
  font-size: 1.5vw;
  font-weight: bold;
} */

.sp__h1 {
  font-size: 2.0rem;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  gap: 2vw;
  font-weight: bold;
}
.header__info {
  font-size: 1vw;
  font-weight: bold;
  display: block;
}


.hamburger-menu_container {
  display: none;
}
.header__nav {
  display: block;
}
section h3,section h4 {
  font-size: 1.8rem;
}
/* hero__section */
.hero__section{
  /* max-width: 1000px; */
  margin-top: 100px;
  height: calc(100vh - 100px);

}
.hero__section h1{
  margin: 80px auto 30px;
}
.hero__section__wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* .hero__section img {
  width: 90%;
} */
/* .hero__section__inner img{
  width: 44%;
} */
 /* ameblo__section */
 .ameblo__section{
  margin-top: 40px;
 }
/* greeting__section */
.greeting__section img{
  width: 40%;
  margin-bottom: 20px;
}
.blog__banner img{
  width: 40%;
}
/* menu__section */
.service__wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-item img{
  width: 70%;
}

.present__article__img img{
  width: 100%;
}

.flowchart {
  display: flex;
  justify-content: space-between;
}
.arrow{
  transform: rotate(-90deg); /* 矢印を右向きに回転 */
}
/* feedback__section */
.feedback__section__img{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
.feedback__section img{
  width: 48%;
  height: auto;
}
/* footer */
footer p{
  font-size: 1.4rem;
}
}
