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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
html,
body {
  font-size: 62.5%;
}
body {
	width: 100%;
  min-width: 1254px;
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","Yu Gothic Medium",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.3rem;
	line-height: 1.5;
	color: #000;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}

img { vertical-align: top;}

a {
  color: #000; 
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul {
  list-style: none;
}
.show-sp {
  display: none;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header {
  position: relative;
  width: 1254px;
  padding-top: 16px;
  margin: 0 auto;
}
header .logo {
  position: absolute;
  top: 16px;
  left: 0;
  width: 103px;
}
header .logo img {
  width: 100%;
  height: auto;
}
.header-upper,
.txt-lang,
.header-sns {
  display: flex;
  justify-content: flex-end;
}
.txt-lang li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: .04em;
  margin-left: 8px;
}
.txt-lang li:first-child::after {
  content: '/';
  font-size: 1.2rem;
  color: #767676;
  margin-left: 6px;
}
.txt-lang a {
  color: #767676;
}
.txt-lang .is-current a {
  color: #000;
}
.header-sns {
  margin-left: 17px;
}
.header-sns li {
  margin-left: 10px;
}
.header-sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
header nav {
  padding: 25px 0 0 18px;
  margin-left: 50%;
}
header nav ul {
  display: flex;
}
header nav li {
  margin-right: 28px;
}
header nav li.is-current {
  border-bottom: 2px solid #000;
}
header nav li:last-child {
  margin-right: 0;
}
header nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .1em;
}
header nav a::before,
header nav a::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../common/newtop/images/icon_nav_pickup.svg") no-repeat;
  background-size: 20px 20px;
  margin-right: 10px;
}
header nav a::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../common/newtop/images/icon_nav_pickup_on.svg") no-repeat;
  background-size: 20px 20px;
  opacity: 0;
}
header nav li:nth-child(2) a::before {
  background-image: url("../../common/newtop/images/icon_nav_about.svg");
}
header nav li:nth-child(3) a::before {
  background-image: url("../../common/newtop/images/icon_nav_story.svg");
}
header nav li:nth-child(4) a::before {
  background-image: url("../../common/newtop/images/icon_nav_magazine.svg");
}
header nav li:nth-child(5) a::before {
  background-image: url("../../common/newtop/images/icon_nav_radio.svg");
}
header nav li:nth-child(2) a::after {
  background-image: url("../../common/newtop/images/icon_nav_about_on.svg");
}
header nav li:nth-child(3) a::after {
  background-image: url("../../common/newtop/images/icon_nav_story_on.svg");
}
header nav li:nth-child(4) a::after {
  background-image: url("../../common/newtop/images/icon_nav_magazine_on.svg");
}
header nav li:nth-child(5) a::after {
  background-image: url("../../common/newtop/images/icon_nav_radio_on.svg");
}

@media screen and (min-width: 40.1em) {
  header nav a:hover::before {
    opacity: 0;
  }
  header nav a:hover::after {
    opacity: 1;
  }
  header nav a:hover {
    color: #99CC00;
  }
}

/* ---------------------------------------------------------
.btn
----------------------------------------------------------*/
.btn a {
  position: absolute; 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 388px;
  height: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: .1em;
  background: #fff;
  box-shadow: 4px 3px 8px rgba(0,0,0,.12);
  box-sizing: border-box;
  transition: box-shadow .3s;
  overflow: hidden;
}
.btn a::before {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: #99CC00;
  transform: translateX(-100%);
  transition: transform .3s;
}
.btn a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  box-sizing: border-box;
  transition: opacity .3s;
}
.btn a .btn-txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.btn a .btn-txt::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  width: 17px;
  height: 10px;
  background: url("../../common/newtop/images/icon_btn_arrow.svg") no-repeat;
  background-size: 17px 10px;
  transform: translateY(-50%);
  opacity: 1;
}

@media screen and (min-width: 40.1em) {
  .btn a:hover {
    box-shadow: none;
  }
  .btn a:hover::after {
    opacity: 0;
  }
  .btn a:hover::before {
    transform: translateX(0%);
  }
}

