/**
* 山口県光市PTA 研修大会 光大会 2025（2025-09-25）
**/

@charset "utf-8";

/* reset & common */
:root {
  --root-font-size: 16;
}
html, body, main, aside, article, section, nav, header, footer, div, p, li, dl, dt, dd, address, figure {margin: 0; padding: 0;}
html {
  font-size: 100%;
  touch-action: manipulation;
}
body {
  width: 100%;
  font-size: 100%;
  font-size: calc( 13 / var(--root-font-size) * 1rem );
  color: #000;
  background-color: #fff;
}
header, main, footer {
  display: block;
}
main {
  display: block;
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
div, p, a, span, dd, dt, li, address {
  font-size: 1rem;
}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  max-width: 100%;
}
ul,ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
li {
  list-style-type: none;
}
a {
  color: #000;
  text-decoration: none;
}
time {
  display: inline-block;
}
address {
  font-style: normal;
}
button,html [type="button"],[type="reset"],[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
  border-style: none;
  margin: 0 auto;
}
textarea {
  resize: vertical;
}
img {
  max-width: 100%;
}
video {
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  outline: none;
  border: none;
}
* {
  font-size: 1rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
}
*,*::before,*::after {box-sizing: border-box;}

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  word-wrap: normal!important;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.pc {
  display: none;
}
.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.upper_case {
  text-transform: uppercase;
}
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0;
  }
}

.emphasis {
  font-weight: 700;
}
.line_break {
  display: inline-block;
}

/* WordPress admin-bar 対策 */
body.admin-bar .header {
  margin-top: 46px;
}
@media screen and (min-width: 780px) {
  body.admin-bar .header {
    margin-top: 32px;
  }
}
/* ----- */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header .logo {
  width: 105px;
}
.header .logo span {
  display: block;
  width: 105px;
  height: 0;
  padding-top: 100%;
  background-image: url(../images/header_logo@2x-8.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header .logo {
    margin-left: 16px;
    width: 175px;
  }
  .header .logo span {
    width: 175px;
  }
}
@media screen and (min-width: 1000px) {
  .header .logo {
    margin-left: 50px;
  }
}

/** humberger-menu **/
#navToggle {
  display: block;
}
#navToggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background-color: rgba(255,255,255,0.4);
  border: transparent;
  z-index: 10;
  margin: 8px 0 0;
}
#navToggle span:nth-child(1),
#navToggle span:nth-child(2),
#navToggle span:nth-child(3) {
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background-color: #000;
  transition: all 0.3s;
  position: absolute;
}
#navToggle span:nth-child(1) {
  top: 20px;
  left: 17px;
}
#navToggle span:nth-child(2) {
  top: 32px;
  left: 17px;
}
#navToggle span:nth-child(3) {
  top: 44px;
  left: 17px;
}
#navToggle.active span:nth-child(1) {
  top: 30px;
  left: 18px;
  transform: rotate(45deg);
}
#navToggle.active span:nth-child(2) {
  display: none;
}
#navToggle.active span:nth-child(3) {
  top: 30px;
  left: 18px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  #navToggle {
    display: none;
  }
}

