@font-face {
  font-family: 'Yosugara';
  src: url('fonts/yosugaraver1_2.ttf') format('truetype');
}
html {
  scrollbar-width: none;       /* Firefox用 */
  -ms-overflow-style: none;    /* IE, Edge古い版用 */
}

html::-webkit-scrollbar {
  display: none;               /* Chrome / Safari / Edge(Chromium)用 */
}

body {
  overflow-y: scroll;           /* スクロールは可能にする */
  overflow-x: hidden;           /* 横方向は必要に応じて */
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Yosugara', sans-serif;
}

header {
  display: flex;
  top: 0;
  left: 0;
  width:  100%;
  height: 120px;
  background-color: rgba(200, 245, 245, 0.7);
  align-items: center;
  position: fixed;
  z-index: 10;
}
.logo {
  position: absolute;
  top: 0.5%;
  left: 3.13%;
  font-size: 312.5%;
}
.lists {
  list-style: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 156.25%;
  display: flex;
}
.TOP_P a,
.SAKUHIN a,
.froom a {
  margin-right: 30px;
  color: #000;
  text-decoration: none;
}
a:hover {
  background-color: rgba(142, 154, 154, 0.1);
  border-radius: 8px;
}
footer {
  position: fixed;
  display: flex;
  height: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(200, 245, 245, 0.7);
  text-align: center;
  padding: 10px 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  gap: 20px;
}
.PP {
  color: black;
  text-decoration: none;
}


/* === HELLO セクション === */
.HELLO {
  margin-top: 35vh;
  margin-left: 30vw;
  font-size: 1.9rem;
  text-align: left;
}

.HELLO1 {
  margin-left: 6vw;
  margin-bottom: -1vh;
  font-size: 2.5rem;
}

.HELLO2,
.HELLO6 {
  margin-left: -3.5vw;
}

.HELLO3,
.HELLO4,
.HELLO5,
.HELLO6 {
  margin-top: -2.5vh;
}

.HELLO6 {
  margin-bottom: 10vh;
}

/* === フォーム === */
form {
  width: 33vw;
  margin: 30vh auto ;
  text-align: left;
  padding-bottom: 10vh;
}

label {
  display: block;
  margin-bottom: 1vh;
  font-size: 1.6rem;
}

