@charset "utf-8";



/* 共通設定 */
* {
  box-sizing: border-box;
}
html {

  font-family: "Sawarabi Gothic", sans-serif;
  scroll-behavior: smooth;
}
body {
  
  margin: 0;
}

/* header 共通 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  padding: 0 20px;
  z-index: 1000;
  gap: 20px;
}

/* 左エリア： subtitle + ロゴ 縦並び左揃え */
.header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}



.logo-img {
  width: 100%;
  height: auto;
}

/* ハンバーガー */
.hamburger {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 1300; /* ヘッダー上に確実に表示 */
}
.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #008767;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  top: 22px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}





/*========= PC ===============*/
@media only screen and  (min-width : 500px) {
.pc { display:inline!important; }
.sp { display:none!important; }



  /* 固定追従ヘッダー */
  header {
    height: 85px;
    padding: 0 30px;
  }

  .header-left {
    min-width: 120px;
    max-width: 200px;
  }

  .logo-img {
    max-width: 120px;
  }

  /* 中央にメニューとインスタアイコン横並び */
  .header-center {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    align-items: center;
    gap: 32px;
    flex: 1;
  }

  /* PCメニュー表示 */
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
  }

  .nav-links a {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    width: auto !important;
    padding: 0 10px;
  }


  /* SPアイコン・ハンバーガーは非表示 */
  .sp-icons {
    display: none !important;
  }

  /* ハンバーガー非表示 */
  .hamburger {
    display: none;
  }

  /* メニューは画面幅内 */
  .menu {
    display: none !important;
  }

  /* 固定追従ヘッダー */



/* 波 */
  .wave-svg {
    position: absolute;
    width: 75%;
    height: 150px;
    left: 0;
    right: 0;
     margin: 0 auto;
  }
  /* 上部波1・2 */
#wave1 { 
  top: 80px; 
  z-index:10; 
  height: 600px;

  
}
#wave2 { top: 80px; z-index:11; height: 500px; }

  /* メインビジュアル */
  .main-visual {
    position: relative;
    height: 700px;
    bottom: 0;
   left: 0;
   right: 0;
   margin: 250px auto 0 auto;
    width: 100%;
  }

/* 波3コンテナ */
#wave3-container {
  position: absolute;
  width: 80%;               /* 横幅80% */
  max-width: 1440px;        /* 最大幅 */
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 400px;
  z-index: 1;
}

/* 波3画像 */
.wave3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#clipWave3);
  display: block;
}

/* 波4 */
#wave4 {
  position: absolute;
  bottom: 50px;
  width: 80%;               /* 波3と同じ幅 */
  max-width: 1440px;        /* 最大幅 */
  left: 50%;
  transform: translateX(-50%);
  height: 500px;

}
/* 波 */

/* 文字コンテナ */
.wave-text-between {
  position: absolute;
  top: 10%;               /* .main-visual の上端を基準 */
  left: 55%;
  transform: translateX(-50%);
  width: 80%;           /* 波3と同じ幅 */
  max-width: 1440px;
  text-align: left;
  z-index: 5;           /* 波より上に表示 */
}

.wave-text-between h1 {
  font-size: 40px;
  color: #008767;
  line-height: 1.4;
}


/* 企業理念 */
 #企業理念 {
    position: relative;  /* 基準をリセット */
    margin: 200px 0  100px 0;
    padding: 20px;
    z-index: 2;
  }

  #企業理念 h2 {
    font-size: 40px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 20px;
    margin: 30px 0 60px 0;
    text-align: center;
    color: #008767;
  }

    #rinen{
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: #1a1a1a;
  }
/* 企業理念 */


/* 事業内容 */
 #business {
    position: relative;  /* 基準をリセット */
    margin: 100px 0  100px 0;
    padding: 100px 0;
    z-index: 2;
    background-color: #efedeb;
  }

  #business h2 {
    font-size: 40px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 25px;
    margin: 30px 0 60px 0;
    text-align: center;
    color: #008767;
  }


  .accordion-006 {
    max-width: 60%;
    margin: 0 auto 50px auto;
    background-color: #008767;
    border-radius: 5px;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-size: 25px;
    color: #ffffff;
    cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: '';
    transition: transform .3s;
}

.accordion-006[open] summary::after {
    transform: rotate(225deg);
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    font-size: 18px;
    line-height: 30px;
    padding: 20px 10px;
    color: #1a1a1a;
     border: 2px solid #008767;    /* 線の太さ・種類・色 */
    border-radius: 5px;           /* 角を丸くする場合 */
    background-color: #fff;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
}


/* 事業内容 */


/* 会社概要 */
 #会社概要 {
    position: relative;  /* 基準をリセット */
    margin: 100px 0  100px 0;
    padding: 100px 0;
    z-index: 2;
  }

  #会社概要 h2 {
    font-size: 40px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 25px;
    margin: 30px 0 60px 0;
    text-align: center;
    color: #008767;
  }

#table {
  align-items: center;
  width: 40%;
  margin: 0 auto;
  border-collapse: collapse; /* セルの線をくっつける */
}

#th, #td {
  border: 1px solid #727171; /* 線の色 */
  padding:30px  10px ;
  text-align: left;
}

#td{
    font-size: 17px;
    background-color: #fff;
    line-height: 20px;
}

#th {
  vertical-align: middle; 
    font-size: 17px;
   line-height: 25px;
  color: #fff;
  background-color: #727171; /* 項目の背景色 */
  width: 40%; /* 項目列の幅調整 */
  border-bottom: 2px solid #fff; /* 下線だけ白く */
  border-top: none;
  border-left: none;
  border-right: none;
    font-weight: normal;
}

/* 企業理念 */


/* お問い合わせ */
 #お問い合わせ {
    position: relative;  /* 基準をリセット */
    margin: 100px auto  100px auto;
    padding: 100px 0;
    z-index: 2;
    background-color: #efedeb;
  }

  #お問い合わせ h2 {
    font-size: 40px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 25px;
    margin: 30px 0 60px 0;
    text-align: center;
    color: #008767;
  }

  #table2 {
  align-items: center;
  width: 40%;
  margin: 0 auto;
  border-collapse: collapse; /* セルの線をくっつける */
}

#th2, #td2 {
  border: 1px solid #008767; /* 線の色 */
  padding:30px  10px ;
  text-align: left;
}

#td2{
    font-size: 17px;
    background-color: #fff;
    line-height: 20px;
}

#th2 {
  vertical-align: middle; 
    font-size: 17px;
   line-height: 25px;
  color: #fff;
  background-color: #008767; /* 項目の背景色 */
  width: 40%; /* 項目列の幅調整 */
  border-bottom: 2px solid #fff; /* 下線だけ白く */
  border-top: none;
  border-left: none;
  border-right: none;
    font-weight: normal;
}


    #bun{
    max-width: 35%;
    font-size: 17px;
    line-height: 40px;
    margin: 40px auto 40px auto ;
    text-align: left;
    color: #1a1a1a;
  }

/* お問い合わせ */



/* 所在地 */
 #所在地 {
    position: relative;  /* 基準をリセット */
    margin: 100px auto  0 auto;
    padding: 100px 0;
    z-index: 2;
    background-color: #fff;
    max-width: 60%;
  }

  #所在地 h3 {
    font-size: 30px;
    line-height: 1.4;
    text-align: left;
    color: #1a1a1a;
    margin: 0 10px 20px 10px;
    border-bottom: #1a1a1a 1px solid;
  }

#chizu{
    margin: 0 auto;
    text-align: center;
}

  iframe{
    width: 95%;
    height: 500px;
  }

  #bun2{
    font-size: 17px;
    line-height: 40px;
    margin: 40px 0 40px 0 ;
    transform: translateX(10%);
    text-align: left;
    color: #1a1a1a;
  }


