@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2

note: |
  These remedies are recommended
  as a starter for any project.

category: file
*/
/* @docs
label: Box Sizing

note: |
  Use border-box by default, globally.

category: global
*/
*, ::before, ::after {
  box-sizing: border-box; }

/* @docs
label: Line Sizing

note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.

links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property

category: global
*/
html {
  line-sizing: normal; }

/* @docs
label: Body Margins

note: |
  Remove the tiny space around the edge of the page.

category: global
*/
body {
  margin: 0; }

/* @docs
label: Hidden Attribute

note: |
  Maintain `hidden` behaviour when overriding `display` values.

  category: global
*/
[hidden] {
  display: none; }

/* @docs
label: Heading Sizes

note: |
  Switch to rem units for headings

category: typography
*/
h1 {
  font-size: 2rem; }

h2 {
  font-size: 1.5rem; }

h3 {
  font-size: 1.17rem; }

h4 {
  font-size: 1.00rem; }

h5 {
  font-size: 0.83rem; }

h6 {
  font-size: 0.67rem; }

/* @docs
label: H1 Margins

note: |
  Keep h1 margins consistent, even when nested.

category: typography
*/
h1 {
  margin: 0.67em 0; }

/* @docs
label: Pre Wrapping

note: |
  Overflow by default is bad...

category: typography
*/
pre {
  white-space: pre-wrap; }

/* @docs
label: Horizontal Rule

note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`

category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible; }

/* @docs
label: Responsive Embeds

note: |
  1. Block display is usually what we want
  2. Remove strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default

category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%; }

audio:not([controls]) {
  display: none; }

/* @docs
label: Responsive Images

note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.

  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely

category: embedded elements
*/
picture {
  display: contents; }

source {
  display: none; }

/* @docs
label: Aspect Ratios

note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.

category: embedded elements
*/
img, svg, video, canvas {
  height: auto; }

/* @docs
label: Audio Width

note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.

category: embedded elements
*/
audio {
  width: 100%; }

/* @docs
label: Image Borders

note: |
  Remove the border on images inside links in IE 10 and earlier.

category: legacy browsers
*/
img {
  border-style: none; }

/* @docs
label: SVG Overflow

note: |
  Hide the overflow in IE 10 and earlier.

category: legacy browsers
*/
svg {
  overflow: hidden; }

/* @docs
label: HTML5 Elements

note: |
  Default block display on HTML5 elements

category: legacy browsers
*/
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

/* @docs
label: Checkbox & Radio Inputs

note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10

category: legacy browsers
*/
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0; }

/*
** project
** プロジェクト
*/
/* @group base */
* {
  color: #4d483e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px; }

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: none; }

h1, h2, h3, h4, h5, h6, p, dl, ul, ol, table {
  margin: 0 0 20px 0;
  line-height: 1.7; }

i, em, u, b {
  font-style: normal;
  text-decoration: none; }

ul {
  list-style: none;
  padding: 0; }

ol {
  padding: 0; }

dl dd {
  margin-left: 0; }

a {
  text-decoration: underline; }
  a:hover {
    opacity: 0.7;
    transition: .2s ease-in-out; }

/* @end */
/* @group utility */
.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

.pcnone {
  display: block; }

.spnone {
  display: none; }

.flex {
  display: flex;
  flex-direction: column; }
  .flex img {
    margin: 0 auto; }
  .flex.row {
    flex-direction: row;
    flex-wrap: wrap; }

.inner {
  margin: 0 auto;
  padding: 10px 25px; }

@media print, screen and (min-width: 500px) {
	.inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 10px 20px; }
	}

/* @end */
/* @group header */
header {
  position: relative;
  padding-top: 300px;
  padding-bottom: 40px;
  background-image: url("../images/sitetitle_bg_sp.png"), url("../images/header_bg_sp.jpg");
  background-repeat: no-repeat,no-repeat;
  background-position: left -30px top, center top;
  background-size: 115% auto, cover; }
  @media print, screen and (min-width: 500px) {
    header {
      padding-top: 450px;
      background-size: auto 650px, cover;
      background-position: center top, center top; } }
  header h1.sitetitle {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    font-size: 48px;
    text-align: center;
    text-shadow: 1px 0 15px #000;
    position: absolute;
    top: 150px;
    right: 10px; }
    header h1.sitetitle span {
      display: block;
      margin-top: 5px;
      font-family: "Noto Serif JP", serif;
      font-weight: 700;
      color: #fff;
      font-size: 16px; }
  header .summary p {
    color: #fff;
    font-size: 14px;
    line-height: 28px; }
    header .summary p em {
      font-size: 18px;
      display: inline;
      background: #f4e393;
      font-weight: bold;
      padding: 0 5px;
      margin: 0 3px; }

