@charset "UTF-8";


body {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Sans JP";
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  position: relative;
  background: var(--accent-color);
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, p, ul, ol, li, img, table, th, td, dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
li {
  list-style-type: none;
}
a {
  cursor: pointer;
  color: #333333;
  text-decoration: none;
}
img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
input, textarea, select, button, label {
  outline: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
#wrap{
	margin: 0 auto;
  background: #fff;
  padding-top: 134px;
}
#container{
		max-width: 1024px;
margin-top: 134px;
	margin: 0 auto;
  padding-top: 30px;
}
a:link ,
a:active ,
a:visited {
 color: #000;
 text-decoration: none;
}
@media only screen and (max-width:767px) {
  #wrap{
    padding-top: 110px;
  }
}


/* header
-----------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 134px;
  z-index: 100;
  background: #fff;
  display: flex;
  align-items: center;
}
header .inner {
  width: 100%;
}
header .logo {
  width: 150px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  header {
    height: 110px;
  }
}


/* color
-----------------------------------------------*/
:root {
  --accent-color: #000;
  --new-color: #FFB829;
  --blog-color: #D06B3A;
  --fashion-color: #D24B4B;
  --beauty-color: #458DBD;
  --lifestyle-color: #aba39f;
  --horoscope-color: #FFD132;
  --store-color: #001E42;
  --radio-color: #2A766D;
  --ranking-color: #FF8732;
  --future-color: #3A94D0;
  --message-color: #A5B182;
  --channel-color: #867380;
  --news-color: #9a85a0;
}


/* menu-box
-----------------------------------------------*/
#menu-box {
  position: absolute;
  top: 35px;
  right: 30px;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 15px;
}
#menu-box #menu-btn {
  position: relative;
  width: 19px;
  height: 16px;
  cursor: pointer;
}
#menu-box #menu-btn span,
#menu-box #menu-btn::before,
#menu-box #menu-btn::after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: var(--accent-color);
  transition: all .4s;
}
#menu-box #menu-btn::before {
  content: "";
  top: 0;
}
#menu-box #menu-btn span {
  top: calc(50% - 1px);
}
#menu-box #menu-btn::after {
  content: "";
  bottom: 0;
}
#menu-box #menu-btn.active::before {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
#menu-box #menu-btn.active span {
  opacity: 0;
}
#menu-box #menu-btn.active::after {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}
#menu-box #login-btn,
#menu-box #mypage-btn {
  display: none;
}
#menu-box #login-btn a {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
@media only screen and (max-width:767px) {
  #menu-box {
    top: 15px;
    right: 15px;
  }
  #menu-box #login-btn a {
    font-size: 12px;
  }
}


/* navi
-----------------------------------------------*/
#navi {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 5px 20px;
}
#navi ul {
  display: flex;
  justify-content: center;
	flex-wrap: wrap;
  gap: 0 20px;
}
#navi ul li a {
	font-size: 20px;
	text-decoration: none;
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width:767px) {
  #navi {
    margin-top: 20px;
    padding: 0 20px;
  flex-direction: column
  }
  #navi ul {
    gap: 2px 20px;
  }
  #navi ul li a {
    font-size: 18px;
  }
}


/* menu-navi
-----------------------------------------------*/
#menu-navi {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  background: rgba(0,0,0,.9);
  overflow-y: scroll;
  }
#menu-navi::-webkit-scrollbar{
  display: none;
}#menu-navi .close {
  position: absolute;
  top: 24px;
  right: 19px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#menu-navi .close::before,
