.sp{
	display:none;
}

/**********************************************
    PC版 CSS
**********************************************/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');/*日本語明朝*/
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');/*見出しに使っている英語*/

    .h-alert {
        background-color: #AC0002;
        padding: 10px;
        font-size: 12px;
        color: #fff;
        text-align: center;
        position: fixed;
        top: 0;
        width: 100%;
        box-sizing: border-box;
		z-index:999;
    }

.h-alert a{
	color:#fff!important;
}
.h-alert a:visited{
	color:#fff1!important;
}


/**************************************************************
全体
**************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
    color: #000;
    text-align: left;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 13px;

    margin: 0px;
    text-align: center;
    line-height: 180%;
}
/**************************************************************
リンク
**************************************************************/
a:link {
    color: #000;
    text-decoration: none;
	transition: 1.0s ;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a:active {
    color: #000;
    text-decoration: none;
}



.main-v {
  position: relative;
  width: 100%;
  height: 100vh; /* ブラウザの縦100% */
  overflow: hidden;
}

.main-v video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* アスペクト比を保って拡大トリミング */
  z-index: -1; /* 必要に応じて背景に */
}
/* メッセージ中央配置 */
.main-v .mes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(18px, 4vw, 30px); /* 画面幅に応じて可変 */
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6); /* 背景で文字が潰れないように */
  z-index: 1;
	line-height:180%;
}

/* ===== Base ===== */
.hd-wrap{
  position: sticky; top:0; z-index:1000;
  background: rgba(255, 255, 255, 0.85); /* 白 + 半透明85% */
  backdrop-filter: blur(6px); /* 背景をぼかしてガラスっぽく */
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.hd-inner{
  max-width:1200px; margin:0 auto; padding:12px 18px;
  display:flex; align-items:center; gap:24px;
}

/* Logo */
.hd-logo img{ display:block; height:80px; width:auto; }

/* Nav */
.hd-nav{ margin-left:auto; }         /* ロゴ→ナビ間を自然に広げる */
.hd-nav ul{ display:flex; gap:28px; list-style:none; margin:0; padding:0; }
.hd-nav a{
  color:#111; text-decoration:none; font-weight:600;
  padding:8px 0; display:inline-block;
}
.hd-nav a:hover{ opacity:.75; }

/* Right cluster */
.hd-right{ display:flex; align-items:center; gap:14px; margin-left:24px; }

/* Language */
.hd-lang{ display:flex; align-items:center; gap:10px; font-weight:700; }
.hd-lang a{ color:#111; text-decoration:none; position:relative; padding:6px 0; }
.hd-lang a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:2px; background:#111;
}
.hd-sep{ color:#111; opacity:.5; }

/* Buttons */
.hd-btn{
  display:inline-grid; place-items:center;
  padding:10px 14px; line-height:1.1; text-align:center;
  color:#fff; text-decoration:none; font-weight:800;
  border-radius:8px;
}
.hd-btn small{ font-weight:700; opacity:.9; font-size:12px; }
.hd-reserve{ background:#a8d4df; }   /* 水色系 */
.hd-contact{ background:#d7cdc6; }   /* ベージュ系 */
.hd-btn:hover{ filter:brightness(0.95); }

/* Hamburger (PCでは非表示) */
.hd-hamb{
  width:36px; height:36px; display:none; place-content:center; gap:5px;
  background:transparent; border:0; padding:6px; cursor:pointer;
}
.hd-hamb span{ display:block; height:2px; background:#111; }

.why{
	padding:80px 0;
}
.why h2{
	font-size:30px;
	color:#d02e3c;
}

.why h2 img{
	height:40px;
	width:auto;
	vertical-align:middle;
	margin-right:15px;
}

/* ===== セクション全体 ===== */
.lp-block {
  padding: 80px 20px;
  background: #fff;
}
.lp-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ===== 行ごと（左右2カラム） ===== */
.lp-row {
  display: flex;
  align-items: center;
  gap: 40px;
}
.lp-row.reverse {
  flex-direction: row-reverse;
}

/* ===== 左右コンテンツ ===== */
.lp-text {
  flex: 1;
}
.lp-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 45px;
  color: #2c3e50;
}
.lp-text p {
	text-align:left;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;

}

.lp-photo {
  flex: 1;
}
.lp-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.osusume{
	background-color:#eeeeee;
	padding:80px 30px;
}

/* タイル全体 */
.tile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
  gap: 20px;
	margin-top:60px;
}

/* タイル1つ */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s ease;
}
.tile:hover img {
  transform: scale(1.1); /* 拡大して動きをつける */
}

/* オーバーレイ */
.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 70, 80, 0.9); /* 右のボックス風の濃い色 */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease;
  padding: 20px;
}
.tile:hover .tile-overlay {
  opacity: 1;
}

.tile-overlay h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.tile-overlay p {
  font-size: 13px;
  line-height: 1.6;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}


.area{
	padding:25px;
	margin-top:40px;
}

.area h3{
	font-size:18px;
	margin-bottom:30px;
}
.circle-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.circle-item {
  position: relative;
  display: inline-block;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #fff!important;
  font-weight: 700;
}

.circle-item a{
	color:#fff!important;
}

.circle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform .3s ease;
}

.circle-item .label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
	color:#fff!important;
  pointer-events: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* キラリン演出 */
.circle-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
}

.circle-item:active::after {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  0% { left: -75%; opacity: 1; }
  60% { left: 125%; opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

.circle-item:active img {
  transform: scale(0.96);
}


.blog{
	background-image:url(https://p-pata.com/pataweb/wp-content/uploads/2025/09/blog.webp);
	background-size:100%;
	padding:50px 30px 80px 30px;
}

.blog h2{
	color:#fff;
	padding:40px 0;
}
.blog-flex{
	display:flex;
	flex-wrap:wrap;
	width:1100px;
	margin:0 auto;
}

.blog-flex .bb{
	width:23%;
	margin:1%;
}

.blog-flex .bb img{
	width:100%;
	border-radius:10px;
	height:auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.blog-flex .bb h3{
	padding:10px 0;
	font-size:15px;
	color:#fff;
}

.about-p{

}

.about-p h2{
	background-color:#004484;
	padding:30px;
	font-size:20px;
	color:#fff!important;
}

.about-mv{
	background-image: linear-gradient(rgba(0, 88, 171, 0.6), rgba(0, 88, 171, 0.6)), url(https://p-pata.com/pataweb/wp-content/themes/rdsgn/image/base/hbg.jpg);
	background-color: #0058ab;
	padding:15px 0;
	background-position: center;
	text-align:center;
}
.about-mv img{
	max-width:1000px;
	height:auto;
	display:block;
	margin:0 auto;
}

.about-p h3{
	font-size:22px;
	line-height:150%;
	padding:40px 0 20px 0;
	color:#3e7dd2;
}

.about-p p{
	width:1000px;
	margin:0 auto;
	font-size:13px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.about-p .link-botan{
	width:300px;
	margin:0 auto;
	margin-top:30px;
	margin-bottom:30px;
}

.about-p .link-botan a{
	background: #007cd8;
        color: #fff;
        background-image: url(https://p-pata.com/pataweb/wp-content/themes/rdsgn/image/base/hbg.jpg);
	padding:15px;
	display:block;
	border-radius:10px;

}

.about-p .link-botan a:hover{	transition: 1.0s ;
    opacity:0.7;}
.about-p .link-botan img{
	width:100%;
	height:auto;
	display:block;
}

.footer{
	padding:10px;
	background-color:#565656;
	color:#fff;
	font-size:11px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}