@charset "UTF-8";
/* CSS Document */

html {
  font-family: 'Noto Sans Japanese', "游ゴシック体", "Yu Gothic", YuGothic,'Helvetica Neue',Helvetica,Arial,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic ProN',Roboto,'Droid Sans','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 14px;
  line-height: 1.5;
  webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; /* ページトップに戻るボタン用 */
}

body {
  background-color: #ffffff;
}

#main-photo img { 
  width: 100%;
  vertical-align: bottom;
}

a { color: #000000; text-decoration: none; }
div.copylight a { color: #b7282d; }


/* 全体
------------------------------------------------------------ */
#wrapper,#main-photo {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
}

.inner {
  margin: 0 auto;
  width: 100%;
}

/* PC用
------------------------------------------------------------ */
@media only screen and (min-width:960px){
  #wrapper,#main-photo,.inner{
    width: 960px;
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 750px) {
  #wrapper,.inner{
    width: 95%;
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 580px) {
  #wrapper,.inner{
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
}


/* header
------------------------------------------------------------ */
.header {
  background-color: #ffffff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #ffffff;
}

.header li a {
  display: block;
  padding: 22px 20px 18px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 362px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */
@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 22px 30px 18px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}


/* PageTitle
------------------------------------------------------------ */
h1.title {
  margin: 20px 0 5px 0;
  padding: 0;
}


/* スライド写真
------------------------------------------------------------ */
.photo-slider {
  position: relative;
  width : 100%;
  padding-top: 70%;
}

.photo-slider img {
  position: absolute;
  top: 0;
  left: 0;
  animation: ChangeImage 12s both;
  opacity: 0;
  width : 100%;
  height: auto;
}

@keyframes ChangeImage{
  0%  { opacity: 0;}
  10% { opacity: 1;}
  100%{ opacity: 1;}
}

.photo-slider img:nth-of-type(1) {
  animation-delay: 0s;
}
.photo-slider img:nth-of-type(2) {
  animation-delay: 3s;
}
.photo-slider img:nth-of-type(3) {
  animation-delay: 6s;
}
.photo-slider img:nth-of-type(4) {
  animation-delay: 9s;
}
.photo-slider img:nth-of-type(5) {
  animation-delay: 12s;
}

/* ResChuって何？欄
------------------------------------------------------------ */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { 
  display: block !important;
  margin: 0 auto;
}
.sp { display: none !important; }

.txt-reschu img {
  width: 100%;
  max-width: 960px;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 650px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}

/* youtube埋め込み設定
------------------------------------------------------------ */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ニュース欄
------------------------------------------------------------ */
.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333333;
  border-bottom: 1px solid #cccccc;
  padding: 15px 10px;
}
.news-list .item:first-child {
  border-top: 1px solid #cccccc;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 14px;
  color: #999999;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}

.item a       {
  color: #b7282d;
  text-decoration: underline;
}
.item a:hover { color: #ffcc00; }

@media screen and (max-width: 767px){
.news-list .item a{
      flex-wrap: wrap;
    }
.news-list .item .date{
      min-width: 100px;
    }
.news-list .item .title{
      margin-top: 0px;
    }
}


/* QA Page
------------------------------------------------------------ */
.qa-mds-q {
  font-weight: 800;
}

.qa-icon-q {
  font-weight: 800;
  margin: 10px 5px 10px 0;
  padding: 8px 10px 8px 10px;
  border-radius: 50%;
  border: 2px solid #75bbff;
  color: #75bbff;
}

.qa-icon-a {
  font-weight: 800;
  margin: 0 5px 0 0;
  padding: 8px 10px 8px 10px;
  border-radius: 50%;
  border: 2px solid #ff8d8d;
  color: #ff8d8d;
}

.qa-position-a {
  vertical-align: top;
}


/* Schedule Page
------------------------------------------------------------ */
.schedule-page {
  margin: 20px 0 30px 0;
}

.schedule-page img {
  width: 100%;
  max-width: 960px;
}

.schedule-page-top {
  margin: 20px 0 10px 0;
}

.schedule-page-top img {
  width: 100%;
  max-width: 960px;
}

.schedule-top a {
  color: #b7282d;
  text-decoration: underline;
}

/* Sale Page
------------------------------------------------------------ */
.sale-page {
  margin: 20px 0 30px 0;
}

.sale-page img {
  width: 100%;
  max-width: 960px;
}

.sale { margin: 0 0 30px 0; }

.sale th { 
  white-space: nowrap; /* セル内で自動改行させない */
  vertical-align: top; /* 上寄せ */
  text-align: left; /* 左揃え */
}
.sale td { 
  vertical-align: top; /* 上寄せ */
  text-align: left; /* 左揃え */
}


/* メンバー設定
------------------------------------------------------------ */
.profile { margin-bottom: 30px !important; }
.profile img { width: 100%; }
.emoji img { width: 14px; }

/* 時田 えみり Emiri Tokita */
.color-pink         { color: #ff99cc; }

/* 白浜 ともか Tomoka Shirahama */
.color-orange       { color: #ffcc00; }

/* 日南 みら Mira Hinami */
.color-red          { color: #fb2c5b; }

/* 一ノ瀬 ことね Kotone Ichinose */
.color-light_purple { color: #cc99ff; }

/* 藤田 さき Saki Fujita */
.color-light_blue   { color: #99ccff; }


/* 3カラム
------------------------------------------------------------ */
*, *:before, *:after {
    box-sizing: border-box;
}
.col_3{
	max-width: 960px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_3 > *{
    width: calc( 33.33333% - 8px ) ;
    margin-right: 12px;
    margin-bottom: 12px;
}
.col_3 > *:nth-child(3n){
    margin-right: auto;
}
.col_3 > * > *{
    position: relative;
	overflow: hidden;
}
@media screen and (max-width: 960px) {
    .col_3 > *{
        width: calc( 50% - 6px ) ;
    }
    .col_3 > *:nth-child(3n){
        margin-right: 12px;
    }
    .col_3 > *:nth-child(2n){
        margin-right: auto;
    }
}
@media screen and (max-width: 750px) {
    .profile {
      font-size: 16px;
	}
    .profile table {
	  padding-left: 20px;
	}
}
@media screen and (max-width: 580px) {
    .col_3 > *{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .col_3 > *:nth-child(3n){
        margin-right: auto;
        margin-left: auto;
    }
    .profile {
        font-size: 16px;
	    width: 90%;
	}
}

/* 2カラム
------------------------------------------------------------ */
.col_2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_2 > *{
    width: calc( 50% - 6px ) ;
    margin-right: 12px;
    margin-bottom: 12px;
}
.col_2 > *:nth-child(2n){
    margin-right: auto;
}
.col_2 > * > *{
    position: relative;
    overflow: hidden
}
@media screen and (max-width: 960px) {
    .col_2 > *{
        width: 100%;
        margin-right: auto;
    }
}


/* 見出し
------------------------------------------------------------*/
.mds-infomation {
  font-size: 20px;
  font-weight:bold;
  color: #b7282d;
}

/* 公式Twitter 公式YouTube Contact リンク設定
------------------------------------------------------------*/
.set-link {
  font-size: 40px;
  float: left;
}
.set-link a {
  color: #b7282d;
}


/* ページトップに戻るボタン
------------------------------------------------------------ */
.pagetop {
  height: 50px;
  width: 50px;
  right: 30px;
  bottom: 30px;
  background: #ffffff;
  border: solid 3px #4b2d16;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop_arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #4b2d16;
  border-right: 3px solid #4b2d16;
  transform: translateY(20%) rotate(-45deg);
}
/* 回り込み解除 */
.clear { clear: both; }


/* フッター
------------------------------------------------------------*/
footer {
  text-align: center;
  color: #ffffff;
  padding: 20px 0 20px;
  background-color: #ff99cc;
}
.copylight {
  font-size: 80%;
}

/* 文字 color設定
------------------------------------------------------------*/
.fw-b { font-weight: bold; }
.c-ff0000 { color: #ff0000; }

/* padding margin調整
------------------------------------------------------------*/
.pl_main-photo { padding-top: 65px; }
.pl_pagetitle  { padding-top: 65px; }
.mt5  { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt40 { margin-top: 40px; }
.mt60 { margin-top: 60px; }
.mt70 { margin-top: 70px; }
.mb5  { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }