﻿@charset "UTF-8";
/**
 * style.css
 * create: 2018.03
**/

/* reset based html5doctor
================================================== */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button, object {
  outline: none;
}

button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
}

/* Base
================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: auto !important;
}

@media (max-width: 767px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }
}

body {
  background-color: #fff;
  color: #000;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: auto !important;
  top: auto !important;
}

@media (max-width: 767px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  font-size: 100%;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

input::-webkit-input-placeholder {
  font-weight: 600;
  color: #ccc;
}

input::-moz-placeholder {
  font-weight: 600;
  color: #ccc;
  opacity: 1;
}

input:-ms-input-placeholder {
  font-weight: 600;
  color: #ccc;
}

/* link
================================================== */

a {
  color: #6499db;
  text-decoration: underline;
}

a:visited {
  color: #6499db;
  text-decoration: underline;
}

a:focus {
  color: #10335f;
  text-decoration: none;
}

a:hover {
  color: #c1a250;
  text-decoration: none;
}

a:active {
  color: #10335f;
  text-decoration: none;
}

a.is-disabled {
  color: #ccc;
  pointer-events: none;
  cursor: default;
}

/* Wrap
================================================== */

.f-wrap {
  padding-top: 84px;
  background-color: #fff;
  color: #000;
}

@media (max-width: 767px) {
  .f-wrap {
    padding-top: 47px;
  }
}

.is-not-ie .f-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
}

/* Header
================================================== */

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background-color: #fff;
}

.l-header.is-absolute {
  position: absolute;
}

.nav-overlay-container {
  position: fixed;
  top: 23px;
  right: 23px;
}

.nav-overlay {
  position: absolute;
  background: #10335f;
  border-radius: 50%;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.nav-overlay.is-on {
  -webkit-animation-name: animNavOverlay;
  animation-name: animNavOverlay;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes animNavOverlay {
  0% {
    visibility: visible;
    opacity: 1;
  }
  60% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    background-color: #fff;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    background-color: #fff;
  }
}

@keyframes animNavOverlay {
  0% {
    visibility: visible;
    opacity: 1;
  }
  60% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    background-color: #fff;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    background-color: #fff;
  }
}

.l-header-sp {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}

@media (max-width: 767px) {
  .l-header-sp {
    display: block;
    height: 47px;
    padding: 10px 13px;
    border-bottom: 1px solid #b7c6d3;
    background-color: #fff;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
  }
  .l-header-sp.is-on {
    position: fixed;
    background-color: #fff !important;
    -webkit-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s;
  }
}

.l-header-sp__logo {
  -webkit-transition: opacity .4s, visibility .4s;
  -o-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s;
}

@media (max-width: 767px) {
  .is-on+.l-header-sp__logo {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s, visibility .4s;
    -o-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s;
    pointer-events: none;
    cursor: none;
  }
}

.l-header__floating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 84px;
  padding-right: 160px;
}

@media (max-width: 767px) {
  .l-header__floating {
    display: block;
    visibility: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 47px 0 86px;
    background-color: rgba(16, 51, 95, 0.94);
    color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0s, visibility 0s;
    -o-transition: opacity 0s, visibility 0s;
    transition: opacity 0s, visibility 0s;
  }
  .l-header__floating:after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 86px;
    background: url(../imgs/menu-bg01.png) center bottom repeat-x;
    background-size: auto 86px;
  }
  .l-header__floating.is-on {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0s .8s, visibility 0s .8s;
    -o-transition: opacity 0s .8s, visibility 0s .8s;
    transition: opacity 0s .8s, visibility 0s .8s;
  }
}

.l-header__logo {
  margin: 0 0 0 30px;
  width: 45px;
  height: 45px;
}

@media (max-width: 767px) {
  .l-header__logo {
    display: none;
  }
}

.l-header__logo a {
  display: block;
  width: 45px;
  height: 45px;
  background: url(../imgs/header-logo01.png) left top no-repeat;
  background-size: contain;
}

.l-header__logo span {
  display: none;
}

.l-lang {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 124px;
}

@media (max-width: 767px) {
  .l-lang {
    position: fixed;
    left: 13px;
    right: auto;
    top: 11px;
    z-index: 1;
    width: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0s, visibility 0s;
    -o-transition: opacity 0s, visibility 0s;
    transition: opacity 0s, visibility 0s;
  }
}

@media (max-width: 767px) {
  .is-on.l-header__floating+.l-lang {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .4s .8s, visibility .4s .8s;
    -o-transition: opacity .4s .8s, visibility .4s .8s;
    transition: opacity .4s .8s, visibility .4s .8s;
  }
}

@media only screen and (max-width: 450px) {
  .goog-te-banner-frame.skiptranslate {
    display: none;
  }
}

/* Footer
================================================== */

