@charset "UTF-8";
/* ==========================================================================
  Reset
  ========================================================================== */
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, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
  scroll-padding-top: 80px;
}

body {
  color: #000;
  font-size: 1.6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
  body {
    min-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background: #004ea2;
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.jp {
  font-family: "TBUDGothic R", sans-serif;
}

.jp-b {
  font-family: "TBUDGothic E", sans-serif;
}

.en {
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.en-b {
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  a {
    transition: all 0.25s ease-out;
  }
}
h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}

/* ==========================================================================
  Parts
  ========================================================================== */
.soon {
  display: block;
  padding: 120px 0;
  font-size: 200%;
  text-align: center;
  font-weight: bold;
}

/* ==========================================================================
  Animation
  ========================================================================== */
.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.8s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeinUp {
  opacity: 0;
}

.anim-fadeinUp.is-show {
  animation: fadeInUp 0.8s 0.2s both ease-out;
}

.anim-fadeinUp.anim-delay2.is-show {
  animation: fadeInUp 0.8s 0.6s both ease-out;
}

.anim-fadeinUp.anim-delay3.is-show {
  animation: fadeInUp 0.8s 0.8s both ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slideout-l.is-out {
  animation: slideOutL 1.5s 0.1s both ease-out;
}

@keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}
.anim-slideout-r.is-out {
  animation: slideOutR 1.5s 0.1s both ease-out;
}

@keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}
/* ==========================================================================
Layout (COMMON)
========================================================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .l-wrapper-top {
    max-width: 100%;
  }
}

.l-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 100%;
  }
}

.l-main {
  padding-top: 80px;
  position: relative;
  background: #ffffea;
}
@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 54px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-main {
    padding-top: 60px;
  }
}

.grad-bg {
  background: url(../images/grad_bg.png) left 80% top 120% no-repeat #ffffea;
  background-size: 120% 120%;
}

.l-section {
  position: relative;
  padding: 60px 5% 30px;
}
.l-section small {
  font-size: 80%;
}
.l-section h2 {
  height: 12.5vw;
  margin: 0 auto 40px;
  text-align: center;
}
.l-section h2 img {
  width: auto;
  height: 100%;
}
.l-section p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
  line-height: 1.8em;
}
.l-section ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
  line-height: 1.8em;
}
.l-section dl dt, .l-section dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
  line-height: 1.8em;
}
.l-section tr th, .l-section tr td {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.3em;
}
.l-section a.link-line {
  color: #004ea2;
  text-decoration: underline;
}
.l-section a.link-line:hover {
  text-decoration: none;
}
.l-section p.hiragino-w3 {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.l-section p.hiragino-w6 {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.l-section p.kozuka-w4 {
  font-family: "kozuka-gothic-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.l-section p.kozuka-w7 {
  font-family: "kozuka-gothic-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.l-section .notes {
  font-size: 90%;
  text-align: left;
}
.l-section .center {
  text-align: center;
}
.l-section .sub-ttl {
  margin: 15px 0;
  font-size: 1.2em;
  font-weight: 600;
}
.l-section .blue {
  color: #004ea2;
  font-weight: 600;
}
.l-section h3 {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
  line-height: 2.2em;
  border-bottom: 3px dotted #004ea2;
  /* アイコン位置 TEXT LONG */
  /* アイコン位置 TEXT MIDDLE */
  /* アイコン位置 TEXT SMALL */
}
.l-section h3 .h3-inner-l {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #004ea2;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l-section h3 .h3-inner-l {
    font-size: 1.8em;
  }
}
.l-section h3 .h3-inner-l:after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: -40px;
  left: -100px;
  background: url(../images/common/bubble_icon.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l-section h3 .h3-inner-l:after {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -20px;
  }
}
.l-section h3 .h3-inner-m {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #004ea2;
  z-index: 10;
}
.l-section h3 .h3-inner-m:after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: -40px;
  left: -100px;
  background: url(../images/common/bubble_icon.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l-section h3 .h3-inner-m:after {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -60px;
  }
}
.l-section h3 .h3-inner-s {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #004ea2;
  z-index: 10;
}
.l-section h3 .h3-inner-s:after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: -40px;
  left: -100px;
  background: url(../images/common/bubble_icon.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l-section h3 .h3-inner-s:after {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -80px;
  }
}
.l-section .lead {
  font-size: 1.1em;
  line-height: 1.8em;
  text-align: center;
}
.l-section .markerUnder {
  background: linear-gradient(transparent 70%, #fff600 0%);
  display: inline;
  padding: 0 1px 0px;
}

@media screen and (min-width: 960px) {
  .l-section {
    padding: 80px 0 40px;
  }
  .l-section h2 {
    height: 90px;
    margin: 0 auto 50px;
  }
  .l-section h3 {
    line-height: 1.8em;
  }
  .l-section .lead {
    font-size: 1.2em;
  }
}
.btn-wrap {
  margin: 15px 0 0;
}

a.btn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  border: 3px solid #009ce0;
  border-radius: 15px;
  text-align: center;
  background: #fff;
  font-weight: bold;
  font-size: 1.2em;
  padding: 15px;
  color: #009ce0;
}
a.btn:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #009ce0;
  border-right: solid 2px #009ce0;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
}