/* footer */
.footer {
  background-color: #231815;
  color: #fff;
  padding: 1.875rem 0 10rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.875rem 0 1.875rem;
  }
}
.footer .footer_title {
  font-size: 1.25rem;
  text-align: center;
}
.footer .footer_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 1.875rem auto 0;
}
.footer .footer_info .footer_organizers,
.footer .footer_info .footer_office {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footer_info {
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    max-width: 600px;
  }
  .footer .footer_info .footer_organizers,
  .footer .footer_info .footer_office {
    width: 48%;
    width: calc((100% / 2) - 25px);
  }
}
.footer .footer_info .footer_organizers > div,
.footer .footer_info .footer_office > div {
  display: flex;
}
.footer .footer_info .footer_organizers > div + div,
.footer .footer_info .footer_office > div + div,
.footer .footer_info .footer_office {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer .footer_info .footer_office {
    margin-top: 0;
  }
}
.footer .footer_info .footer_organizers dt,
.footer .footer_info .footer_office dt {
  min-width: 5em;
}
.footer .footer_info .footer_organizers dt span,
.footer .footer_info .footer_office dt span {
  padding-bottom: 4px;
  position: relative;
}
.footer .footer_info .footer_organizers dt span::after,
.footer .footer_info .footer_office dt span::after {
  content: '';
  display: block;
  width: 2.8125rem;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.footer .footer_info .footer_office dt span::after {
  width: 3.375rem;
}
.footer .copyright {
  margin-top: 1.875rem;
  text-align: center;
}
.footer .copyright small {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {

}

/* 共通設定
-------------------- */
/* title */
#event_overview h2,
#memorial_lecture h2,
#time_table h2,
#photo_contest h2,
#access h2,
#access h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.72;
  text-align: center;
  padding-bottom: 0.375rem;
  position: relative;
}
#photo_contest h2 span {
  font-size: 1.375rem;
  display: block;
  line-height: 1.136;
}
#time_table h2 {
  font-family: "Source Code Pro", monospace;
  font-weight: 600;
}
#access h3 {
  font-size: 1.125rem;
}
#event_overview h2::after,
#memorial_lecture h2::after,
#time_table h2::after,
#photo_contest h2::after,
#access h2::after,
#access h3::after {
  content: '';
  display: block;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#event_overview h2::after,
#time_table h2::after {
  width: 8.3125rem;
}
#memorial_lecture h2::after {
  width: 10.4375rem;
}
#photo_contest h2::after {
  width: 20.1875rem;
}
#access h2::after {
  width: 11.5625rem;
}
#access h3::after {
  width: 8rem;
}


/* img wrap */
.main_visual .mv_wrapper .mv_img,
#memorial_lecture .lecture_content .lecturer_photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main_visual .mv_wrapper .mv_img .img_wrap {
  padding-top: 44.3181818181%;
}
#memorial_lecture .lecture_content .lecturer_photo .img_wrap {
  padding-top: 132.530120481%;
}
.main_visual .mv_wrapper .mv_img .img_wrap > img,
#memorial_lecture .lecture_content .lecturer_photo .img_wrap > img {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

/* トップページ
-------------------- */
.main {
  background-color: #fff;
}

/* main_visual */
.main_visual {
  background-color: #231815;
}
.main_visual .mv_wrapper {
  max-width: 1056px;
  margin: 0 auto;
  padding: 80px 10px 0;
}
@media screen and (min-width: 1076px) {
  .main_visual .mv_wrapper {
    padding: 16px 0;
  }
}
.main_visual .container {
  padding-bottom: 1rem;
}
@media screen and (min-width: 1076px) {
  .main_visual .container {
    margin: -36px auto 0;
    padding-bottom: 46px;
  }
}
.main_visual h2 {
  font-size: 1.25rem;
  line-height: 1.1;
  padding: 0.975rem 0;
  background-color: #fff;
  max-width: 748px;
  margin: 0 auto 0;
  text-align: center;
  position: relative;
}
.main_visual h2::before {
  content: '';
  display: block;
  width: 98px;
  height: 2.25rem;
  background-color: #fff;
  font-size: 1.375rem;
  line-height: 1.637;
  position: absolute;
  top: -32px;
  left: -3px;
}
.main_visual .mv_heading_label {
  display: block;
  width: 98px;
  /* height: 36px; */
  background-color: #000;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.637;
  /* padding: 0.275em 0; */
  text-align: center;
  position: absolute;
  top: -34px;
  left: -5px;
}
.main_visual .mv_heading_main {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .main_visual h2 {
    font-size: 1.375rem;
    line-height: 1.72;
  }
}
@media screen and (min-width: 1000px) {
  .main_visual h2 {
    max-width: 800px;
  }
  .main_visual h2::before {
    top: -24px;
    left: -20px;
  }
  .main_visual .mv_heading_label {
    top: -26px;
    left: -22px;
  }
}