/* ---------------------------------------------------------
main
----------------------------------------------------------*/
main {
  position: relative;
  display: block;
  height: 618px;
}
main::before {
  content: '';
  position: absolute;
  top: 150px;
  left: 0;
  display: block;
  width: 100%;
  height: 468px;
  background: #99CC00;
}
main .inner {
  position: relative;
  width: 1254px;
  margin: 66px auto 0;
}
main h1 {
  width: 212px;
  padding-top: 125px;
  margin: 0;
}
main h1 img  {
  width: 100%;
  height: auto;
} 
main .kv {
  position: absolute;
  top: 0;
  right: 0;
  width: 992px;  
}
main .kv img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
}
main .kv::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -8px;
  width: 100%;
  height: 100%;
  background: rgba(8,8,8,.12);
  -ms-filter: blur(12px);
  filter: blur(12px);
}

/* ---------------------------------------------------------
article
----------------------------------------------------------*/
article {
  background: #f4f4f4;
  padding-bottom: 120px;
  overflow: hidden;
}

/* ---------------------------------------------------------
#intro
----------------------------------------------------------*/
#intro {
  width: 1254px;
  padding: 115px 0 75px;
  margin: 0 auto;
}
#intro .inner {
  width: 992px;
  margin-left: 262px;
}
#intro h2 {
  display: inline-block;
  font-size: 2.6rem;
  letter-spacing: .10em;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 35px;
}
#intro p {
  font-size: 1.4rem;
  line-height: 2.15;
  letter-spacing: .1em;
}

/* ---------------------------------------------------------
#project
----------------------------------------------------------*/
#project {
  position: relative;
  padding-bottom: 120px;
}
#project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 352px;
  background: linear-gradient(to bottom, #fff, #f4f4f4);
}
#project .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 1254px;
  min-height: 540px;
  padding: 75px 0 72px;
  margin: 0 auto;
  box-sizing: border-box;
}
#project .inner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -56px;
  width: 1311px;
  height: 202px;
  background: url("../images/pic.png") no-repeat center bottom;
}
#project .project-head {
  position: relative;
  width: 262px;
}
#project h2 {
  display: inline-block;
  font-size: 3.4rem;
  line-height: 1.18;
  letter-spacing: .07em;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
  margin-bottom: 18px;
}
#project .project-head p {
  width: 184px;
  font-size: 1.4rem;
  line-height: 1.79;
}
#project .project-body {
  position: relative;
  width: 992px;
  margin-top: 6px;
}
#project .project-body nav {
  margin-bottom: 50px;
}
#project .project-body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#project .project-body nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 46px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .12em;
  background: url("../images/btn_02_arrow.svg") no-repeat;
  opacity: .5;
  transition: opacity .3s;
}
#project .project-body nav a.is-active {
  opacity: 1;
}
@media screen and (min-width: 40.1em) {
  #project .project-body nav a:hover {
    opacity: 1;
  }
}
#project .project-body nav li:nth-child(1) a,
#project .project-body nav li:nth-child(2) a {
  width: 484px;
  background: url("../images/btn_01_arrow.svg") no-repeat;
  margin-bottom: 19px;
}

#project .project-body .wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}
#project .project-body .block {
  position: relative;
  width: 218px;
  margin-right: 40px;
  margin-bottom: 50px;
}
#project .project-body .block:nth-child(4n) {
  margin-right: 0;
}
#project .project-body .block .pic {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: -20px;
}
#project .project-body .block img {
  width: 100%;
  height: auto;
}
#project .project-body h3 {
  margin-bottom: 8px;
}
#project .project-body h3 .bar {
  display: inline;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  background: #000;
  line-height: 1.64;
}
#project .project-body .txt {
  font-size: 1.3rem;
  line-height: 1.69;
  margin-bottom: 3px;
}
#project .project-body .txt-more {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 35px;
}
#project .project-body .txt-more::after {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  background: url("../../common/newtop/images/icon_btn_arrow.svg") no-repeat;
  background-size: 11px 7px;
  margin-left: 2px;
}
#project .project-body .btn {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 40.1em) {
  #project .project-body a:hover .txt-more {
    color: #99CC00;
  }
  #project .project-body a:hover .txt-more::after {
    background-image: url("../../common/newtop/images/icon_btn_arrow_on.svg");
  }
}

