@charset "UTF-8";

:root {
  --bg-color: #FFFFFF;
  --bg-color-pale: #fcfbf5;
  --main-color: #000000;
  --sub-color: #999;
  --point-color: #f90f55;
  --append-color: #8d3446;
  --border-color: #EEE;
  --corner-round: 18px;
  --corner-round-min: 10px;
  --style-shadow: 3px 3px 20px rgba(0, 0, 0, .1);
  --JP-gothic: 'Noto Sans Japanese', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
}

body,
input,
textarea {
  font-family: var(--JP-gothic);
}

input,
textarea {
  font-weight: normal;
}

body {
  background-color: #FFF !important;
}

.content-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.content-wrapper.max {
  width: 100% !important;
  padding-right: 50px;
  padding-left: 50px;
}

@media screen and (min-width: 1601px) {
  .content-wrapper {
    width: 1280px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .content-wrapper {
    width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {

  .content-wrapper,
  .content-wrapper.max {
    width: 90%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 680px) {

  .content-wrapper,
  .content-wrapper.max {
    width: 100%;
    padding: 40px 10px;
  }
}

.bg-secondary {
  background-color: var(--bg-color-pale) !important;
}

/*********************
HEADER
*********************/
#header {
  height: 96px;
}

#header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header #header-wrapper {
  padding: 11px 0 6px;
  zoom: 1;
  overflow: hidden;
  position: relative;
}

#header .header-primary {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 160px);
}

@media screen and (max-width: 1040px) {
  #header {
    height: auto;
  }

  #header #header-wrapper {
    padding: 0;
  }

  #header #header-wrapper .logo {
    width: 235px;
    margin: 10px 0 10px 10px;
  }
}

#header #header-inner #group-link {
  position: absolute;
  right: 0;
  top: 16px;
  width: 150px;
  height: 14px;
}

#header-btn a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  padding: 8px 25px 8px 22px;
  background-color: #FAFAFA;
  border: 1px solid #CCC;
  color: #666;
  border-radius: 60px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .05);
}

#header-btn a::after {
  display: block;
  position: absolute;
  right: 10px;
  top: calc(50% - 3px);
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--point-color);
  border-right: 1px solid var(--point-color);
  transform: rotate(45deg);
  transition: .2s;
}

#header-btn a:hover {
  box-shadow: 1px 5px 10px rgba(0, 0, 0, .1);
}

#header-btn a:hover::after {
  right: 8px;
}

#header-btn a span {
  font-size: 11px;
  color: var(--point-color);
}

@media screen and (max-width: 1040px) {
  #header-btn a {
    padding: 4px 25px 4px 22px;
    margin-top: 5px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 680px) {
  #header #header-wrapper .logo {
    width: 200px;
    margin: 10px 0 10px 10px;
  }
  #header .header-primary {
  width: 100%;
  align-items: center;
}

  #header-btn a {
    font-size: 9px;
    padding: 3px 7px 3px 5px;
    margin-top: 0;
    margin-right: 7px;
    border-radius: 3px;
  }

  #header-btn a span {
    font-size: 7.4px;
    letter-spacing: -.4px;
  }

  #header-btn a::after {
    right: 3px;
    top: calc(50% - 2px);
    content: "";
    width: 4px;
    height: 4px;
  }

  #header-btn a:hover::after {
    right: 3px;
  }

  #header #header-inner #group-link {
    display: none;
  }
}


/*********************
SUBNAV
*********************/
#section-subnav {
  border-top: 1px solid var(--border-color);
  padding-bottom: 40px;
}

#section-subnav h1 {
  width: 290px;
  margin: 0 auto 40px;
}

#section-subnav nav {
  background: white;
  border-radius: var(--corner-round);
  box-shadow: var(--style-shadow);
}

#section-subnav nav ul {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

#section-subnav nav ul li a {
  display: block;
  height: 100%;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  padding: 20px;
  font-size: 16px;
}

#section-subnav nav ul li a span {
  font-size: 12px;
  opacity: .7;
}

#section-subnav nav ul li.under a {
  color: #CCC;
  pointer-events: none;
}

@media screen and (min-width: 981px) {
  #section-subnav nav ul li {
    border-left: 1px solid #EEE;
    padding: 16px;
  }

  #section-subnav nav ul li:first-of-type {
    border-left: none;
  }

  #section-subnav nav ul li a span {
    display: block;
  }
}

@media screen and (min-width: 1201px) {
  #section-subnav nav ul li {
    width: 25%;
  }

  #section-subnav nav ul li a {
    font-size: 18px;
    padding: 0;
  }
}

@media screen and (max-width: 980px) {
  #section-subnav nav ul li {
    width: 50%;
  }

  #section-subnav nav ul li a {
    text-align: left;
  }

  #section-subnav nav ul li a span {
    font-size: 11px;
    margin-left: 16px;
    opacity: .5;
  }
}

@media screen and (min-width: 841px) and (max-width: 980px) {

  #section-subnav nav ul li:nth-of-type(1),
  #section-subnav nav ul li:nth-of-type(2) {
    border-bottom: 1px solid var(--border-color);
  }

  #section-subnav nav ul li:nth-of-type(1),
  #section-subnav nav ul li:nth-of-type(3) {
    border-right: 1px solid var(--border-color);
  }
}

@media screen and (max-width: 840px) {
  #section-subnav h1 {
    width: 240px;
    margin: 0 auto 20px;
  }

  #section-subnav nav ul li {
    width: 100%;
    border-bottom: 1px solid #EEE;
  }

  #section-subnav nav ul li a {
    font-size: 13px;
  }
}

#footer {
  border-top: 3px solid #e6233b;
}

#footer #footer-link03 {
  padding: 5px 0 15px;
}
#footer #footer-link03 ul {
  font-size: 0;
  line-height: 0;
  margin-bottom: 10px;
}

/*
footer #footer-link03 {
  border-bottom: 3px solid #fa0046;
  padding-bottom: 25px;
  margin-top: 15px;
  text-align: center;
}
footer #footer-link03 .inner ul {
  text-align: center;
}

footer #copyright {
  display: block;
  line-height: 1.4;
  font-size: 12px;
  font-weight: 400;
  color: #4D4D4F;
  text-align: center;
  padding: 25px 0 33px;
}*/

/*********************
HOME
*********************/

/* MAINPICT */
#home-mainpict {
  border-radius: var(--corner-round);
  background-color: var(--bg-color);
}

#home-mainpict .primary img {
  border-radius: var(--corner-round);
  object-fit: cover;
  height: 100%;
}

#home-mainpict .secondary .title {
  width: 70%;
  min-width: 240px;
  max-width: 580px;
  margin-bottom: 40px;
}

#home-mainpict .secondary .title-txt {
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
}

@media screen and (min-width: 781px) {
  #home-mainpict {
    display: flex;
    align-items: stretch;
  }

  #home-mainpict>* {
    width: 50%;
  }

  #home-mainpict .secondary {
    padding: 50px;
    align-self: center;
  }
}

@media screen and (max-width: 780px) {
  #home-mainpict .secondary {
    padding: 30px;
    width: 100%;
  }

  #home-mainpict .secondary .title {
    margin-bottom: 20px;
  }

  #home-mainpict .secondary .title-txt {
    padding: 15px;
    font-size: 15px;
  }
}

/* INFO */
h3.title-bar {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
  margin: 0 0 30px;
  padding: 0;
  line-height: 1.2;
}

h3.title-bar::after {
  display: block;
  position: absolute;
  content: "";
  background: var(--point-color);
  width: 20px;
  height: 2px;
  bottom: -16px;
  left: 0;
}

@media screen and (max-width: 980px) {
  h3.title-bar {
    font-size: 20px;
    margin: 0 0 30px;
  }

  h3.title-bar::after {
    width: 15px;
    bottom: -12px;
  }
}