/* global navigation */
#gnav {
  display: none;
}
#gnav.active {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c5c5ff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
#gnav > ul {
  width: 100%;
  height: 100%;
  padding: 164px 16px 16px;
}
#gnav ul li {
  display: block;
  width: 100%;
}
#gnav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 16px 0;
}
#gnav ul li a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  #gnav {
    display: block;
  }
  #gnav.active {
    width: auto;
    height: auto;
    position: static;
    background-color: transparent;
  }
  #gnav > ul {
    width: 100%;
    max-width: 560px;
    height: 70px;
    position: fixed;
    top: 10px;
    left: unset;
    right: 10px;
    margin: unset;
    padding: unset ;
    z-index: 10;
    background-color: #c5c5ff;
    background-image: unset;
    background-repeat: unset;
    background-position: unset;
    background-size: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
  }
  #gnav ul li {
    width: unset;
  }
  #gnav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 1.375rem 1em;
    position: relative;
  }
  #gnav ul li + li a::before {
    content: '';
    display: block;
    width: 2px;
    height: 1em;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1076px) {
  #gnav {
    margin-top: -35px;
  }
  #gnav > ul {
    max-width: unset;
    position: static;
  }
  #gnav ul li a {
    font-size: 1.125rem;
  }
  #gnav.fixed {
    margin-top: unset;
  }
  #gnav.fixed > ul {
    max-width: 560px;
    position: fixed;
  }
  #gnav.fixed ul li a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1086px) {
  #gnav.fixed > ul {
    right: calc((100vw - 1076px) /2 );
  }
}

/* cta */
.cta {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.cta .cta_list li {
  width: 105px;
  height: 70px;
  background-color: #fff;
  border-radius: 17px 0 0 17px;
}
.cta .cta_list li + li {
  margin-top: 6px;
}
.cta .cta_list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 171, 102, 1);
  border: 2px solid #ffab66;
  border-radius: 17px 0 0 17px;
}
.cta .cta_list li.cta_item_flyer a {
  background-image: url(../images/cta_item_flyer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 43px 49px;
}
.cta .cta_list li.cta_item_entry a {
  background-image: url(../images/cta_item_entry.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 44px;
}
.cta .cta_list li a:hover {
  background-color: rgba(255, 171, 102, 0.5);
}
.cta .cta_list li a span {
  font-size: 1rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .cta .cta_list li {
    width: 150px;
    height: 100px;
  }
  .cta .cta_list li + li {
    margin-top: 10px;
  }
  .cta .cta_list li.cta_item_flyer a {
    background-size: 62px 71px;
  }
  .cta .cta_list li.cta_item_entry a {
    background-size: 63px 63px;
  }
  .cta .cta_list li a span {
    font-size: 1.25rem;
  }
}

/* event_overview */
#event_overview {
  padding: 3.125rem 0;
}
#event_overview .overview_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.875rem;
}
#event_overview .overview_list li {
  background-color: #aee8ff;
  background-image: url(../images/bg_corner_top_left.svg), url(../images/bg_corner_bottom_right.svg);
  background-repeat: no-repeat;
  background-position: top 4px left 4px, bottom 4px right 4px;
  background-size: 17px 17px;
  border-radius: 15px;
  padding-top: 12px;
  padding-bottom: 8px;
  width: 100%;
  max-width: 300px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#event_overview .overview_list li + li {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  #event_overview .overview_list {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    max-width: 650px;
    margin: 1.875rem auto 0;
  }
  #event_overview .overview_list li {
    width: 45%;
    width: calc((100% / 2) - 24px);
    margin-bottom: 1rem;
  }
  #event_overview .overview_list li + li {
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  #event_overview .overview_list {
    max-width: 1000px;
  }
  #event_overview .overview_list li {
    width: 32%;
    width: calc((100% / 3) - 24px);
  }
}
#event_overview .overview_list li h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
}
#event_overview .overview_list .time_main,
#event_overview .overview_list .time_main span,
#event_overview .overview_list .time_range,
#event_overview .overview_list .time_range time {
  font-family: "Barlow Condensed", "Bahnschrift", sans-serif;
  font-style: normal;
}
#event_overview .overview_list .time_main,
#event_overview .overview_list .time_main span {
  font-size: 1.875rem;
  font-weight: 500;
}
#event_overview .overview_list .time_main span.time_day {
  font-size: 3.75rem;
  line-height: 1;
}
#event_overview .overview_list .time_range,
#event_overview .overview_list .time_range time {
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1;
}
#event_overview .overview_list .note,
#event_overview .overview_list .note time {
  font-size: 1.3125rem;
  font-weight: 600;
}
#event_overview .overview_list .note {
  margin-left: auto;
  margin-right: 8px;
}
#event_overview .overview_list .place_name,
#event_overview .overview_list .free {
  font-size: 2.25rem;
  font-weight: 600;
  margin-top: 24px;
}

