@charset "UTF-8";

/*-------------------------------------------
共通設定
-------------------------------------------*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow: visible;
}
body, html {
  margin: 0;
  padding: 0;
}
body {
  color: #333;
}
a {
  text-decoration: none;
  transition: all 0.2s;
}
.wrapper {
    max-width: 980px;
    margin: 50px auto;
    font-size: 1rem;
    padding: 0 6%;
    word-break:break-all;
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.header {
  position: fixed;
  top: 10px;
  width: 100%;
  height: 50px;
  background: transparent;
  z-index: 3;
}

.header__inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

#header__title {
  position: relative;
  left: -10px;
}

.header__title {
  height: 50px;
  width: 125px;
  text-align: center;
  align-items: center;
  background: #FFF;
  opacity: 0.8;
  border-radius: 5px;
  z-index: 997;
}

.header__title img {
  width: 100%;
}

/* ハンバーガーとボタンのまとめ */
.header__buttons {
  display: flex;
  align-items: center;
  gap: 16px;        /* ボタン間の余白 */
} 

.hamburger,
.header__search {
  flex-shrink: 0;   /* 画面幅が狭くても縮まない */
}

.header__search {
  width: 48px;
  height: 48px;
  padding: 18px 12px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  cursor: pointer;
  z-index: 997;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;      /* 縦並びに */
  justify-content: center;
  align-items: center;                  
  font-family: "Roboto", sans-serif;
}

.header__search i {
  font-size: 20px;
  color: #888; /* ピンク */
}

.header__search span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* 🔍 検索メニュー */
.search-menu {
  position: fixed;
  top: -280px; /* 初期は非表示 */
  left: 0;
  width: 100%;
  height: 260px;
  background: #888;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.4s ease;
  z-index: 1000;
  padding-top: 30px; /* 上にスペース */
}
.search-menu.active {
  top: 0; /* 表示状態 */
}
.search-menu__inner {
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* 🔲 4つのボタンをグリッドで並べる */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列×2行 */
  gap: 20px;
  width: 100%;
}

.menu-btn {
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #ff7bac;
  color: #fff;
  transition: background 0.3s, transform 0.2s;
}

.menu-btn:hover {
  background: #d96c92;
  transform: translateY(-3px);
}