a.btn-blue {
  border: 3px solid #009ce0;
  background: #009ce0;
  display: block;
  color: #fff;
}
a.btn-blue:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
}

.btn:first-child {
  margin-bottom: 15px;
}

a.btn.btn-back {
  margin: 60px auto 30px;
}
a.btn.btn-back:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #009ce0;
  border-left: solid 2px #009ce0;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: auto;
  left: 5%;
  bottom: 0;
  margin: auto;
}

a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 960px) {
  .btn {
    width: 50%;
  }
}
/* ==========================================================================
Layout (TOP)
========================================================================== */
/* ---------------
HEADER
------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-header {
    width: 100%;
    background: #009ce0;
    padding: 15px 0;
    height: 60px;
    position: fixed;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
    z-index: 11;
  }
  .l-header .logo {
    width: 60%;
    margin: 0 auto;
    max-width: 300px;
  }
  .l-header .logo img {
    width: 100%;
    height: auto;
  }
  .l-header .nav-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    right: 0;
    top: -15px;
    bottom: 0;
    margin: auto 0;
    z-index: 100;
  }
  .l-header .nav-trigger .lines {
    position: relative;
  }
  .l-header .nav-trigger .lines span {
    position: absolute;
    z-index: 2;
    background: #fff;
    left: 15px;
    transition: all 0.25s ease-out;
  }
  .l-header .nav-trigger .lines span:nth-child(1) {
    width: 30px;
    height: 3px;
    top: 20px;
  }
  .l-header .nav-trigger .lines span:nth-child(2) {
    width: 30px;
    height: 3px;
    top: 30px;
  }
  .l-header .nav-trigger .lines span:nth-child(3) {
    width: 30px;
    height: 3px;
    top: 40px;
  }
  .l-header .nav-trigger.is-active .lines span {
    background: #fff;
  }
  .l-header .nav-trigger.is-active .lines span:nth-child(1) {
    width: 30px;
    top: 30px;
    transform: rotate(-45deg);
  }
  .l-header .nav-trigger.is-active .lines span:nth-child(2) {
    width: 0;
    top: 30px;
    transform: rotate(45deg);
  }
  .l-header .nav-trigger.is-active .lines span:nth-child(3) {
    width: 30px;
    top: 30px;
    transform: rotate(45deg);
  }
  .l-header .gnav {
    display: none;
    overflow: hidden;
    opacity: 0;
    top: 60px;
    bottom: 0;
    left: 0;
    right: -100vw;
    position: absolute;
    width: 100%;
    height: 100svh;
    background: rgba(0, 156, 224, 0.8);
    z-index: 100;
    padding: 7.5% 5% 0;
    transition: all 0.25s ease-out;
  }
  .l-header .gnav ul {
    width: 100%;
    margin: 0;
    padding: 6% 0 10%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
  }
  .l-header .gnav ul li {
    overflow: visible;
    border-bottom: 2px dotted #004ea2;
    text-align: left;
    margin: 0 6%;
  }
  .l-header .gnav ul li a {
    position: relative;
    border: none;
    display: block;
    padding: 20px 0 10px 20px;
    color: #004ea2;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .l-header .gnav ul li a:last-child {
    border: none;
  }
  .l-header .gnav ul li a:before {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #004ea2;
    border-right: solid 2px #004ea2;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
  }
  .l-header .gnav ul li.sp-sns {
    text-align: center;
    padding: 25px 0;
  }
  .l-header .gnav ul li.sp-sns a {
    display: inline-block;
    width: 26px;
    height: 26px;
    padding: 0;
    margin: 0 20px;
    border: none;
  }
  .l-header .gnav.is-active {
    display: block;
    left: 0;
    right: 0;
    opacity: 1;
  }

  .nav-trigger {
    height: 60px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    background: #009ce0;
    padding: 15px 0;
    height: 60px;
    position: fixed;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
    z-index: 11;
  }
  .l-header .logo {
    width: 60%;
    margin: 0 auto;
    max-width: 300px;
  }
  .l-header .logo img {
    width: 100%;
    height: auto;
  }
  .l-header .nav-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    right: 0;
    top: -15px;
    bottom: 0;
    margin: auto 0;
    z-index: 100;
  }
  .l-header .nav-trigger .lines {
    position: relative;
  }
  .l-header .nav-trigger .lines span {
    position: absolute;
    z-index: 2;
    background: #fff;
    left: 15px;
    transition: all 0.25s ease-out;
  }
  .l-header .nav-trigger .lines span:nth-child(1) {
    width: 30px;
    height: 3px;
    top: 20px;
  }
  .l-header .nav-trigger .lines span:nth-child(2) {
    width: 30px;
    height: 3px;
    top: 30px;
  }
  .l-header .nav-trigger .lines span:nth-child(3) {
    width: 30px;
    height: 3px;
    top: 40px;
  }
  .l-header .nav-trigger.is-active .lines span {
    background: #fff;
  }
  .l-header .nav-trigger.is-active .lines span:nth-child(1) {
    width: 30px;
    top: 30px;
    transform: rotate(-45deg);
  }
  .l-header .nav-trigger.is-active .lines span:nth-child(2) {
    width: 0;
    top: 30px;
    transform: rotate(45deg);
  }
  .l-header .nav-trigger.is-active .lines span:nth-child(3) {
    width: 30px;
    top: 30px;
    transform: rotate(45deg);
  }
  .l-header .gnav {
    display: none;
    overflow: hidden;
    opacity: 0;
    top: 60px;
    bottom: 0;
    left: 0;
    right: -100vw;
    position: absolute;
    width: 100%;
    height: 100svh;
    background: rgba(0, 156, 224, 0.8);
    z-index: 100;
    padding: 7.5% 5% 0;
    transition: all 0.25s ease-out;
  }
  .l-header .gnav ul {
    width: 100%;
    margin: 0;
    padding: 6% 0 10%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
  }
  .l-header .gnav ul li {
    overflow: visible;
    border-bottom: 2px dotted #004ea2;
    text-align: left;
    margin: 0 6%;
  }
  .l-header .gnav ul li a {
    position: relative;
    border: none;
    display: block;
    padding: 20px 0 10px 20px;
    color: #004ea2;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .l-header .gnav ul li a:last-child {
    border: none;
  }
  .l-header .gnav ul li a:before {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #004ea2;
    border-right: solid 2px #004ea2;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
  }
  .l-header .gnav ul li.sp-sns {
    text-align: center;
    padding: 25px 0;
  }
  .l-header .gnav ul li.sp-sns a {
    display: inline-block;
    width: 26px;
    height: 26px;
    padding: 0;
    margin: 0 20px;
    border: none;
  }
  .l-header .gnav.is-active {
    display: block;
    left: 0;
    right: 0;
    opacity: 1;
  }

  .nav-trigger {
    height: 60px;
    right: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-header {
    margin: 0 auto;
    width: 100%;
    background: #009ce0;
    padding: 20px;
    height: 80px;
    position: fixed;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
    z-index: 11;
  }
  .l-header .logo {
    position: absolute;
    top: 20px;
    left: 2%;
    width: 20%;
    height: auto;
    margin-top: 5px;
    max-width: 300px;
  }
  .l-header .logo img {
    width: 100%;
    height: auto;
  }
  .l-header .nav-trigger {
    display: none;
  }
  .l-header .nav-trigger.is-active {
    display: none;
  }
  .l-header .nav-trigger {
    height: 0;
    right: 0;
  }
  .l-header .gnav {
    display: block;
    overflow: visible;
    max-width: 850px;
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: static;
    width: 100%;
    height: auto;
    background: none;
    z-index: 0;
    padding: 1% 0 1% 1%;
    transition: all 0.25s ease-out;
  }
  .l-header .gnav ul {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: inherit;
    justify-content: flex-end;
    border-top: none;
    align-items: center;
  }
  .l-header .gnav ul li {
    position: relative;
    width: auto;
    overflow: visible;
    border-bottom: none;
    text-align: center;
    margin: 0;
    padding: 0 1.5%;
    border-left: 1px solid #ffffff;
  }
  .l-header .gnav ul li a {
    border: none;
    display: block;
    color: #ffffff;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0;
  }
  .l-header .gnav ul li a:hover {
    opacity: 0.6;
  }
  .l-header .gnav ul li:first-child {
    border-left: none;
  }
  .l-header .gnav ul li:last-child {
    border-right: none;
  }
  .l-header .gnav.is-active {
    display: block;
    left: 0;
    right: 0;
    opacity: 1;
  }
}
/* ---------------
FOOTER
------------------ */
footer {
  position: relative;
  padding: 8% 5%;
  background: #009ce0;
}
footer .top-arrow {
  position: absolute;
  top: -30px;
  right: 3%;
  width: 60px;
  height: auto;
}
footer .top-arrow img {
  width: 100%;
  height: auto;
}
footer ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer ul li {
  display: block;
  width: 48%;
  margin: 0 0 20px 0;
}
footer ul li a {
  position: relative;
  padding-left: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #fff;
}
footer ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
footer ul li:last-child {
  margin: 0;
}
footer .copy {
  margin-top: 15px;
  text-align: center;
  color: #fff;
  line-height: 1.6em;
  font-size: 0.6em;
}