h2.title-dot {
  position: relative;
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 auto 60px;
  width: fit-content;
  text-align: center;
}

h2.title-dot::after {
  position: absolute;
  left: calc(50% - 30px);
  bottom: -20px;
  display: block;
  content: "";
  background: url(../images/title-dot.svg) no-repeat top center;
  background-size: contain;
  width: 60px;
  height: 5px;
}

h2.title-dot span {
  font-size: 14px;
  display: block;
  margin-top: 6px;
}

@media screen and (max-width: 980px) {
  h2.title-dot {
    font-size: 1.4em;
  }

  h2.title-dot::after {
    bottom: -20px;
  }

  h2.title-dot span {
    font-size: 12px;
  }
}

.info-wrapper li {
  position: relative;
  line-height: 1.6;
  margin-bottom: 8px;
  padding: 1.6em 1.8em 1.6em 1.6em;
  background-color: white;
  border-radius: var(--corner-round-min);
  transition: .2s;
}

.info-wrapper li .date {
  font-size: .9em;
  color: var(--sub-color);
}

.info-wrapper li a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-wrapper li:has(a):hover {
  color: var(--point-color);
}

.info-wrapper li:has(a)::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(50% - 5px);
  right: 18px;
  width: 5px;
  height: 10px;
  background: url(../images/red-ar.svg) no-repeat center;
  background-size: contain;
  transition: .1s;
}

.info-wrapper li:has(a):hover::after {
  right: 16px;
}

@media screen and (min-width: 981px) {
  #section-info .content-inner {
    display: flex;
  }

  #section-info .content-inner .title {
    width: 180px;
  }

  #section-info .content-inner .body {
    width: calc(100% - 180px);
  }

  .info-wrapper li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .info-wrapper li .date {
    width: 6.2em;
  }

  .info-wrapper li .body {
    width: calc(100% - 6.2em);
  }
}

@media screen and (max-width: 680px) {
  .info-wrapper li:has(a)::after {
    right: 12px;
  }

  .info-wrapper li:has(a):hover::after {
    right: 10px;
  }
}

/* LEAD */
#section-lead {
  background: url(../../images/leaf.jpg) no-repeat left top;
  background-size: contain;
}

#section-lead .content-inner {
  display: flex;
}

#section-lead .content-inner .pict {
  position: relative;
  ;
}

#section-lead .content-inner .body {
  padding: 30px;
}

#section-lead .content-inner .body .lead {
  font-size: 2.4em;
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.8;
}

#section-lead .content-inner .body .text {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 2;
}

@media (min-width: 1601px) {

  #section-lead .content-inner>* {
    width: 50%;
  }

  #section-lead .content-inner .pict figure {
    position: absolute;
    width: 54%;
  }

  #section-lead .content-inner .pict figure:first-of-type {
    top: 0;
    left: 0;
    z-index: 1;
  }

  #section-lead .content-inner .pict figure:last-of-type {
    top: 160px;
    left: 40%;
  }

  #section-lead .content-inner .pict figure img {
    object-fit: cover;
    width: 100%;
    height: 280px;
    border-radius: 40px;
  }
}

@media (max-width: 1600px) {

  #section-lead .content-inner .pict {
    width: 30%;
  }

  #section-lead .content-inner .body {
    width: 70%;
  }

  #section-lead .content-inner .pict figure img {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 40px;
  }

  #section-lead .content-inner .body .lead {
    font-size: 2.2em;
  }
}

@media (max-width: 980px) {

  #section-lead .content-inner .pict,
  #section-lead .content-inner .body {
    width: 100%;
    padding: 0;
  }

  #section-lead .content-inner {
    flex-direction: column;
  }

  #section-lead .content-inner .pict {
    display: flex;
    margin-bottom: .8em;
  }

  #section-lead .content-inner .pict figure {
    width: 50%;
  }

  #section-lead .content-inner .pict figure img {
    object-fit: cover;
    width: 100%;
    height: 30vw;
    border-radius: 30px;
  }

  #section-lead .content-inner .body .lead {
    font-size: 2em;
    line-height: 1.7;
    margin-bottom: .8em;
  }

  #section-lead .content-inner .body .text {
    font-size: 1em;
  }
}