.form {
  margin-bottom: 1vh;
  font-size: 1.6rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 21vw;
  padding: 1vh;
  background-color: #f0faff;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

textarea {
  width: 34vw;
  height: 10vh;
}

.NG {
  color: red;
  font-size: 1.25rem;
  margin-left: 0.3vw;
}

button {
  background-color: #f0faff;
  color: #333;
  font-size: 1rem;
  padding: 1vh 2vw;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 5vh;
  margin-left: 20vh;
  display: block;
}

button:hover {
  background-color: #dff5ff;
}

.RK {
  font-size: 1.25rem;
  color: #000;
  text-decoration: none;   /* 下線を消す */
}

.RK a {
  color: #000;             /* リンク文字も黒に固定 */
  text-decoration: none;   /* 下線を消す */
}

.RK a:hover {
  text-decoration: underline; /* ← hover時だけ下線を出す場合はこの1行を残す */
}


.RK:hover {
  text-shadow: 0 0 5px rgba(84, 156, 228, 0.2);
}

.menu-btn {
  display: none;
}




/* === スマホ版 === */ @media screen and (max-width: 768px) { header { height: 8vh; padding: 0 4vw; } .logo { font-size: 1.5rem; } .menu-btn { display: block; position: fixed; top: 2vh; right: 5vw; font-size: 2rem; z-index: 1000; cursor: pointer; } .lists { position: fixed; top: 0; right: -100%; width: 60vw; height: 100vh; background: rgba(212, 243, 245, 0.9); backdrop-filter: blur(8px); flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s ease; border-radius: 20px 0 0 20px; } .lists.is-open { right: 0; } .HELLO { margin-top: 10vh; margin-left: 5vw; font-size: 1.1rem; } .HELLO1 { margin-left: 8vw; margin-top: 10vh; font-size: 1.3rem; } form { width: 80vw; margin: 10vh auto; } label, .form { font-size: 0.9rem; margin-bottom: 1vh; } input[type="text"], input[type="email"], input[type="tel"], textarea { width: 70vw; padding: 1.5vh; font-size: 0.8rem; } textarea { width: 80vw; height: 12vh; } button { font-size: 0.9rem; padding: 1vh 4vw; margin: 5vh auto; } header { display: flex; top: 0; left: 0; width: 100%; height: 120px; background-color: rgba(200, 245, 245, 0.7); align-items: center; position: fixed; z-index: 10; } .logo { position: absolute; top: 0.5%; left: 3.13%; font-size: 312.5%; } .lists { list-style: none; position: absolute; top: 20px; right: 20px; font-size: 156.25%; display: flex; } .TOP_P a, .SAKUHIN a, .froom a { margin-right: 30px; color: #000; text-decoration: none; } a:hover { background-color: rgba(142, 154, 154, 0.1); border-radius: 8px; } .PP { color: black; text-decoration: none; } } /* === スマホ版 === */ @media screen and (max-width: 768px) { header { height: 8vh; padding: 0 4vw; } .logo { font-size: 1.5rem; } .menu-btn { display: block; position: fixed; top: 2vh; right: 5vw; font-size: 2rem; z-index: 1000; cursor: pointer; } .lists { position: fixed; top: 0; right: -100%; width: 60vw; height: 100vh; background: rgba(212, 243, 245, 0.9); backdrop-filter: blur(8px); flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s ease; border-radius: 20px 0 0 20px; } .lists.is-open { right: 0; } .HELLO { margin-top: 10vh; margin-left: 5vw; font-size: 1.1rem; } .HELLO1 { margin-left: 8vw; margin-top: 10vh; font-size: 1.3rem; } form { width: 80vw; margin: 10vh auto; } label, .form { font-size: 0.9rem; margin-bottom: 1vh; } input[type="text"], input[type="email"], input[type="tel"], textarea { width: 70vw; padding: 1.5vh; font-size: 0.8rem; } textarea { width: 80vw; height: 12vh; } button { font-size: 0.9rem; padding: 1vh 4vw; margin: 5vh auto; } header { display: flex; top: 0; left: 0; width: 100%; height: 120px; background-color: rgba(200, 245, 245, 0.7); align-items: center; position: fixed; z-index: 10; } .logo { position: absolute; top: 0.5%; left: 3.13%; font-size: 312.5%; } .lists { list-style: none; position: absolute; top: 20px; right: 20px; font-size: 156.25%; display: flex; } .TOP_P a, .SAKUHIN a, .froom a { margin-right: 30px; color: #000; text-decoration: none; } a:hover { background-color: rgba(142, 154, 154, 0.1); border-radius: 8px; } .PP { color: black; text-decoration: none; } } /* === スマホ版 === */ @media screen and (max-width: 768px) { header { height: 60px; background-color: rgba(200, 245, 245, 0.7); z-index: 5; } .logo { position: absolute; left: 3.13%; top: 2%; font-size: 156.25%; } .menu-btn { position: fixed; display: block; top: 2%; right: 5%; font-size: 30px; cursor: pointer; z-index: 1000; } .lists { position: fixed; top: 0; right: -100%; width: 50%; height: 40%; background: rgba(212, 243, 245, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s ease; border-radius: 20px 0 0 20px; z-index: 1500; } .lists.is-open { right: 0; } .lists li { margin: 20px 0; } .menu { position: fixed; top: 0; right: -100%; width: 70%; height: 100%; background-color: rgba(181, 250, 255, 0.2); transition: right 0.4s ease; z-index: 1500; } .menu.is-open { right: 0; } .menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 1000; } .menu-overlay.is-open { display: block; } .HELLO { margin-top: 0px; margin-left: -5px; font-size: 10px; } .HELLO1 { margin-left: 135px; margin-top: 100px; font-size: 10px; } .HELLO2 { margin-left: 90px; margin-top: 15px; } .HELLO3 { margin-left: 100px; margin-top: 5px; } .HELLO4 { margin-left: 80px; margin-top: 5px; } .HELLO5 { margin-left: 88px; margin-top: 5px; } .HELLO6 { margin-left: 110px; margin-top: 5px; margin-bottom: 100px; } form { width: 240px; margin: 60px 120px; } label { display: block; margin-bottom: 5px; font-size: 12.5px; text-align: left; } .form { position: relative; left: -25px; display: block; margin-bottom: 5px; font-size: 12.5px; text-align: left; } input[type="text"], input[type="email"], input[type="tel"], textarea { width: 150px; padding: 7px; background-color: #f0faff; border: 0.5px solid #ccc; border-radius: 5px; font-size: 7.5px; } input[type="checkbox"] { transform: scale(0.8); margin-right: 1%; vertical-align: middle; } textarea { height: 50px; width: 210px; } .NG { color: red; font-size: 10px; margin-left: 2.5px; } button { background-color: #f0faff; color: #333; font-size: 8px; padding: 5px 15px; border: none; border-radius: 5px; cursor: pointer; margin-left: 25%; margin-top: 10px; margin-bottom: 50px; } button:hover { background-color: #dff5ff; } .RK { font-size: 0.625rem; color: #000; text-decoration: none; /* 下線を消す */ } .RK a { color: #000; /* リンク文字も黒に固定 */ text-decoration: none; /* 下線を消す */ } .RK a:hover { text-decoration: underline; /* ← hover時だけ下線を出す場合はこの1行を残す */ } .a :hover { text-shadow: 0 0 2.5px rgba(84, 156, 228, 0.1); } footer { position: fixed; display: flex; bottom: 0; left: 0; width: 100%; height: 50px; /* お問い合わせ基準サイズ */ background-color: rgba(200, 245, 245, 0.7); text-align: center; padding: 0; z-index: 100; align-items: center; justify-content: center; gap: 20px; font-size: 63%; line-height: 1.2; text-decoration: none padding-bottom: env(safe-area-inset-bottom); /* ← スマホ（iPhone/Android）UI干渉防止 */ } .PP { color: black; text-decoration: none; } .PP:hover { text-decoration: underline; text-decoration: none; } } text-decoration: underline; } .PP a { text-decoration: none; /* リンクの下線を消す */ } }