/* ---------------------------------------------------------
.wrapper-col3
----------------------------------------------------------*/
.wrapper-col3 {
  display: flex;
  justify-content: space-between;
  width: 1254px;
  margin: 0 auto 131px;
}
.wrapper-col3 section {
  position: relative;
  width: 398px;
  height: 421px;
  background: #fff;
  text-align: center;
  padding: 28px;
  border: 2px solid #000;
  border-radius: 10px;
  box-sizing: border-box;
}
.wrapper-col3 h3 {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: .1em;
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
  margin-bottom: 18px;
}
.wrapper-col3 p {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}
.wrapper-col3 .btn a {
  left: 50%;
  bottom: -25px;
  width: 300px;
  transform: translateX(-50%);
}
#magazine2 .inner {
  position: relative;
  height: 200px;
  background: #F4F4F4;
  margin-top: 20px;
}
#magazine2 .inner .ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0 0 15px;
  margin-bottom: 45px;
}
#magazine2 .inner .pic {
  position: absolute;
  top: 61px;
  left: 10px;
  width: 169px;
}
#magazine2 .inner .pic img {
  width: 100%;
  height: auto;
}
#magazine2 .inner .link {
  position: relative;
  margin: 0 0 0 194px;
}
#magazine2 .inner .link::before {
  position: absolute;
  left: 0;
  content: '>';
}
#magazine2 .inner .link a {
  display: block;
  font-size: 1.3rem;
  line-height: 1.9;
  text-decoration: underline;
  padding-left: .6em;
}
#movie .pic {
  margin-top: 45px;
}
#radio .pic {
  margin-top: 20px;
}
#movie .slick-dots {
  display: flex;
  justify-content: center;
  bottom: -15px;
}
#movie .slick-dots li {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0 5px;
}
#movie .slick-dots li button {
  position: relative;
  width: 4px;
  height: 4px;
  padding: 0;
}
#movie .slick-dots li button::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  opacity: 1;
}
#movie .slick-active button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

