@charset "UTF-8";
/* CSS Document */
/*薄ピンク: #FBE1E1
　薄黄緑：#EBF2C5
ロゴ色ピンク：#F19EC2
ロゴ色黄緑：#B8D200
*/

/* PC時の追尾リンク */
.tuibi {
  position: fixed;
  bottom: -150px; /* 初期は非表示 */
  right: 0;
  z-index: 100;
  background-color: #F19EC2;
  border-radius: 20px 0 0 20px;
  text-decoration: none;
  color: #fff;
  transition: bottom 0.5s ease;
  padding: 20px;
  display: block;
  max-width: 220px;
}

/* 表示時にスライドアップ */
.tuibi.show {
  bottom: 50px;
}

/* 中身のテキスト */
.tuibi-inner p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.7rem;
  margin: 0;
}

/* スマホ時のレイアウト調整 */
@media screen and (max-width: 800px) {
  .tuibi {
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    max-width: none;
  }

  .tuibi.show {
    bottom: 0; /* 常に画面下に表示 */
  }
	.br-pc {
    display: none;
  }
}



html {
  scroll-behavior: smooth; /* スムーズスクロールを有効化 */
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 水平方向のスクロールを防ぐ */
}


/*全体の動き*/



#section-01{
	height: 100vh;
}

/* 全体のTOP部分のスタイル */

.top {
	position: relative;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: space-between; /* 要素同士を均等に間隔を取る */
  
}
.top img{
	position: absolute;
	top:0;
	right: 0;
	max-height: 80vh;
	max-width: 80%; 
  border-radius: 0 0 0 100px;
}
/* テキスト部分のスタイル */
.top-text {
  position: relative;
  top: 180px;
  left: 8%;
  margin-top: 20px;
  max-width: 30%; 
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  writing-mode: vertical-rl; /* 縦書きに設定 */
    background-color: rgba(255, 255, 255, 0.90);
    z-index: 20;
}
.top-text h1 {
  font-size: 2rem; /* キャッチコピーのフォントサイズを設定 */
  color: #454545;
  font-weight: bold; /* 太字で強調 */
  line-height: 1.8rem;
  line-height: 4rem;
  margin: 0;
}

/* SVGアニメーションのスタイル */
.svg-animation {
  position: absolute; /* 全画面に広がるようにするため絶対位置に設定 */
  top: 25%;
  left: 0;
  width: 100%; /* 画面全体の幅に合わせる */
  height: auto;
  z-index: 10; /* 背景に配置する */
  pointer-events: none; /* ユーザーの操作を無効にする（クリックなどをSVGで遮らない） */
}

.st0 {
  fill: none;
  stroke: red;
  stroke-width: 4.4px;
  stroke-dasharray: 1000; /* Safari用の初期設定 */
  stroke-dashoffset: 1000; /* Safari用の初期設定 */
  transition: stroke-dashoffset 2.5s ease-out;

  /* Safari固有のプレフィックス */
  -webkit-stroke-dasharray: 1000;
  -webkit-stroke-dashoffset: 1000;
  -webkit-transition: stroke-dashoffset 2.5s ease-out;
}
/* レスポンシブ対応のスタイル */
@media screen and (max-width: 1200px) {
	
	#section-01{
		height: 80vh;
	}
	.top{
		margin-top: 50px;
	}
	.top img{
		width: 95%;
		max-width: 95%;
	}
.top-text {
  position: absolute;
  left: 50%; /* 横方向の位置を中央に */
	top:50vh;
  transform: translateX(-50%); /* 横方向に中央揃え */
  writing-mode: horizontal-tb; /* 横書きモードを指定 */
  max-width: 80%; /* 最大幅を80%に制限 */
	width: 80%;
  text-align: center; /* 子要素を中央揃え */
	background-color: transparent;
	
}

.top-text h1 {
  font-size: 1.5rem; /* フォントサイズ */
  line-height: 2rem; /* 行間 */
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), /* 光のぼかし効果 */
               0 0 20px rgba(255, 255, 255, 0.8); /* 光の拡散効果 */
}

  .svg-animation {
    top: 13vh;
  }
}
@media screen and (max-width: 800px){
	.top-text h1{
		font-size: 1rem;
	}
}

/*私たちの存在意義*/
.us {
	text-align: left;
  position: relative;
	margin-top: 100px;
  margin-bottom: 200px;
}

.us p {
  width: 70%;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 3rem;
  text-align: center;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3); /* ほんのりぼかし */
}

.st0 {
  margin-top: 20px;
  position: absolute;
  fill: none;
  stroke: red;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2px; /* 線の太さも半分に調整 */
  stroke-dasharray: 2000; /* stroke-dasharrayとstroke-dashoffsetも比例して調整 */
  stroke-dashoffset: 2000;
  z-index: -88888;
}
/*共通タイトル*/

.title h1{
	font-size: 4rem;
	color: #F19EC2;
	margin: 0;
}
.title h2{
	font-size: 1.2rem;
	position: relative;
}
.title h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #fa4141;
}