@media screen and (min-width: 960px) {
  footer {
    position: relative;
    padding: 40px;
    background: #009ce0;
  }
  footer .top-arrow {
    position: absolute;
    top: -70px;
    right: 3%;
    width: 60px;
    height: auto;
  }
  footer .top-arrow img {
    width: 100%;
    height: auto;
  }
  footer ul {
    display: block;
    width: 100%;
  }
  footer ul li {
    display: inline-block;
    width: auto;
    margin: 0 3% 0 0;
  }
  footer ul li a {
    position: relative;
    padding-left: 20px;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
  }
  footer ul li a:before {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
  }
  footer ul li:last-child {
    margin: 0;
  }
  footer .copy {
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
  }
}
/* ==========================================================================
下層Layout (COMMON)
========================================================================== */
.l-kaso-kv {
  position: relative;
  width: 100%;
  padding: 40px 0;
  background: url(../images/common/kasou_main_ttl_bg_sp.jpg) top no-repeat;
  background-size: cover;
}
.l-kaso-kv h2 {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
.l-kaso-kv h2 img {
  width: 100%;
  height: auto;
}
.l-kaso-kv h2.archive-h2 {
  width: 40%;
}

@media screen and (min-width: 960px) {
  .l-kaso-kv {
    position: relative;
    width: 100%;
    padding: 60px 30px;
    background: url(../images/common/kasou_main_ttl_bg.jpg) center no-repeat;
    background-size: cover;
  }
  .l-kaso-kv h2 {
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }
  .l-kaso-kv h2 img {
    width: auto;
    height: 100%;
  }
}
/* ---------------
TABLE
------------------ */
.table-list {
  width: 100%;
  margin-top: 10px;
}
.table-list tr {
  display: block;
  margin-bottom: 10px;
}
.table-list tr th, .table-list tr td {
  display: block;
  padding: 5%;
  text-align: left;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.8em;
  background: #fff;
}
.table-list tr th {
  width: 100%;
  background: #fdfdcb;
}
.table-list tr td {
  width: 100%;
}

.table-list-flex {
  display: block;
}
.table-list-flex li {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .table-list {
    width: 100%;
    margin-top: 10px;
  }
  .table-list tr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .table-list tr th, .table-list tr td {
    display: block;
    padding: 2%;
    text-align: left;
    font-weight: 500;
    background: #fff;
    font-size: 1em;
  }
  .table-list tr th {
    width: 30%;
    background: #fdfdcb;
  }
  .table-list tr td {
    width: 69%;
  }

  .table-list-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .table-list-flex li {
    width: 48%;
  }
}
.square-list {
  margin: 15px 0;
}
.square-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.square-list li:before {
  content: "▪️";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ---------------
TOP KV
------------------ */
.l-kv {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 70px 0 52%;
  background: url(../images/mv_img_sp.jpg) center no-repeat;
  background-size: cover;
}
.l-kv h2 {
  width: 70%;
  height: auto;
}
.l-kv h2 img {
  width: 100%;
  height: auto;
}
.l-kv .kv-logo {
  position: absolute;
  top: 3%;
  left: 3%;
  width: 80px;
  height: auto;
}
.l-kv .kv-logo img {
  width: 100%;
  height: auto;
}
.l-kv .wave {
  position: absolute;
  bottom: -5px;
  left: -5%;
  right: 0;
  margin: 0 auto;
  width: 110%;
  overflow: hidden;
}
.l-kv .wave img {
  width: 100%;
  height: auto;
}

.l-ttl .contest-ttl {
  width: 100%;
  padding: 3%;
  background: #009ce0;
}
.l-ttl .contest-ttl p {
  color: #ffffff;
  font-size: 2.5em;
  text-align: center;
  font-family: "kozuka-gothic-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media screen and (min-width: 960px) {
  .l-kv {
    position: relative;
    width: 100%;
    padding: 80px 0 30%;
    min-height: 600px;
    background: url(../images/mv_img.jpg) center no-repeat;
    background-size: cover;
  }
  .l-kv h2 {
    width: 45%;
    height: auto;
  }
  .l-kv h2 img {
    width: 100%;
    height: auto;
  }
  .l-kv .kv-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: auto;
  }
  .l-kv .kv-logo img {
    width: 100%;
    height: auto;
  }
  .l-kv .kv-date {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: auto;
    height: 80px;
    z-index: 5;
  }
  .l-kv .kv-date img {
    width: auto;
    height: 100%;
  }
  .l-kv .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: auto;
  }
  .l-kv .wave img {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .contest-ttl {
    width: 100%;
    padding: 3%;
    background: #009ce0;
  }
  .contest-ttl p {
    color: #ffffff;
    font-size: 2.5em;
    text-align: center;
    font-family: "kozuka-gothic-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-kv {
    position: relative;
    width: 100%;
  }
  .l-kv .kv-date {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: auto;
    height: 80px;
    z-index: 5;
  }
  .l-kv .kv-date img {
    width: auto;
    height: 100%;
  }
}
/* ---------------
main-ttl
------------------ */
.l-ttl .contest-ttl {
  width: 100%;
  padding: 1% 1% 2% 1%;
  background: #009ce0;
}
.l-ttl .contest-ttl p {
  color: #ffffff;
  font-size: 1.5em;
  line-height: 1.8em;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.l-ttl .kv-date {
  position: static;
  width: 90%;
  height: auto;
  z-index: 50;
  margin: 0 auto;
}
.l-ttl .kv-date img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 960px) {
  .l-ttl .contest-ttl {
    width: 100%;
    padding: 0 0 2% 0;
    background: #009ce0;
  }
  .l-ttl .contest-ttl p {
    color: #ffffff;
    font-size: 2.5em;
    text-align: center;
    font-family: "kozuka-gothic-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}
/* ---------------
TOP about
------------------ */
/* ---------------
TOP oubo
------------------ */
.top-oubo .date {
  text-align: center;
}
.top-oubo .date p {
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  color: #004ea2;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke;
}
.top-oubo .date .font-s {
  font-size: 0.7em;
  font-weight: 600;
}

/* ---------------
TOP NEWS
------------------ */
.top-news .l-inner {
  padding: 3%;
  border: 3px solid #009ce0;
  background: #fff;
  border-radius: 30px;
}
.top-news .l-inner .news-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #004ea2;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 3px dotted #004ea2;
}
.top-news .l-inner dl {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #004ea2;
}
.top-news .l-inner dl dt {
  font-size: 1.1em;
  color: #004ea2;
  font-weight: 600;
  margin-bottom: 10px;
}
.top-news .l-inner dl dt:after {
  content: "NEW";
  width: 80px;
  height: 50px;
  font-size: 0.7em;
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
  margin-left: 15px;
  background: #009ce0;
}
.top-news .l-inner dl dd {
  font-size: 1em;
  color: #000;
  font-weight: 400;
}

/* ---------------
CONTEST
------------------ */
#summary .centered_img {
  width: 100%;
  height: auto;
  margin: 30px auto 0;
}
#summary .centered_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 960px) {
  #summary .centered_img {
    width: 70%;
    height: auto;
    margin: 30px auto 0;
  }
  #summary .centered_img img {
    width: 100%;
    height: auto;
  }
}
/* ---------------
受賞作品 
------------------ */
#archive .archived_poster {
  width: 100%;
  height: auto;
  margin: 15px auto 30px;
}
#archive .archived_poster img {
  width: 100%;
  height: auto;
  border: 1px solid #333;
}
#archive .archived_area_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}
#archive .archived_area_link li {
  position: relative;
  width: 48%;
  border-radius: 10px;
  padding: 5px 15px 5px 5px;
  margin-bottom: 10px;
  background: #eee;
}
#archive .archived_area_link li a {
  font-size: 0.8em;
  display: block;
  text-align: center;
  color: #000;
}
#archive .archived_area_link li:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
}
#archive .archived_area_link:after {
  content: "";
  display: block;
  width: 48%;
  height: 0;
}
#archive .archived_area_link:before {
  content: "";
  display: block;
  width: 48%;
  height: 0;
  order: 1;
}
#archive .archive_posters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
#archive .archive_posters li {
  width: 48%;
  height: auto;
  margin-bottom: 30px;
}
#archive .archive_posters li a span {
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
#archive .archive_posters li a img {
  padding-top: 10px;
}