/* ---------------------------------------------------------
#other
----------------------------------------------------------*/
#other {
  width: 1254px;
  background: #fff;
  padding: 30px 30px 26px;
  margin: 0 auto;
  box-sizing: border-box;
}
#other h3 {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: .1em;
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
  margin-bottom: 45px;
}
#other ul {
  display: flex;
  flex-wrap: wrap;
}
#other li {
  width: 382px;
  margin-bottom: 24px;
}
#other li:nth-child(3n-1) {
  margin: 0 24px 24px;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer {
  background: #F4F4F4 url("../../common/newtop/images/pic_footer.jpg") no-repeat;
  background-position: bottom center;
  padding: 0 0 337px;
}
footer .breadcrumb {
  display: flex;
  width: 1254px;
  border-top: 2px solid #000;
  padding: 21px 0;
  margin: 0 auto;
}
footer .breadcrumb li {
  font-size: 1.2rem;
  margin-right: 5px;
}
footer .breadcrumb a::after {
  content: '>';
  font-size: 1.2rem;
  margin-left: 5px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  width: 1254px;
  background: #000;
  padding: 28px 0 24px;
  margin: 0 auto 73px;
}
.footer-nav ul {
  width: 358px;
}
.footer-nav ul:nth-child(3n-1) {
  margin: 0 69px 0 71px;
}
.footer-nav li {
  margin-bottom: 8px;
}
.footer-nav a {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: .02em;
  color: #fff;
}
.footer-nav a::before {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  background: url("../../common/newtop/images/icon_arrow_white.svg") no-repeat;
  background-size: 10px 8px;
  margin-right: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 19px;
}
.footer-bottom li {
  margin: 0 19px;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: .02em;
}
.footer-bottom a::before {
  content: '';
  display: block;
  width: 12px;
  height: 11px;
  background: url("../../common/newtop/images/icon_blank.svg") no-repeat;
  background-size: 12px 11px;
  margin-right: 5px;
}
footer .txt-copy {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

/* ---------------------------------------------------------
media queries
----------------------------------------------------------*/
@media screen and (max-width: 40em) {
  /* ---------------------------------------------------------
  common
  ----------------------------------------------------------*/
  body {
    min-width: 100%;
  }
  .show-pc {
    display: none;
  }
  .show-sp {
    display: block;
  }

/* ---------------------------------------------------------
.btn
----------------------------------------------------------*/
  .btn {
    width: calc(333 / 375 * 100vw);
    height: 40px;
    font-size: 1.2rem;
  }
  .btn::after {
    right: 8px;
    width: 18px;
    height: 0;
    background-size: contain;
    padding-top: 11px;
  }

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  header .logo {
    top: 0;
    width: calc(72 / 375 * 100%);
    margin: 8px 0 0 calc(12 / 375 * 100%);
  }
  header .logo img {
    width: 100%;
    height: auto;
  }
  header .btn-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(53 / 375 * 100%);
    z-index: 4;
  }
  header .btn-menu a {
    position: relative;
    display: block;
  }
  header .btn-menu span {
    position: absolute;
    top: 0;
    right: calc(14 / 375 * 100vw);
    display: block;
    width: calc(25 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background: #000;
    margin-top: calc(14 / 375 * 100vw);
  }
  header .btn-menu span:nth-child(2){
    margin-top: calc(23 / 375 * 100vw);
  }
  header .btn-menu span:nth-child(3){
    margin-top: calc(32 / 375 * 100vw);
  }
  header .btn-menu p {
    font-size: 1rem;
    text-align: center;
    transform: scale(.9);
    transform-origin: center top;
    padding-top: calc(42 / 375 * 100vw);
  }
.header-upper,
.txt-lang,
.header-sns {
  display: flex;
  justify-content: flex-end;
}
  .header-sns.show-pc {
    display: none;
  }
  .header-upper {
    display: block;
  }
  .txt-lang {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,visibility .3s;
  }
  header.is-open .txt-lang {
    opacity: 1;
    visibility: visible;
  }
.txt-lang li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: .04em;
  margin-left: 8px;
}
  .txt-lang li:first-child {
    margin-left: 0;
  }
.txt-lang li:first-child::after {
  content: '/';
  font-size: 1.2rem;
  color: #767676;
  margin-left: 0;
}
.header-sns {
  margin-left: 17px;
}
.header-sns li {
  margin-left: 10px;
}
.header-sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
  header.is-open {
    height: 100%;
  }
  header nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: calc(70 / 375 * 100vw) 20px;
    margin: 0;
    box-sizing: border-box;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,visibility .3s;
  }
  header.is-open nav {
    opacity: 1;
    visibility: visible;
  }
  header nav ul {
    display: block;
  }
  header nav li {
    margin-right: 0;
    border-bottom: 1px solid #cecece;
  }
header nav li.is-current {
  border-bottom: 1px solid #cecece;
}
  header nav li:last-child {
    margin-right: 0;
  }
  header nav a {
    font-size: 1.4rem;
    font-weight: normal;
    padding: 8px 0;
  }