#menu-navi .close::after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #fff;
}
#menu-navi .close::before {
  content: "";
  top: 0;
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
#menu-navi .close::after {
  content: "";
  bottom: 0;
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}
#menu-navi .inner {
	max-width: 880px;
	margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#menu-navi form {
  position: relative;
}
#menu-navi form #search {
	width: 100%;
	height: 45px;
	font-size: 16px;
	padding: 0 20px 0 60px;
  border: none;
  border-radius: 3px;
}
#menu-navi form #search::placeholder {
  color: #ccc;
}
#menu-navi form #submit {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 0;
  left: 0;
  background: url("/img/common/icon-search.svg") no-repeat center / 18px;
  border: none;
  cursor: pointer;
}
#menu-navi .navi {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
#menu-navi .navi li a {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color:#fff;
  font-weight: 500;
  line-height: 1;
}
#menu-navi .navi li a span {
  font-size: 14px;
  font-weight: 200;
    margin-left: 10px;
}
#menu-navi .navi-sub {
}
#menu-navi .navi-sub li {
  height: 60px;
  border-left: 2px solid #fff;
  padding-left: 18px;
  display: flex;
  align-items: center;
}
#menu-navi .navi-sub li:last-child {
  border: 2px solid #fff;
  padding: 0 18px;
    justify-content: center;
    margin-top: 30px;
}
#menu-navi .navi-sub li a {
	font-size: 24px;
	font-weight: 200;
  line-height: 1.2;
  color: #fff;
}
/*
#menu-navi .navi-sub li:last-child a{
	position: relative;
}
#menu-navi .navi-sub li:last-child a:after {
	content: "";
  background-image: url("/img/common/icon-blank.svg");
  background-repeat: no-repeat;
  color: #fff;
	position: absolute;
	top: 8px;
	right:-30px;
  width: 12px;
  height: 14px;
}
*/
#menu-navi .sns {
	display: flex;
	justify-content: center;
  align-items: center;
	gap: 40px;
}
@media only screen and (max-width:767px) {
  #menu-navi .close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
  #menu-navi .inner {
    padding: 50px 20px 40px;
    gap: 30px;
  }
  #menu-navi .navi {
    gap: 25px 0;
    grid-template-columns: 1fr;
  }
  #menu-navi .navi li:last-child {
margin-top: 0;
}
#menu-navi .navi li a {
    font-size: 24px;
    line-height: 1;
  }
  #menu-navi .navi li a span {
    font-size: 12px;
  }
  #menu-navi .navi-sub {
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }
  #menu-navi .navi-sub li {
    height: 50px;
  }
  #menu-navi .navi-sub li a {
    font-size: 16px;
  }
  #menu-navi .navi-sub li:last-child:after a{
	top: 10px;
}
#menu-navi .sns {
    gap: 20px;
  }
}


/* footer
-----------------------------------------------*/
footer {
	background: var(--accent-color);
	margin-top: 150px;
	padding: 70px 40px;
}
footer .logo {
  width: 170px;
  margin: 0 auto;
}
footer .navi {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
  margin-top: 55px;
  gap: 10px 20px;
}
footer .navi li a{
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}
footer .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
  margin-top: 60px;
}
footer .copyright {
	color: #fff;
	font-size: 12px;
	text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  footer {
    margin-top: 100px;
    padding: 40px 20px 20px;
  }
  footer .logo {
    width: 150px;
  }
  footer .navi {
    gap: 5px 0;
    max-width: 375px;
    margin: 30px auto 0;
  }
  footer .navi li {
    width: 50%;
  }
  footer .navi li a {
    font-size: 12px;
  }
  footer .sns {
    gap: 20px;
    margin-top: 30px;
  }
  footer .sns li {
    transform: scale(.8);
  }
  footer .copyright {
    font-size: 10px;
    margin-top: 20px;
  }
}


/* ---------------------------------------------
*  button
--------------------------------------------- */
.btn{
	margin: 40px auto 0;
	text-align: center;
}
 .submit {
    margin-bottom: 0.2rem;
    padding: 20px 65px;
    box-shadow: 5px 5px 0 var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
}
.submit:hover {
	opacity: 0.5;
 transition: .3s;
  cursor: pointer;
}

@media only screen and (max-width:767px) {
	form .submit {
    font-size: 12px;
    font-weight: 800;
}

	
	
	
}





/* ---------------------------------------------
*  ttl
--------------------------------------------- */
.ttl-other h1 {
  font-size: 32px;
  font-weight: 200;
  text-align: center;
}
h1 span{
  font-size: 16px;
  font-family: "cormorant-garamond", serif;
}
@media only screen and (max-width:767px) {
  .ttl-other h1 {
    font-size: 24px;
  }
}
	