/* 所在地 */


/* フッター */

footer{
  padding: 50px 10px 100px 10px;
  background-color: #008767;
}

#fotter2 ul {
max-width: 60%;
}

#fotter2 ul li img{
width: 20%;
margin-bottom: 40px;
}

#fotter2 ul li{
margin: 20px 20px 30px 20px;
font-size: 20px;
color: #fff;
}

#fotter3 ul li{
margin: 20px;
color: #fff;
line-height: 25px;
}
#sonota{
  font-size: 15px;
}

#privacypolicy{
  font-size: 13px;
  padding-top: 20px;
}


#kaisha{
  font-size: 18px;
  border-top: 1px solid #fff;
  padding-top: 40px;
}

#copy{
  background-color: #fff;
  color: #008767;
  text-align: center;
  padding: 20px ;
}

/* フッター */

/* ローディング画面 */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008767;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

/* ロゴの左から右マスク表示 */
.logo-wrapper {
  position: relative;
  width: 250px; /* 適度なサイズに調整 */
  height: auto;
  overflow: hidden;
}

.logo2 {
  width: 100%;
  display: block;
  transform: translateX(-100%);
  animation: reveal 1.5s forwards;
}

@keyframes reveal {
  to {
    transform: translateX(0);
  }
}




/* メインコンテンツは最初非表示 */
#content {
  display: none;
  padding: 20px;
}
/* ローディング画面 */




/* プライバシーポリシー */
  #privacypolicy2 {
    position: relative;  /* 基準をリセット */
    margin: 100px auto ;
    padding: 100px 0;
    z-index: 2;
    background-color: #fff;
    max-width: 60%;
  }

  #privacypolicy2 h1 {
    font-size: 40px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 25px;
    margin: 30px 0 60px 0;
    text-align: center;
    color: #008767;
  }


    #privacypolicy2 h2{
    font-size: 25px;
    color: #1a1a1a;
    font-weight: 600;
    margin:40px 0;
    
  }


  #pnaiyou{
    font-size: 17px;
    line-height: 30px;
  }
  


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



/* TOPへ戻る */

/* CSS */
.to-top {
  position: fixed;
  bottom: 30px;
  right: 200px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background-color: #555;
}



    /* TOPへ戻る */
  }






/*========= スマホ ===============*/
@media only screen and  (max-width : 500px) {

.pc { display:none!important; }
.sp { display:inline!important; }


.sp-icons{
  background-color: #f7f5f4;
  padding: 20px;
}

.overlay {
  position: fixed;
  top: 80px; /* ヘッダーの高さ分 */
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  pointer-events: none; /* 初期状態でクリックを無効 */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* 表示時のみクリックを有効 */
}

  /* 固定追従ヘッダー */
  header {
    height: 80px;
    padding: 0 12px;
  }

  .header-left {
    min-width: 100px;
    max-width: 200px;
  }

  .logo-img {
    max-width: 120px;
  }

  .header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  /* メニューは横並び非表示 */
  .nav-links {
    display: none;
  }

  /* SPアイコン+ハンバーガー表示 */
  .sp-icons {
    display: flex !important;
    gap: 16px;
    align-items: center;
    margin-left: auto;
  }

  .sp-icons a{
    text-decoration: none;
    color: #1a1a1a;
  }


  /* ハンバーガー表示 */
  .hamburger {
    display: block;
  }

  /* メニュー幅と位置 */
  .menu {
    top: 80px; /* ヘッダー下から */
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.8);
   z-index: 1000; /* overlayより上にしてもOK */
   pointer-events: auto; /* リンクをクリックできるように */
}
  .menu.active {
    transform: translateX(0);
  }

  /* メニュー（SP） */
  .menu {
    position: fixed;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px;

    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 900; /* ヘッダーより下 */


  }

  .menu nav a {
    border-bottom: 2px dotted #79a991;
    padding:  60px 0;
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between; /* テキスト左寄せ、>右寄せ */
}

 .menu nav a::after {
    content: ">";
    font-size: 28px; /* 大きくしても縦位置ずれない */
    color: #1a1a1a;
  }




  /* 波 */
  .wave-svg {
    position: absolute;
    width: 100%;
    height: 150px;
    left: 0;
  }
  /* 上部波1・2 */
