
.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 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;              /* ← 左基準を中央に */
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  z-index: 1;
  line-height: 180%;
}
/************************
 共通
************************/

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
	background: rgba(255,255,255,0.9);
}
.hd-logo img {
	width:50%;
}

.hd-nav{
	display:none;
}

.hd-right{
	display:none;
}

/********************************なぜ***********************/

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

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

/* ===== セクション全体 ===== */
.lp-block {
	padding:0 20px;
  background: #fff;
}
.lp-block__inner {
  margin: 0 auto;
}

/* ===== 行ごと（左右2カラム） ===== */
.lp-row {
	margin:40px 0;

}
.lp-row.reverse {
  flex-direction: row-reverse;
}

/* ===== 左右コンテンツ ===== */
.lp-text {
  flex: 1;
}
.lp-text h2 {
	font-size:18px;
  font-weight: 700;
  margin-bottom: 25px;
  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);
	margin-bottom:20px;
}

.osusume{
	background-color:#eeeeee;
	padding:50px 20px;
}

/* タイル全体 */
.tile-gallery {
	margin-top:30px;
	margin-bottom:20px;
	padding:0 20px;
}

/* タイル1つ */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
	margin-bottom:10px;
}
.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 0;
	margin-top:40px;
}

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

}

.circle-item {
	width:32%;
	margin:0.5%;
  position: relative;
  display: inline-block;
  width: 230px;
  height: auto;
  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 20px 50px 20px;
}

.blog h2{
	color:#fff;
	padding:20px 0;
}
.blog-flex{
	margin:0 auto;
	margin-top:25px;
	display:flex;
	flex-wrap:wrap;
}

.blog-flex .bb{
	width:31%;
	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:13px;
	color:#fff;
	line-height:140%;
}

.about-p{

}

.about-p h2{
	background-color:#000;
	padding:15px;
	font-size:16px;
	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;
	background-position: center;
	text-align:center;
}
.about-mv img{
	width:100%;
	height:auto;
	display:block;
	margin:0 auto;
}

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

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

.about-p p br{
	display:none;
}

.about-p .link-botan{
	width:90%;
	margin:0 auto;
	margin-top:10px;
	margin-bottom:20px;
}

.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:10px;
	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;
}