/*
Theme Name: ぷるぷぷぷりんのサイトページのテーマ
*/
@charset "utf-8";

/*-----------------------------------
テーマ用CSS設定　自由入力
-----------------------------------*/
*{
  box-sizing: border-box;
  margin: 0;
}

body{
  margin: 0;
  width: 100%;
  background-color: #ffffff;
}

.mainSection {
  min-height: 1000px;
  max-width: 1100px;
  max-width: 1470px;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width:767px){
  .mainSection{
    min-height: 700px;
    padding: 10px 0;
  }
}

section{
  border: 10px solid #ffc9ee;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 50%);
  border-radius: 10px;
  padding: 45px 10%;
  margin: 20px;
}
@media screen and (max-width:767px){
  section{
  margin: 10px;
  border: 5px solid #ffc9ee;
  padding: 20px 10px;
  }
}

h2{
  text-align: center;
  color: #ffbbee;
  font-size: 2em;
}
@media screen and (max-width:767px){
  h2{
    font-size: 1.5em;
  }
}
h3{
  text-align: center;
  color: #ffc9ee;
  font-size: 1.5em;
  margin: 0;
}
@media screen and (max-width:767px){
  h3 {
    font-size: 1.2em;
  }
}

/*区切り線（hr）*/
.hr_text{
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 2.5em;
  opacity: 1;
}
.hr_text::before{
  content: '';
  background: -webkit-linear-gradient(left, transparent, #ffc9ee, transparent);
  background: linear-gradient(to right, transparent, #ffc9ee, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
}
.hr_text::after{
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #ffc9ee;
  font-weight: bold;
  font-size: 30px;
  background-color: #ffffff;
}
@media screen and (max-width:767px){
  .hr_text{
  height: 1.5em;
  }
  .hr_text::after{
  font-size: 20px;
  }
}

/*■情報用のグリッド設定*/
.grid_info{
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap:20px;
}
@media screen and (max-width:767px){
  .grid_info{
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}
.grid_info h3{
  color: #ffbbee;
}
.grid_info p{
  color: #464646;
  font-size: 1.2em;
  margin: 0;
}
@media screen and (max-width:767px){
  .grid_info p{
    font-size: 1.2em;
    text-align: center;
  }
}


/*■PCスマホ切り替え*/
.pc{
display: block;
}
.sp{
display: none;
}
@media screen and (max-width: 767px)
{
.pc{
display: none;
}
.sp{
display: block;
}
}

/*■■■ポップアップ■■■*/
.popup_background{
background-color: rgb(0 0 0 /50%);
width: 100%;
height: 100%;
position: fixed;
z-index: 100;
top: 0;
padding: 10px;
}
.modal {
background-color: #ffffff;
border: 5px solid #ffc9ee;
border-radius: 10px;
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: 25px 20px;
padding: 10px;
}
.modal_close{
background-color: #ffffff;
color: #ffc9ee;
border: 5px solid #ffc9ee;
border-radius: 50%;
position: fixed;
right: 10px;
width: 40px;
height: 40px;
font-size: 22px;
text-align: center;
font-weight: bold;
}
.modal ul{
list-style: none;
padding: 0;
}
.modal li{
color: #ffffff;
margin: 10px;
}
.modal li a{
  background-color: #ffc9ee;
padding: 10px;
  color: #ffffff;
  display: list-item;
  text-decoration: none;
}
.headerMenu_grid{
display: grid;
grid-template-rows: 1fr 12fr;
}
.headerMenuPop_listArea{
  /* height: 100%; */
  overflow-y: scroll;
  /*border: 2px solid #81BEF7;*/
  top: 50px;
  margin: 0 auto;
  bottom: 10px;
  position: absolute;
  right: 10px;
  left: 10px;
}
::-webkit-scrollbar{
　　width: 10px;
}
::-webkit-scrollbar-track{
　　background: #fff;
　　border-left: solid 1px #ececec;
}
::-webkit-scrollbar-thumb{
　　background: #ccc;
　　border-radius: 10px;
　　box-shadow: inset 0 0 0 2px #fff;
}