#wave1 { top: 80px; z-index:10; height: 600px; }
#wave2 { top: 80px; z-index:11; height: 500px; }

  /* メインビジュアル */
  .main-visual {
    position: relative;
    height: 500px;
    width: 100%;
    margin-top: 250px; /* 波1・2の下 */
  }

  /* 波3クリッピング */
  #wave3-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; 
 height: 250px;
  z-index:1;
  }
.wave3-img {
  position: relative;  /* これが重要 */
  width: 100%;
  object-fit: cover;
  clip-path: url(#clipWave3);
}


/* main-visual 内の波3・波4共通設定 */

#wave4 {
  position: absolute;
  bottom: 0;
  left: 0;
  height:350px;
  width: 100%;
}

 .wave-text-between {   
    width: 90%;
  }
  .wave-text-between h1 {
    color: #008767;
    font-size: 30px;
    line-height: 60px;
    margin: 0 20px;  
  }

/* 波 */
  

/* 企業理念 */
 #企業理念 {
    position: relative;  /* 基準をリセット */
    margin: 200px 0  100px 0;
    padding: 20px;
    z-index: 2;
  }

  #企業理念 h2 {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 18px;
    margin: 20px 0 50px 0;
    text-align: center;
    color: #008767;
  }

    #rinen{
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    color: #1a1a1a;
  }
/* 企業理念 */


/* 事業内容 */
 #business {
    position: relative;  /* 基準をリセット */
    margin: 100px 0;
    padding: 100px 0;
    z-index: 2;
    background-color: #efedeb;
  }

  #business h2 {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 18px;
    margin: 20px 0 50px 0;
    text-align: center;
    color: #008767;
  }



  .accordion-006 {
    max-width: 95%;
    margin: 0 auto 30px auto;
    background-color: #008767;
    border-radius: 5px;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: '';
    transition: transform .3s;
}

.accordion-006[open] summary::after {
    transform: rotate(225deg);
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    font-size: 14px;
    line-height: 30px;
    padding: 20px 5px;
    color: #1a1a1a;
     border: 2px solid #008767;    /* 線の太さ・種類・色 */
    border-radius: 5px;           /* 角を丸くする場合 */
    background-color: #fff;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
}


/* 事業内容 */




/* 会社概要 */
 #会社概要 {
    position: relative;  /* 基準をリセット */
    margin:   100px 0;
    padding: 20px 0;
    z-index: 2; 
    background-color: #fff;
  }

  #会社概要 h2 {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 18px;
    margin: 20px 0 50px 0;
    text-align: center;
    color: #008767;
  }

#table {
  align-items: center;
  width: 95%;
  margin: 0 auto;
  border-collapse: collapse; /* セルの線をくっつける */
}

#th, #td {
  border: 1px solid #727171; /* 線の色 */
  padding:20px  10px ;
  text-align: left;
}

#td{
  background-color: #fff;
    font-size: 16px;
    line-height: 20px;
}

#th {
  vertical-align: middle; 
    font-size: 16px;
  color: #fff;
  background-color: #727171; /* 項目の背景色 */
  width: 40%; /* 項目列の幅調整 */
  border-bottom: 2px solid #fff; /* 下線だけ白く */
  border-top: none;
  border-left: none;
  border-right: none;
    font-weight: normal;
}

/* 企業理念 */



