@charset "utf-8";
/* CSS Document */
/* 基本レイアウト
================================================== */

html {
  font-size: 62.5%;
}

body {
  color: #222;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
  font-size: 1.6em;
  line-height: 1.5;
  background-color: #FFF;
  counter-reset: cntStar;
}

#gHeader {
  text-align: center;
}

main {
  background: url(../img/bg.png) repeat-y top center ;
  background-size: 100% auto;
}

#mHeader {
  text-align: center;
}

#mHeader h1 {
  padding: 54px 32px 0 10px;
}

#mHeader h1 + p {
  padding: max(6vw, 35px) 30px 20px 10px;
}

.inner {
  max-width: 1030px;
  padding: 0 10px;
  margin:  0 auto;
  box-sizing: border-box;
}

article h2 {
  margin-bottom: 40px;
  text-align: center;
}

#message {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#message section {
  width: 48%;
}

#message .box {
  position: relative;
  top: -68px;
  max-width: 285px;
  margin: 0 40px 0 auto;
  background-color: #FFF;
  border-radius: 20px;
  box-sizing: border-box;
}

#message section:nth-child(even) {
  position: relative;
  top: 130px;
}

#message section:nth-child(even) .box {
  top: -68px;
  max-width: 285px;
  margin: 0 auto 0 20px;
}

#message section:nth-child(even) figure {
  text-align: right;
}

#message .box h3 {
  position: relative;
  padding: 12px 20px 2px 20px;
  background-image: linear-gradient(71deg, rgba(217, 153, 200, 1), rgba(231, 213, 150, 1));
  border-radius: 20px 20px 0 0;
  font-size: 2.2rem;
  color: #FFF;
}

#message .box h4 {
  display: none;
}

#message .box > div {
  padding: 10px 20px;
  font-weight: bold;
}

#message .box .text {
  line-height: 1.4;
  font-size: 2rem;
}

#message .box .more {
  display: none;
}

#message .box .date {
  display: none;
  margin-bottom: 0.15em;
  text-align: right;
  font-size: 1.8rem;
}

#message button {
  display: block;
  max-width: 212px;
  margin: 1.5em auto 0.5em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

/* モーダル */

#modalBox {
  position: fixed;
  width: 92%;
  max-width: 962px;
  inset: 0;
  margin: auto;
  border: none;
  background: none;
  overflow: hidden;
  z-index: 11;
}

#modalBody {
  position: relative;
  clear: both;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  background-image: linear-gradient(67deg, rgba(247, 225, 236, 1), rgba(251, 239, 206, 1));
  box-sizing: border-box;
  z-index: 12;
}

#modalClose {
  position: relative;
  float: right;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 20px;
  appearance: none;
  z-index: 13;
}

#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  z-index: 10;
}

.modalOpen #modalOverlay {
  visibility: visible;
}

.modalOpen #modalBox {
  animation: fadein 0.3s linear;
}

@keyframes fadein {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}

#modalBody .headArea {
  margin-bottom: 10px;
  padding: 10px 0;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: #666 solid 3px;
  overflow: hidden;
}

#modalName {
  float: left;
  font-size: 2.4rem;
}

#modalDate {
  float: right;
  margin-top: 0.5em;
  font-size: 1.6rem;
  font-weight: bold;
  vertical-align: bottom;
}

#modalText {
  font-size: 2rem;
  font-weight: bold;
}

/* 動画 */

.movwrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.movwrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#inquiry {
  margin: 10em auto 70px;
  max-width: 1570px;
  text-align: center;
}

#inquiry a {
}

/* 監修 */

aside {
  display: flex;
  justify-content: center;
  background-color: #fcf8f5;
  padding: 20px 5px;
}

aside .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
}

aside h2 {
  width: 130px;
  margin-bottom: auto;
}

aside h3 {
  width: calc(49% - 130px);
}

aside p {
  width: 49%;
  font-weight: bold;
}


/* 汎用 */

.sub {
  font-size: 80%;
}

.inlineBlock {
  display: inline-block;
}

.btnArea {
  text-align: center;
  margin-bottom: 2em;
}

.btn {
  display: inline-block;
  min-width: 260px;
  border-radius: 3em;
  border: solid 2px #000;
  padding: 0.5em 1em 0.4em;
  box-sizing: border-box;
  background-color: #FFF;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.2s linear;
}

.disc li {
  margin-bottom: 0.5em;
}

main h1, h2, h3, h4, p {
  font-family: "M PLUS Rounded 1c";
}

header img,
main img {
  max-width: 100%;
  height: auto;
}

.snsArea ul {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

.snsArea li {
  margin: 0 30px;
}

.snsArea li img {
  max-width: 100%;
  height: auto;
}

#gFooter {
  padding: 2em 10px;
  background-color: #9a9ca6;
  color: #FFF;
}

#gFooter .inner {
  margin: 0 auto;
  text-align: center;
}

#fNav {
}

#fNav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}

#fNav ul li {
  margin: 0.5em 1em;
}

#fNav ul li a {
  display: inline-block;
  padding: 0.5em 1em;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
}

#fNav ul li:first-child::after {
  content: "｜";
  position: relative;
  right: -1em;
  font-weight: bold;
}