@media screen and (min-width: 960px) {
  #archive .archived_poster {
    width: 100%;
    height: auto;
    margin: 15px auto 30px;
  }
  #archive .archived_poster img {
    width: 100%;
    height: auto;
    border: 1px solid #333;
  }
  #archive .archived_area_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  #archive .archived_area_link li {
    position: relative;
    width: 32%;
    border-radius: 10px;
    padding: 5px 15px 5px 5px;
    margin-bottom: 10px;
    background: #eee;
  }
  #archive .archived_area_link li a {
    font-size: 0.8em;
    display: block;
    text-align: center;
    color: #000;
  }
  #archive .archived_area_link li:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
  }
  #archive .archived_area_link:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  #archive .archived_area_link:before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
  }
  #archive .archive_posters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  #archive .archive_posters li {
    width: 48%;
    height: auto;
    margin-bottom: 30px;
  }
  #archive .archive_posters li a span {
    font-size: 1.1em;
    font-weight: 600;
  }
  #archive .archive_posters li a img {
    padding-top: 10px;
  }
}
/* ---------------
過去受賞作品 各回　目次 
------------------ */
/* ---------------
過去受賞作品 詳細ページ 
------------------ */
#archive_detail .l-kaso-kv {
  padding: 40px 30px;
  /*　下層ページ　h2テキスト */
}
#archive_detail .l-kaso-kv h2.archive-h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  font-weight: 600;
  color: #004ea2;
  height: auto;
  font-family: "Noto Sans JP", sans-serif;
}
#archive_detail .detail-poster img {
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  border: 1px solid #333;
}
#archive_detail .detail-poster .anchor-link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#archive_detail .detail-poster .anchor-link li {
  position: relative;
  width: 48%;
  border-radius: 10px;
  padding: 5px 15px 5px 5px;
  margin-bottom: 10px;
  background: #eee;
}
#archive_detail .detail-poster .anchor-link li a {
  font-size: 0.8em;
  display: block;
  text-align: center;
  color: #000;
}
#archive_detail .detail-poster .anchor-link li:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
}
#archive_detail .detail-poster .anchor-link:after {
  content: "";
  display: block;
  width: 48%;
  height: 0;
}
#archive_detail .detail-poster .anchor-link:before {
  content: "";
  display: block;
  width: 48%;
  height: 0;
  order: 1;
}
#archive_detail h4 {
  padding: 2%;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: #009ce0;
}
#archive_detail .archive_table {
  border-top: 1px solid #004ea2;
  border-right: 1px solid #004ea2;
}
#archive_detail .archive_table table {
  width: 100%;
  margin-bottom: 30px;
}
#archive_detail .archive_table table th, #archive_detail .archive_table table td {
  padding: 2%;
  border-left: 1px solid #004ea2;
  border-bottom: 1px solid #004ea2;
  background: #fff;
}
#archive_detail .archive_table table th {
  color: #000;
  background: #fdfdcb;
}
#archive_detail .archive_table table th:first-child {
  border-left: 1px solid #004ea2;
}
#archive_detail .archive_table table .archive-table-award {
  width: 20%;
  padding: 2%;
  border-left: 1px solid #004ea2;
}
#archive_detail .archive_table table .archive-table-school {
  width: 30%;
}
#archive_detail .archive_table table .archive-table-slogan {
  width: 40%;
}
#archive_detail .archive_table table .archive-table-year {
  width: 10%;
}