/* お問い合わせ */
 #お問い合わせ{
    position: relative;  /* 基準をリセット */
    margin: 100px 0;
    padding: 100px 0;
    z-index: 2;
    background-color: #efedeb;
  }

  #お問い合わせ h2 {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

    #subt{
    font-size: 18px;
    margin: 20px 0 50px 0;
    text-align: center;
    color: #008767;
  }


  #bun{
    font-size: 15px;
    line-height: 25px;
    text-align: left;
    margin: 20px 0 20px 10px;
    color: #1a1a1a;
  }

    #bun2{
    font-size: 15px;
    line-height: 25px;
    text-align: left;
    margin: 20px 0 20px 10px;
    color: #1a1a1a;
  }


  
#table2 {
  align-items: center;
  width: 95%;
  margin: 0 auto;
  border-collapse: collapse; /* セルの線をくっつける */
}

#th2, #td2 {
  border: 1px solid #008767; /* 線の色 */
  text-align: left;
      padding:20px  10px ;
}

#td2{
  background-color: #fff;
  font-size: 16px;
  line-height: 20px;
}

#th2 {
  vertical-align: middle; 
    font-size: 16px;
  color: #fff;
  background-color: #008767; /* 項目の背景色 */
  width: 40%; /* 項目列の幅調整 */
  border-bottom: 2px solid #fff; /* 下線だけ白く */
  border-top: none;
  border-left: none;
  border-right: none;
    font-weight: normal;
}

  /* お問い合わせ */



/* 所在地 */
 #所在地 {
    position: relative;  /* 基準をリセット */
    margin: 100px 0  100px 0;
    padding: 100px 0;
    z-index: 2;
    background-color: #fff;
  }

  #所在地 h3 {
    font-size: 30px;
    line-height: 1.4;
    text-align: left;
    color: #1a1a1a;
    margin: 0 10px 20px 10px;
    border-bottom: #1a1a1a 1px solid;
  }

#chizu{
    margin: 0 auto;
    text-align: center;
}

  iframe{
    width: 95%;
    height: 300px;
  }


/* 所在地 */


/* フッター */

footer{
  padding: 50px 10px 50px 10px;
  background-color: #008767;
}

#fotter2 ul li img{
width: 40%;
margin-bottom: 40px;
}

#fotter2 ul li{
margin: 20px 20px 30px 20px;
color: #fff;
font-size: 15px;
line-height: 25px;
}

#fotter3 ul li{
margin: 20px;
color: #fff;
line-height: 25px;
}
#sonota{
  font-size: 15px;
}

#kaisha{
  font-size: 18px;
  border-top: 1px solid #fff;
  padding-top: 40px;
}


#privacypolicy{
  font-size: 13px;
    padding-top: 20px;
}

#copy{
  background-color: #fff;
  color: #008767;
  text-align: center;
  padding: 20px ;
  font-size: 15px;
}


/* フッター */



/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008767;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

/* ロゴの左から右マスク表示 */
.logo-wrapper {
  position: relative;
  width: 250px; /* 適度なサイズに調整 */
  height: auto;
  overflow: hidden;
}

.logo2 {
  width: 100%;
  display: block;
  transform: translateX(-100%);
  animation: reveal 1.5s forwards;
}

@keyframes reveal {
  to {
    transform: translateX(0);
  }
}




/* メインコンテンツは最初非表示 */
#content {
  display: none;
  padding: 20px;
}
/* ローディング画面 */




/* プライバシーポリシー */
 #privacypolicy2 {
    position: relative;  /* 基準をリセット */
    margin: 100px auto;
    padding: 100px 0;
    z-index: 2;
    background-color: #fff;
    max-width: 95%;
  }

  #privacypolicy2 h1 {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
  }

  #subt{
    font-size: 18px;
    margin: 20px 0 50px 0;
    text-align: center;
    color: #008767;
  }


  #privacypolicy2 h2{
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 30px 0;
    line-height: 25px;
  }


  #pnaiyou{
    font-size: 14px;
    line-height: 25px;
  }
  

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


  /* TOPへ戻る */

.to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background-color: #555;
}



    /* TOPへ戻る */

  }