#event_overview .overview_list .address {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 18px;
}
#event_overview .overview_list .overview_detail {
  margin: 0 auto;
}
#event_overview .overview_list .overview_detail > div {
  /* display: flex; */
}
#event_overview .overview_list .overview_detail dt,
#event_overview .overview_list .overview_detail dd {
  font-size: 0.875rem;
  line-height: 1;
}
#event_overview .overview_list .overview_detail dt {
  width: 7em;
  text-align: center;
  display: inline-block;
}
#event_overview .overview_list .overview_detail dd {
  display: inline-block;
}
#event_overview .overview_list .overview_detail dd::before {
  content: '\025b6';
  display: inline-block;
}
#event_overview .overview_list .overview_detail {
  margin-top: 10px;
}
#event_overview .overview_list .overview_detail .online {
  margin-top: -8px;
}
#event_overview .message {
  margin-top: 1.25rem;
  line-height: 1.3125;
}
@media screen and (min-width: 768px) {
  #event_overview .message {
    text-align: center;
  }
}

/* memorial_lecture */
#memorial_lecture {
  background-color: #fcf9de;
  padding: 2.5rem 0 2.875rem;
}
#memorial_lecture h3 {
  font-size: 1.25rem;
  line-height: 1.72;
  padding: 0.975rem 0;
  background-color: #fff;
  max-width: 700px;
  margin: 2.885rem auto 0;
  text-align: center;
  position: relative;
}
#memorial_lecture h3 span.lecture_label {
  display: block;
  width: 98px;
  /* height: 36px; */
  background-color: #000;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.637;
  /* padding: 0.275em 0; */
  text-align: center;
  position: absolute;
  top: -34px;
  left: -5px;
}
#memorial_lecture h3::before {
  content: '';
  display: block;
  width: 98px;
  height: 2.25rem;
  background-color: #fff;
  font-size: 1.375rem;
  line-height: 1.637;
  position: absolute;
  top: -32px;
  left: -3px;
}
#memorial_lecture h3 span.lecture_title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #memorial_lecture h3 {
    font-size: 1.375rem;
  }
  #memorial_lecture h3 span.lecture_label {
    top: -26px;
    left: -22px;
  }
  #memorial_lecture h3::before {
    top: -24px;
    left: -20px;
  }
  #memorial_lecture h3 span.lecture_title {
    font-size: 1.375rem;
  }
}