/* 閉じるボタン */
.search-close {
  background: #ccc;
  color: #555;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 10px;
}
/*-------------------------------------------
ナビゲーション
-------------------------------------------*/
.header__nav {
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #FF7BAC;
  transition: ease .5s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header__nav-items {
  padding: 100px 0 100px 0;
  list-style: none;
}

@media screen and (max-height: 700px) {
  .header__nav-items {
    padding: 100px 0 70px 0;
  }
}

.header__nav-item {
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.header__nav-item a {
  color: #FFF;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1rem;
}

.header__nav-item:last-child a {
  margin-bottom: 0;
}

/*-------------------------------------------
ハンバーガーメニュー
-------------------------------------------*/
.header__hamburger {
  width: 24px;
}

.hamburger {
  width: 48px;
  height: 48px;
  padding: 18px 12px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hamburger.active {
  background: transparent;
  box-shadow: none;
}

.hamburger span {
  height: 3px;
  background-color: rgb(255, 123, 172);
  position: relative;
  transition: ease .5s;
  display: block;
  float: right;
  border-radius: 3px;
}

.hamburger span:nth-child(1) {
  width: 12px;
  top: -6px;
}

.hamburger span:nth-child(2) {
  width: 21px;
  margin: 1px 0;
}

.hamburger span:nth-child(3) {
  width: 30px;
  margin: 6px 0;
}

/*-------------------------------------------
メニュー表示時
-------------------------------------------*/
.header__nav.active {
  transform: translateX(0);
}

/* 各項目のアニメーション */
.header__nav.active .header__nav-item:nth-child(1) {
  animation: slideIn 0.15s 0.15s forwards;
}
.header__nav.active .header__nav-item:nth-child(2) {
  animation: slideIn 0.15s 0.3s forwards;
}
.header__nav.active .header__nav-item:nth-child(3) {
  animation: slideIn 0.15s 0.45s forwards;
}
.header__nav.active .header__nav-item:nth-child(4) {
  animation: slideIn 0.15s 0.6s forwards;
}
.header__nav.active .header__nav-item:nth-child(5) {
  animation: slideIn 0.15s 0.75s forwards;
}
.header__nav.active .header__nav-item:nth-child(6) {
  animation: slideIn 0.15s 0.9s forwards;
}
.header__nav.active .header__nav-item:nth-child(7) {
  animation: slideIn 0.15s 1.05s forwards;
}

/* スライドインアニメーション */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*-------------------------------------------
Follow Us セクション
-------------------------------------------*/
.follow2 {
  text-align: center;
  color: #FFF;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn3 {
  opacity: 1;
  transform: translateX(0);
}

.header__nav.active .follow2 {
  animation: slideInRight 0.15s 1.3s forwards;
  color: #FFF;
  z-index: 9999;
}

.sns2 {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.sns2 i {
  font-size: 2rem;
  margin: 15px;
  color: #FFF;
}

.sns2 .btn3 {
  opacity: 0;
  transform: translateX(20px);
}

.header__nav.active .sns2 .btn3:nth-child(1) {
  animation: slideInRight 0.15s 1.45s forwards;
}
.header__nav.active .sns2 .btn3:nth-child(2) {
  animation: slideInRight 0.15s 1.6s forwards;
}
.header__nav.active .sns2 .btn3:nth-child(3) {
  animation: slideInRight 0.15s 1.75s forwards;
}

.sns2 i:hover {
  color: #ffafcd;
  transform: translateY(-5px);
  transition: ease .3s;
}

.header__nav-item a:hover {
  color: #ffafcd;
  letter-spacing: 0.15em;
}

/* スライドインアニメーション */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*-------------------------------------------
ハンバーガー 変形時
-------------------------------------------*/
.hamburger.active span:nth-child(1) {
  top: 6px;
  width: 35px;
  transform: rotate(225deg);
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  top: 2px;
  width: 35px;
  transform: rotate(-225deg);
  background-color: #fff;
}

.hamburger.active span:nth-child(3) {
  top: -24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #FFF;
}

.hamburger.active span:nth-child(3)::after {
  content: "close";
  font-size: 0.8rem;
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(30px);
  color: #FFF;
}

/*-------------------------------------------
背景マスク
-------------------------------------------*/
.header__nav-box-mask.active {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(255,123,172,0.55);
  transition: ease .4s;
}

/*-------------------------------------------
レスポンシブ調整
-------------------------------------------*/
@media screen and (min-height: 800px) {
  .header__nav-item a {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
@media screen and (min-height: 1000px) {
  .follow2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .header__nav-items {
    padding: 200px 0;
  }
  .sns2 i {
    font-size: 2.5rem;
    margin: 20px;
    color: #FFF;
  }
}
/*-------------------------------------------
main
-------------------------------------------*/
.top-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}

.top {
  position: relative;
  width: calc(100% + 50px);
  height: 70vh;
  border-radius: 20px;
  right: -50px;
  overflow: hidden;
}

/* 画像スワップ */
.bg-swap {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg {
  position: absolute;
  top: 50%; /* 垂直中央 */
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%) scale(1); /* 上下中央 */
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: zoomfade 10s infinite;
}

.bg1 { background-image: url("../img/32685342_m.jpg"); animation-delay: 0s; }
.bg2 { background-image: url("../img/23427324_m.jpg"); animation-delay: 5s; }

@keyframes zoomfade {
  0%   { opacity: 0; transform: translateY(-50%) scale(1); }
  10%  { opacity: 1; }
  45%  { opacity: 1; transform: translateY(-50%) scale(1.1); }
  50%  { opacity: 0; transform: translateY(-50%) scale(1.1); }
  100% { opacity: 0; transform: translateY(-50%) scale(1.1); }
}

.hero-text .new {
  margin: 0 5px;
  font-weight: 700;
  color: #ff005d;
}

#new {
  font-size: 2rem; /* メインタイトル */
}

#fut {
  font-size: 1.2rem; /* サブタイトル */
  opacity: 0.85;
  margin-top: 6px;
}

.container_02 {
  margin: 0;
  padding: 0;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
  opacity: 0;                   /* 最初は非表示 */
  transition: opacity 1s ease, transform 1s ease;
}

.container_02.active {
  opacity: 1;
  transform: translateY(-10px); 
}

.container_02 a:hover {
  opacity: 0.7;
}

.scroll-down_02 {
  position: relative;
  width: 100px;
  height: 100px; 
  color: #ff7bac;
  font-family: serif;
  text-decoration: none;
}

.circle-text_02 {
  position: absolute;
  inset: 0;                 /* 親（100×100）いっぱいに広げる */
  animation: rotate 20s linear infinite;  /* ぐるぐる回す */
}

.circle-text_02 span {
  position: absolute;
  left: 50%;
  font-size: 10px;        
  transform-origin: 0 50px;
}

.arrow_02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px; 
  height: 15px;
  border-left: 1px solid #ff7bac;
  border-bottom: 1px solid #ff7bac;
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: pulse_02 2s infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse_02 {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
  }
}

/*-------------------------------------------
mainvisual
-------------------------------------------*/
.mainvisual {
  margin-top: 30px;
  padding:  50px 6%;
  text-align: center;
  background-image: url("../img/26421638.jpg");
   /*コレ*/border-top: 3px solid #ffafcd;
    /*コレ*/border-bottom: 3px solid #ffafcd;
}
.mainvisual h1 {
  margin: 10px 5%;
  background: linear-gradient(transparent 70%, #FF7BAC 30%);
}
.mainvisual img {
  width: 100%;
  margin: 10px 0;
}
.jitu {
  text-align: left;
  padding: 2%;
}
/*-------------------------------------------
about
-------------------------------------------*/
.us {
  padding-bottom: 50px;
}
.text { 
    margin: 30px 8% 0;
    line-height: 2rem;
  }
.box1 {
    margin: 10px 5px;
}
.sticky {
    position: sticky;
    padding: 60px 0 10px;
    top: -1px;
    background-color: #ffffff;
    z-index: 1;
}
.about {
    position: relative;
    z-index: -1;
}
.slidein {
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
}
.slidein.js_active {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
/* textアニメーション */
.Headline {
  opacity: 0;
  margin: 0;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgb(0, 0, 0); /* 下線の色を指定 */
  text-decoration-thickness: 2px;
}
.Headline.is-visible{
  animation-name: SlideIn ;
  animation-duration: 0.7s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  
}

@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  50% {
    opacity: 0;
    transform: translateY(12px);
  }
75% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ここから時間差フェードインアニメーション */
/* 1秒間かけてフェードイン */
.text.is-visible h3 {
  animation-name: fadeIn1s;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
@keyframes fadeIn1s {
  0% {
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
/* 1.5秒間かけてフェードイン */
.text.is-visible p {
  animation-name: fadeIn1500ms;
  animation-delay: 1500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn1500ms {
  0% {
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
.text h3 {
  text-align: center;
}

/*-------------------------------------------
strength
-------------------------------------------*/
.strength {
  position: relative;
  border-radius: 100% / 200px;
  color: #ff005d;
  overflow: hidden; /* はみ出し隠し */
}

/* 背景画像を擬似要素に入れる */
.strength::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/355572.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.7;          /* ← ここで70%表示 */
  border-radius: inherit;
  z-index: 0;
}

/* 背景色をかぶせたい場合 */
.strength::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 175, 205, 0.1); /* 30%のピンクを上にかぶせる */
  border-radius: inherit;
  z-index: 1;
}

/* 中のテキストなどを前面に表示 */
.strength > * {
  position: relative;
  z-index: 1;
}
.strength h1 {
  font-size: 2rem;
}
.riyuu {
  position: relative;
  text-align: center; /* h3や下のboxを中央寄せ */
  padding: 100px 0 150px;
  overflow: hidden;
}
.riyuu img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  top: 140px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.riyuu h2 {
  position: relative;
  top: 10px;
}
.point {
  position: relative;
  overflow: hidden;       /* はみ出しを隠す */
  border-radius: 20px;
  margin-top: -50px;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.25));
}

.point::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -50px;    /* 右に30px */
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: inherit;
  z-index: -1;     /* 背景として配置 */
}

.point2 {
  position: relative;
  overflow: hidden;       
  border-radius: 20px;   
  margin-top: -50px;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.25));  
}

.point2::before {
  content: "";
  position: absolute;
  top: 130px;    
  right: 50px;    
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: inherit;   
  z-index: -1;    
}

.slideright {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s, opacity 0.8s;
}
.slideright.js_active {
  transform: translateX(0%);
  opacity: 1;
}

.slideleft {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 0.8s, opacity 0.8s;
}
.slideleft.js_active {
  transform: translateX(0%);
  opacity: 1;
}

.delay1 { transition-delay: 0s; }
.delay2 { transition-delay: 0.2s; }
.delay3 { transition-delay: 0.4s; }
.delay4 { transition-delay: 0.6s; }
.delay5 { transition-delay: 0.8s; }

.box13 {
  position: relative;
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #000000;
    background: #FFF;
    border-bottom: solid 6px #eee;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
    top: -10px;
    text-align: left;
}
.box13 p {
    margin: 0; 
    padding: 0;
}
.balloon3-right-btm {
  position: relative;
  display: flex;             /* ← 縦並びを使う */
  flex-direction: column;    /* ← 縦配置 */
  justify-content: center;   /* 上下中央寄せ */
  align-items: center;       /* 横中央寄せ */
  gap: 5px;                  /* 行間 */
  width: 90px;
  height: 90px;
  margin: 1.5em 15px 1.5em 0;
  background: #ffffff;
  border-radius: 50%;
  color: #ff005d;
  box-sizing: border-box;
  font-weight: bold;
  top: 70px;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.25));
}