/* SECTION-MOVIE */
#section-movie h3,
#section-blog h3 {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 20px;
}

#section-movie h3::before,
#section-blog h3::before {
  display: block;
  content: "";
  width: 20px;
  height: 16px;
  margin-right: 10px;
}

#section-movie h3::before {
  background: url(../images/icon-youtube.svg) no-repeat center left;
  background-size: contain;
}

#section-blog h3::before {
  background: url(../images/icon-book.svg) no-repeat center left;
  background-size: contain;
}

#section-movie .box,
#section-blog .box {
  padding: 80px;
}

#section-movie .box {
  background: var(--bg-color-pale);
  border-radius: var(--corner-round);
}

.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 30px;
}

.blog-wrapper .cont {
  position: relative;
  transition: .2s;
}

.blog-wrapper .cont.new::after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 24px;
  background: url(../images/new.png);
  background-size: contain;
}

.blog-wrapper.movie .cont {
  background: white;
  padding: 15px 15px 20px;
}

.blog-wrapper.movie .cont:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.blog-wrapper.movie .cont figure,
.blog-wrapper.movie .cont figure img {
  position: relative;
  display: block;
  width: 100%;
  height: 10vw;
}

.blog-wrapper .cont figure {
  overflow: hidden;
}

.blog-wrapper .cont figure img {
  object-fit: cover;
  transition: .2s ease-in;
}

.blog-wrapper.movie .cont figure::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/movie-ar.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}

.blog-wrapper .cont:hover figure img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.blog-wrapper .cont .title {
  margin-top: 10px;
  line-height: 1.5;
  font-size: .9em;
  font-weight: 400;
}

.blog-wrapper.blog .cont .title-header {
  display: flex;
}

.blog-wrapper.blog .cont .title-header::before {
  content: "";
  background: url(../images/icon-book-bk.svg) no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 22px;
  margin-right: 5px;
}

.blog-wrapper .cont .title .spec {
  margin-top: 8px;
  font-size: .9em;
  display: flex;
  align-items: center;
}

.blog-wrapper .cont .title .spec .date {
  width: fit-content;
  margin-right: .5em;
  color: #999;
}

.blog-wrapper .cont .title .spec .cat {
  font-size: 10px;
  display: inline-block;
  line-height: 1;
  padding: 2px 10px 4px;
  border-radius: 20px;
  color: #666;
  border: 1px solid #999;
}

.blog-wrapper .cont a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1201px) {
  .blog-wrapper .cont {
    width: calc((100% - 60px) / 3);
  }
}

@media (max-width: 1200px) {
  .blog-wrapper {
    gap: 20px;
  }

  #section-movie .box,
  #section-blog .box {
    padding: 40px;
  }

  .blog-wrapper .cont {
    width: calc((100% - 20px) / 2);
  }

  .blog-wrapper.movie .cont figure,
  .blog-wrapper.movie .cont figure img {
    height: 20vw;
  }
}

@media (max-width: 780px) {
  .blog-wrapper {
    gap: 10px;
  }

  #section-movie h3,
  #section-blog h3 {
    font-size: 1.1em;
    margin-left: 5px;
    margin-bottom: 10px;
  }

  #section-movie .box,
  #section-blog .box {
    padding: 20px 10px;
  }

  .blog-wrapper.movie .cont {
    width: calc((100% - 10px) / 2);
  }

  .blog-wrapper.movie .cont {
    padding: 5px 5px 12px;
  }

  