header nav ul a::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../common/newtop/images/icon_nav_pickup.svg") no-repeat;
  background-size: 20px 20px;
  margin-right: 10px;
}
header nav li:nth-child(2) a::before {
  background-image: url("../../common/newtop/images/icon_nav_about.svg");
}
header nav li:nth-child(3) a::before {
  background-image: url("../../common/newtop/images/icon_nav_story.svg");
}
header nav li:nth-child(4) a::before {
  background-image: url("../../common/newtop/images/icon_nav_magazine.svg");
}
header nav li:nth-child(5) a::before {
  background-image: url("../../common/newtop/images/icon_nav_radio.svg");
}
  .header-sns-sp p {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .header-sns-sp ul {
    display: flex;
    justify-content: center;
  }
  .header-sns-sp li {
    border: none;
    margin: 0 15px;
  }
  .header-sns-sp li:last-child {
    margin: 0 15px;
  }
  .header-sns-sp a {
    width: 33px;
  }
  .header-sns-sp a img {
    width: 33px;
    height: auto;
  }
  .header-sns-sp a::before {
    display: none;
  }

/* ---------------------------------------------------------
main
----------------------------------------------------------*/
  main {
    height: auto;
    background: #f4f4f4;
    padding-bottom: 40px;
    margin: 120px auto 0;
  }
  main::before {
    top: 12px;
    left: 0;
    display: block;
    width: calc(242 / 375 * 100%);
    height: calc(100% - 12px);
    z-index: 1;
  }
  main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
  }
  main .inner {
    position: relative;
    width: 100%;
  }
  main h1 {
    position: relative;
    width: 137px;
    padding-top: 0;
    margin: 0 0 23px 12px;
    z-index: 1;
  }
  main h1 img  {
    width: 100%;
    height: auto;
  } 
  main .kv {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;  
  }
  main .kv::before {
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
  }

/* ---------------------------------------------------------
article
----------------------------------------------------------*/
  article {
    background: #f4f4f4;
    padding-bottom: 0;
  }

/* ---------------------------------------------------------
#intro
----------------------------------------------------------*/
  #intro {
    width: 100%;
    padding: 30px 0 30px;
  }
  #intro .inner {
    width: calc(350 / 375 * 100%);
    margin: 0 auto;
  }
  #intro h2 {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 3px;
    margin-bottom: 9px;
  }
  #intro p {
    font-size: 1.3rem;
    line-height: 1.62;
  }
  
/* ---------------------------------------------------------
#project
----------------------------------------------------------*/
  #project {
    padding-bottom: 60px;
  }
  #project .inner {
    display: block;
    width: 100%;
    padding-top: 32px;
    margin: 0 auto;
  }
  #project .inner::after {
    left: 0;
    width: 100%;
    height: 0;
    background: url("../images/pic_sp.png") no-repeat center bottom;
    background-size: 100% auto;
    padding-top: calc(274 / 375 * 100%);
  }
  #project .project-head {
    width: calc(352 / 375 * 100%);
    margin: 0 auto 5px;
  }
  #project h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    letter-spacing: .1em;
    padding-bottom: 13px;
    margin-bottom: 9px;
  }
  #project .project-head p {
    width: 232px;
    font-size: 1.2rem;
    line-height: 1.7;
  }
  #project .project-body {
    position: relative;
    width: calc(352 / 375 * 100%);
    height: auto;
    padding: 13px 0 0;
    margin: 0 auto;
  }
  #project .project-body nav {
    margin-bottom: 20px;
  }
  #project .project-body .show-pc {
    display: none;
  }
  #project .select-box {
    position: relative;
  }
  #project .project-body select {
    position: absolute;
    width: 100%;
    height: 46px;
    opacity: 0;
    z-index: 2;
  }
  #project .project-body .select-txt {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 46px;
    font-size: 1.4rem;
    letter-spacing: .13em;
    font-weight: bold;
    border: 2px solid #000;
    box-sizing: border-box;
  }
  #project .project-body .select-txt::after {
    content: '';
    display: block;
    top: 18px;
    right: 15px;
    position: absolute;
    width: 10px;
    height: 6px;
    background: url("../images/icon_select_arrow.svg") no-repeat;
    background-size: 10px 6px;
  }
  #project .project-body .wrapper {
    padding: 0 0 calc(30 / 348 * 100%);
  }
  #project .project-body .block {
    position: relative;
    width: calc(153 / 348 * 100%);
    margin: 0 calc(10 / 348 * 100%) calc(20 / 348 * 100%);
  }
  #project .project-body .block:nth-child(4n) {
    margin: 0 calc(10 / 348 * 100%) calc(20 / 348 * 100%);
  }
  #project .project-body h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  #project .project-body h3 .bar {
    font-size: 1.3rem;
  }
  #project .project-body .txt {
    font-size: 1.1rem;
    line-height: 1.36;
    margin-bottom: 3px;
  }
  #project .project-body .txt-more {
    font-size: 1rem;
    margin-top: 10px;
  }
  #project .project-body .txt-more small {
    transform: scale(.7);
    transform-origin: left center;
  }
  #project .project-body .txt-more::after {
    width: 8px;
    height: 5px;
    background-size: 8px 5px;
    margin-left: -1.5em;
  }
  #project .project-body .btn {
    bottom: -22px;
    padding-right: 25px;
  }