#gFooter p {
  text-align: center;
  margin-bottom: 1em;
}

#gFooter p small {
  font-size: 1.6rem;
  font-weight: bold;
}


@media screen and (max-width: 1200px) {
  article .inner {
    padding: 1em 10px;
  }
}

@media screen and (max-width: 1050px) {
s
  #inquiry a {
    top: 0;
    right: 10px;
    max-width: 30%;
  }

  #message button {
    margin: 0.5em auto 0;
  }

  #message .box {
    margin: 0 0 0 35%;
  }

  #message section:nth-child(even) .box {
    margin: 0 35% 0 0;
  }

  #message .box h3 {
    font-size: 2rem;
    padding: 2px 10px;
  }

  #message .box > div {
    padding: 10px;
  }

  #message .box .text {
    font-size: 1.6rem;
  }

  #message .box .date {
    font-size: 1.4rem;
  }

  #modalBody {
    padding: 20px;
  }

  #modalClose {
    padding: 0;
  }

  #modalName {
    font-size: 1.8rem;
  }

  #modalDate {
    font-size: 1.4rem;
  }

  #modalText {
    font-size: 1.6rem;
  }

  aside .inner {
    display: block;
    max-width: 520px;
  }

  aside .inner > * {
    width: inherit;
    text-align: center;
  }

  aside .inner p {
    text-align: left;
  }

}

@media screen and (max-width: 540px) {

  #mHeader h1 {
    padding: 7vw 0 0;
  }

  #mHeader h1 img {
    width: 22%;
  }

  #mHeader h1 + p {
    padding: 2vw 0 25vw;
  }

  #mHeader h1 + p img {
    width: 28%;
  }

  article h2 {
    max-width: 280px;
    margin:  0 auto 5vw;
  }

  #message {
    justify-content: center;
  }

  #message section {
    display: flex;
    align-items: flex-start;
    width: inherit;
  }

  #message figure {
    width: 50%;
  }

  #message figure img {
    position: relative;
    max-width: 100%;
    right: -10%;
  }

  #message .box {
    top: 12vw;
    margin: 0 0 22vw;
    width: 45%;
    border-radius: 10px;
  }

  #message section:nth-child(even) {
    top: 0;
  }

  #message section:nth-child(even) figure {
    position: relative;
    left: -3%;
    z-index: 1;
  }

  #message section:nth-child(even) .box {
    top: 8vw;
    right: -5%;
    margin: 0 0 18vw;
    order: -1;
    z-index: 2;
  }

  #message .box h3 {
    border-radius: 10px 10px 0 0;
    font-size: 1.2rem;
  }

  #message .box .text {
    font-size: 1.2rem;
  }

  #message .box .date {
    font-size: 1.1rem;
  }

  #message .box .play {
    width: 80%;
  }

  #modalName {
    font-size: 1.6rem;
  }
  
  #modalDate {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  #modalText {
    font-size: 1.4rem;
    font-weight: bold;
  }

  aside {
    margin-top: 20px;
  }

  aside h3 img {
    width: 70%;
  }

  aside .inner p {
    font-size: 1.2rem;
    margin: 0 5%;
  }

  .snsArea ul {
    display: block;
    margin: 0 0 0 1.5em;
  }

  .snsArea li {
    margin: 0;
  }

  .snsArea li:last-child {
    margin: 0 0 0 0.1em;
  }

  #fNav ul {
    display: block;
    margin-bottom: 2em;
  }

  #fNav ul li a {
    font-size: 1.6rem;
  }

  #fNav ul li:first-child::after {
    display: none;
  }

  #inquiry {
    margin: 0 auto 10vw;
    text-align: center;
  }

  #inquiry img {
    max-width: 320px;
    width: 90%;
  }

  #gFooter p small {
    font-size: 1rem;
    font-weight: normal;
  }
}


@media screen and (max-width: 480px) {

  #gHeader,
  article {
    min-width: 320px;
  }

  #message section button {
    left: 0;
  }

}

@media screen and (max-width: 320px) {

 main {
    background-size: 320px auto;
    background-position: center 0;
 }
}

/* 202607 改修 */

.sp{
  display: none;
}
@media screen and (max-width:768px){
  .sp{
  display: block;
}
}
#gHeader{
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width:768px){
  #gHeader p{
    width: 32%;
  }
}
#mHeader{
  width: 100%;
  height: 35vw;
  min-height: 558px;
  background-image: url(../img/mHeader_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
@media screen and (max-width:768px){
  #mHeader{
    background-image: url(../img/mHeader_bg_sp.png);
    height: 100vw;
    min-height: auto;
  }
}
#mHeader h1 + p{
  font-size: min(2.2vw,21px);
  text-shadow: 2px 2px 8px rgba(255,255,255,1);
}
@media screen and (max-width:768px){
  #mHeader h1 + p{
    font-size: 2.6vw;
    padding-top: 6.4vw;
  }
}
#message .samishii_talent_list{
  display:flex;
flex-wrap: wrap;
}
#message .samishii_talent_list li{
  width:calc(100% / 3);
}
@media screen and (max-width:768px){
#message .samishii_talent_list li{
  width:calc(100% / 2);
}
}
#message .samishii_talent_list li img{
  width:100%;
  aspect-ratio: 1 / 1.25;
}