/* @end */
/* @group footer */
footer {
  background: #1682cb; }
  footer .footer_info {
    padding: 30px;
    max-width: 820px; }
    footer .footer_info dl {
      justify-content: flex-start; }
      footer .footer_info dl dt {
        color: #fff;
        text-align: left; }
      footer .footer_info dl dd {
        text-align: left; }
        footer .footer_info dl dd p {
          color: #fff; }
        footer .footer_info dl dd ul {
          margin-bottom: 0; }
          footer .footer_info dl dd ul li {
            color: #fff;
            padding: 0 10px;
            margin-bottom: 20px;
            border-left: 1px solid #fff;
            border-right: 1px solid #fff; }
    footer .footer_info p a {
      color: #fff;
      text-align: left;
      /*display: block;*/ }
      footer .footer_info p a img {
        display: inline;
        vertical-align: middle;
        margin-left: 5px; }
  footer .copy {
    background: #0a6fdc;
    padding: 10px 5px;
    text-align: center; }
    footer .copy small {
      color: #fff;
      font-size: 12px; }

/* @end */
/* @group main */
main section {
  padding: 30px 0 15px; }
main h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.2; }
main h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 1.2; }
main .links {
  background: url("../images/links_bg.jpg") center top;
  background-size: cover; }
  main .links ul {
    width: 90%;
    margin: 0 auto; }
    main .links ul li {
      margin-bottom: 10px; }
      main .links ul li a {
        position: relative;
        display: block;
        padding: 10px;
        background: #d7f2fd;
        border: 1px dashed #efb11c;
        text-decoration: none;
        padding-left: 30px; }
        main .links ul li a span {
          display: block;
          line-height: 1.4;
          font-size: 14px; }
          main .links ul li a span em {
            display: block;
            font-size: 24px;
            font-weight: bold; }
        main .links ul li a img {
          display: block;
          position: absolute;
          top: 18px;
          right: 10px;
          width: 35px; }
        main .links ul li a::before {
          content: "";
          display: block;
          height: 10px;
          width: 10px;
          border-right: 2px solid #efb11c;
          border-bottom: 2px solid #efb11c;
          transform: rotate(-45deg);
          position: absolute;
          top: 30px;
          left: 10px; }
main .movies {
  background: #E9F6FB;
  padding: 0 0 15px; }
  main .movies h2 {
    background: #C6E3F2;
    padding: 20px 0px;
	margin-bottom: 0;}
  main .movies h3 {
	background: #D2ECF6;
	padding: 20px 0 30px;
  	position: relative;
	}
  main .movies h3::before, main .movies.saiken h3::before{
	display: inline-block;
	position: absolute;
	content: '';
	bottom: 15px;
	left: 50%;
	width: 50px;
	height: 5px;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
	background-color: #f4e393;
}

  main .movies ul li {
    margin-bottom: 15px; }
    main .movies ul li a {
      display: block;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid #1682cb;
      border-radius: 18px;
      text-decoration: none; }
      main .movies ul li a p {
        padding: 10px 20px 0;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.6; }
        main .movies ul li a p span {
          display: block;
          font-size: 14px;
          font-weight: 400; }
main .movies.saiken {
  background: rgba(58, 152, 203, 0.3);}
main .movies.saiken h3 {
	background: #A7D1E7;
	padding: 20px 0 30px;
  	position: relative;
	}


/* @end */
/* タブレット以上 */
@media print, screen and (min-width: 768px) {
  /* @group base */
  /* @end */
  /* @group utility */
  .pcnone {
    display: none; }

  .spnone {
    display: block; }

  .flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between; }
    .flex.col50 div {
      width: 50%; }
    .flex.col48 div {
      width: 48%; }
    .flex.col30 div {
      width: 30%; }

  /* @end */
  /* @group header */
  header {
    padding-top: 700px;
    background-image: url("../images/sitetitle_bg.png"), url("../images/header_bg.jpg");
    background-repeat: no-repeat,no-repeat;
    background-position: center top, center top;
    background-size: auto 750px, cover;
    padding-bottom: 100px; } }
  @media print, screen and (min-width: 768px) and (max-width: 820px) {
    header {
      padding-top: 600px;
      background-size: auto 500px, cover; } }
@media print, screen and (min-width: 768px) {
    header h1.sitetitle {
      font-size: 80px;
      top: 450px;
      right: 5%; } }
    @media print, screen and (min-width: 768px) and (max-width: 820px) {
      header h1.sitetitle {
        top: 400px; } }
@media print, screen and (min-width: 768px) {
      header h1.sitetitle span {
        font-size: 35px; }
    header .summary p {
      font-size: 20px;
      line-height: 40px; }
      header .summary p em {
        font-size: 28px;
        display: inline-block;
        background: #f4e393;
        font-weight: bold;
        padding: 1px 5px 2px;
        margin: 0 3px; }

  /* @end */
  /* @group footer */
  footer .footer_info {
    padding: 30px 10px; }
    footer .footer_info dl {
      justify-content: center; }
      footer .footer_info dl dd ul li:first-child {
        border-right: none; }

  /* @end */
  /* @group main */
  main .links ul {
    width: 100%; }
    main .links ul li {
      width: 48%; }
      main .links ul li a {
        padding-left: 40px;
        margin-bottom: 20px; }
        main .links ul li a span {
          font-size: 18px; }
          main .links ul li a span em {
            font-size: 30px; }
        main .links ul li a img {
          width: 46px;
          right: 20px; }
        main .links ul li a::before {
          top: 35px;
          left: 15px; }
  main .movies {
    padding: 0 0 80px; }
    main .movies h2 {
      background: #C6E3F2;
      padding: 30px 0 35px;
      font-size: 50px; }
	main .movies h3 {
      font-size: 30px;
	margin-bottom: 0;}
    main .movies ul {
      justify-content: center;
      margin-top: 50px; }
      main .movies ul li {
        margin-bottom: 15px;
        width: 33%;
        padding: 0 0.5%; }
        main .movies ul li a {
          height: 100%;
          border-radius: 15px; }

  /* @end */ }
@media print {
  body {
    width: 1280px; }

  /* 印刷時に画面と変更するスタイルを定義 */ }