.point-label {
  font-size: 14px;   /* 小さめ */
  line-height: 1.2;
}

.point-num {
  font-size: 26px;   /* 大きめで目立たせる */
  line-height: 1;
}

.balloon3-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  border: 15px solid transparent;
  border-left: 15px solid #ffffff;
  transform: rotate(45deg);
  z-index: 0;
}
.parent1 {
  position: relative;
  display: block;
  justify-content: center; /* 中央寄せ */
  top: 50px;
}
.parent1 p {
  margin-bottom: 10px;
}
.parent1.btn-circle-3d {
  position: relative;
  z-index: 9999;   /* 最前面に */
  pointer-events: auto;
}
.strength::before,
.strength::after {
  z-index: -1;  /* 背景は必ず一番下に */
}
/*-------------------------------------------
step
-------------------------------------------*/
.step {
  margin-bottom: 150px;
  position: relative;
  z-index: -1;
}
.step h1 {
  margin: 0;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgb(0, 0, 0); /* 下線の色を指定 */
  text-decoration-thickness: 2px;
}
.flow_design10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
}

.flow10 > li {
  list-style-type: none;
  border: 2px solid #FF7BAC;
  padding: 20px;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #FF7BAC;
}

.flow10 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow10 > li .icon10 {
  color: #FF7BAC;
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}