/* ---------------------------------------------------------
.wrapper-col3
----------------------------------------------------------*/
  .wrapper-col3 {
    display: block;
    width: calc(350 / 375 * 100%);
    margin: 0 auto 60px;
  }
  .wrapper-col3 section {
    width: 100%;
    height: auto;
    padding: 13px 7px 39px;
    margin-bottom: 40px;
  }
  .wrapper-col3 h3 {
    padding-bottom: 4px;
    margin-bottom: 8px;
  }
  .wrapper-col3 p {
    line-height: 1.8;
  }
  .wrapper-col3 .btn {
    bottom: -22px;
    width: calc(293 / 375 * 100vw);
  }
  #magazine2 .inner {
    height: auto;
    padding-bottom: 40px;
    margin-top: 6px;
  }
  #magazine2 .inner .ttl {
    padding: 10px 0 0 11px;
    margin-bottom: 53px;
  }
  #magazine2 .inner .pic {
    top: 68px;
    left: 2px;
    width: calc(161 / 375 * 100vw);
  }
  #magazine2 .inner .link {
    margin: 0 0 0 190px;
  }
  #movie .pic {
    margin-top: 8px;
  }
  #radio .pic {
    margin-top: 8px;
  }
  #movie .pic img,
  #radio .pic img {
    width: 100%;
    height: auto;
  }

/* ---------------------------------------------------------
#other
----------------------------------------------------------*/
  #other {
    width: calc(350 / 375 * 100%);
    text-align: center;
    padding: 17px 4px 3px;
  }
  #other h3 {
    padding-bottom: 4px;
    margin-bottom: 20px;
  }
  #other li {
    width: calc(161 / 375 * 100vw);
    margin: 0 calc(4 / 375 * 100vw) 12px;
  }
  #other li img {
    width: 100%;
    height: auto;
  }
  #other li:nth-child(3n-1) {
    margin: 0 calc(4 / 375 * 100vw) 12px;
  }

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
  footer {
    background: #F4F4F4 url("../../common/newtop/images/pic_footer_sp.jpg") no-repeat center bottom;
    background-size: 100% auto;
    padding: 40px 0 236px;
  }
  footer .breadcrumb {
    display: none;
  }
  .footer-nav {
    display: block;
    width: calc(350 / 375 * 100%);
    padding: 15px calc(15 / 375 * 100%) 8px;
    margin: 0 auto 43px;
    box-sizing: border-box;
  }
  .footer-nav ul {
    width: 100%;
  }
  .footer-nav ul:nth-child(3n-1) {
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 7px;
  }
  .footer-bottom {
    display: block;
    width: calc(350 / 375 * 100%);
    margin: 0 0 49px calc(19 / 375 * 100%);
  }
  .footer-bottom li {
    margin: 0 0 11px;
  }
  footer .txt-copy {
    font-size: 1.2rem;
  }

}

@media screen and (max-width: 340px) {
  #magazine1 .txt2 {
    width: 140px;
    font-size: 1rem;
    line-height: 1.81;
    margin-bottom: -1px;
  }
  #magazine2 .inner .ttl {
    font-size: 1.4rem;
  }
  
  #story .story-body .block .type-people {
    width: 86px;
  }
}