#memorial_lecture .lecture_block {
  max-width: 600px;
  margin: 1rem auto 0;
}
#memorial_lecture .lecture_block p,
#memorial_lecture .lecture_block p span {
  font-size: 0.875rem;
  line-height: 1.28;
}
#memorial_lecture .lecture_block .lecture_subtitle {
  margin-top: 1em;
}
#memorial_lecture .lecture_block .lecture_points {
  margin-top: 0.875rem;
}
#memorial_lecture .lecture_block .lecture_points li {
  position: relative;
  padding-left: 1rem;
}
#memorial_lecture .lecture_block .lecture_points li::before {
  content: '';
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../images/right_triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#memorial_lecture .lecture_block .lecture_summary {
  margin-top: 0.875rem;
}

#memorial_lecture .lecture_content {
  margin-top: 3.6625rem;
}
#memorial_lecture .lecture_content .lecturer_photo_wrap {
  width: 165px;
  margin: 0 auto;
}
#memorial_lecture .lecture_content .lecturer_info {

}
#memorial_lecture .lecture_content .lecturer_info .guest-role {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.1;
}
#memorial_lecture .lecture_content .lecturer_info .guest-role .guest-ruby rb {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.1;
}
#memorial_lecture .lecture_content .lecturer_info .guest-person {
  display: block;
}
#memorial_lecture .lecture_content .lecturer_info .guest-person .guest-char,
#memorial_lecture .lecture_content .lecturer_info .guest-person .guest-rest,
#memorial_lecture .lecture_content .lecturer_info .guest-person .guest-reading {
  font-size: 1.125rem;
  font-weight: 700;
}
#memorial_lecture .lecture_content .lecturer_info .lecturer_bio {
  max-width: 440px;
  margin: 1.25rem auto 0;
}
#memorial_lecture .lecture_content .lecturer_info .lecturer_bio p {
  font-size: 0.8125rem;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  #memorial_lecture .lecture_content {
    display: flex;
    max-width: 640px;
    margin: 3.6625rem auto 0;
  }
  #memorial_lecture .lecture_content .lecturer_photo_wrap {
    height: 220px;
  }
  #memorial_lecture .lecture_content .lecturer_info h3 {
    max-width: 284px;
  }
  #memorial_lecture .lecture_content .lecturer_info h3 .lecture_label {
    top: -2rem;
  }
  #memorial_lecture .lecture_content .lecturer_info h3::before {
    top: -1.875rem;
  }
}

/* time_table */
#time_table {
  padding: 2.5rem 0 3.125rem;
}
#time_table .timetable_wrap {
  margin: 1.75rem auto 0;
  max-width: 616px;
  background-color: #aee8ff;
  border-radius: 30px;
  padding: 1.375rem 8px;
}
#time_table .timetable_wrap .timetable_list {
  max-width: 460px;
  margin: 0 auto;
}
#time_table .timetable_wrap .timetable_list > div {
  display: flex;
}
#time_table .timetable_wrap .timetable_list .timetable_space {
  margin-top: 2rem;
}
#time_table .timetable_wrap .timetable_list dt {
  min-width: 6em;
  text-align: center;
}
#time_table .timetable_wrap .timetable_list dt span {
  font-size: 1.125rem;
  line-height: 1.3;
  padding-bottom: 2px;
  position: relative;
}
#time_table .timetable_wrap .timetable_list dt span::after {
  content: '';
  display: block;
  width: 3.875rem;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#time_table .timetable_wrap .timetable_list dd,
#time_table .timetable_wrap .timetable_list dd .guest-char rb,
#time_table .timetable_wrap .timetable_list dd .event_title,
#time_table .timetable_wrap .timetable_list dd .event_list li {
  font-size: 1.125rem;
  line-height: 1.3;
}
#time_table .timetable_wrap .timetable_list dd .event_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #time_table .timetable_wrap .timetable_list dt span,
  #time_table .timetable_wrap .timetable_list dd,
  #time_table .timetable_wrap .timetable_list dd .guest-char rb,
  #time_table .timetable_wrap .timetable_list dd .event_title,
  #time_table .timetable_wrap .timetable_list dd .event_list li {
    font-size: 1.25rem;
  }
}

/* photo_contest */
#photo_contest {
  background-color: #fcf9de;
}