/*-------------------------------------------
saff
-------------------------------------------*/

/*-------------------------------------------
footer
-------------------------------------------*/
.parent {
  position: relative;
  display: flex;
  justify-content: center; /* 中央寄せ */
  top: -130px;
  margin-bottom: -100px;
}
.btn-circle-3d {
  display: inline-block;
  text-decoration: none;
  background-color: #ff005d; /* 初期は単色ピンク */
  color: #fff;
  width: 120px;
  height: 120px;
  font-size: 1.1rem;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  border: 3px solid #ffc0cb; /* 薄いピンクの枠 */
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: pointer;
}

.btn-circle-3d span {
  display: inline-block;
  transition: transform .3s ease, letter-spacing .3s ease;
}

/* ホバー時 */
.btn-circle-3d:hover {
  transform: translateY(-5px) scale(1.05); /* 浮かせる */
  box-shadow: 0 12px 25px rgba(255, 0, 93, 0.5);
  border: 3px solid #ffbc50; /* 薄いピンクの枠 */
  background: linear-gradient(135deg, #ff005d, #ffafcd); /* ホバーでグラデーション */
}

.btn-circle-3d:hover span {
  transform: scale(1.1);
  letter-spacing: 0.05em;
}

/* 内側にさりげない光沢 */
.btn-circle-3d::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
  transition: 0.5s;
}

.btn-circle-3d:hover::after {
  top: -80%;
  left: -80%;
}
 

.footer {
  background-color: #FF7BAC;
  color: #FFF;
  padding: 80px 20px 30px;
  position: relative;
  border-top-left-radius: 100% 150px;  /* 左上だけ丸める */
  border-top-right-radius: 100% 150px; /* 右上だけ丸める */
}

#footer a {
  color: #FFF;
}
.footerlogo {
  text-align: center;
}
.footerlogo img {
  width: 50%;
}
.syamei {
  font-weight: 700;
  margin-bottom: 30px;
}
.tel {
  margin-top: 20px;
}
.access {
  max-width: 980px;
  padding: 0 8%;
  word-break:break-all;
  font-size: 0.9rem;
  line-height: 1.5rem;
}
.g-works {
  margin: 30px 0 30px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 2rem;
}
.pp {
  margin-bottom: 10px;
}