/*アムールの特徴*/
.tokucyou{
	width: 80%;
	margin: 0 auto 200px;
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
}
.tokucyou h2 {
	color: #F19EC2;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  background-image: linear-gradient(transparent 60%, #EBF2C5 60%); /* 黄緑のマーカー */
  background-size: 0% 100%; /* 初期は幅ゼロ */
  background-repeat: no-repeat;
  transition: background-size 0.6s ease; /* マーカーが伸びる */
}

.tokucyou h2.marker-active {
  background-size: 100% 100%; /* 全幅まで広げる */
}

.tokucyou p{
	font-size: 1.5rem;
	text-align: left;
	width: 77%;
	margin: 0 auto;
	line-height: 3.5rem;
}

@media screen and (max-width: 768px) {
.tokucyou p{
	width: 95%;
	
	}
}
/*サービス*/
.service {
  position: relative; /* 親要素として基準を設定 */
  background-color: #fff;
  padding: 100px 0;
  overflow: hidden;
  z-index: 0; /* セクション内でのレイヤー管理 */
}

.service-top-circle {
  position: absolute;
  top: 0; /* serviceセクションの最上部に配置 */
  left: 50%; /* 水平方向に中央揃え */
  transform: translateX(-50%); /* 中央寄せ */
  width: 300px;
  height: 150px;
  background-color: #faf6f3;
  border-bottom-left-radius: 200px; /* 半円の下部を作成 */
  border-bottom-right-radius: 200px;
  z-index: -1; /* serviceの背景扱いに */
}
@media screen and (max-width: 768px) {
  .service-top-circle {
    width: 200px;
    height: 100px;
    top: -50px;
  }


.service-scroll ul{
	flex-wrap: wrap;
}
.service-scroll li{
	width: 50%;
	min-width: 100px;
}
	.service-scroll h1 {
  font-size: 1rem;
		color: aqua;
}
}

.service-scroll {
  position: sticky;
  top: 0; /* 固定 */
  display: flex;
  align-items: center;
}

.service-scroll ul {
  display: flex; /* 横並びにする */
  gap: 50px; /* アイテム間のスペース */
  list-style: none;
  justify-content: center;
  padding: 0;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.2s ease-out;
	
}

.service-scroll li {
  flex-shrink: 0; /* サイズを固定 */
  width: 20%;
  text-align: center;
}

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

.service-scroll h1 {
  font-size: 1.5rem;
  margin: 10px 0;
	color: #B8D200;
}

.service a{
	text-decoration: none;
	font-size: 1.5rem;
	color: #fff;
	background-color: #F19EC2;
	border-radius: 20px;
	padding: 10px 20px;
	margin-right: 100px;
}

@media screen and (max-width: 768px) {
	.service-scroll h1{
		font-size: 1.2rem;
		line-height: 1.5rem;
	}
}

.service-button {
    margin-left: auto; 
    text-align: right; /* 子要素を右寄せにする */
}

.button006 a {
	text-align: center;
	width: 300px;
    display: inline-block; /* 横幅をテキストサイズに合わせる */
    padding: 20px 30px;
    background: #FBE1E1;
    border-radius: 40px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none; /* 下線を消す */
}

.button006 a:hover {
    background: #EBF2C5;
    color: #333;
}

@media screen and (max-width: 800px) {
    .button006 a {
        width: 50%; /* モバイル時の幅 */
    }
}



/* 対象地域 */
.target {
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 100px;
  position: relative; /* 半円の基準点を設定 */
  z-index: 1;
  overflow: visible; /* 半円が見切れないように */
}

.target-01 {
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(50px); /* 下に位置 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.target-01.show {
  opacity: 1; /* 表示されるときに透明度を元に */
  transform: translateY(0); /* 元の位置に移動 */
}
.target-01 {
 
  width: 80%;
  margin: 0 auto;
}
.target-01 img{
	max-height: 50vh;
}

.target-01 a{
	max-width: 300px;
}
.chiiki h2{
	text-align: left;

}

@media screen and (max-width: 1200px){
	.target-01{
		display: block;
	}
	
}

.chiiki p {
  text-align: left;
  padding: 0px 50px;
  max-width: 800px;
  margin: 50px auto;
  font-size: 1.3rem;
}
.chiiki span{
	font-size: 1rem;
	line-height: 1.2rem;
}
.target-24h{
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	color: #B8D200;
}
.target-24h span{
	font-size: 1rem;
	color: #333;
	font-weight: normal;
}
.kochi-map {
  border-radius: 20px;
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  background-color: #FBE1E1;
  padding: 40px;
  position: relative;
  left: -10%; /* 初期位置を画面外に設定 */
  opacity: 0; /* 初期状態では透明 */
  transition: all 1.5s ease-out; /* スライドとフェードを滑らかに */
}

.kochi-map.visible {
  left: 0; /* 表示位置に移動 */
  opacity: 1; /* 表示する */
}

.target-text{
	width: 80%;
	margin: 0 auto;
	font-size: 1.2rem;
}
.target-text span{
	font-size: 1.3rem;
	font-weight: bold;
	color:#F19EC2 ;
}

