@charset "utf-8";
/* contact CSS Document */
/*body header {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', 'arial', 'helvetica', sans-serif;
}*/
html {
  font-size: 62.5%; /* ルートの文字サイズを10pxに設定 */
  scroll-behavior: smooth;
}
body {
  font-size: 1.6em; /* bodyのフォントサイズを1.6em（16px）に設定 */
}
main {
  width: 100%;
}
h1 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #2E2D9C;
  margin: 1rem auto;
  background: #CCC;
}
.p-inner {
  margin: 2rem;
}
.p-head {
  display: flex;
  margin: 0 auto;
}
.p-lead {
  display: block;
  margin: 0 auto 3rem;
}
.p-lead__title {
  position: relative;
  margin: 2rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
}
.p-lead__title:after {
  content: "";
  display: block;
  width: 80%;
  height: 0.5rem;
	margin: 0 auto;
  background: -webkit-linear-gradient(to right, #69DEFF, #F3C186);
  background: linear-gradient(to right, #69DEFF, #F3C186);
}
.p-lead__content {
  margin: 1rem;
  text-align: center;
}
.p-terms {
  display: block;
  margin: 0 auto;
  text-align: left;
}
.p-terms__wrapper {
  margin: 1rem 0;
}
.p-section__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.p-section__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0.5rem 2rem;
  padding: 0.5rem 2rem;
  /*background: #ECF8FF;*/
  position: relative;
}
.p-section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, #69DEFF, #F3C186);
  background: linear-gradient(to bottom, #69DEFF, #F3C186);
}
.p-content {
  display: flex;
  flex-direction: column;
  width: calc(33% - 4rem); /* 1行に3個並ぶように調整 */
  margin: 2rem;
  margin-top: 0.5rem;
  border: 1px solid #CCC;
  box-shadow: 0px 2px 5px #CCC;
}
.p-content__item {
  object-fit: fill;
  width: 100%;
}
.p-content__title {
  font-size: 2rem;
  margin: 0.5rem 1rem;
}
.p-content__detail {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin: 0 1rem 1rem;
  color: #8B8A94;
}
/*ボタン*/
.p-button {
  display: flex;
  width: 80%;
  padding: 1rem;
  margin: auto;
  margin-bottom: 2rem;
  font-weight: bold;
  border: 0.2rem solid #2E2D9C;
  border-radius: 0.5rem;
  color: #2E2D9C;
  background-color: #FFF;
  cursor: pointer;
  position: relative;
}
/* ▼右側の黒い帯（紺色） */
.p-button::after {
  content: "";
  width: 20%;
  height: 100%;
  background-color: #2E2D9C;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0.2rem 0.2rem 0; /* 右側だけ角丸 */
  z-index: 0;
}
.p-button::before {
  content: "";
  position: absolute;
  right: 3.5%; /* アイコン位置調整（左に寄せ過ぎない） */
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../assets/image/download_icon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1; /* 帯より手前 */
  overflow: hidden;
}
.p-content a {
  text-decoration: none;
  color: #2E2D9C;
}
.p-content a:visited {
  color: #2E2D9C;
}
.p-button:hover, .p-button:focus {
  color: #2E2D9C;
}
.p-lead__img {
  width: 20rem;
}
.p-section {
  margin-top: 1rem;
}
.p-section__comment {
  margin: 0.5rem 0;
}
/*ページトップに戻るボタン*/
.p-button__top:link, .p-button__top:hover, .p-button__top:visited, .p-button__top:active {
  color: #FFFFFF;
  text-decoration: none;
  position: fixed;
  left: auto;
  top: auto;
}
.p-button__top {
  position: fixed;
  text-align: center;
  padding: 3rem 2rem 2rem;
  bottom: 2rem;
  right: 2rem;
  font-weight: bold;
  background: #2E2D9C;
  color: #FFF;
  text-decoration: none;
  border-radius: 10rem;
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.4);
  z-index: 10000;
}
.p-button__top::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-left: 0.4rem solid #fff;
  border-top: 0.4rem solid #fff;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}
/*利用規約*/
.p-terms__title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
.p-terms__article {
  font-size: 2.4rem;
  font-weight: bold;
}
.p-terms__content {
  margin: 0.5rem 0;
  padding-left: 2rem;
  list-style-type: decimal;
}
.p-terms__content-list {
  margin-left: 2rem;
  list-style-type: disc;
}
.p-terms__banner {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 1rem;
  margin: 2rem auto;
  background: #2E2D9C;
  color: #FFFFFF;
  border-radius: 5rem;
}
.p-terms__button {
  color: #FFFFFF;
  text-decoration: underline;
  padding-right: 2.5rem;
  margin: 1rem;
  background: url("../assets/image/link_icon_v2.webp") right center/2rem auto no-repeat;
}
.p-terms__button:link, .p-terms__button:hover, .p-terms__button:visited, .p-terms__button:active {
  color: #FFFFFF;
}
.p-terms__announce {
	margin: 1rem 0;
	padding: 1rem;
	border: 0.2rem solid #000000;
}
/*近日公開*/
.p-content__ComingSoon {
  text-align: center;
  width: 80%;
  padding: 1rem;
  margin: auto;
  margin-bottom: 2rem;
  font-weight: bold;
  border: 0.2rem solid #363636;
  border-radius: 0.5rem;
  color: #FFFFFF;
  background-color: #464646;
}
/*お問い合わせ*/
.p-contact__box {
  margin: 2rem;
}