/*-------------------------------------------
company
-------------------------------------------*/
#company h1 {
  margin: 0;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgb(0, 0, 0); /* 下線の色を指定 */
  text-decoration-thickness: 2px;
}
#company img {
  width: 100%;
}
.company .daihyoumei {
  text-align: right;
}
.company .daihyou {
  padding: 5% 30% 10%;
}
.keiei h2 {
  padding: 5px 10px 0;
  font-size: 1.3rem;
}
.company h3 {
  margin: 5px 0;
}
.company {
  padding-bottom: 50px;
}
.map {
  color: #FF7BAC;
}
.description div{
  display:flex;
  justify-content: flex-start;
  padding: 6px;
  border-bottom: 1px dotted #c7c7c7;
}
 .description dt {
  width: 100px;
  float: left;
}
.description dd {
  margin-left: 0;
  width: calc(100% - 100px);
}
dt::after{
  content: "："
}
.description ul {
  list-style: none;
  padding-left: 0;
}
.description li::before {
  content: "◎"; /* または "●" "■" "▶" など */
  margin-right: 0.2em;
}

/*-------------------------------------------
back
-------------------------------------------*/
.pcback, .conte, .contetext, .resview {
  display: none;
}
@media screen and (min-width: 768px) {
  .pcback{
    display: block;
    text-align: center;
    align-items: center;
    margin-top: 5%;
  }
}

@media screen and (min-width: 768px) {
  .res {
  position:absolute;
  top: 50px;
  right: 35%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  margin: 0 35px; /* 中央に配置 */
  border-radius: 10px; /* デザインのための角丸 */
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); */
  background-color: #FFF;
  /* box-shadowが表示されるように調整 */
  overflow: visible; /* 影を表示 */
  z-index: 10;
}
.clipped-content {
  clip-path: inset(0 round 10px);
  width: 100%;
  height: 100%;
}


section.conte {
position: fixed;
top: 0;
left: 0;
right: 0;
display: block;
height: 100vh;
width:auto;
background-size: auto 100%;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
/* .conte p {
  position: fixed;
  z-index: -1;
  top: 5%;
  left: 5%;
  color: rgba(177, 177, 177, 0.7);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 12rem;
} */
.contetext {
  display: block;
  position: fixed;
  z-index: -1;
  top: 25%;
  left:7%;
  transform: translate(-10%,30%);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  color: rgba(255, 0, 93, 0.7);
  text-align: center;
}
.subtext {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 2rem;
}

.img01{
background-image: url('../img/22417942_s.jpg');
position: relative;
z-index: -2;
}
.img01::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(111, 111, 111, 0.1);
  /* background-image: radial-gradient(at top,transparent 10%,rgba(255, 255, 255, 0.8)); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header__title, .header__hamburger, .header__buttons {
  display: none;
}
.header__nav{
  display: block;
  width: 35%;
    transform: translateX(0);
    background-color: transparent;
    z-index: 999;
  }
  .header__nav-item {
    opacity: 1;
    transform: translateY(0);
  }
  .follow2 {
    opacity: 1;
    transform: translateY(0);
  }
  .header__nav.sns2 {
    opacity: 1;
    transform: translateX(0); 
    z-index: 9999;
  }
  .sns2 .btn3 {
    opacity: 1;
    transform: translateX(0); 
  }
  .header__nav-items {
    padding: 50px 0 100px;
  }
  .header__nav-item a {
    color: #FF7BAC;
}
.follow2 {
  color: #FF7BAC;
}
.follow2 i {
  color: #FF7BAC;
}
.top {
  position: relative;
  width: calc(100% + 50px);
  height: min(800px, calc(0.7 * (100vh - 50px)));
  border-radius: 20px;
  right: -50px;
  overflow: hidden;
}
}

@media screen and (min-width: 980px) {
.new {
  font-size: 3rem;
  margin-bottom: 5px;
}
}

/*-------------------------------------------
privacy policy
-------------------------------------------*/
.ppcontainer {
  padding: 50px 0;
}
.ppcontainer h1 {
  font-size: 1.8rem;
}
.ppcontainer h2 {
  font-size: 1.4rem;
  padding: 30px 0 10px;
}

.ppcontainer ul {
  list-style: none;
  padding-left: 0;
}
.ppcontainer li::before {
  content: "◆"; /* または "●" "■" "▶" など */
  margin-right: 0.5em;
}