.l-footer {
  padding: 40px 0 100px;
  background: #10335f url(../imgs/footer-bg01.png) right bottom repeat-x;
  background-size: auto 96px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .l-footer {
    background-image: url(../imgs/footer-bg01@2x.png);
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .l-footer {
    padding: 40px 20px 100px;
  }
}

@media (max-width: 767px) {
  .l-footer {
    padding: 25px 20px 60px;
    background-size: auto 48px;
    font-size: 1.3rem;
    line-height: 1.76923;
  }
}

.l-footer a {
  color: #fff;
}

.l-footer__content {
  width: 1080px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .l-footer__content {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-footer__logo {
  width: 120px;
  margin: 0 42px 0 0;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .l-footer__logo {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .l-footer__logo {
    margin: 0 auto;
    text-align: center;
  }
}

.l-footer__aside {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (max-width: 1080px) {
  .l-footer__aside {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .l-footer-info {
    text-align: center;
  }
}

.l-footer-copy {
  display: block;
  width: 1080px;
  margin: 40px auto 0;
  font-size: 1.2rem;
  text-align: right;
  letter-spacing: 0.075em;
}

@media (max-width: 1080px) {
  .l-footer-copy {
    width: auto;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .l-footer-copy {
    font-size: 1rem;
    text-align: center;
  }
}

/* Nav
================================================== */

.l-nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  line-height: 1.25;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .l-nav {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .l-nav {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.l-nav a {
  color: #666a6f;
  text-decoration: none;
  -webkit-transition: color .25s ease 0s;
  -o-transition: color .25s ease 0s;
  transition: color .25s ease 0s;
}

.l-nav a:hover {
  color: #c1a250;
}

@media (max-width: 767px) {
  .l-nav a:hover {
    color: #fff;
  }
  .l-nav a:active {
    color: #c1a250;
  }
}

.l-nav>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
}

@media (max-width: 767px) {
  .l-nav>ul {
    display: block;
    padding-top: 20px;
  }
}

.l-nav>ul>li {
  margin: 1px 0;
  border-right: 1px solid #666a6f;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .l-nav>ul>li {
    margin: 4px 0;
  }
}

@media (max-width: 767px) {
  .l-nav>ul>li {
    width: 100%;
    margin: 0;
    border: 0;
  }
}

.l-nav>ul>li:last-child {
  border-right: 0;
}

.l-nav>ul>li a {
  font-weight: 700;
  padding: 0 25px;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .l-nav>ul>li a {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .l-nav>ul>li a {
    display: block;
    padding: 20px 13px;
    color: #fff;
    text-align: center;
  }
  .l-nav>ul>li a:hover {
    color: #fff;
  }
  .l-nav>ul>li a:active {
    color: #fffec2;
  }
}

.l-nav>ul>li.is-on a {
  color: #c1a250;
}

.l-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  cursor: pointer;
  -webkit-transition: background-color .25s;
  -o-transition: background-color .25s;
  transition: background-color .25s;
}

.l-nav-trigger .l-nav-trigger__label {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.l-nav-trigger .l-nav-trigger__btn {
  position: relative;
  width: 19px;
  height: 17px;
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-nav-trigger .l-nav-trigger__btn i, .l-nav-trigger .l-nav-trigger__btn:before, .l-nav-trigger .l-nav-trigger__btn:after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 3px;
  background-color: #10335f;
  border-radius: 1.5px;
}

.l-nav-trigger .l-nav-trigger__btn i {
  top: 7px;
}

.l-nav-trigger .l-nav-trigger__btn:before {
  top: 0;
}

.l-nav-trigger .l-nav-trigger__btn:after {
  bottom: 0;
}

.l-nav-trigger.is-on .l-nav-trigger__btn i, .l-nav-trigger.is-on .l-nav-trigger__btn:before, .l-nav-trigger.is-on .l-nav-trigger__btn:after {
  background-color: #10335f !important;
}

.l-nav-trigger.is-on .l-nav-trigger__btn i {
  opacity: 0;
}

.l-nav-trigger.is-on .l-nav-trigger__btn:before {
  -webkit-transform: translateY(7px) rotate(-45deg);
  -ms-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

.l-nav-trigger.is-on .l-nav-trigger__btn:after {
  -webkit-transform: translateY(-7px) rotate(45deg);
  -ms-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

.l-nav-trigger .l-nav-trigger__fw {
  position: fixed;
  right: 23px;
  top: 23px;
}

.l-nav-trigger .l-nav-trigger__fw i, .l-nav-trigger .l-nav-trigger__fw span {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.l-nav-trigger .l-nav-trigger__fw i {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  background-color: #c3a753;
  -webkit-transform: translate(-50%, -50%) scale(4, 4);
  -ms-transform: translate(-50%, -50%) scale(4, 4);
  transform: translate(-50%, -50%) scale(4, 4);
}

.l-nav-trigger .l-nav-trigger__fw span {
  width: 300px;
  height: 300px;
  opacity: 0.3;
  background-color: #c3a753;
  -webkit-transition: opacity .8s ease-out 0s, -webkit-transform .8s ease-out;
  transition: opacity .8s ease-out 0s, -webkit-transform .8s ease-out;
  -o-transition: transform .8s ease-out, opacity .8s ease-out 0s;
  transition: transform .8s ease-out, opacity .8s ease-out 0s;
  transition: transform .8s ease-out, opacity .8s ease-out 0s, -webkit-transform .8s ease-out;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
  -ms-transform: translate(-50%, -50%) scale(1, 1);
  transform: translate(-50%, -50%) scale(1, 1);
}

@-webkit-keyframes animTrigger1 {
  0% {
    background-color: #10335f !important;
  }
  60% {
    background-color: #fff !important;
  }
  100% {
    background-color: #10335f !important;
    opacity: 0;
  }
}

@keyframes animTrigger1 {
  0% {
    background-color: #10335f !important;
  }
  60% {
    background-color: #fff !important;
  }
  100% {
    background-color: #10335f !important;
    opacity: 0;
  }
}

@-webkit-keyframes animTrigger2 {
  0% {
    background-color: #10335f !important;
  }
  60% {
    background-color: #fff !important;
  }
  100% {
    background-color: #10335f !important;
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
}

@keyframes animTrigger2 {
  0% {
    background-color: #10335f !important;
  }
  60% {
    background-color: #fff !important;
  }
  100% {
    background-color: #10335f !important;
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
}

@-webkit-keyframes animTrigger3 {
  0% {
    background-color: #10335f !important;
  }
  60% {
    background-color: #fff !important;
  }
  100% {
    background-color: #10335f !important;
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }
}

@keyframes animTrigger3 {
  0% {
    background-color: #10335f !important;
  }
  60% {
    background-color: #fff !important;
  }
  100% {
    background-color: #10335f !important;
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }
}

@-webkit-keyframes animFW {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animFW {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.l-nav-foot {
  margin: 0 auto 24px;
}

@media (max-width: 767px) {
  .l-nav-foot {
    margin: 15px auto;
  }
}

.l-nav-foot a {
  color: #fff;
  text-decoration: none;
}

.l-nav-foot a:hover {
  text-decoration: underline;
}

.l-nav-foot ul {
  list-style: none;
  font-size: 0;
}

@media (max-width: 767px) {
  .l-nav-foot ul {
    text-align: center;
  }
}

.l-nav-foot ul li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .l-nav-foot ul li {
    font-size: 1.3rem;
    line-height: 1.76923;
  }
}

.l-nav-foot ul li:after {
  content: '\ff5c';
  padding: 0 0.5em;
}

.l-nav-foot ul li:last-child:after {
  content: none;
}

/* Main
================================================== */

.l-main {
  position: relative;
}

.is-not-ie .l-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.is-not-ie .l-main>* {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.is-not-ie .l-main>*:last-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* Section
================================================== */

.c-section-01, .c-section-05 {
  padding: 60px 0 50px;
  background: #fff url(../imgs/bg-section01.png) center 148px no-repeat;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .c-section-01, .c-section-05 {
    padding: 30px 20px 25px;
  }
}

@media (max-width: 767px) {
  .c-section-01, .c-section-05 {
    padding: 30px 13px 25px;
    background-image: url() !important;
  }
}

.c-section-02 {
  padding: 60px 0 50px;
  background: #fff url(../imgs/bg-section02.png) center top;
}

.c-section-02.thin {
  padding: 40px 0 50px;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .c-section-02.thin {
    padding: 30px 30px 35px;
  }
}

@media (max-width: 767px) {
  .c-section-02.thin {
    padding: 30px 13px 35px;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .c-section-02 {
    padding: 30px 30px 35px;
  }
}

@media (max-width: 767px) {
  .c-section-02 {
    padding: 30px 13px 35px;
  }
}

.c-section-03 {
  padding: 45px 0;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .c-section-03 {
    padding: 30px 30px 35px;
  }
}

@media (max-width: 767px) {
  .c-section-03 {
    padding: 30px 13px 35px;
  }
}

.c-section-04 {
  padding: 60px 0 50px;
  background: #6a8db8 url(../imgs/bg-section03.png) center 75px no-repeat;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .c-section-04 {
    padding: 30px 30px 35px;
  }
}

@media (max-width: 767px) {
  .c-section-04 {
    padding: 30px 13px 35px;
  }
}

.c-section-05 {
  background-image: url(../imgs/bg-section04.png);
}

.c-section-of--hidden {
  overflow: hidden;
}

/* Content
================================================== */

.c-content-01 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}

@media (max-width: 1080px) {
  .c-content-01 {
    min-width: 0;
  }
}

/* Heading
================================================== */

.c-heading-01 {
  min-height: 45px;
  padding: 10px 0 10px 70px;
  background: url(../imgs/ico-mark02.png) left bottom no-repeat;
  background-size: 54px 45px;
  border-bottom: 4px solid #10335f;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.33333;
  letter-spacing: 0.075em;
  color: #10335f;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .c-heading-01 {
    background-image: url(../imgs/ico-mark02@2x.png);
  }
}

@media (max-width: 767px) {
  .c-heading-01 {
    min-height: 0;
    padding: 8px 0 8px 55px;
    background-size: auto 36px;
    font-size: 1.5rem;
    line-height: 1.2;
    border-bottom-width: 3px;
  }
}

.c-heading-01c {
  min-height: 45px;
  padding: 20px 0 10px 70px;
  background: url(../imgs/ico-mark02.png) left bottom no-repeat;
  background-size: 54px 45px;
  border-bottom: 4px solid #10335f;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.33333;
  letter-spacing: 0.075em;
  color: #10335f;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .c-heading-01c {
    background-image: url(../imgs/ico-mark02@2x.png);
  }
}

@media (max-width: 767px) {
  .c-heading-01c {
    min-height: 0;
    padding: 8px 0 8px 55px;
    background-size: auto 36px;
    font-size: 1.5rem;
    line-height: 1.2;
    border-bottom-width: 3px;
  }
}

.c-heading-02 {
  text-align: center;
}

.c-heading-02.dist {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .c-heading-02.dist {
    margin-bottom: 20px;
  }
}

.c-heading-02.dist--lg {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .c-heading-02.dist--lg {
    margin-bottom: 25px;
  }
}

.c-heading-02>.c-heading__tx {
  display: inline-block;
  min-width: 320px;
  padding: 25px 65px;
  background: #10335f url(../imgs/ico-mark03.png) right 8px bottom 0px no-repeat;
  background-size: 54px auto;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  text-align: center;
  color: #fff;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .c-heading-02>.c-heading__tx {
    background-image: url(../imgs/ico-mark03@2x.png);
  }
}

@media (max-width: 767px) {
  .c-heading-02>.c-heading__tx {
    min-width: 255px;
    min-height: 50px;
    padding: 15px 45px;
    background-size: 37px auto;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.c-heading-03 {
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-size: 1.8rem;
  line-height: 1.66667;
}

.c-heading-03.square:before {
  content: '■';
  color: #c1a250;
  padding-right: 0.25em;
}

.c-heading-03.dist {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .c-heading-03.dist {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .c-heading-03 {
    font-size: 1.5rem;
  }
}

/* Lead
================================================== */

.c-lead-01 {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
}

@media (max-width: 767px) {
  .c-lead-01 {
    margin-top: 24px;
    font-size: 1.5rem;
    line-height: 1.66667;
    text-align: left;
  }
}

.c-lead-02 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1.4rem;
  line-height: 1.42857;
}

.c-lead-03 {
  font-size: 1.8rem;
  line-height: 1.66667;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .c-lead-03 {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}

@media (max-width: 767px) {
  .c-lead-03 {
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.c-lead-04 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1.4rem;
  line-height: 1.71429;
}

/* List
================================================== */

.c-list-01 {
  list-style: none;
}

.c-list-01__item {
  padding: 12px 0;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (max-width: 767px) {
  .c-list-01__item {
    padding: 13px 0;
    line-height: 1.71429;
  }
}

.c-list-01__item+.c-list-01__item {
  border-top: 1px solid #dedede;
}

.c-list-01__ttl {
  display: block;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.42857;
}

.c-list-01__ttl+.c-list-01__tx {
  margin-top: 5px;
}

.c-list-01__tx {
  display: block;
  font-weight: 400;
}

.c-news-list-01 {
  list-style: none;
  display: block;
}

.c-news-list-01>.c-list-item {
  padding: 20px 0;
  border-top: 1px solid #dedede;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (max-width: 767px) {
  .c-news-list-01>.c-list-item {
    padding: 10px 0;
    font-size: 1.3rem;
    line-height: 1.76923;
  }
}

.c-news-list-01>.c-list-item:first-child {
  border-top: 0;
}

.c-news-list-01 .c-news-list__date {
  display: block;
  margin-bottom: 0.5em;
}

@media (max-width: 767px) {
  .c-news-list-01 .c-news-list__date {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #666a6f;
  }
}

/* API Weather
================================================== */

.s-weather {
  background-color: #fff;
}

.s-weather__tabs {
  list-style: none;
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  height: 38px;
}

.s-weather__tabs a {
  text-align: center;
  text-decoration: none;
}

.s-weather__tab {
  display: table-cell;
  background-color: #10335f;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.36364;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.s-weather__tab.is-on, .s-weather__tab[aria-selected="true"] {
  background-color: transparent;
  color: #000;
  pointer-events: none;
  cursor: default;
}

.s-weather__tab time {
  display: inline-block;
  white-space: nowrap;
}

.s-weather__item {
  display: none;
  padding: 14px;
}

.s-weather__item.is-on, .s-weather__item[aria-hidden="false"] {
  display: block;
}

.s-weather__heading {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: center;
}

.s-weather__state {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 6px;
  padding: 14px 10px 10px;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.s-weather__icon {
  width: 49%;
  padding-right: 10px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.s-weather__icon img {
  width: 100%;
}

.s-weather__desc {
  width: 51%;
}

.s-weather__poweredby {
  width: 100%;
  margin-top: 5px;
  color: #848484;
  text-align: right;
}

.s-weather__deg .s-weather-deg--high, .s-weather__deg .s-weather-deg--low {
  font-weight: normal;
  font-style: normal;
}

.s-weather__deg .s-weather-deg--high {
  color: #ff6161;
}

.s-weather__deg .s-weather-deg--low {
  color: #448aca;
}

.s-weather__deg .s-weather-deg--high_1, .s-weather__deg .s-weather-deg--low_1 {
  font-weight: normal;
  font-style: normal;
}

.s-weather__deg .s-weather-deg--high_1 {
  color: #ff6161;
}

.s-weather__deg .s-weather-deg--low_1 {
  color: #448aca;
}

.s-weather__deg .s-weather-deg--high_2, .s-weather__deg .s-weather-deg--low_2 {
  font-weight: normal;
  font-style: normal;
}

.s-weather__deg .s-weather-deg--high_2 {
  color: #ff6161;
}

.s-weather__deg .s-weather-deg--low_2 {
  color: #448aca;
}

.s-weather__deg .s-weather-deg--high_3, .s-weather__deg .s-weather-deg--low_3 {
  font-weight: normal;
  font-style: normal;
}

.s-weather__deg .s-weather-deg--high_3 {
  color: #ff6161;
}

.s-weather__deg .s-weather-deg--low_3 {
  color: #448aca;
}

.s-weather__deg .s-weather-deg--high_4, .s-weather__deg .s-weather-deg--low_4 {
  font-weight: normal;
  font-style: normal;
}

.s-weather__deg .s-weather-deg--high_4 {
  color: #ff6161;
}

.s-weather__deg .s-weather-deg--low_4 {
  color: #448aca;
}

.s-weather__app {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
}

.s-weather__app:visited {
  color: #000;
}

.s-weather__app:hover {
  text-decoration: underline;
}

.s-weather__app-icon {
  width: 40px;
}

.s-weather__app-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: bold;
}

/* ========== lg ========== */

.s-weather.s-weather--lg .s-weather__tab {
  font-weight: 400;
  font-size: 1.5rem;
}

.s-weather.s-weather--lg .s-weather__icon {
  padding-right: 15px;
}

.s-weather.s-weather--lg .s-weather__state {
  margin-top: 6px;
  padding: 14px 10px 10px;
  font-size: 1.3rem;
  line-height: 1.76923;
}

/* s-weather-sp-app
================================================== */

.s-weather-sp-app {
  margin-bottom: 25px;
  padding: 15px 15px 20px;
  background-color: #fff;
}

.s-weather-sp-app__heading {
  margin-bottom: 15px;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-size: 1.7rem;
  line-height: 1.58824;
  text-align: center;
}

.s-weather-sp-app__banners {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

.s-weather-sp-app__banner {
  display: table-cell;
  padding: 0 10px;
  vertical-align: middle;
  text-align: center;
}

.s-weather-sp-app__bottom {
  margin-top: 15px;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-size: 1.7rem;
  line-height: 1.58824;
  text-align: center;
}

/* Fixture
================================================== */

.s-fixture {
  padding: 0.75em 0 1em;
  background-color: #10335f;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .s-fixture {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .s-fixture {
    padding: 11px 8px 15px;
    font-size: 4.2vw;
  }
}

.s-fixture__start {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  padding: 0 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .s-fixture__start {
    margin-right: 12px;
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .s-fixture__start {
    margin-right: 10px;
    padding: 0 10px;
    font-size: 1.8rem;
  }
}

.s-fixture__start:before, .s-fixture__start:after {
  content: '';
  position: absolute;
  top: 6px;
  width: 1px;
  height: 30px;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .s-fixture__start:before, .s-fixture__start:after {
    top: 4.8px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .s-fixture__start:before, .s-fixture__start:after {
    top: 0;
    height: 20px;
  }
}

.s-fixture__start:before {
  left: 0;
}

.s-fixture__start:after {
  right: 0;
}

.s-fixture__date {
  font-weight: 600;
  letter-spacing: 0.075em;
  vertical-align: middle;
}

.s-fixture__link:link {
  color: #fff;
  text-decoration: none;
  outline: none;
}

.s-fixture__link:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
}

.s-fixture__link:hover {
  color: #c1a250;
  text-decoration: none;
}

.s-fixture__link:active {
  color: #c1a250;
  text-decoration: none;
}

/* Event Module
================================================== */

.s-event-countdown .s-event-countdown__link {
  display: block;
  padding: 20px 0;
  background-color: #c3a753;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.36364;
  color: #fff;
  text-align: center;
  -webkit-transition: opacity .75s ease 0s;
  -o-transition: opacity .75s ease 0s;
  transition: opacity .75s ease 0s;
}

@media (max-width: 767px) {
  .s-event-countdown .s-event-countdown__link {
    padding: 11px 0 10px;
    font-size: 1.4rem;
  }
}

.s-event-countdown .s-event-countdown__link>span {
  display: inline-block;
  padding: 0 50px;
  background: url(../imgs/ico-mark01.png) left top no-repeat, url(../imgs/ico-mark01.png) right top no-repeat;
  background-size: 30px 30px;
  text-decoration: underline;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .s-event-countdown .s-event-countdown__link>span {
    background-image: url(../imgs/ico-mark01@2x.png), url(../imgs/ico-mark01@2x.png);
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .s-event-countdown .s-event-countdown__link>span {
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
}

@media (max-width: 767px) {
  .s-event-countdown .s-event-countdown__link>span {
    padding: 0 23px;
    background-size: 17px 17px;
  }
}

.s-event-countdown .s-event-countdown__link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.s-event-countdown .s-event-countdown__link:hover>span {
  text-decoration: none;
}

.s-event-tx-link {
  display: inline-block;
  font-weight: 700;
  line-height: 21px;
  color: #c1a250;
  text-decoration: underline;
}

.s-event-tx-link:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 21px;
  margin-right: 8px;
  background: url(../imgs/ico-mark04.png) left top no-repeat;
  background-size: 24px 21px;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .s-event-tx-link:before {
    background-image: url(../imgs/ico-mark04@2x.png);
  }
}

@media (max-width: 767px) {
  .s-event-tx-link:before {
    width: 18px;
    height: 16px;
    margin-right: 7px;
    background-size: 18px 16px;
  }
}

/* Sponsor
================================================== */

.s-sponsor {
  background-color: #fff;
}

.s-sponsor__content {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0 30px;
}

@media (max-width: 1080px) {
  .s-sponsor__content {
    width: auto;
  }
}

@media (max-width: 767px) {
  .s-sponsor__content {
    padding: 25px 13px;
  }
}

.s-sponsor__title {
  margin-bottom: 40px;
  font-size: 1.8rem;
  line-height: 1.25;
  letter-spacing: 0.075em;
  color: #10335f;
  text-align: center;
}

@media (max-width: 767px) {
  .s-sponsor__title {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}

.s-sponsor__list {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .s-sponsor__list {
    margin-left: -6px;
    margin-right: -6px;
  }
}

.s-sponsor__list img {
  width: 100%;
}

.s-sponsor__list>li {
  overflow: hidden;
  margin: 0 7px 30px;
  display:flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .s-sponsor__list>li {
    width: calc(100% / 4);
    margin: 0 0 14px;
    padding: 0 7px;
    display:flex;
    align-items: center;
    justify-content: center;
  }
}

.s-sponsor__list>li a {
  display: block;
  width: 120px;
  height: auto;
  text-align: center;
  color: #666a6f;
  text-decoration: none;
}

@media (max-width: 767px) {
  .s-sponsor__list>li a {
    width: 100%;
    height: auto;
  }
}

.s-sponsor__list>li a.no-border {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.s-sponsor__list>li a span {
  display: block;
  padding: 15px 10px;
  font-size: 1.6rem;
  line-height: 1.25;
}

.s-sponsor__list.s-sponsor__special>li {
  margin: 0 8px 30px;
}

@media (max-width: 767px) {
  .s-sponsor__list.s-sponsor__special>li {
    width: calc(100% / 3);
    margin: 0 0 14px;
    padding: 0 7px;
  }
}

/*.s-sponsor__list.s-sponsor__special>li a {
  width: 200px;
  height: 70px;
}
*/
.s-sponsor__list.s-sponsor__special>li a {
  width: 200px;
  height: auto;
}

@media (max-width: 767px) {
  .s-sponsor__list.s-sponsor__special>li a {
    width: 100%;
    height: auto;
  }
}

.s-sponsor__list.s-sponsor__special>li a span {
  padding: 20px 10px;
  font-size: 2.4rem;
  line-height: 1.25;
}

/* Panel
================================================== */

.s-panel-btn-base, .s-panel-pdf__btn, .s-panel-link__btn {
  display: inline-block;
  width: 400px;
  padding: 30px 10px;
  background-color: #dae0e5;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.33333;
  color: #000;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 767px) {
  .s-panel-btn-base, .s-panel-pdf__btn, .s-panel-link__btn {
    min-width: 0;
    width: 100%;
    padding: 18px 10px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.s-panel-btn-base:after, .s-panel-pdf__btn:after, .s-panel-link__btn:after {
  display: block;
  margin-top: 5px;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (max-width: 767px) {
  .s-panel-btn-base:after, .s-panel-pdf__btn:after, .s-panel-link__btn:after {
    margin-top: 7px;
    font-size: 1.3rem;
    line-height: 1.23077;
  }
}

.s-panel-btn-base:visited, .s-panel-pdf__btn:visited, .s-panel-link__btn:visited {
  color: #000;
}

.s-panel-btn-base:hover, .s-panel-pdf__btn:hover, .s-panel-link__btn:hover, .s-panel-btn-base:active, .s-panel-pdf__btn:active, .s-panel-link__btn:active {
  color: #000;
  background-color: #b8bec3;
}

.s-panel-outward__btn {
  display: inline-block;
  width: 400px;
  padding: 5px 10px;
  background-color: #dae0e5;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.33333;
  color: #000;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 767px) {
  .s-panel-outward__btn {
    min-width: 0;
    width: 100%;
    padding: 18px 10px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.s-panel-outward__btn:after {
  display: block;
  margin-top: 5px;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (max-width: 767px) {
  .s-panel-outward__btn:after {
    margin-top: 7px;
    font-size: 1.3rem;
    line-height: 1.23077;
  }
}

.s-panel-outward__btn:visited {
  color: #000;
}

.s-panel-outward__btn:hover, .s-panel-outward__btn:active {
  color: #000;
  background-color: #b8bec3;
}

.s-panel-pdf {
  margin-top: 25px;
  padding: 40px 30px;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .s-panel-pdf {
    margin-top: 20px;
    padding: 35px 25px;
  }
}

.s-panel-pdf__btn-container {
  display: block;
}

.s-panel-pdf__btn:after {
  content: 'PDFで表示されます';
}

.s-panel-pdf__btn-caption {
  margin-top: 15px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .s-panel-pdf__btn-caption {
    font-size: 1.3rem;
  }
}

.s-panel-pdf__btn-caption a {
  color: #000;
  text-decoration: none;
}

.s-panel-pdf__btn-caption a:visited {
  color: #000;
}

.s-panel-pdf__btn-caption a:hover, .s-panel-pdf__btn-caption a:active {
  color: #c1a250;
}

/* 海難事故防止リンク用ボタン */

.s-panel-link {
  margin-top: 25px;
  padding: 40px 30px;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .s-panel-link {
    margin-top: 20px;
    padding: 35px 25px;
  }
}

.s-panel-link__btn-container {
  display: block;
}

.s-panel-link__btn:after {
  content: '海上保安庁HPへ';
}

.s-panel-link__btn-caption {
  margin-top: 15px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .s-panel-link__btn-caption {
    font-size: 1.3rem;
  }
}

.s-panel-link__btn-caption a {
  color: #000;
  text-decoration: none;
}

.s-panel-link__btn-caption a:visited {
  color: #000;
}

.s-panel-link__btn-caption a:hover, .s-panel-link__btn-caption a:active {
  color: #c1a250;
}

.s-panel-outward {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  padding: 40px 60px;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .s-panel-outward {
    padding: 35px 40px;
  }
}

@media (max-width: 767px) {
  .s-panel-outward {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 25px 25px 35px;
  }
}

[class^="c-heading-"]+.s-panel-outward {
  margin-top: 50px;
}

@media (max-width: 767px) {
  [class^="c-heading-"]+.s-panel-outward {
    margin-top: 30px;
  }
}

.s-panel-outward__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 70px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .s-panel-outward__desc {
    margin-right: 40px;
  }
}

@media (max-width: 767px) {
  .s-panel-outward__desc {
    width: 100%;
    margin-right: 0;
    line-height: 1.64286;
  }
}

.s-panel-outward__btn-container {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-left: auto;
}

@media (max-width: 767px) {
  .s-panel-outward__btn-container {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }
}

.s-panel-outward__btn:after {
  content: '詳しくはこちら';
}

@media (min-width: 768px) and (max-width: 960px) {
  .s-panel-outward__btn {
    width: 300px;
  }
}

/* Home
================================================== */

.p-home .f-wrap {
  padding-top: 0;
}

.p-home .l-header.is-absolute {
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
}

.p-home .l-header.is-absolute .l-header-sp {
  border-bottom: 0;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
}

.p-home .l-header.is-absolute .l-header-sp__logo {
  visibility: hidden;
}

.p-home .l-header.is-absolute .l-header__logo a {
  background-image: url(../imgs/header-logo02.png);
}

.p-home .l-header.is-absolute .l-nav-trigger {
  color: #fff;
}

.p-home .l-header.is-absolute .l-nav-trigger__btn i, .p-home .l-header.is-absolute .l-nav-trigger__btn:before, .p-home .l-header.is-absolute .l-nav-trigger__btn:after {
  background-color: #fff;
}

.p-home .l-header.is-absolute .l-nav a {
  color: #fff;
}

.p-home .l-header.is-absolute .l-nav a:hover {
  color: #c1a250;
}

.p-home .l-header.is-absolute .l-nav li {
  border-right-color: #fff;
}

.p-home-hero {
  position: relative;
  height: 826px;
  min-height: 684px;
  background-color: #161a25;
  overflow: hidden;
  -webkit-transition: height 1.5s;
  -o-transition: height 1.5s;
  transition: height 1.5s;
}

@media (max-width: 1080px) {
  .p-home-hero {
    height: auto;
    min-height: 0;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .p-home-hero {
    padding-top: 655px;
  }
}

@media (max-width: 767px) {
  .p-home-hero {
    padding-top: 85.3333%;
  }
}

.p-home-hero:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 96px;
  background: url(../imgs/home/bg01.png) center top repeat-x;
  background-size: auto 96px;
  pointer-events: none;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5) {
  .p-home-hero:after {
    background-image: url(../imgs/home/bg01@2x.png);
  }
}

@media (max-width: 767px) {
  .p-home-hero:after {
    height: 62px;
    background-size: auto 62px;
  }
}

.p-home-hero__imgs, .p-home-hero__img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.p-home-hero__imgs {
  list-style: none;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 3s .8s;
  -o-transition: opacity 3s .8s;
  transition: opacity 3s .8s;
}

.is-loading .p-home-hero__imgs {
  opacity: 0;
}

.p-home-hero__img {
  background: center 75% no-repeat;
  background-size: cover;
}

@media (max-width: 1080px) {
  .p-home-hero__img {
    background-position: center center;
  }
}

.p-home-hero__img.scene-01 {
  background-image: url(../imgs/home/mv.jpg);
}

@media only screen and (min-width: 1367px) {
  .p-home-hero__img.scene-01 {
    background-image: url(../imgs/home/mv@2x.jpg);
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .p-home-hero__img.scene-01 {
    background-image: url(../imgs/home/mv@2x.jpg);
  }
}

@media (max-width: 767px) {
  .p-home-hero__img.scene-01 {
    background-image: url(../imgs/home/mv-sp.jpg);
  }
}

@media (max-width: 767px) and (-webkit-min-device-pixel-ratio: 3), (max-width: 767px) and (min-resolution: 3) {
  .p-home-hero__img.scene-01 {
    background-image: url(../imgs/home/mv-sp@2x.jpg);
  }
}

.p-home-hero__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity .8s;
  -o-transition: opacity .8s;
  transition: opacity .8s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.p-home-hero__logo img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

@media (max-width: 1080px) {
  .p-home-hero__logo {
    top: 120px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  .p-home-hero__logo {
    top: 7.8125%;
    width: 24%;
  }
}

.is-loading .p-home-hero__logo {
  opacity: 0;
}

.p-home-hero__weather {
  position: absolute;
  right: 50px;
  bottom: 87px;
  z-index: 2;
  width: 224px;
  background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
  .p-home-hero__weather {
    right: 25px;
  }
}

@media (max-width: 767px) {
  .p-home-hero__weather {
    display: none;
  }
}

.p-home-article {
  background: #ebf4fc url(../imgs/home/bg02.png) center top;
  background-size: auto 200px;
}

.p-home-article-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .p-home-article-wrap {
    width: auto;
    padding: 50px 20px;
  }
}

@media (max-width: 767px) {
  .p-home-article-wrap {
    width: auto;
    padding: 15px 13px 25px;
  }
}

.p-home-article__news, .p-home-article__sns {
  width: 50%;
}

@media (max-width: 767px) {
  .p-home-article__news, .p-home-article__sns {
    width: 100%;
  }
}

.p-home-article__news {
  padding-right: 25px;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .p-home-article__news {
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .p-home-article__news {
    padding-right: 0;
  }
}

.p-home-article__sns {
  padding-left: 25px;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .p-home-article__sns {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .p-home-article__sns {
    margin-top: 35px;
    padding-left: 0;
  }
}

.p-home-article__news-content, .p-home-article__sns-content {
  background-color: #fff;
  height: 550px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .p-home-article__news-content, .p-home-article__sns-content {
    height: 354px;
  }
}

.p-home-article__news-content {
  padding: 0 40px;
}

@media (max-width: 767px) {
  .p-home-article__news-content {
    padding: 0 12px;
  }
}

.p-home-article__sns-content {
  padding: 10px 13px 5px;
  text-align: center;
}

.p-home-article__sns-content .twitter-timeline {
  margin-left: auto;
  margin-right: auto;
}

.p-home-sp__weather {
  display: none;
  padding: 25px 13px;
  background-color: #e9e9e9;
}

@media (max-width: 767px) {
  .p-home-sp__weather {
    display: block;
  }
}

/* About
================================================== */

.p-about-outline {
  margin-top: 25px;
}

.p-about-photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 45px;
}

@media (max-width: 767px) {
  .p-about-photo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
  }
}

.p-about-photo>figure {
  width: 50%;
}

@media (max-width: 767px) {
  .p-about-photo>figure {
    width: auto;
    margin-top: 15px;
  }
  .p-about-photo>figure:first-child {
    margin-top: 0;
  }
}

.p-about-photo>figure:nth-child(2n+1) {
  padding: 0 12px 0 0;
}

@media (max-width: 767px) {
  .p-about-photo>figure:nth-child(2n+1) {
    padding: 0;
  }
}

.p-about-photo>figure:nth-child(2n) {
  padding: 0 0 0 12px;
}

@media (max-width: 767px) {
  .p-about-photo>figure:nth-child(2n) {
    padding: 0;
  }
}

/* Venue
================================================== */

.p-venue-leaflet {
  padding: 50px 0 0;
  text-align: center;
}

@media (max-width: 767px) {
  .p-venue-leaflet {
    padding: 30px 0 10px;
  }
}

.p-venue-map {
  margin: 50px auto 70px;
}

@media (max-width: 767px) {
  .p-venue-map {
    margin: 25px auto 30px;
  }
}

.p-venue-map__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-venue-map__link {
  display: none;
  margin-left: auto;
  font-size: 1.4rem;
  text-align: right;
}

.p-venue-map__link a {
  color: #000;
}

.p-venue-map__link a:visited {
  color: #000;
}

@media (max-width: 767px) {
  .p-venue-map__link {
    display: block;
  }
}

.p-venue-maperror__link {
  display: block;
  margin-left: auto;
  font-size: 1.4rem;
  text-align: right;
}

.p-venue-maperror__link a {
  color: #000;
}

.p-venue-maperror__link a:visited {
  color: #000;
}

.p-venue-map__embed {
  position: relative;
  margin-top: 10px;
  padding-top: 50%;
}

@media (max-width: 767px) {
  .p-venue-map__embed {
    padding-top: 54.28571%;
  }
}

.p-venue-map__embed .p-venue-map__place, .p-venue-map__embed iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-venue-map__access {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .p-venue-map__access {
    margin-top: 15px;
  }
}

.p-venue-map__access-dt {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 140px;
  height: 60px;
  padding: 10px 5px;
  border: 1px solid #10335f;
  background-color: #fff;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #10335f;
  text-align: center;
}

@media (max-width: 767px) {
  .p-venue-map__access-dt {
    width: 100px;
    height: 40px;
    padding: 9px 5px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-venue-map__access-dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 20px;
  font-size: 1.8rem;
  line-height: 1.66667;
}

@media (max-width: 767px) {
  .p-venue-map__access-dd {
    margin-left: 15px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-venue-map__ico {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 38px;
  margin-right: 1em;
  background: url(../imgs/ico-train.png) center center no-repeat;
  background-size: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  cursor: default;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2) {
  .p-venue-map__ico {
    background-image: url(../imgs/ico-train@2x.png);
  }
}

@media (max-width: 767px) {
  .p-venue-map__ico {
    width: 15px;
    height: 20px;
    margin-right: 8px;
  }
}

.p-venue-map__tx {
  display: inline-block;
  vertical-align: middle;
}

/* Program
================================================== */

.p-program-venue {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 50px 0 0;
}

@media (max-width: 767px) {
  .p-program-venue {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
}

.p-program-venue__place {
  width: 50%;
}

.p-program-venue__place:nth-child(2n+1) {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .p-program-venue__place:nth-child(2n+1) {
    margin-right: 0;
  }
}

.p-program-venue__place:nth-child(2n) {
  margin-left: 15px;
}

@media (max-width: 767px) {
  .p-program-venue__place:nth-child(2n) {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .p-program-venue__place {
    width: 100%;
    margin-top: 35px;
    padding: 0;
  }
  .p-program-venue__place:first-child {
    margin-top: 25px;
  }
}

.p-program-timeline {
  list-style: none;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .p-program-timeline {
    margin-top: 18px;
  }
}

.p-program-timeline__item {
  position: relative;
}

.p-program-timeline__item+.p-program-timeline__item {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .p-program-timeline__item+.p-program-timeline__item {
    margin-top: 10px;
  }
}

.p-program-timeline__item+.p-program-timeline__item:before {
  content: '';
  position: absolute;
  left: 40px;
  bottom: 100%;
  width: 2px;
  height: 15px;
  margin-left: -1px;
  background-color: #dedede;
}

@media (max-width: 1080px) {
  .p-program-timeline__item+.p-program-timeline__item:before {
    left: 27px;
    width: 1px;
    height: 10px;
    margin-left: 0;
  }
}

.p-program-timeline__dl {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

.p-program-timeline__dl>dt, .p-program-timeline__dl>dd {
  display: table-cell;
  padding: 3px;
  vertical-align: middle;
}

.p-program-timeline__dl>dt {
  width: 80px;
  background-color: #c1a250;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.66667;
  color: #fff;
  text-align: center;
}

@media (max-width: 1080px) {
  .p-program-timeline__dl>dt {
    width: 55px;
    font-size: 1.4rem;
    line-height: 2.14286;
  }
}

.p-program-timeline__dl>dt.blue {
  background-color: #10335f;
}

.p-program-timeline__dl>dt.gray {
  background-color: #e9e9e9;
}

.p-program-timeline__dl>dd {
  padding: 3px 20px;
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.66667;
}

@media (max-width: 1080px) {
  .p-program-timeline__dl>dd {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.p-program-total {
  margin-top: 15px;
  padding: 5px;
  background-color: #fff;
  font-size: 1.8rem;
  line-height: 1.66667;
  text-align: center;
}

.p-program-contest {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 24px;
  counter-reset: contest_item;
}

@media (max-width: 767px) {
  .p-program-contest {
    margin-top: 20px;
  }
}

.p-program-contest__item {
  width: calc(50% - 14px);
  margin-top: 26px;
  padding: 25px 30px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .p-program-contest__item {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
  }
}

.p-program-contest__item:nth-child(2n+1) {
  margin-right: 14px;
}

@media (max-width: 767px) {
  .p-program-contest__item:nth-child(2n+1) {
    margin-right: 0;
  }
}

.p-program-contest__item:nth-child(2n) {
  margin-left: 14px;
}

@media (max-width: 767px) {
  .p-program-contest__item:nth-child(2n) {
    margin-left: 0;
  }
}

.p-program-contest__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-program-contest-num {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: relative;
  margin-right: 10px;
  font-style: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 900;
}

@media (max-width: 767px) {
  .p-program-contest-num {
    margin-right: 8px;
  }
}

.p-program-contest-num:before {
  counter-increment: contest_item;
  content: counter(contest_item);
  display: inline-block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #c1a250;
  font-size: 1.8rem;
  line-height: 38px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .p-program-contest-num:before {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    line-height: 30px;
  }
}

.p-program-contest-head-tx {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-program-contest__item-body {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (max-width: 767px) {
  .p-program-contest__item-body {
    margin-top: 7px;
    line-height: 1.64286;
  }
}

.p-program-contest-title, .p-program-contest-corp {
  display: block;
  font-style: normal;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  line-height: 1.5;
}

.p-program-contest-sub-title {
  display: block;
  font-style: normal;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  line-height: 1.5;
}

.p-program-contest-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #c1a250;
}

.p-program-contest-sub-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #c1a250;
}

@media (max-width: 767px) {
  .p-program-contest-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .p-program-contest-sub-title {
    font-size: 1.1rem;
  }
}

.p-program-contest-corp {
  font-weight: 300;
  font-size: 1.2rem;
  color: #666a6f;
}

@media (max-width: 767px) {
  .p-program-contest-corp {
    font-size: 1.3rem;
  }
}

/* Manner
================================================== */

.p-manner-box {
  margin-top: 32px;
  border: 1px solid #c1a250;
  background-color: #fff;
}

@media (max-width: 767px) {
  .p-manner-box {
    margin-top: 22px;
  }
}

.p-manner-box__head {
  padding: 7px;
  background: #c1a250;
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .p-manner-box__head {
    padding: 5px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}

.p-manner-box__body {
  padding: 0 30px;
}

@media (max-width: 767px) {
  .p-manner-box__body {
    padding: 0;
  }
  .p-manner-box__body .c-list-01__item {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.p-manner .c-section-03 .c-list-01__item:last-child {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .p-manner-kainan-lead {
    line-height: 1.71429;
  }
}

/* Sponsor
================================================== */

.p-sponsor-block {
  margin: 35px auto 0;
}

@media (max-width: 767px) {
  .p-sponsor-block {
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  .p-sponsor-assisted {
    margin: 35px auto 0;
  }
}

.p-sponsor-list {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0;
  padding: 10px 0;
  background-color: #fff;
}

@media (max-width: 767px) {
  .p-sponsor-list {
    margin: 10px 0 0;
    padding: 12px 0;
  }
}

.p-sponsor-list>li {
  width: 33.333%;
  width: calc(100% / 3);
  padding: 0 10px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.14286;
}

@media (max-width: 767px) {
  .p-sponsor-list>li {
    width: 100%;
    margin: 1px 0;
    line-height: 1.85714;
  }
}

/* Utility Align
================================================== */

.u-ta--l {
  text-align: left;
}

.u-ta--c {
  text-align: center;
}

.u-ta--r {
  text-align: right;
}

.u-va--t {
  vertical-align: top;
}

.u-va--b {
  vertical-align: bottom;
}

.u-va--m {
  vertical-align: middle;
}

.u-va--bl {
  vertical-align: baseline;
}

/* Utility Float
================================================== */

.u-f--l {
  float: left;
}

.u-f--r {
  float: right;
}

.u-f--n {
  float: none;
}

.u-m--0 {
  margin: 0 !important;
}

.u-m--0 {
  margin: 0px;
}

.u-m--5 {
  margin: 5px;
}

.u-m--10 {
  margin: 10px;
}

.u-m--15 {
  margin: 15px;
}

.u-m--20 {
  margin: 20px;
}

.u-m--25 {
  margin: 25px;
}

.u-m--30 {
  margin: 30px;
}

.u-m--35 {
  margin: 35px;
}

.u-m--40 {
  margin: 40px;
}

.u-m--45 {
  margin: 45px;
}

.u-m--50 {
  margin: 50px;
}

.u-ml--0 {
  margin-left: 0px;
}

.u-ml--5 {
  margin-left: 5px;
}

.u-ml--10 {
  margin-left: 10px;
}

.u-ml--15 {
  margin-left: 15px;
}

.u-ml--20 {
  margin-left: 20px;
}

.u-ml--25 {
  margin-left: 25px;
}

.u-ml--30 {
  margin-left: 30px;
}

.u-ml--35 {
  margin-left: 35px;
}

.u-ml--40 {
  margin-left: 40px;
}

.u-ml--45 {
  margin-left: 45px;
}

.u-ml--50 {
  margin-left: 50px;
}

.u-mr--0 {
  margin-right: 0px;
}

.u-mr--5 {
  margin-right: 5px;
}

.u-mr--10 {
  margin-right: 10px;
}

.u-mr--15 {
  margin-right: 15px;
}

.u-mr--20 {
  margin-right: 20px;
}

.u-mr--25 {
  margin-right: 25px;
}

.u-mr--30 {
  margin-right: 30px;
}

.u-mr--35 {
  margin-right: 35px;
}

.u-mr--40 {
  margin-right: 40px;
}

.u-mr--45 {
  margin-right: 45px;
}

.u-mr--50 {
  margin-right: 50px;
}

.u-mt--0 {
  margin-top: 0px;
}

.u-mt--5 {
  margin-top: 5px;
}

.u-mt--10 {
  margin-top: 10px;
}

.u-mt--15 {
  margin-top: 15px;
}

.u-mt--20 {
  margin-top: 20px;
}

.u-mt--25 {
  margin-top: 25px;
}

.u-mt--30 {
  margin-top: 30px;
}

.u-mt--35 {
  margin-top: 35px;
}

.u-mt--40 {
  margin-top: 40px;
}

.u-mt--45 {
  margin-top: 45px;
}

.u-mt--50 {
  margin-top: 50px;
}

.u-mb--0 {
  margin-bottom: 0px;
}

.u-mb--5 {
  margin-bottom: 5px;
}

.u-mb--10 {
  margin-bottom: 10px;
}

.u-mb--15 {
  margin-bottom: 15px;
}

.u-mb--20 {
  margin-bottom: 20px;
}

.u-mb--25 {
  margin-bottom: 25px;
}

.u-mb--30 {
  margin-bottom: 30px;
}

.u-mb--35 {
  margin-bottom: 35px;
}

.u-mb--40 {
  margin-bottom: 40px;
}

.u-mb--45 {
  margin-bottom: 45px;
}

.u-mb--50 {
  margin-bottom: 50px;
}

.u-mlr--0 {
  margin-left: 0px;
  margin-right: 0px;
}

.u-mtb--0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.u-mlr--5 {
  margin-left: 5px;
  margin-right: 5px;
}

.u-mtb--5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.u-mlr--10 {
  margin-left: 10px;
  margin-right: 10px;
}

.u-mtb--10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.u-mlr--15 {
  margin-left: 15px;
  margin-right: 15px;
}

.u-mtb--15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.u-mlr--20 {
  margin-left: 20px;
  margin-right: 20px;
}

.u-mtb--20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.u-mlr--25 {
  margin-left: 25px;
  margin-right: 25px;
}

.u-mtb--25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.u-mlr--30 {
  margin-left: 30px;
  margin-right: 30px;
}

.u-mtb--30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.u-mlr--35 {
  margin-left: 35px;
  margin-right: 35px;
}

.u-mtb--35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.u-mlr--40 {
  margin-left: 40px;
  margin-right: 40px;
}

.u-mtb--40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.u-mlr--45 {
  margin-left: 45px;
  margin-right: 45px;
}

.u-mtb--45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.u-mlr--50 {
  margin-left: 50px;
  margin-right: 50px;
}

.u-mtb--50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.u-pl--0 {
  padding-left: 0px;
}

.u-pl--5 {
  padding-left: 5px;
}

.u-pl--10 {
  padding-left: 10px;
}

.u-pl--15 {
  padding-left: 15px;
}

.u-pl--20 {
  padding-left: 20px;
}

.u-pl--25 {
  padding-left: 25px;
}

.u-pl--30 {
  padding-left: 30px;
}

.u-pl--35 {
  padding-left: 35px;
}

.u-pl--40 {
  padding-left: 40px;
}

.u-pl--45 {
  padding-left: 45px;
}

.u-pl--50 {
  padding-left: 50px;
}

.u-pr--0 {
  padding-right: 0px;
}

.u-pr--5 {
  padding-right: 5px;
}

.u-pr--10 {
  padding-right: 10px;
}

.u-pr--15 {
  padding-right: 15px;
}

.u-pr--20 {
  padding-right: 20px;
}

.u-pr--25 {
  padding-right: 25px;
}

.u-pr--30 {
  padding-right: 30px;
}

.u-pr--35 {
  padding-right: 35px;
}

.u-pr--40 {
  padding-right: 40px;
}

.u-pr--45 {
  padding-right: 45px;
}

.u-pr--50 {
  padding-right: 50px;
}

.u-pt--0 {
  padding-top: 0px;
}

.u-pt--5 {
  padding-top: 5px;
}

.u-pt--10 {
  padding-top: 10px;
}

.u-pt--15 {
  padding-top: 15px;
}

.u-pt--20 {
  padding-top: 20px;
}

.u-pt--25 {
  padding-top: 25px;
}

.u-pt--30 {
  padding-top: 30px;
}

.u-pt--35 {
  padding-top: 35px;
}

.u-pt--40 {
  padding-top: 40px;
}

.u-pt--45 {
  padding-top: 45px;
}

.u-pt--50 {
  padding-top: 50px;
}

.u-pb--0 {
  padding-bottom: 0px;
}

.u-pb--5 {
  padding-bottom: 5px;
}

.u-pb--10 {
  padding-bottom: 10px;
}

.u-pb--15 {
  padding-bottom: 15px;
}

.u-pb--20 {
  padding-bottom: 20px;
}

.u-pb--25 {
  padding-bottom: 25px;
}

.u-pb--30 {
  padding-bottom: 30px;
}

.u-pb--35 {
  padding-bottom: 35px;
}

.u-pb--40 {
  padding-bottom: 40px;
}

.u-pb--45 {
  padding-bottom: 45px;
}

.u-pb--50 {
  padding-bottom: 50px;
}

/* Block Width
================================================== */

.w--120 {
  width: 120px;
}

.w--240 {
  width: 240px;
}

.w--300 {
  width: 300px;
}

.w--320 {
  width: 320px;
}

.w--450 {
  width: 450px;
}

.w--530 {
  width: 530px;
}

.w--690 {
  width: 690px;
}

/* Utility Text
================================================== */

.u-tx-smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-tx-kerning {
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
}

.u-lh--100 {
  line-height: 1;
}

.u-lh--120 {
  line-height: 1.2;
}

.u-lh--125 {
  line-height: 1.25;
}

.u-lh--133 {
  line-height: 1.3333;
}

.u-lh--150 {
  line-height: 1.5;
}

.u-lh--166 {
  line-height: 1.6667;
}

.u-lh--175 {
  line-height: 1.75;
}

.u-lh--200 {
  line-height: 2;
}

.u-tx--10 {
  font-size: 1.0rem;
}

.u-tx--11 {
  font-size: 1.1rem;
}

.u-tx--12 {
  font-size: 1.2rem;
}

.u-tx--13 {
  font-size: 1.3rem;
}

.u-tx--14 {
  font-size: 1.4rem;
}

.u-tx--15 {
  font-size: 1.5rem;
}

.u-tx--16 {
  font-size: 1.6rem;
}

.u-tx--18 {
  font-size: 1.8rem;
}

.u-tx--20 {
  font-size: 2.0rem;
}

.u-tx--21 {
  font-size: 2.1rem;
}

.u-tx--24 {
  font-size: 2.4rem;
}

.u-tx--ellipsis {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}

.u-tx--del {
  text-decoration: line-through;
}

.u-tx--nowrap {
  white-space: nowrap;
}

.u-tx--nowrap-box {
  display: inline-block;
  white-space: nowrap;
}

.u-tx-weight--normal {
  font-weight: normal;
}

.u-tx-weight--bold {
  font-weight: 700;
}

.u-tx--entity {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.u-tx-family--go {
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
}

.u-tx-family--mi {
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.u-tx-color-01 {
  color: #10335f;
}

.u-tx-color-02 {
  color: #c3a753;
}

.u-tx-color-03 {
  color: #c1a250;
}

.u-marker-01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fcfbcf));
  background: -webkit-linear-gradient(transparent 60%, #fcfbcf 60%);
  background: -o-linear-gradient(transparent 60%, #fcfbcf 60%);
  background: linear-gradient(transparent 60%, #fcfbcf 60%);
}

.is-pc {
  display: none;
}

@media (min-width: 1081px) {
  .is-pc {
    display: block;
  }
}

.is-pctb {
  display: none;
}

@media (min-width: 768px) {
  .is-pctb {
    display: block;
  }
}

.is-tb {
  display: none;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .is-tb {
    display: block;
  }
}

.is-tbsp {
  display: none;
}

@media (max-width: 1080px) {
  .is-tbsp {
    display: block;
  }
}

.is-tbsp2 {
  display: none;
}

@media (max-width: 960px) {
  .is-tbsp2 {
    display: block;
  }
}

.is-sp {
  display: none;
}

@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.preparing-square {
  margin: 5% 0% 0%;
  position: relative;
  height: 80px;
  background-color: #848484;
  text-align: center;
}

.preparing-square p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
}

/* Utility Clearfix
================================================== */

.u-clr {
  clear: both;
}

.u-cf:after {
  display: block;
  clear: both;
  content: "";
}

/* 画像のコピーガード対策有り */

#guard {
  position: relative;
  width: 100%;
}

.img_Guard {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../imgs/column/spacer.gif);
}

/* Cancel
================================================== */
.s-top-info {
  padding: 0.75em 0 1em;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}

@media (max-width: 767px) {
  .s-top-info {
    padding: 11px 8px 15px;
    font-size: 2.8vw;
  }
}

.s-top-info__text {
  font-weight: 600;
  letter-spacing: 0.075em;
  vertical-align: middle;
}