@media screen and (min-width: 960px) {
  #archive_detail .l-kaso-kv {
    padding: 60px 30px;
  }
  #archive_detail .l-kaso-kv h2.archive-h2 {
    font-size: 2.8em;
  }
  #archive_detail .detail-poster img {
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    border: 1px solid #333;
  }
  #archive_detail .detail-poster .anchor-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #archive_detail .detail-poster .anchor-link li {
    position: relative;
    width: 32%;
    border-radius: 10px;
    padding: 5px 15px 5px 5px;
    margin-bottom: 10px;
    background: #eee;
  }
  #archive_detail .detail-poster .anchor-link li a {
    font-size: 0.8em;
    display: block;
    text-align: center;
    color: #000;
  }
  #archive_detail .detail-poster .anchor-link li:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
  }
  #archive_detail .detail-poster .anchor-link:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  #archive_detail .detail-poster .anchor-link:before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
  }
}
/* ==========================================================================
FAQ
========================================================================== */
#page-faq dl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3em;
}
#page-faq dl dt {
  position: relative;
  padding-left: 40px;
  font-size: 1.2em;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3em;
}
#page-faq dl dt:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/common/faq_q.png) top no-repeat;
  background-size: contain;
  position: absolute;
  top: 4%;
  left: 0;
}
#page-faq dl dd {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
#page-faq dl dd:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/common/faq_a.png) top no-repeat;
  background-size: contain;
  position: absolute;
  top: 4%;
  left: 0;
}