.blog-wrapper .cont.new::after {
  width: 30px;
  height: 17px;
}

  .blog-wrapper.movie .cont figure,
  .blog-wrapper.movie .cont figure img {
    height: 22vw;
  }

  .blog-wrapper.movie .cont figure::after {
    width: 28px;
    height: 28px;
  }

  .blog-wrapper.blog .cont {
    width: 100%;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
  }

  .blog-wrapper.blog .cont figure,
  .blog-wrapper.blog .cont figure img {
    width: 120px;
    height: 65px;
  }

  .blog-wrapper .cont .title .spec {
    margin-top: 4px;
  }

  .blog-wrapper.blog .cont .title {
    width: calc(100% - 120px);
    margin: 0;
    padding-left: 10px;
  }
}

/*********************
FORM
*********************/

/* LOGIN */

.login-title {
  width: 60%;
  max-width: 300px;
  margin: 0 auto 40px;
  padding: 20px 5px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.login-wrapper {
  background: white;
  border-radius: 10px;
  max-width: 680px;
  margin: 0 auto;
  padding: 4em 2em;
  text-align: center;
}

.login-wrapper h2 {
  font-size: 1.4em;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 10px;
}

.login-wrapper .login-element input {
  width: 100%;
  max-width: 300px;
  margin: 6px auto;
}

/* form */

.form {
  padding: 0;
  margin: 0;
}

input[type="submit"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  border: none;
  background: white;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="password"],
textarea {
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.2s;
  border-radius: 3px;
  border: 1px solid #ccc;
}

input[type="text"].short {
  width: 50%;
  min-width: 200px;
  max-width: 280px;
}

@media screen and (max-width: 880px) {
  input[type="text"].short {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  background: #f8f8f8;
  border: 1px solid #999;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #CCC;
}

.form dl:first-of-type {
  border-top: 1px dashed var(--border-color);
}

.form dl {
  padding: 1.5em 0;
  margin: 0;
  border-bottom: 1px dashed var(--border-color);
}

.form dl.form-required dt:after {
  content: "必須";
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  background: #cd5c5c;
  color: white;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 3px;
}

.form .label-box {
  display: block;
  background: white;
  border-radius: 5px;
  padding: 0.5em 1em;
}

.form .label-box label {
  width: 100%;
}

/*select*/
.form .selectbox {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.form .selectbox select {
  cursor: pointer;
  font-size: 16px;
  padding: 8px 25px 8px 15px;
  text-indent: 0.01px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.form .selectbox::after {
  position: absolute;
  content: "";
  top: 18px;
  right: 8px;
  width: 0;
  height: 0;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #666 transparent transparent transparent;
}

/*button*/
.submit-btn {
  text-align: center;
  margin-top: 20px;
}

.submit-btn input[type="submit"],
.submit-btn input[type="button"],
input[type="submit"].submit-btn,
input[type="button"] {
  transition: 0.2s ease-out;
  color: white;
  background: var(--main-color);
  font-weight: bold;
  border-radius: 3px;
  padding: 0.8em 2em;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

input[type="submit"].submit-btn:disabled {
  background: #ccc;
  color: white;
  border: 2px solid #444;
  box-shadow: none;
}

input[type="submit"].submit-btn:enabled:hover {
  opacity: .6;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

input[type="button"] {
  background: var(--append-color);
  color: white;
  border: none;
}

.submit-btn input[type="submit"]:hover,
.submit-btn input[type="button"]:hover,
input[type="button"]:hover {
  opacity: .6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media screen and (min-width: 881px) {
  .form dl {
    display: flex;
  }

  .form dl dt {
    width: 300px;
  }

  .form dl dd {
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 880px) {
  .form dl {
    margin: 0 0 1em;
    display: block;
  }

  .form dl dt {
    line-height: 1;
    padding-bottom: 10px;
  }

  .form dl dd {
    margin-bottom: 0;
  }
}

/* LINK */
.link-style a {
  font-size: .8em;
  font-weight: 400;
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-left: 20px;
}

.link-style a::before {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--main-color);
  left: 0;
  top: 0;
}

.link-style a::after {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
  left: 4px;
  top: 4px;
}