#photo_contest .wrapper_bg {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (min-width: 1300px) {
  #photo_contest .wrapper_bg {
    background-image: url(../images/bg_photo_contest.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
  }
}
#photo_contest .contest_entry {
  padding-top: 1.375rem;
  padding-bottom: 8.125rem;
  background-image: url(../images/bg_photo_contest.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  #photo_contest .wrapper_bg {
    display: flex;
    justify-content: space-between;
  }
  #photo_contest .contest_entry,
  #photo_contest .contest_exhibit {
    width: 48%;
    width: calc((100% / 2) - 10px );
  }
}
#photo_contest .contest_entry .contest_text {
  margin-top: 3.125rem;
  max-width: 260px;
  margin-left: auto;
}
#photo_contest .contest_entry .btn_contest {
  margin: 4.125rem auto 0 auto;
  width: 220px;
}
#photo_contest .contest_entry .btn_contest + .btn_contest {
  margin-top: 2rem;
}
@media screen and (min-width: 500px) {
  #photo_contest .contest_entry .btn_contest {
    margin: 4.125rem 70px 0 auto;
  }
}
#photo_contest .contest_entry .btn_contest .btn_base {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.938rem 1rem;
  font-size: 1.125rem;
  background-color: #fcb04c;
  border: 2px solid #fcb04c;
  border-radius: 15px;
}
#photo_contest .contest_entry .btn_contest .btn_base:hover {
  background-color: #fff;
}

#photo_contest .contest_exhibit {
  padding-top: 1.375rem;
  padding-bottom: 2.5rem;
}
#photo_contest .contest_exhibit .contest_block {
  display: flex;
  margin-top: 1.125rem;
  justify-content: center;
}
#photo_contest .contest_exhibit .contest_block .contest_time_wrap {
  background-color: #aee8ff;
  border-radius: 6px;
  width: 93px;
  padding: 0.344rem 0;
}
#photo_contest .contest_exhibit .contest_block .contest_time_wrap .contest_time {
  text-align: center;
}
#photo_contest .contest_exhibit .contest_block .contest_time_wrap .contest_time span {
  font-size: 1.375rem;
  line-height: 1.13;
}
#photo_contest .contest_exhibit .contest_block .contest_time_wrap .contest_label {
  font-size: 1rem;
  line-height: 1.125;
  text-align: center;
  margin-top: 0.625rem;
}
#photo_contest .contest_exhibit .contest_block .contest_desc {
  width: 255px;
  font-size: 1rem;
  line-height: 1.125;
  margin-left: 1rem;
}
#photo_contest .contest_exhibit .contest_heading_shop {
  margin-top: 2.5rem;
}

/* access */
#access {
  padding: 2.125rem 0 4.375rem;
}
#access .access_content {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #access .access_content {
    display: flex;
    justify-content: space-around;
  }
  #access .access_content .access_transport,
  #access .access_content .access_parking {
    width: 48%;
    width: calc((100% / 2) - 20px);
    max-width: 430px;
  }
}

#access .access_content .access_transport .venue_info {
  width: 260px;
  margin: 1.375rem auto 0;
}
#access .access_content .access_transport .venue_name,
#access .access_content .access_transport .venue_address,
#access .access_content .access_transport .venue_tel {
  font-size: 1rem;
  line-height: 1.4375;
}
#access .access_content .access_transport .google_map {
  position: relative;
  width: 100%;
  padding-top: 56.8764568764%;
  height: 0;
  margin-top: 1.5rem;
}
#access .access_content .access_transport .google_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access .access_content .access_parking {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #access .access_content .access_parking {
    margin-top: 0;
  }
}
#access .access_content .access_parking .parking_list {
  width: 260px;
  margin: 1.375rem auto 0;
}

#access .access_notes {
  margin: 2.75rem auto 0;
  max-width: 700px;
}



/* PC size for copy */
@media screen and (min-width: 768px) {

}