/* ==========================================================================
フローティングバナー
========================================================================== */
.floating-btn {
  display: inline-table;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  height: 0;
  padding: 15px 20px;
}
.floating-btn a {
  position: relative;
  width: 25%;
  padding: 10px 15px 10px 5px;
  line-height: 1.3em;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  display: inline-table;
}
.floating-btn a:hover {
  color: #fff;
  opacity: 0.7;
}
.floating-btn a:after {
  content: "";
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .floating-btn {
    height: 60px;
    padding: 0 3%;
  }
  .floating-btn a {
    display: block;
    width: 100%;
    padding: 5% 3%;
    border-radius: 6px;
    line-height: 1.8rem;
    font-size: 1.5rem;
  }
  .floating-btn a:after {
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 15px;
  }
}
/* =========================================================
	 Entryページ用カスタム
========================================================= */
.caution {
  color: #C62828;
  line-height: 0.5;
}

/* ---------------------------------------------------------
	 KV直下アンカー
--------------------------------------------------------- */
a.btn-anchor {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  border: 3px solid #009ce0;
  border-radius: 15px;
  text-align: center;
  background: #fff;
  font-weight: bold;
  font-size: 1.2em;
  padding: 15px;
  color: #009ce0;
}

a.btn-anchor-blue {
  border: 3px solid #009ce0;
  background: #009ce0;
  display: block;
  color: #fff;
}