@media screen and (max-width: 800px) {
	.kochi-map {
		padding: 0;
	}
	.chiiki  {
  width: 100%;
		margin: 0 auto;
}
	.chiiki p{
		width: 100%;
		padding: 0;
	}
}

/*モーダル*/
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
position: relative;
  display: inline-block; /* コンテンツの幅を画像に合わせる */
  padding: 0; /* パディングをなくして画像にフィット */
  border-radius: 10px;

}

.modal-content img {
  max-width: 80vw;
  max-height: 80vh; 
  border-radius: 10px;
  display: block; 
}
.close-modal {
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: 24px;
	font-weight: bold;
  color: #fff;
	background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  border-radius:10px;
  padding: 5px;
  cursor: pointer;
}

/*モーダル*/

/*ご利用の流れ*/

/* #flowセクションのスタイル */
#flow {
  margin-top: 150px;
  background-color: #FBE1E1;
  position: relative; /* 半円を基準に配置するため */
  padding-top: 100px; /* 半円が隠れないよう余白を追加 */
	padding-bottom: 50px;
}

/* 半円のスタイル */
.flow-top-circle {
  position: absolute;
  top: -75px; /* #flowの上に飛び出させる */
  left: 50%; /* 水平方向に中央揃え */
  transform: translateX(-50%); /* 中央寄せ */
  width: 300px; /* 半円の幅 */
  height: 150px; /* 半円の高さ */
  background-color: #FBE1E1; /* 薄ピンク色 */
  border-top-left-radius: 150px; /* 上部を丸くして半円を描画 */
  border-top-right-radius: 150px;
  z-index: 0; /* 背景として扱う */
}

/* flow-imgのスタイル */
.flow-img {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  max-height: 130vh;
  width: auto;
  max-width: 90%;
  margin-top: 20px; /* 半円から少し離す */
}

@media screen and (max-width: 768px) {
  .flow-top-circle {
    width: 200px;
    height: 100px;
    top: -50px;
  }
}



/*資格を持ったスタッフ*/
.staff {
  position: relative;
  text-align: center;
  margin-top: 0;
  padding-top: 100px;
}
.staff h3{
	font-size: 1.5rem;
}

.staff-00 {
  margin: 0 auto;
  width: 90%;
	max-width: 1200px;
  display: block;
  background-color: #fff;
  border-radius: 20px;
	padding: 10px 30px;
}
.staff-01 ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap:20px;
}
.staff-01 li{
	width: 20%;
	background-color: #F19EC2;
	border-radius: 20px;
	padding: 5px 10px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
}

.staff-02 {
    margin: 0 auto; 
    position: relative;
    width: 80%; 
    text-align: left;
	font-size: 1.3rem;
}

.staff-02 ul {
    display: flex;
    flex-wrap: wrap; 
    margin: 0; 
    list-style: none;
}

.staff-02 li {
    width: 45%; 
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: left; 
}

.staff-02 li:last-child {
    margin-left: auto; 
    margin-right: 90px;
}



@media screen and (max-width: 1100px){
	.staff-01 li {
		width: 40%;
	}
	.staff-02{
		width: 90%;
	}
	.staff-02 li{
	width: 100%;
	
}
	.staff-02 li:last-child {
     margin-left: 0px; 
		margin-right: 0px;
}
}

@media screen and (max-width: 800px) {
	
	.staff-00{
		width: 90%;
		margin: 0 auto;
		padding: 10px;
	}
		.staff h3{
	font-size: 1.1rem;
}
		.staff-01 {
  width: 90%;

}
	.staff-01 ul{
		gap:10px;
	}
	.staff-01 li{
		width: 40%;
		font-size: 1rem;
	}
.staff-02{
		width: 100%;
	}
}


/*インスタ*/

.instagram {
  margin: 100px auto;
  font-family: 'Kosugi Maru', sans-serif;
  text-align: center;
}



.instagram-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 80%;
  margin: 20px auto;
  justify-content: center;
}

.instagram-icon01 {
  display: block;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 15px;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  color: #F19EC2;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-icon01:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.instagram-icon01 img {
  width: 150px;
  transition: transform 0.3s ease;
}

.instagram-icon01:hover img {
  transform: scale(1.1);
}

.instagram-icon01 p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
}


/*お気軽にお問い合わせ*/

.inquiry{
	margin: 100px auto ;
	
}


.tel-maile{
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	margin: 0 auto;
	justify-content: center;
}

.inquiry h1{
	font-size: 2rem;
	font-weight: bold;
	color: #F19EC2;
}

.inquiry a {
    background: #F19EC2;
	border-radius: 15px;
    align-items: center;
    max-width: 400px;
	width: 80%;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: bold;
	font-size: 1.5rem;
	z-index: 10;
	padding: 10px 15px;
	text-decoration: none;
	font-family: "Noto Sans Japanese";
}

.inquiry a:hover {
    background: #EBF2C5;
    color: #333;
}

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

	.inquiry h1{
	font-size: 1.5rem;
	
}
}