a.btn-anchor::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #009ce0;
  border-right: solid 2px #009ce0;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 7%;
  bottom: 0;
  margin: auto;
}

a.btn-anchor-blue:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
}

.entry-anchors-btns {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3%;
  flex-wrap: wrap;
}

.entry-anchors-btns li {
  flex: 1;
  max-width: 240px;
}

.entry-anchors-btns a {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-size: 1em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .entry-anchors-btns {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .entry-anchors-btns li {
    width: 90%;
    max-width: none;
  }
}
/* ---------------------------------------------------------
	 選考（審査員リスト）
--------------------------------------------------------- */
.judges-wrap {
  margin-top: 0.7em;
}

.judges-wrap span {
  font-weight: 500;
}

.judge {
  display: flex;
  margin-bottom: 0.6em;
}

.judge .role {
  flex: 0 0 6em;
}

.judge .name {
  flex: 1;
  line-height: normal;
}

@media (max-width: 640px) {
  .judge {
    flex-direction: column;
  }

  .judge .role {
    flex: none;
  }

  .judge .name {
    margin-bottom: 0.2em;
  }
}
/* =========================================================
	 awardsページ用カスタム
========================================================= */
.awards-box {
  margin-top: 2em;
}

.guests {
  margin-bottom: 3em;
}

.guest {
  display: flex;
  justify-content: space-between;
  margin: 1.5em 0;
}

.guest .role {
  flex: 1;
}

.guest .name {
  margin-left: 1em;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 640px) {
  .guest {
    display: block;
    margin-bottom: 1.2em;
  }

  .guest .role {
    display: block;
    margin-bottom: 0.3em;
  }

  .guest .name {
    display: block;
    margin-left: 0;
    text-align: left;
  }
}
.award-speech {
  border: 3px solid #009ce0;
  background: #fff;
  border-radius: 30px;
  padding: 5% 6%;
  margin-top: 32px;
  margin-bottom: 60px;
}

.award-speech-title {
  text-align: center;
  font-weight: 600 !important;
  margin-bottom: 24px;
}

.align-right {
  text-align: right;
}

#awards ol {
  padding-left: 1.5em;
  margin: 0 0 1.5em;
}

#awards ol li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

/* ---------------------------------------------------------
		 写真
--------------------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  margin-top: 1.5em;
}

@media (max-width: 640px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}
.photo-item {
  text-align: center;
}

.photo-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.photo-item figcaption {
  font-size: 0.9em;
  text-align: center !important;
  margin: 6px auto;
}

.photo-item--full {
  text-align: center;
  width: 100%;
  grid-column: 1/-1;
}

.photo-item--full img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.photo-item--full figcaption {
  text-align: center;
  margin-top: 0.5em;
}

/* ---------------------------------------------------------
		 審査講評
--------------------------------------------------------- */
.comment {
  margin-bottom: 48px;
}

.comment .media {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1em;
}

.comment .media__img {
  flex: 0 0 80px;
}

.comment .media__img img {
  width: 80px;
  border-radius: 50%;
}

.comment .media__body .name {
  font-weight: bold;
  margin-bottom: 0.2em;
}

.comment .media__body .notes {
  font-size: 0.9em;
  color: #555;
}

.comment__body {
  padding: 3%;
  border: 3px solid #009ce0;
  background: #fff;
  border-radius: 30px;
  padding: 3% 6%;
}

.comment__body p {
  margin-bottom: 1.2em;
}

@media (max-width: 640px) {
  .comment .media {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ---------------------------------------------------------
		 2025.10.1_entry追加
--------------------------------------------------------- */
.mb20 {
  margin-bottom: 20px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

#page-entry .caution {
  font-weight: 500;
}

#page-entry .notes {
  margin-bottom: 24px;
}

#page-entry .anchor-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#page-entry .anchor-link li {
  flex: 1 1 100%;
  width: 100%;
  background: #eee;
  border-radius: 12px;
  text-align: center;
}

#page-entry .anchor-link li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  font-size: 1.2em;
  line-height: 1.5;
  color: inherit;
}

#page-entry .anchor-link li a .is-sub {
  font-size: 0.8em;
}

@media screen and (min-width: 768px) {
  #page-entry .anchor-link {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 60px;
  }

  #page-entry .anchor-link li {
    flex: 1 1 32%;
  }

  #page-entry .anchor-link li a {
    font-size: 1.1em;
  }

  #page-entry .anchor-link li a .is-sub {
    font-size: 0.7em;
  }
}
#howto-entry-personal,
#howto-entry-school,
#howto-entry-pta {
  margin-bottom: 40px;
}

#entry-howto .entry-howto-intro {
  margin-bottom: 40px;
}

#page-entry .entry-howto-intro .lead {
  margin: 20px 0;
}

#page-entry .entory-period {
  font-size: 1.4em;
  font-weight: 500;
  word-break: keep-all;
}

#page-entry .howto-entry-summary {
  margin-bottom: 20px;
}

#page-entry .howto-entry-summary .lead {
  text-align: left;
}

#page-entry .table-list th {
  word-break: keep-all;
}

#page-entry .table-list td p,
#page-entry .table-list td div {
  font-size: 1em;
  font-weight: 500;
}

#page-entry .table-list td p:last-child,
#page-entry .table-list td div:last-child {
  margin-bottom: 0;
}

#page-entry .entry-address {
  margin: 24px 0;
  border: 1px solid #ddd;
  padding: 10px 14px;
}

#page-entry .icon {
  width: 20px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

#page-entry a.btn.btn-dl {
  display: flex;
  align-items: center;
  border-color: #aaa;
  color: #333;
  background: #f9f9f9;
  font-size: 1em;
  text-align: left;
  gap: 12px;
  padding-left: 24px;
  line-height: 1.4;
}

#page-entry a.btn.btn-dl .btn-dl-text {
  font-weight: bold;
  line-height: 1.4;
}

#page-entry a.btn.btn-dl:hover {
  background: #eee;
  opacity: 0.9;
}

#page-entry a.btn.btn-dl .btn-icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
  margin-right: 10px;
  vertical-align: sub;
}

#page-entry a.btn.btn-dl::before {
  display: none;
}

#page-entry .btn-entry-form {
  font-size: 1em;
}

.form-note {
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  #page-entry a.btn.btn-dl {
    max-width: 420px;
    font-size: 1.1em;
  }

  #page-entry .btn-entry-form {
    font-size: 1.1em;
  }
}
/* entry-form：期間前はis-disabled付与でグレーアウト */
#page-entry .btn-entry-form.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: #f0f0f0;
  color: #999;
  border-color: #ccc;
  opacity: 0.8;
}

#page-entry .btn-entry-form.is-disabled::before {
  display: none;
}

/* topスクロールボタン追従 */
footer .top-arrow {
  position: fixed;
  top: inherit;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.is-top-visible footer .top-arrow {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/*# sourceMappingURL=style.css.map */
