@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  --font-heading: "bio-sans", sans-serif;
  --font-body: "Roboto", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--default-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:root {
  --base-lightblue: #e2eef5;
  --base-gray:#aaa;
  --base-lightgray:#eee;
  --default-navy: #222a55; /* ボタン等に使う濃い色 */
  --default-blue: #4a5aaf;
  --default-green: #32bc8c; /* 差し色 */
  --default-lightgreen: #00ffa6;
  --base-lightgreen: #91c2b0;
  --default-black: #333;
  --default-white: #fff;
  --default-gradient01: linear-gradient(-28deg, var(--default-blue) 0%, var(--default-green) 100%);
}

a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

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

a {
  color: var(--default-blue);
  text-decoration: none;
  transition: all 0.5s;
}

@media all and (min-width: 841px) {
  .spOnly {
    display: none;
  }
}

@media screen and (max-width: 840px) {
  .pcOnly {
    display: none;
  }
}

.side-menu {
  width: 280px;
  background-color: var(--default-white);
  border-right: 1px solid #eee;
  padding: 30px 20px;
  overflow-y: auto;
  position: sticky;
  top: 0;
  font-family: var(--font-body);
}
@media all and (min-width: 841px) {
  .side-menu {
    height: 100vh;
  }
}
@media screen and (max-width: 840px) {
  .side-menu {
    width: 100%;
    position: fixed;
    height: 150px;
    z-index: 1000;
    box-sizing: border-box;
    padding: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 840px) {
  .side-menu {
    height: 110px;
  }
}
.side-menu .l-header {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.side-menu .l-header_logo {
  background-color: var(--default-navy);
  padding: 26px 20px;
  border-radius: 6px;
}
@media screen and (max-width: 840px) {
  .side-menu .l-header_logo {
    background-color: transparent;
    padding: 0;
    padding: 10px 5%;
  }
}
.side-menu .l-header_logo a {
  text-decoration: none;
  color: var(--default-white);
  display: block;
}
@media screen and (max-width: 840px) {
  .side-menu .l-header_logo a {
    color: var(--default-navy);
  }
}
.side-menu .l-header_logo .logo-main {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-family: var(--font-heading);
}
@media screen and (max-width: 840px) {
  .side-menu .l-header_logo .logo-main {
    margin: 0;
    font-size: 1.75rem;
  }
}
.side-menu .l-header_logo .logo-sub {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.2;
  opacity: 0.9;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .side-menu .l-header_logo .logo-sub {
    font-size: 0.8125rem;
    margin: 0;
  }
}
.side-menu .l-header_logo .logo-date, .side-menu .l-header_logo .logo-place {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--default-lightgreen);
  font-weight: bold;
  font-family: var(--font-body);
}
@media screen and (max-width: 840px) {
  .side-menu .l-header_logo .logo-date, .side-menu .l-header_logo .logo-place {
    display: none;
  }
}
.side-menu .menu-trigger {
  display: none;
}
@media screen and (max-width: 840px) {
  .side-menu .menu-trigger {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--default-navy);
    border-radius: 6px;
    position: absolute;
    border: none;
    top: 18px;
    right: 5%;
  }
  .side-menu .menu-trigger::before, .side-menu .menu-trigger::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--default-green);
    right: 15px;
  }
  .side-menu .menu-trigger::before {
    top: 18px;
  }
  .side-menu .menu-trigger::after {
    top: 25px;
    box-shadow: 0 7px 0 var(--default-green);
  }
}
.side-menu .side-nav {
  padding: 20px 0;
}
@media screen and (max-width: 840px) {
  .side-menu .side-nav {
    padding: 0;
    margin-top: 24px;
  }
}
.side-menu .side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
@media screen and (max-width: 840px) {
  .side-menu .side-nav ul li {
    border-bottom: 1px solid var(--default-navy);
  }
}
.side-menu .side-nav ul li a {
  display: block;
  padding: 12px 20px;
  color: var(--default-navy);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: background 0.3s;
}
@media screen and (max-width: 840px) {
  .side-menu .side-nav ul li a {
    padding: 20px 0;
    font-weight: 700;
  }
}
.side-menu .side-nav ul li a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--default-green);
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 840px) {
  .side-menu .side-nav ul li a::before {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 15px;
  }
}
.side-menu .side-nav ul li a:hover {
  background-color: var(--base-lightblue);
}
@media screen and (max-width: 840px) {
  .side-menu .header-nav-area {
    display: none;
  }
}
.side-menu .side-contact {
  padding: 20px 10px;
  background-color: #fff;
  font-size: 0.75rem;
  color: var(--default-black);
  border: 2px solid var(--base-lightblue);
  border-radius: 6px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .side-menu .side-contact {
    background-color: transparent;
    border: none;
    padding: 40px 0;
    text-align: center;
  }
}
.side-menu .side-contact .contact-title {
  font-weight: bold;
  color: var(--default-navy);
  margin-bottom: 8px;
  background: var(--base-lightblue);
  padding: 5px 20px;
  display: inline-block;
}
@media screen and (max-width: 840px) {
  .side-menu .side-contact .contact-title {
    padding: 4px 20px;
    border-radius: 4px;
    border-bottom: none;
    font-size: 0.8rem;
  }
}
.side-menu .side-contact address {
  font-style: normal;
  line-height: 1.6;
}
.side-menu .side-contact address a {
  color: inherit;
}
.side-menu .privacy-link {
  text-align: center;
}
.side-menu .privacy-link a {
  display: inline-block;
  padding-left: 24px;
  color: var(--default-navy);
  text-decoration: none;
  font-size: 0.875rem;
  position: relative;
  transition: background 0.3s;
  margin-top: 20px;
}
.side-menu .privacy-link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(../common/ico_btn_privacy.png) no-repeat center;
  background-size: contain;
  transition: 0.3s;
}

@media screen and (max-width: 840px) {
  body.open .side-menu {
    height: 100vh;
    position: fixed;
    padding: 0px;
  }
  body.open .side-menu .header-top-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--default-white);
  }
  body.open .side-menu .header-nav-area {
    display: block;
    background-color: var(--base-lightblue);
    height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 20px;
  }
  body.open .side-menu .side-nav {
    background-color: var(--base-lightblue);
    padding: 0 5%;
    margin-top: 0px;
    height: calc(100vh - 74px);
  }
  body.open .side-menu .menu-trigger {
    right: 5%;
  }
  body.open .side-menu .menu-trigger::before {
    transform: rotate(45deg);
    top: 25px;
  }
  body.open .side-menu .menu-trigger::after {
    transform: rotate(-45deg);
    top: 25px;
    box-shadow: none;
  }
  body.open .side-menu .side-contact {
    padding: 20px 0;
    background: var(--default-white);
  }
  body#top .side-menu {
    overflow-y: hidden;
  }
  body#top .side-menu .l-header_logo {
    background: var(--base-lightblue);
    padding: 0px 5% 10px;
  }
}
@media screen and (max-width: 840px) and (min-width: 481px) and (max-width: 840px) {
  body#top .side-menu .l-header_logo {
    padding: 10px 5% 10px;
    padding-right: calc(5% + 60px);
  }
}
@media screen and (max-width: 840px) {
  body#top .side-menu .l-header_logo a {
    background: url(../common/img_top_main_Sp.png) no-repeat center center;
    background-size: contain;
    height: 150px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 840px) and (min-width: 481px) and (max-width: 840px) {
  body#top .side-menu .l-header_logo a {
    background: url(../common/img_top_main.png) no-repeat center left;
    background-size: contain;
    height: 89px;
  }
}
@media screen and (max-width: 840px) {
  body#top .side-menu .l-header_logo .logo-main {
    color: transparent;
  }
  body#top .side-menu .l-header_logo .logo-sub {
    color: transparent;
  }
}
@media screen and (max-width: 840px) and (min-width: 481px) and (max-width: 840px) {
  body#top .side-menu .menu-trigger {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 840px) {
  body#top .side-menu.is-show {
    height: 89px;
  }
}
@media screen and (max-width: 840px) and (min-width: 481px) and (max-width: 840px) {
  body#top .side-menu.is-show {
    height: 100px;
  }
}
@media screen and (max-width: 840px) {
  body#top .side-menu.is-show .l-header_logo {
    display: block;
    background: var(--default-white);
  }
  body#top .side-menu.is-show .l-header_logo a {
    padding-top: 0;
    background: none;
    height: 89px;
    padding-top: 5px;
  }
  body#top .side-menu.is-show .l-header_logo .logo-main {
    color: var(--default-navy);
  }
  body#top .side-menu.is-show .l-header_logo .logo-sub {
    color: var(--default-navy);
  }
  body#top.open .side-menu {
    overflow-y: scroll;
    height: 100vh;
  }
  body#top.open .side-menu .l-header_logo {
    display: block;
    background: var(--default-white);
  }
  body#top.open .side-menu .l-header_logo a {
    padding-top: 0;
    background: none;
    height: 89px;
    padding-top: 10px;
  }
  body#top.open .side-menu .l-header_logo .logo-main {
    color: var(--default-navy);
  }
  body#top.open .side-menu .l-header_logo .logo-sub {
    color: var(--default-navy);
  }
}
@media screen and (max-width: 840px) and (min-width: 481px) and (max-width: 840px) {
  body#top.open .side-menu .menu-trigger {
    top: 30px;
    transform: none;
  }
}
@media screen and (max-width: 840px) {
  body#secondary .side-menu {
    height: 93px;
  }
  body#secondary.open .side-menu {
    height: 100vh;
  }
  body:not(open) .side-menu {
    overflow-y: hidden;
  }
}
.l-footer {
  background-color: var(--default-navy);
  color: var(--default-white);
  width: 100%;
  padding: 60px 40px 40px;
  font-family: var(--font-heading);
}
@media screen and (max-width: 840px) {
  .l-footer {
    padding: 40px 20px 20px;
  }
}
.l-footer .footer-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
.l-footer .footer-info {
  flex: 1;
  min-width: 400px;
}
@media screen and (max-width: 840px) {
  .l-footer .footer-info {
    min-width: 100%;
  }
}
.l-footer .footer-info .footer-logo {
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 10px;
}
.l-footer .footer-info .logo-subtext {
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.9;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 840px) {
  .l-footer .footer-info .logo-subtext {
    margin-bottom: 5px;
  }
}
.l-footer .footer-info .event-details {
  font-size: 0.8125rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .l-footer .footer-info .event-details {
    margin-bottom: 40px;
  }
}
.l-footer .footer-info .event-details .date, .l-footer .footer-info .event-details .place {
  color: var(--default-lightgreen);
  margin: 2px 0;
}
@media all and (min-width: 841px) {
  .l-footer .footer-links-wrap {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 840px) {
  .l-footer .footer-links-wrap .footer-nav {
    margin-bottom: 40px;
  }
}
.l-footer .footer-links-wrap .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}
@media all and (min-width: 841px) {
  .l-footer .footer-links-wrap .footer-nav ul {
    display: flex;
    gap: 30px;
  }
}
@media screen and (max-width: 840px) {
  .l-footer .footer-links-wrap .footer-nav ul li {
    margin-bottom: 30px;
  }
}
.l-footer .footer-links-wrap .footer-nav ul li a {
  display: block;
  padding: 0px 0px;
  color: var(--default-white);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .l-footer .footer-links-wrap .footer-nav ul li a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--default-green);
    margin-right: 10px;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 15px;
  }
}
.l-footer .footer-links-wrap .footer-nav ul li a:hover {
  color: var(--default-lightgreen);
}
@media screen and (max-width: 840px) {
  .l-footer .footer-links-wrap .footer-contact {
    border-top: 1px solid var(--default-white);
    padding-top: 20px;
  }
}
.l-footer .footer-links-wrap .footer-contact .contact-label {
  color: var(--default-lightgreen);
  font-weight: 700;
  margin-bottom: 10px;
}
.l-footer .footer-links-wrap .footer-contact address {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.6;
}
.l-footer .footer-links-wrap .footer-contact address a {
  color: inherit;
  text-decoration: none;
}
.l-footer .footer-bottom {
  width: 100%;
  font-size: 0.8125rem;
}
@media all and (min-width: 841px) {
  .l-footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (max-width: 840px) {
  .l-footer .footer-bottom {
    margin-top: 20px;
    text-align: center;
  }
}
.l-footer .footer-bottom .privacy-link {
  color: var(--default-white);
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-weight: bold;
}
@media all and (min-width: 841px) {
  .l-footer .footer-bottom .privacy-link {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 840px) {
  .l-footer .footer-bottom .privacy-link {
    margin-bottom: 20px;
  }
}
.l-footer .footer-bottom .privacy-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(../common/ico_btn_privacy_wh.png) no-repeat center;
  background-size: contain;
  transition: 0.3s;
}
.l-footer .footer-bottom .copyright {
  opacity: 0.8;
  font-weight: bold;
  font-size: 0.8125rem;
  color: var(--default-white);
}
.l-footer .btn-pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--default-green);
  color: var(--default-white);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  position: fixed;
  bottom: 60px;
  right: 60px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 840px) {
  .l-footer .btn-pagetop {
    bottom: 40px;
    right: 5%;
  }
}
.l-footer .btn-pagetop .icon {
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 10px;
  position: relative;
}
.l-footer .btn-pagetop .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--default-white);
  z-index: 1000;
  transform: translate(-50%, -50%);
}
.l-footer .btn-pagetop:hover {
  background-color: var(--default-blue);
  transform: translateY(-5px);
}

@media (max-width: 900px) {
  .l-footer .footer-container {
    flex-direction: column;
  }
  .l-footer .footer-links-wrap .footer-nav ul {
    flex-wrap: wrap;
    gap: 15px 25px;
  }
}
body {
  color: var(--default-black);
  background: #fff;
}

html, body {
  height: 100%;
}

@media all and (min-width: 841px) {
  body#top,
  body#secondary {
    min-width: 1380px;
  }
}

/* 右側コンテンツ */
.mainCont-inner {
  position: inherit;
  z-index: 0;
}
@media all and (min-width: 841px) {
  .mainCont-inner {
    display: flex;
    min-width: 0; /* flexアイテムの縮小を許可 */
  }
}

.content-zone {
  background-color: var(--default-white);
  width: calc(100% - 280px);
}
@media screen and (max-width: 840px) {
  .content-zone {
    width: 100%;
  }
}
.content-zone h2 {
  color: var(--default-navy);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.cke_editable,
.edit-area {
  /*================================================
  囲い・塗り
  ================================================*/
}
.cke_editable .div_info01,
.edit-area .div_info01 {
  background: var(--base-lightblue);
  padding: 20px 30px;
  border-radius: 5px;
}
@media screen and (max-width: 840px) {
  .cke_editable .div_info01,
  .edit-area .div_info01 {
    padding: 10px 15px;
  }
}
.cke_editable .div_info02,
.edit-area .div_info02 {
  border: 4px solid var(--base-lightblue);
  padding: 20px 30px;
}
@media screen and (max-width: 840px) {
  .cke_editable .div_info02,
  .edit-area .div_info02 {
    padding: 10px 15px;
  }
}
.cke_editable,
.edit-area {
  /*================================================
  罫線
  ================================================*/
}
.cke_editable hr.div_hr01,
.edit-area hr.div_hr01 {
  border-top: 2px solid var(--base-lightblue);
  width: 50%;
  margin: 10px auto;
}
.cke_editable,
.edit-area {
  /*================================================
  リスト(数字)
  ================================================*/
}
.cke_editable ol,
.cke_editable ol.list_num01,
.edit-area ol,
.edit-area ol.list_num01 {
  position: relative;
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}
.cke_editable ol > li,
.cke_editable ol.list_num01 > li,
.edit-area ol > li,
.edit-area ol.list_num01 > li {
  position: relative;
  padding: 3px 0 3px 30px;
  margin-bottom: 10px;
  list-style: none !important;
}
.cke_editable ol > li:before,
.cke_editable ol.list_num01 > li:before,
.edit-area ol > li:before,
.edit-area ol.list_num01 > li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100%;
  background: var(--base-lightblue);
  color: var(--default-black);
  font-weight: bold;
  text-align: center;
  font-size: 0.75rem;
}
.cke_editable ol.list_num01 > li:before,
.edit-area ol.list_num01 > li:before {
  background: var(--default-blue);
  color: var(--default-white);
}
.cke_editable,
.edit-area {
  /*================================================
  リスト(点)
  ================================================*/
}
.cke_editable ul,
.edit-area ul {
  position: relative;
  margin-left: 30px;
}
.cke_editable ul > li,
.edit-area ul > li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
}
.cke_editable ul > li::before,
.edit-area ul > li::before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  background: var(--default-blue);
  margin: 0px 10px 1px -10px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -13px;
}
.cke_editable,
.edit-area {
  /*================================================
  リスト(チェック)
  ================================================*/
}
.cke_editable ul.list_check,
.edit-area ul.list_check {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 0 !important;
}
.cke_editable ul.list_check > li,
.edit-area ul.list_check > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
  list-style: none !important;
}
.cke_editable ul.list_check > li::before,
.edit-area ul.list_check > li::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
  top: 5px;
  left: 1em;
  height: 15px;
  width: 8px;
  transform: rotate(45deg);
  border-bottom: solid 4px var(--default-blue);
  border-right: solid 4px var(--default-blue);
  /*打ち消し*/
  border-radius: 0;
  background: none;
}
.cke_editable,
.edit-area {
  /*================================================
  サマリー
  ================================================*/
}
.cke_editable .pagesummary,
.edit-area .pagesummary {
  padding: 20px 0;
}
.cke_editable .pagesummary .tit,
.edit-area .pagesummary .tit {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.cke_editable .pagesummary ul,
.edit-area .pagesummary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cke_editable .pagesummary ul li::before,
.edit-area .pagesummary ul li::before {
  content: none;
}
.cke_editable .pagesummary ul li a,
.edit-area .pagesummary ul li a {
  display: inline-flex;
  align-items: center;
  background-color: var(--default-navy);
  color: var(--default-white);
  text-decoration: none;
  padding: 10px 30px 10px 40px;
  border-radius: 50px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .cke_editable .pagesummary ul li a,
  .edit-area .pagesummary ul li a {
    display: block;
  }
}
.cke_editable .pagesummary ul li a::before,
.edit-area .pagesummary ul li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../common/ico_arrow_down.png) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
  left: 20px;
  position: absolute;
}
.cke_editable .pagesummary ul li a:hover,
.edit-area .pagesummary ul li a:hover {
  background-color: var(--default-blue);
  opacity: 0.9;
}
.cke_editable,
.edit-area {
  /*================================================
  絵文字
  ================================================*/
}
.cke_editable img.ico_20,
.edit-area img.ico_20 {
  width: 30px !important;
  height: 30px !important;
  padding: 0 4px !important;
  vertical-align: middle !important;
  margin-bottom: 3px !important;
}

/*================================================
管理画面のみの指定
================================================*/
.cke_editable {
  width: 841px;
  min-width: 841px;
  margin: 0 auto;
}
.cke_editable .pagesummary ul {
  display: block;
}

/*================================================
公開ページ：ガイドテキストの削除
================================================*/
.edit-area .dis_none {
  display: none;
}

/*================================================
float関連
================================================*/
.clearfix::after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
}

.float_L {
  float: left;
}
@media all and (min-width: 841px) {
  .float_L_Pc {
    float: left;
  }
}
@media screen and (max-width: 840px) {
  .float_L_Sp {
    float: left;
  }
}

.float_R {
  float: right;
}
@media all and (min-width: 841px) {
  .float_R_Pc {
    float: right;
  }
}
@media screen and (max-width: 840px) {
  .float_R_Sp {
    float: right;
  }
}

/*================================================
flexbox
================================================*/
.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cke_editable .link_btn,
.edit-area .link_btn {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 16px 60px 16px 20px;
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none !important;
  background-color: var(--default-green);
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.cke_editable .link_btn::before,
.edit-area .link_btn::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid var(--default-white);
  border-radius: 50%;
  right: 20px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.cke_editable .link_btn::after,
.edit-area .link_btn::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}
.cke_editable .link_btn:hover,
.edit-area .link_btn:hover {
  background-color: var(--base-lightgreen);
  transition: 0.3s;
  color: var(--default-white);
}
.cke_editable .link_btn-secondary,
.edit-area .link_btn-secondary {
  background-color: var(--base-lightblue);
  color: var(--default-navy);
}
.cke_editable .link_btn-secondary::before,
.edit-area .link_btn-secondary::before {
  border: 1px solid var(--default-navy);
}
.cke_editable .link_btn-secondary:hover,
.edit-area .link_btn-secondary:hover {
  background-color: var(--default-blue);
  transition: 0.3s;
  color: var(--default-white);
}
.cke_editable .link_btn-secondary:hover::before,
.edit-area .link_btn-secondary:hover::before {
  border: 1px solid var(--default-white);
}
.cke_editable .link_btn-dark,
.edit-area .link_btn-dark {
  background-color: var(--default-navy);
  color: #fff;
}
.cke_editable .link_btn-dark:hover,
.edit-area .link_btn-dark:hover {
  background-color: var(--default-blue);
  transition: 0.3s;
  color: var(--default-white);
}
.cke_editable .link_btn-large,
.edit-area .link_btn-large {
  font-size: 1rem;
  padding: 20px 40px;
  font-size: 1.125rem;
  width: 60%;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
}
.cke_editable .link_btn-large::before,
.edit-area .link_btn-large::before {
  width: 32px;
  height: 32px;
}
.cke_editable .link_btn-large::after,
.edit-area .link_btn-large::after {
  font-size: 14px;
}
.cke_editable .link_btn-small::after,
.edit-area .link_btn-small::after {
  content: "";
  width: 14px;
  height: 14px;
  transform: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../common/ico_blank.png) no-repeat center;
  background-size: contain;
  border: none;
}
.cke_editable .link_btn-small::before,
.edit-area .link_btn-small::before {
  border: 0;
}
.cke_editable .link_btn-small.link_btn-secondary:after,
.edit-area .link_btn-small.link_btn-secondary:after {
  content: "";
  background: url(../common/ico_blank02.png) no-repeat center;
  background-size: contain;
}
.cke_editable .link_btn-small.link_btn-secondary:before,
.edit-area .link_btn-small.link_btn-secondary:before {
  border: 0;
}
.cke_editable .link_btn-small:hover.link_btn-secondary:after,
.edit-area .link_btn-small:hover.link_btn-secondary:after {
  background: url(../common/ico_blank.png) no-repeat center;
  background-size: contain;
  border: none;
}
.cke_editable .detail_news_social,
.edit-area .detail_news_social {
  display: flex;
  justify-content: right;
  margin-left: 0 !important;
  gap: 5px;
  margin-bottom: 20px;
}
.cke_editable .detail_news_social ul,
.edit-area .detail_news_social ul {
  margin: 0px !important;
  list-style: none !important;
  padding: 0 !important;
  width: auto !important;
  display: flex;
  gap: 10px;
}
.cke_editable .detail_news_social ul::before,
.edit-area .detail_news_social ul::before {
  display: none;
}
.cke_editable .detail_news_social ul li,
.edit-area .detail_news_social ul li {
  list-style: none !important;
}
.cke_editable .detail_news_social ul li::before,
.edit-area .detail_news_social ul li::before {
  content: none !important;
}
.cke_editable .detail_news_social ul a,
.edit-area .detail_news_social ul a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #1a63ac url("../common/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}
.cke_editable .detail_news_social ul a.tw,
.edit-area .detail_news_social ul a.tw {
  background: #000 url("../common/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
}
.cke_editable .detail_news_social ul a.line,
.edit-area .detail_news_social ul a.line {
  background: #00b900 url("../common/logo_line02.png") no-repeat center;
  background-size: auto 20px;
  display: block;
}
.cke_editable .detail_news_social ul.tw,
.edit-area .detail_news_social ul.tw {
  margin-right: 0 !important;
}
.cke_editable .detail_news_social div:first-child,
.edit-area .detail_news_social div:first-child {
  margin-left: 0 !important;
}

.cke_editable img,
.edit-area img {
  display: inline-block;
  vertical-align: bottom;
  max-width: 100%;
}
.cke_editable a,
.edit-area a {
  color: var(--default-blue);
  text-decoration: underline;
}
.cke_editable a:hover,
.edit-area a:hover {
  color: var(--default-navy);
  transition: 0.3s;
}
.cke_editable,
.edit-area {
  /*================================================
  画像横並び
  ================================================*/
}
.cke_editable .newsImg03 ul,
.cke_editable .newsImg02 ul,
.cke_editable .newsImg01 ul,
.edit-area .newsImg03 ul,
.edit-area .newsImg02 ul,
.edit-area .newsImg01 ul {
  margin-left: 0 !important;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.cke_editable .newsImg03 ul li,
.cke_editable .newsImg02 ul li,
.cke_editable .newsImg01 ul li,
.edit-area .newsImg03 ul li,
.edit-area .newsImg02 ul li,
.edit-area .newsImg01 ul li {
  list-style: none !important;
  text-align: center;
  font-size: 12px;
  color: #2d2d2d;
  position: inherit !important;
}
.cke_editable .newsImg03 ul li::before,
.cke_editable .newsImg02 ul li::before,
.cke_editable .newsImg01 ul li::before,
.edit-area .newsImg03 ul li::before,
.edit-area .newsImg02 ul li::before,
.edit-area .newsImg01 ul li::before {
  content: none !important;
}
.cke_editable .newsImg03 ul li img,
.cke_editable .newsImg02 ul li img,
.cke_editable .newsImg01 ul li img,
.edit-area .newsImg03 ul li img,
.edit-area .newsImg02 ul li img,
.edit-area .newsImg01 ul li img {
  width: 100%;
  height: auto !important;
}
.cke_editable .newsImg03 li,
.edit-area .newsImg03 li {
  width: 32%;
}
.cke_editable .newsImg02 li,
.edit-area .newsImg02 li {
  width: 49%;
}
.cke_editable .newsImg01 li,
.edit-area .newsImg01 li {
  width: 100%;
}
.cke_editable,
.edit-area {
  /*================================================
  テキスト入り画像
  ================================================*/
}
.cke_editable .lay-grid,
.edit-area .lay-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .cke_editable .lay-grid,
  .edit-area .lay-grid {
    width: 100%;
    margin: 0 auto;
  }
}
.cke_editable .lay-grid > .col-1, .cke_editable .lay-grid > .col-2, .cke_editable .lay-grid > .col-3, .cke_editable .lay-grid > .col-4, .cke_editable .lay-grid > .col-5, .cke_editable .lay-grid > .col-6, .cke_editable .lay-grid > .col-7, .cke_editable .lay-grid > .col-8, .cke_editable .lay-grid > .col-9, .cke_editable .lay-grid > .col-10, .cke_editable .lay-grid > .col-11, .cke_editable .lay-grid > .col-12,
.edit-area .lay-grid > .col-1,
.edit-area .lay-grid > .col-2,
.edit-area .lay-grid > .col-3,
.edit-area .lay-grid > .col-4,
.edit-area .lay-grid > .col-5,
.edit-area .lay-grid > .col-6,
.edit-area .lay-grid > .col-7,
.edit-area .lay-grid > .col-8,
.edit-area .lay-grid > .col-9,
.edit-area .lay-grid > .col-10,
.edit-area .lay-grid > .col-11,
.edit-area .lay-grid > .col-12 {
  padding: 5px 0;
  border-radius: 4px;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .cke_editable .lay-grid > .col-1, .cke_editable .lay-grid > .col-2, .cke_editable .lay-grid > .col-3, .cke_editable .lay-grid > .col-4, .cke_editable .lay-grid > .col-5, .cke_editable .lay-grid > .col-6, .cke_editable .lay-grid > .col-7, .cke_editable .lay-grid > .col-8, .cke_editable .lay-grid > .col-9, .cke_editable .lay-grid > .col-10, .cke_editable .lay-grid > .col-11, .cke_editable .lay-grid > .col-12,
  .edit-area .lay-grid > .col-1,
  .edit-area .lay-grid > .col-2,
  .edit-area .lay-grid > .col-3,
  .edit-area .lay-grid > .col-4,
  .edit-area .lay-grid > .col-5,
  .edit-area .lay-grid > .col-6,
  .edit-area .lay-grid > .col-7,
  .edit-area .lay-grid > .col-8,
  .edit-area .lay-grid > .col-9,
  .edit-area .lay-grid > .col-10,
  .edit-area .lay-grid > .col-11,
  .edit-area .lay-grid > .col-12 {
    margin: 0;
    padding: 0px 0px 5px;
  }
}
.cke_editable .lay-grid > .col-1 img, .cke_editable .lay-grid > .col-2 img, .cke_editable .lay-grid > .col-3 img, .cke_editable .lay-grid > .col-4 img, .cke_editable .lay-grid > .col-5 img, .cke_editable .lay-grid > .col-6 img, .cke_editable .lay-grid > .col-7 img, .cke_editable .lay-grid > .col-8 img, .cke_editable .lay-grid > .col-9 img, .cke_editable .lay-grid > .col-10 img, .cke_editable .lay-grid > .col-11 img, .cke_editable .lay-grid > .col-12 img,
.edit-area .lay-grid > .col-1 img,
.edit-area .lay-grid > .col-2 img,
.edit-area .lay-grid > .col-3 img,
.edit-area .lay-grid > .col-4 img,
.edit-area .lay-grid > .col-5 img,
.edit-area .lay-grid > .col-6 img,
.edit-area .lay-grid > .col-7 img,
.edit-area .lay-grid > .col-8 img,
.edit-area .lay-grid > .col-9 img,
.edit-area .lay-grid > .col-10 img,
.edit-area .lay-grid > .col-11 img,
.edit-area .lay-grid > .col-12 img {
  width: 100% !important;
  height: auto !important;
  vertical-align: bottom;
}
@media all and (min-width: 841px) {
  .cke_editable .lay-grid > div.col-1, .cke_editable .lay-grid > div.col-2, .cke_editable .lay-grid > div.col-3, .cke_editable .lay-grid > div.col-4, .cke_editable .lay-grid > div.col-5, .cke_editable .lay-grid > div.col-6, .cke_editable .lay-grid > div.col-7, .cke_editable .lay-grid > div.col-8, .cke_editable .lay-grid > div.col-9, .cke_editable .lay-grid > div.col-10, .cke_editable .lay-grid > div.col-11, .cke_editable .lay-grid > div.col-12,
  .edit-area .lay-grid > div.col-1,
  .edit-area .lay-grid > div.col-2,
  .edit-area .lay-grid > div.col-3,
  .edit-area .lay-grid > div.col-4,
  .edit-area .lay-grid > div.col-5,
  .edit-area .lay-grid > div.col-6,
  .edit-area .lay-grid > div.col-7,
  .edit-area .lay-grid > div.col-8,
  .edit-area .lay-grid > div.col-9,
  .edit-area .lay-grid > div.col-10,
  .edit-area .lay-grid > div.col-11,
  .edit-area .lay-grid > div.col-12 {
    padding: 5px 0;
  }
}
@media screen and (max-width: 840px) {
  .cke_editable .lay-grid > div.col-1, .cke_editable .lay-grid > div.col-2, .cke_editable .lay-grid > div.col-3, .cke_editable .lay-grid > div.col-4, .cke_editable .lay-grid > div.col-5, .cke_editable .lay-grid > div.col-6, .cke_editable .lay-grid > div.col-7, .cke_editable .lay-grid > div.col-8, .cke_editable .lay-grid > div.col-9, .cke_editable .lay-grid > div.col-10, .cke_editable .lay-grid > div.col-11, .cke_editable .lay-grid > div.col-12,
  .edit-area .lay-grid > div.col-1,
  .edit-area .lay-grid > div.col-2,
  .edit-area .lay-grid > div.col-3,
  .edit-area .lay-grid > div.col-4,
  .edit-area .lay-grid > div.col-5,
  .edit-area .lay-grid > div.col-6,
  .edit-area .lay-grid > div.col-7,
  .edit-area .lay-grid > div.col-8,
  .edit-area .lay-grid > div.col-9,
  .edit-area .lay-grid > div.col-10,
  .edit-area .lay-grid > div.col-11,
  .edit-area .lay-grid > div.col-12 {
    padding: 5px 0;
  }
}
.cke_editable .lay-grid > .col-1,
.edit-area .lay-grid > .col-1 {
  width: calc(8.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-2,
.edit-area .lay-grid > .col-2 {
  width: calc(16.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-3,
.edit-area .lay-grid > .col-3 {
  width: calc(25% - 5px);
}
.cke_editable .lay-grid > .col-4,
.edit-area .lay-grid > .col-4 {
  width: calc(33.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-5,
.edit-area .lay-grid > .col-5 {
  width: calc(41.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-6,
.edit-area .lay-grid > .col-6 {
  width: calc(50% - 5px);
}
.cke_editable .lay-grid > .col-7,
.edit-area .lay-grid > .col-7 {
  width: calc(58.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-8,
.edit-area .lay-grid > .col-8 {
  width: calc(66.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-9,
.edit-area .lay-grid > .col-9 {
  width: calc(75% - 5px);
}
.cke_editable .lay-grid > .col-10,
.edit-area .lay-grid > .col-10 {
  width: calc(83.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-11,
.edit-area .lay-grid > .col-11 {
  width: calc(91.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-12,
.edit-area .lay-grid > .col-12 {
  width: calc(100% - 5px);
}
@media screen and (max-width: 840px) {
  .cke_editable .lay-grid > .col-12,
  .edit-area .lay-grid > .col-12 {
    width: calc(100% - 0px);
  }
}
@media all and (min-width: 841px) {
  .cke_editable .lay-grid > .col-lg-1, .cke_editable .lay-grid > .col-lg-2, .cke_editable .lay-grid > .col-lg-3, .cke_editable .lay-grid > .col-lg-4, .cke_editable .lay-grid > .col-lg-5, .cke_editable .lay-grid > .col-lg-6, .cke_editable .lay-grid > .col-lg-7, .cke_editable .lay-grid > .col-lg-8, .cke_editable .lay-grid > .col-lg-9, .cke_editable .lay-grid > .col-lg-10, .cke_editable .lay-grid > .col-lg-11, .cke_editable .lay-grid > .col-lg-12,
  .edit-area .lay-grid > .col-lg-1,
  .edit-area .lay-grid > .col-lg-2,
  .edit-area .lay-grid > .col-lg-3,
  .edit-area .lay-grid > .col-lg-4,
  .edit-area .lay-grid > .col-lg-5,
  .edit-area .lay-grid > .col-lg-6,
  .edit-area .lay-grid > .col-lg-7,
  .edit-area .lay-grid > .col-lg-8,
  .edit-area .lay-grid > .col-lg-9,
  .edit-area .lay-grid > .col-lg-10,
  .edit-area .lay-grid > .col-lg-11,
  .edit-area .lay-grid > .col-lg-12 {
    box-sizing: border-box;
  }
  .cke_editable .lay-grid > .col-lg-1,
  .edit-area .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-2,
  .edit-area .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-3,
  .edit-area .lay-grid > .col-lg-3 {
    width: calc(25% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-4,
  .edit-area .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-5,
  .edit-area .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-6,
  .edit-area .lay-grid > .col-lg-6 {
    width: calc(50% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-7,
  .edit-area .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-8,
  .edit-area .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-9,
  .edit-area .lay-grid > .col-lg-9 {
    width: calc(75% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-10,
  .edit-area .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-11,
  .edit-area .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-12,
  .edit-area .lay-grid > .col-lg-12 {
    width: calc(100% - 5px);
  }
  .cke_editable .lay-grid .card-box__item--lg-last,
  .edit-area .lay-grid .card-box__item--lg-last {
    order: 1;
  }
}
.cke_editable .card-box figcaption,
.edit-area .card-box figcaption {
  font-size: 12px;
  color: #2d2d2d;
  text-align: center;
}
.cke_editable,
.edit-area {
  /*================================================
  表
  ================================================*/
}
.cke_editable table,
.edit-area table {
  width: 100%;
  border-collapse: collapse;
}
.cke_editable table tr th,
.edit-area table tr th {
  background: var(--base-lightgray);
  padding: 10px;
  border: 1px solid var(--base-gray);
}
.cke_editable table tr td,
.edit-area table tr td {
  padding: 10px;
  border: 1px solid var(--base-gray);
  background: #fff;
}

/*================================================
管理画面のみの指定
================================================*/
.cke_editable .lay-grid > .col-1, .cke_editable .lay-grid > .col-2, .cke_editable .lay-grid > .col-3, .cke_editable .lay-grid > .col-4, .cke_editable .lay-grid > .col-5, .cke_editable .lay-grid > .col-6, .cke_editable .lay-grid > .col-7, .cke_editable .lay-grid > .col-8, .cke_editable .lay-grid > .col-9, .cke_editable .lay-grid > .col-10, .cke_editable .lay-grid > .col-11, .cke_editable .lay-grid > .col-12 {
  border: dashed 1px #dedacd;
}
@media all and (min-width: 841px) {
  .cke_editable .lay-grid > .col-lg-1, .cke_editable .lay-grid > .col-lg-2, .cke_editable .lay-grid > .col-lg-3, .cke_editable .lay-grid > .col-lg-4, .cke_editable .lay-grid > .col-lg-5, .cke_editable .lay-grid > .col-lg-6, .cke_editable .lay-grid > .col-lg-7, .cke_editable .lay-grid > .col-lg-8, .cke_editable .lay-grid > .col-lg-9, .cke_editable .lay-grid > .col-lg-10, .cke_editable .lay-grid > .col-lg-11, .cke_editable .lay-grid > .col-lg-12 {
    border: dashed 1px #dedacd;
  }
}
.cke_editable .scrollImg img {
  width: 100% !important;
  height: auto !important;
}

/* ==========================================================================
レイアウト関連
========================================================================== */
.mc {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media all and (min-width: 841px) {
  .mc_Pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (max-width: 840px) {
  .mc_Sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.mt0 {
  margin-top: 0px !important;
}
@media all and (min-width: 841px) {
  .mt0_Pc {
    margin-top: 0px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt0_Sp {
    margin-top: 0px !important;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}
@media all and (min-width: 841px) {
  .mb0_Pc {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb0_Sp {
    margin-bottom: 0px !important;
  }
}

.mr0 {
  margin-right: 0px !important;
}
@media all and (min-width: 841px) {
  .mr0_Pc {
    margin-right: 0px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr0_Sp {
    margin-right: 0px !important;
  }
}

.ml0 {
  margin-left: 0px !important;
}
@media all and (min-width: 841px) {
  .ml0_Pc {
    margin-left: 0px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml0_Sp {
    margin-left: 0px !important;
  }
}

.mt5 {
  margin-top: 5px !important;
}
@media all and (min-width: 841px) {
  .mt5_Pc {
    margin-top: 5px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt5_Sp {
    margin-top: 5px !important;
  }
}

.mb5 {
  margin-bottom: 5px !important;
}
@media all and (min-width: 841px) {
  .mb5_Pc {
    margin-bottom: 5px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb5_Sp {
    margin-bottom: 5px !important;
  }
}

.mr5 {
  margin-right: 5px !important;
}
@media all and (min-width: 841px) {
  .mr5_Pc {
    margin-right: 5px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr5_Sp {
    margin-right: 5px !important;
  }
}

.ml5 {
  margin-left: 5px !important;
}
@media all and (min-width: 841px) {
  .ml5_Pc {
    margin-left: 5px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml5_Sp {
    margin-left: 5px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media all and (min-width: 841px) {
  .mt10_Pc {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt10_Sp {
    margin-top: 10px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media all and (min-width: 841px) {
  .mb10_Pc {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb10_Sp {
    margin-bottom: 10px !important;
  }
}

.mr10 {
  margin-right: 10px !important;
}
@media all and (min-width: 841px) {
  .mr10_Pc {
    margin-right: 10px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr10_Sp {
    margin-right: 10px !important;
  }
}

.ml10 {
  margin-left: 10px !important;
}
@media all and (min-width: 841px) {
  .ml10_Pc {
    margin-left: 10px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml10_Sp {
    margin-left: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media all and (min-width: 841px) {
  .mt15_Pc {
    margin-top: 15px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt15_Sp {
    margin-top: 15px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media all and (min-width: 841px) {
  .mb15_Pc {
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb15_Sp {
    margin-bottom: 15px !important;
  }
}

.mr15 {
  margin-right: 15px !important;
}
@media all and (min-width: 841px) {
  .mr15_Pc {
    margin-right: 15px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr15_Sp {
    margin-right: 15px !important;
  }
}

.ml15 {
  margin-left: 15px !important;
}
@media all and (min-width: 841px) {
  .ml15_Pc {
    margin-left: 15px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml15_Sp {
    margin-left: 15px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media all and (min-width: 841px) {
  .mt20_Pc {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt20_Sp {
    margin-top: 20px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media all and (min-width: 841px) {
  .mb20_Pc {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb20_Sp {
    margin-bottom: 20px !important;
  }
}

.mr20 {
  margin-right: 20px !important;
}
@media all and (min-width: 841px) {
  .mr20_Pc {
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr20_Sp {
    margin-right: 20px !important;
  }
}

.ml20 {
  margin-left: 20px !important;
}
@media all and (min-width: 841px) {
  .ml20_Pc {
    margin-left: 20px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml20_Sp {
    margin-left: 20px !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}
@media all and (min-width: 841px) {
  .mt25_Pc {
    margin-top: 25px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt25_Sp {
    margin-top: 25px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media all and (min-width: 841px) {
  .mb25_Pc {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb25_Sp {
    margin-bottom: 25px !important;
  }
}

.mr25 {
  margin-right: 25px !important;
}
@media all and (min-width: 841px) {
  .mr25_Pc {
    margin-right: 25px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr25_Sp {
    margin-right: 25px !important;
  }
}

.ml25 {
  margin-left: 25px !important;
}
@media all and (min-width: 841px) {
  .ml25_Pc {
    margin-left: 25px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml25_Sp {
    margin-left: 25px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media all and (min-width: 841px) {
  .mt30_Pc {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt30_Sp {
    margin-top: 30px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media all and (min-width: 841px) {
  .mb30_Pc {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb30_Sp {
    margin-bottom: 30px !important;
  }
}

.mr30 {
  margin-right: 30px !important;
}
@media all and (min-width: 841px) {
  .mr30_Pc {
    margin-right: 30px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr30_Sp {
    margin-right: 30px !important;
  }
}

.ml30 {
  margin-left: 30px !important;
}
@media all and (min-width: 841px) {
  .ml30_Pc {
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml30_Sp {
    margin-left: 30px !important;
  }
}

.mt35 {
  margin-top: 35px !important;
}
@media all and (min-width: 841px) {
  .mt35_Pc {
    margin-top: 35px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt35_Sp {
    margin-top: 35px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media all and (min-width: 841px) {
  .mb35_Pc {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb35_Sp {
    margin-bottom: 35px !important;
  }
}

.mr35 {
  margin-right: 35px !important;
}
@media all and (min-width: 841px) {
  .mr35_Pc {
    margin-right: 35px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr35_Sp {
    margin-right: 35px !important;
  }
}

.ml35 {
  margin-left: 35px !important;
}
@media all and (min-width: 841px) {
  .ml35_Pc {
    margin-left: 35px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml35_Sp {
    margin-left: 35px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media all and (min-width: 841px) {
  .mt40_Pc {
    margin-top: 40px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt40_Sp {
    margin-top: 40px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media all and (min-width: 841px) {
  .mb40_Pc {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb40_Sp {
    margin-bottom: 40px !important;
  }
}

.mr40 {
  margin-right: 40px !important;
}
@media all and (min-width: 841px) {
  .mr40_Pc {
    margin-right: 40px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr40_Sp {
    margin-right: 40px !important;
  }
}

.ml40 {
  margin-left: 40px !important;
}
@media all and (min-width: 841px) {
  .ml40_Pc {
    margin-left: 40px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml40_Sp {
    margin-left: 40px !important;
  }
}

.mt45 {
  margin-top: 45px !important;
}
@media all and (min-width: 841px) {
  .mt45_Pc {
    margin-top: 45px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt45_Sp {
    margin-top: 45px !important;
  }
}

.mb45 {
  margin-bottom: 45px !important;
}
@media all and (min-width: 841px) {
  .mb45_Pc {
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb45_Sp {
    margin-bottom: 45px !important;
  }
}

.mr45 {
  margin-right: 45px !important;
}
@media all and (min-width: 841px) {
  .mr45_Pc {
    margin-right: 45px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr45_Sp {
    margin-right: 45px !important;
  }
}

.ml45 {
  margin-left: 45px !important;
}
@media all and (min-width: 841px) {
  .ml45_Pc {
    margin-left: 45px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml45_Sp {
    margin-left: 45px !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}
@media all and (min-width: 841px) {
  .mt50_Pc {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt50_Sp {
    margin-top: 50px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media all and (min-width: 841px) {
  .mb50_Pc {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb50_Sp {
    margin-bottom: 50px !important;
  }
}

.mr50 {
  margin-right: 50px !important;
}
@media all and (min-width: 841px) {
  .mr50_Pc {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr50_Sp {
    margin-right: 50px !important;
  }
}

.ml50 {
  margin-left: 50px !important;
}
@media all and (min-width: 841px) {
  .ml50_Pc {
    margin-left: 50px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml50_Sp {
    margin-left: 50px !important;
  }
}

.mt55 {
  margin-top: 55px !important;
}
@media all and (min-width: 841px) {
  .mt55_Pc {
    margin-top: 55px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt55_Sp {
    margin-top: 55px !important;
  }
}

.mb55 {
  margin-bottom: 55px !important;
}
@media all and (min-width: 841px) {
  .mb55_Pc {
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb55_Sp {
    margin-bottom: 55px !important;
  }
}

.mr55 {
  margin-right: 55px !important;
}
@media all and (min-width: 841px) {
  .mr55_Pc {
    margin-right: 55px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr55_Sp {
    margin-right: 55px !important;
  }
}

.ml55 {
  margin-left: 55px !important;
}
@media all and (min-width: 841px) {
  .ml55_Pc {
    margin-left: 55px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml55_Sp {
    margin-left: 55px !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}
@media all and (min-width: 841px) {
  .mt60_Pc {
    margin-top: 60px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt60_Sp {
    margin-top: 60px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media all and (min-width: 841px) {
  .mb60_Pc {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb60_Sp {
    margin-bottom: 60px !important;
  }
}

.mr60 {
  margin-right: 60px !important;
}
@media all and (min-width: 841px) {
  .mr60_Pc {
    margin-right: 60px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr60_Sp {
    margin-right: 60px !important;
  }
}

.ml60 {
  margin-left: 60px !important;
}
@media all and (min-width: 841px) {
  .ml60_Pc {
    margin-left: 60px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml60_Sp {
    margin-left: 60px !important;
  }
}

.mt65 {
  margin-top: 65px !important;
}
@media all and (min-width: 841px) {
  .mt65_Pc {
    margin-top: 65px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt65_Sp {
    margin-top: 65px !important;
  }
}

.mb65 {
  margin-bottom: 65px !important;
}
@media all and (min-width: 841px) {
  .mb65_Pc {
    margin-bottom: 65px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb65_Sp {
    margin-bottom: 65px !important;
  }
}

.mr65 {
  margin-right: 65px !important;
}
@media all and (min-width: 841px) {
  .mr65_Pc {
    margin-right: 65px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr65_Sp {
    margin-right: 65px !important;
  }
}

.ml65 {
  margin-left: 65px !important;
}
@media all and (min-width: 841px) {
  .ml65_Pc {
    margin-left: 65px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml65_Sp {
    margin-left: 65px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media all and (min-width: 841px) {
  .mt70_Pc {
    margin-top: 70px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt70_Sp {
    margin-top: 70px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media all and (min-width: 841px) {
  .mb70_Pc {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb70_Sp {
    margin-bottom: 70px !important;
  }
}

.mr70 {
  margin-right: 70px !important;
}
@media all and (min-width: 841px) {
  .mr70_Pc {
    margin-right: 70px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr70_Sp {
    margin-right: 70px !important;
  }
}

.ml70 {
  margin-left: 70px !important;
}
@media all and (min-width: 841px) {
  .ml70_Pc {
    margin-left: 70px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml70_Sp {
    margin-left: 70px !important;
  }
}

.mt75 {
  margin-top: 75px !important;
}
@media all and (min-width: 841px) {
  .mt75_Pc {
    margin-top: 75px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt75_Sp {
    margin-top: 75px !important;
  }
}

.mb75 {
  margin-bottom: 75px !important;
}
@media all and (min-width: 841px) {
  .mb75_Pc {
    margin-bottom: 75px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb75_Sp {
    margin-bottom: 75px !important;
  }
}

.mr75 {
  margin-right: 75px !important;
}
@media all and (min-width: 841px) {
  .mr75_Pc {
    margin-right: 75px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr75_Sp {
    margin-right: 75px !important;
  }
}

.ml75 {
  margin-left: 75px !important;
}
@media all and (min-width: 841px) {
  .ml75_Pc {
    margin-left: 75px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml75_Sp {
    margin-left: 75px !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}
@media all and (min-width: 841px) {
  .mt80_Pc {
    margin-top: 80px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt80_Sp {
    margin-top: 80px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media all and (min-width: 841px) {
  .mb80_Pc {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb80_Sp {
    margin-bottom: 80px !important;
  }
}

.mr80 {
  margin-right: 80px !important;
}
@media all and (min-width: 841px) {
  .mr80_Pc {
    margin-right: 80px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr80_Sp {
    margin-right: 80px !important;
  }
}

.ml80 {
  margin-left: 80px !important;
}
@media all and (min-width: 841px) {
  .ml80_Pc {
    margin-left: 80px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml80_Sp {
    margin-left: 80px !important;
  }
}

.mt85 {
  margin-top: 85px !important;
}
@media all and (min-width: 841px) {
  .mt85_Pc {
    margin-top: 85px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt85_Sp {
    margin-top: 85px !important;
  }
}

.mb85 {
  margin-bottom: 85px !important;
}
@media all and (min-width: 841px) {
  .mb85_Pc {
    margin-bottom: 85px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb85_Sp {
    margin-bottom: 85px !important;
  }
}

.mr85 {
  margin-right: 85px !important;
}
@media all and (min-width: 841px) {
  .mr85_Pc {
    margin-right: 85px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr85_Sp {
    margin-right: 85px !important;
  }
}

.ml85 {
  margin-left: 85px !important;
}
@media all and (min-width: 841px) {
  .ml85_Pc {
    margin-left: 85px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml85_Sp {
    margin-left: 85px !important;
  }
}

.mt90 {
  margin-top: 90px !important;
}
@media all and (min-width: 841px) {
  .mt90_Pc {
    margin-top: 90px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt90_Sp {
    margin-top: 90px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media all and (min-width: 841px) {
  .mb90_Pc {
    margin-bottom: 90px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb90_Sp {
    margin-bottom: 90px !important;
  }
}

.mr90 {
  margin-right: 90px !important;
}
@media all and (min-width: 841px) {
  .mr90_Pc {
    margin-right: 90px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr90_Sp {
    margin-right: 90px !important;
  }
}

.ml90 {
  margin-left: 90px !important;
}
@media all and (min-width: 841px) {
  .ml90_Pc {
    margin-left: 90px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml90_Sp {
    margin-left: 90px !important;
  }
}

.mt95 {
  margin-top: 95px !important;
}
@media all and (min-width: 841px) {
  .mt95_Pc {
    margin-top: 95px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt95_Sp {
    margin-top: 95px !important;
  }
}

.mb95 {
  margin-bottom: 95px !important;
}
@media all and (min-width: 841px) {
  .mb95_Pc {
    margin-bottom: 95px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb95_Sp {
    margin-bottom: 95px !important;
  }
}

.mr95 {
  margin-right: 95px !important;
}
@media all and (min-width: 841px) {
  .mr95_Pc {
    margin-right: 95px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr95_Sp {
    margin-right: 95px !important;
  }
}

.ml95 {
  margin-left: 95px !important;
}
@media all and (min-width: 841px) {
  .ml95_Pc {
    margin-left: 95px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml95_Sp {
    margin-left: 95px !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}
@media all and (min-width: 841px) {
  .mt100_Pc {
    margin-top: 100px !important;
  }
}
@media screen and (max-width: 840px) {
  .mt100_Sp {
    margin-top: 100px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media all and (min-width: 841px) {
  .mb100_Pc {
    margin-bottom: 100px !important;
  }
}
@media screen and (max-width: 840px) {
  .mb100_Sp {
    margin-bottom: 100px !important;
  }
}

.mr100 {
  margin-right: 100px !important;
}
@media all and (min-width: 841px) {
  .mr100_Pc {
    margin-right: 100px !important;
  }
}
@media screen and (max-width: 840px) {
  .mr100_Sp {
    margin-right: 100px !important;
  }
}

.ml100 {
  margin-left: 100px !important;
}
@media all and (min-width: 841px) {
  .ml100_Pc {
    margin-left: 100px !important;
  }
}
@media screen and (max-width: 840px) {
  .ml100_Sp {
    margin-left: 100px !important;
  }
}

.w0per {
  width: 0% !important;
}
@media all and (min-width: 841px) {
  .w0per_Pc {
    width: 0% !important;
  }
}
@media screen and (max-width: 840px) {
  .w0per_Sp {
    width: 0% !important;
  }
}

.w0 {
  width: 0px !important;
}
@media all and (min-width: 841px) {
  .w0_Pc {
    width: 0px !important;
  }
}
@media screen and (max-width: 840px) {
  .w0_Sp {
    width: 0px !important;
  }
}

.w5per {
  width: 5% !important;
}
@media all and (min-width: 841px) {
  .w5per_Pc {
    width: 5% !important;
  }
}
@media screen and (max-width: 840px) {
  .w5per_Sp {
    width: 5% !important;
  }
}

.w5 {
  width: 5px !important;
}
@media all and (min-width: 841px) {
  .w5_Pc {
    width: 5px !important;
  }
}
@media screen and (max-width: 840px) {
  .w5_Sp {
    width: 5px !important;
  }
}

.w10per {
  width: 10% !important;
}
@media all and (min-width: 841px) {
  .w10per_Pc {
    width: 10% !important;
  }
}
@media screen and (max-width: 840px) {
  .w10per_Sp {
    width: 10% !important;
  }
}

.w10 {
  width: 10px !important;
}
@media all and (min-width: 841px) {
  .w10_Pc {
    width: 10px !important;
  }
}
@media screen and (max-width: 840px) {
  .w10_Sp {
    width: 10px !important;
  }
}

.w15per {
  width: 15% !important;
}
@media all and (min-width: 841px) {
  .w15per_Pc {
    width: 15% !important;
  }
}
@media screen and (max-width: 840px) {
  .w15per_Sp {
    width: 15% !important;
  }
}

.w15 {
  width: 15px !important;
}
@media all and (min-width: 841px) {
  .w15_Pc {
    width: 15px !important;
  }
}
@media screen and (max-width: 840px) {
  .w15_Sp {
    width: 15px !important;
  }
}

.w20per {
  width: 20% !important;
}
@media all and (min-width: 841px) {
  .w20per_Pc {
    width: 20% !important;
  }
}
@media screen and (max-width: 840px) {
  .w20per_Sp {
    width: 20% !important;
  }
}

.w20 {
  width: 20px !important;
}
@media all and (min-width: 841px) {
  .w20_Pc {
    width: 20px !important;
  }
}
@media screen and (max-width: 840px) {
  .w20_Sp {
    width: 20px !important;
  }
}

.w25per {
  width: 25% !important;
}
@media all and (min-width: 841px) {
  .w25per_Pc {
    width: 25% !important;
  }
}
@media screen and (max-width: 840px) {
  .w25per_Sp {
    width: 25% !important;
  }
}

.w25 {
  width: 25px !important;
}
@media all and (min-width: 841px) {
  .w25_Pc {
    width: 25px !important;
  }
}
@media screen and (max-width: 840px) {
  .w25_Sp {
    width: 25px !important;
  }
}

.w30per {
  width: 30% !important;
}
@media all and (min-width: 841px) {
  .w30per_Pc {
    width: 30% !important;
  }
}
@media screen and (max-width: 840px) {
  .w30per_Sp {
    width: 30% !important;
  }
}

.w30 {
  width: 30px !important;
}
@media all and (min-width: 841px) {
  .w30_Pc {
    width: 30px !important;
  }
}
@media screen and (max-width: 840px) {
  .w30_Sp {
    width: 30px !important;
  }
}

.w35per {
  width: 35% !important;
}
@media all and (min-width: 841px) {
  .w35per_Pc {
    width: 35% !important;
  }
}
@media screen and (max-width: 840px) {
  .w35per_Sp {
    width: 35% !important;
  }
}

.w35 {
  width: 35px !important;
}
@media all and (min-width: 841px) {
  .w35_Pc {
    width: 35px !important;
  }
}
@media screen and (max-width: 840px) {
  .w35_Sp {
    width: 35px !important;
  }
}

.w40per {
  width: 40% !important;
}
@media all and (min-width: 841px) {
  .w40per_Pc {
    width: 40% !important;
  }
}
@media screen and (max-width: 840px) {
  .w40per_Sp {
    width: 40% !important;
  }
}

.w40 {
  width: 40px !important;
}
@media all and (min-width: 841px) {
  .w40_Pc {
    width: 40px !important;
  }
}
@media screen and (max-width: 840px) {
  .w40_Sp {
    width: 40px !important;
  }
}

.w45per {
  width: 45% !important;
}
@media all and (min-width: 841px) {
  .w45per_Pc {
    width: 45% !important;
  }
}
@media screen and (max-width: 840px) {
  .w45per_Sp {
    width: 45% !important;
  }
}

.w45 {
  width: 45px !important;
}
@media all and (min-width: 841px) {
  .w45_Pc {
    width: 45px !important;
  }
}
@media screen and (max-width: 840px) {
  .w45_Sp {
    width: 45px !important;
  }
}

.w50per {
  width: 50% !important;
}
@media all and (min-width: 841px) {
  .w50per_Pc {
    width: 50% !important;
  }
}
@media screen and (max-width: 840px) {
  .w50per_Sp {
    width: 50% !important;
  }
}

.w50 {
  width: 50px !important;
}
@media all and (min-width: 841px) {
  .w50_Pc {
    width: 50px !important;
  }
}
@media screen and (max-width: 840px) {
  .w50_Sp {
    width: 50px !important;
  }
}

.w55per {
  width: 55% !important;
}
@media all and (min-width: 841px) {
  .w55per_Pc {
    width: 55% !important;
  }
}
@media screen and (max-width: 840px) {
  .w55per_Sp {
    width: 55% !important;
  }
}

.w55 {
  width: 55px !important;
}
@media all and (min-width: 841px) {
  .w55_Pc {
    width: 55px !important;
  }
}
@media screen and (max-width: 840px) {
  .w55_Sp {
    width: 55px !important;
  }
}

.w60per {
  width: 60% !important;
}
@media all and (min-width: 841px) {
  .w60per_Pc {
    width: 60% !important;
  }
}
@media screen and (max-width: 840px) {
  .w60per_Sp {
    width: 60% !important;
  }
}

.w60 {
  width: 60px !important;
}
@media all and (min-width: 841px) {
  .w60_Pc {
    width: 60px !important;
  }
}
@media screen and (max-width: 840px) {
  .w60_Sp {
    width: 60px !important;
  }
}

.w65per {
  width: 65% !important;
}
@media all and (min-width: 841px) {
  .w65per_Pc {
    width: 65% !important;
  }
}
@media screen and (max-width: 840px) {
  .w65per_Sp {
    width: 65% !important;
  }
}

.w65 {
  width: 65px !important;
}
@media all and (min-width: 841px) {
  .w65_Pc {
    width: 65px !important;
  }
}
@media screen and (max-width: 840px) {
  .w65_Sp {
    width: 65px !important;
  }
}

.w70per {
  width: 70% !important;
}
@media all and (min-width: 841px) {
  .w70per_Pc {
    width: 70% !important;
  }
}
@media screen and (max-width: 840px) {
  .w70per_Sp {
    width: 70% !important;
  }
}

.w70 {
  width: 70px !important;
}
@media all and (min-width: 841px) {
  .w70_Pc {
    width: 70px !important;
  }
}
@media screen and (max-width: 840px) {
  .w70_Sp {
    width: 70px !important;
  }
}

.w75per {
  width: 75% !important;
}
@media all and (min-width: 841px) {
  .w75per_Pc {
    width: 75% !important;
  }
}
@media screen and (max-width: 840px) {
  .w75per_Sp {
    width: 75% !important;
  }
}

.w75 {
  width: 75px !important;
}
@media all and (min-width: 841px) {
  .w75_Pc {
    width: 75px !important;
  }
}
@media screen and (max-width: 840px) {
  .w75_Sp {
    width: 75px !important;
  }
}

.w80per {
  width: 80% !important;
}
@media all and (min-width: 841px) {
  .w80per_Pc {
    width: 80% !important;
  }
}
@media screen and (max-width: 840px) {
  .w80per_Sp {
    width: 80% !important;
  }
}

.w80 {
  width: 80px !important;
}
@media all and (min-width: 841px) {
  .w80_Pc {
    width: 80px !important;
  }
}
@media screen and (max-width: 840px) {
  .w80_Sp {
    width: 80px !important;
  }
}

.w85per {
  width: 85% !important;
}
@media all and (min-width: 841px) {
  .w85per_Pc {
    width: 85% !important;
  }
}
@media screen and (max-width: 840px) {
  .w85per_Sp {
    width: 85% !important;
  }
}

.w85 {
  width: 85px !important;
}
@media all and (min-width: 841px) {
  .w85_Pc {
    width: 85px !important;
  }
}
@media screen and (max-width: 840px) {
  .w85_Sp {
    width: 85px !important;
  }
}

.w90per {
  width: 90% !important;
}
@media all and (min-width: 841px) {
  .w90per_Pc {
    width: 90% !important;
  }
}
@media screen and (max-width: 840px) {
  .w90per_Sp {
    width: 90% !important;
  }
}

.w90 {
  width: 90px !important;
}
@media all and (min-width: 841px) {
  .w90_Pc {
    width: 90px !important;
  }
}
@media screen and (max-width: 840px) {
  .w90_Sp {
    width: 90px !important;
  }
}

.w95per {
  width: 95% !important;
}
@media all and (min-width: 841px) {
  .w95per_Pc {
    width: 95% !important;
  }
}
@media screen and (max-width: 840px) {
  .w95per_Sp {
    width: 95% !important;
  }
}

.w95 {
  width: 95px !important;
}
@media all and (min-width: 841px) {
  .w95_Pc {
    width: 95px !important;
  }
}
@media screen and (max-width: 840px) {
  .w95_Sp {
    width: 95px !important;
  }
}

.w100per {
  width: 100% !important;
}
@media all and (min-width: 841px) {
  .w100per_Pc {
    width: 100% !important;
  }
}
@media screen and (max-width: 840px) {
  .w100per_Sp {
    width: 100% !important;
  }
}

.w100 {
  width: 100px !important;
}
@media all and (min-width: 841px) {
  .w100_Pc {
    width: 100px !important;
  }
}
@media screen and (max-width: 840px) {
  .w100_Sp {
    width: 100px !important;
  }
}

.cke_editable sub,
.edit-area sub {
  font-size: 75.5%;
  vertical-align: bottom;
}
.cke_editable sup,
.edit-area sup {
  font-size: 75.5%;
  vertical-align: top;
}
.cke_editable .op,
.edit-area .op {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}
.cke_editable .op_large,
.edit-area .op_large {
  font-size: 1.125rem;
}
.cke_editable .op_medium,
.edit-area .op_medium {
  font-size: 1rem;
}
.cke_editable .op_small,
.edit-area .op_small {
  font-size: 0.875rem;
}
.cke_editable .h2_title01,
.edit-area .h2_title01 {
  font-size: 2.375rem;
  font-family: var(--font-body);
  font-weight: bold;
  color: var(--default-navy);
  margin-bottom: 20px;
}
@media screen and (max-width: 840px) {
  .cke_editable .h2_title01,
  .edit-area .h2_title01 {
    font-size: 1.875rem;
  }
}
.cke_editable .h3_title01,
.edit-area .h3_title01 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--default-navy);
  padding-left: 15px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 840px) {
  .cke_editable .h3_title01,
  .edit-area .h3_title01 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
}
.cke_editable .h3_title01::before,
.edit-area .h3_title01::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 5px;
  background-color: var(--default-green);
}
@media screen and (max-width: 840px) {
  .cke_editable .h3_title01::before,
  .edit-area .h3_title01::before {
    top: 13px;
  }
}
.cke_editable .h4_title01,
.edit-area .h4_title01 {
  padding: 0px 0 0px 10px;
  margin-bottom: 15px;
  border-left: solid 4px var(--default-blue);
  font-size: 1.25rem;
  font-weight: normal;
}
@media screen and (max-width: 840px) {
  .cke_editable .h4_title01,
  .edit-area .h4_title01 {
    font-size: 1.125rem;
  }
}

.foS10 {
  font-size: 0.625rem;
}
@media all and (min-width: 841px) {
  .foS10_Pc {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 840px) {
  .foS10_Sp {
    font-size: 0.625rem;
  }
}
.foS11 {
  font-size: 0.6875rem;
}
@media all and (min-width: 841px) {
  .foS11_Pc {
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 840px) {
  .foS11_Sp {
    font-size: 0.6875rem;
  }
}
.foS12 {
  font-size: 0.75rem;
}
@media all and (min-width: 841px) {
  .foS12_Pc {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 840px) {
  .foS12_Sp {
    font-size: 0.75rem;
  }
}
.foS13 {
  font-size: 0.8125rem;
}
@media all and (min-width: 841px) {
  .foS13_Pc {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 840px) {
  .foS13_Sp {
    font-size: 0.8125rem;
  }
}
.foS14 {
  font-size: 0.875rem;
}
@media all and (min-width: 841px) {
  .foS14_Pc {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 840px) {
  .foS14_Sp {
    font-size: 0.875rem;
  }
}
.foS15 {
  font-size: 0.9375rem;
}
@media all and (min-width: 841px) {
  .foS15_Pc {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 840px) {
  .foS15_Sp {
    font-size: 0.9375rem;
  }
}

.foL17 {
  font-size: 1.0625rem;
}
@media all and (min-width: 841px) {
  .foL17_Pc {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 840px) {
  .foL17_Sp {
    font-size: 1.0625rem;
  }
}
.foL18 {
  font-size: 1.125rem;
}
@media all and (min-width: 841px) {
  .foL18_Pc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 840px) {
  .foL18_Sp {
    font-size: 1.125rem;
  }
}
.foL19 {
  font-size: 1.1875rem;
}
@media all and (min-width: 841px) {
  .foL19_Pc {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 840px) {
  .foL19_Sp {
    font-size: 1.1875rem;
  }
}
.foL20 {
  font-size: 1.25rem;
}
@media all and (min-width: 841px) {
  .foL20_Pc {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 840px) {
  .foL20_Sp {
    font-size: 1.25rem;
  }
}
.foL21 {
  font-size: 1.3125rem;
}
@media all and (min-width: 841px) {
  .foL21_Pc {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 840px) {
  .foL21_Sp {
    font-size: 1.3125rem;
  }
}
.foL22 {
  font-size: 1.375rem;
}
@media all and (min-width: 841px) {
  .foL22_Pc {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 840px) {
  .foL22_Sp {
    font-size: 1.375rem;
  }
}
.foL24 {
  font-size: 1.5rem;
}
@media all and (min-width: 841px) {
  .foL24_Pc {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 840px) {
  .foL24_Sp {
    font-size: 1.5rem;
  }
}
.foL26 {
  font-size: 1.625rem;
}
@media all and (min-width: 841px) {
  .foL26_Pc {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 840px) {
  .foL26_Sp {
    font-size: 1.625rem;
  }
}
.foL28 {
  font-size: 1.75rem;
}
@media all and (min-width: 841px) {
  .foL28_Pc {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 840px) {
  .foL28_Sp {
    font-size: 1.75rem;
  }
}
.foL30 {
  font-size: 1.875rem;
}
@media all and (min-width: 841px) {
  .foL30_Pc {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 840px) {
  .foL30_Sp {
    font-size: 1.875rem;
  }
}
.foL32 {
  font-size: 2rem;
}
@media all and (min-width: 841px) {
  .foL32_Pc {
    font-size: 2rem;
  }
}
@media screen and (max-width: 840px) {
  .foL32_Sp {
    font-size: 2rem;
  }
}
.foL34 {
  font-size: 2.125rem;
}
@media all and (min-width: 841px) {
  .foL34_Pc {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 840px) {
  .foL34_Sp {
    font-size: 2.125rem;
  }
}
.foL36 {
  font-size: 2.25rem;
}
@media all and (min-width: 841px) {
  .foL36_Pc {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 840px) {
  .foL36_Sp {
    font-size: 2.25rem;
  }
}
.foL38 {
  font-size: 2.375rem;
}
@media all and (min-width: 841px) {
  .foL38_Pc {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 840px) {
  .foL38_Sp {
    font-size: 2.375rem;
  }
}
.foL40 {
  font-size: 2.5rem;
}
@media all and (min-width: 841px) {
  .foL40_Pc {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 840px) {
  .foL40_Sp {
    font-size: 2.5rem;
  }
}
.foL44 {
  font-size: 2.75rem;
}
@media all and (min-width: 841px) {
  .foL44_Pc {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 840px) {
  .foL44_Sp {
    font-size: 2.75rem;
  }
}
.foL48 {
  font-size: 3rem;
}
@media all and (min-width: 841px) {
  .foL48_Pc {
    font-size: 3rem;
  }
}
@media screen and (max-width: 840px) {
  .foL48_Sp {
    font-size: 3rem;
  }
}

.text_center {
  text-align: center;
}
@media all and (min-width: 841px) {
  .text_center_Pc {
    text-align: center;
  }
}
@media screen and (max-width: 840px) {
  .text_center_Sp {
    text-align: center;
  }
}

.text_left {
  text-align: left;
}
@media all and (min-width: 841px) {
  .text_left_Pc {
    text-align: left;
  }
}
@media screen and (max-width: 840px) {
  .text_left_Sp {
    text-align: left;
  }
}

.text_right {
  text-align: right;
}
@media all and (min-width: 841px) {
  .text_right_Pc {
    text-align: right;
  }
}
@media screen and (max-width: 840px) {
  .text_right_Sp {
    text-align: right;
  }
}

.hero {
  background-color: var(--base-lightblue);
  padding-top: 130px;
  margin: 0 auto 60px;
}
@media all and (min-width: 841px) {
  .hero {
    min-width: 90%;
  }
}
@media screen and (max-width: 840px) {
  .hero {
    padding-top: 150px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 840px) {
  .hero {
    padding-top: 110px;
  }
}
.hero .hero-title {
  font-size: 0;
  width: 100%;
  height: auto;
}
@media all and (min-width: 841px) {
  .hero .hero-title {
    padding-top: 15.14%;
    background: url(../common/img_top_main.png) no-repeat center center;
    background-size: contain;
  }
}
.hero .hero-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.hero .hero-images .img-large {
  flex: 2;
  width: 100%;
  height: 550px;
}
@media screen and (max-width: 840px) {
  .hero .hero-images .img-large {
    height: 300px;
  }
}
.hero .hero-images .img-small-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero .hero-images img {
  width: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}
.hero .hero-text {
  width: 1100px;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 2.5%;
}
@media screen and (max-width: 840px) {
  .hero .hero-text {
    width: 90%;
    position: absolute;
    top: 30px;
    left: 5%;
    margin-bottom: 0;
    z-index: 1000;
    padding: 0;
  }
}
.hero .hero-subtitle {
  font-size: 1.625rem;
  letter-spacing: -0.03em;
  font-weight: bold;
}
.hero .hero-info {
  background: var(--default-navy);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 840px) {
  .hero .hero-info {
    padding: 10px 0;
  }
}
.hero .hero-info .hero-info-text {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.hero .hero-info .hero-info-text .hero-info-inner {
  display: flex;
  animation: marquee-loop 20s linear infinite;
}
.hero .hero-info .hero-info-text .hero-info-inner span {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--default-white);
  padding-right: 50px;
  position: relative;
  font-family: var(--font-body);
}
@media screen and (max-width: 840px) {
  .hero .hero-info .hero-info-text .hero-info-inner span {
    font-size: 0.875rem;
    padding-right: 30px;
  }
}
.hero .hero-info .hero-info-text .hero-info-inner span.hero-info-date {
  background: url(../common/img_top_main_date.png) no-repeat;
  background-size: contain;
  padding-left: 40px;
}
.hero .hero-info .hero-info-text .hero-info-inner span.hero-info-place {
  background: url(../common/img_top_main_place.png) no-repeat;
  background-size: contain;
  padding-left: 30px;
}

@keyframes marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    /* テキストが2つ並んでいるうち、
       ちょうど半分（1つ分）が左に消えた瞬間に0に戻る
    */
    transform: translateX(-50%);
  }
}
.news-section {
  max-width: 1100px;
  margin: 40px auto;
}
@media all and (min-width: 841px) {
  .news-section {
    width: 900px;
  }
}
@media screen and (max-width: 840px) {
  .news-section {
    width: 90%;
    margin: 20px auto;
  }
}
.news-section .section-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.news-section .section-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.125rem;
  color: var(--default-navy);
  margin: 0;
}
@media screen and (max-width: 840px) {
  .news-section .section-header h2 {
    font-size: 1.875rem;
  }
}
.news-section .section-header .btn-viewall {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background-color: var(--base-lightblue);
  color: var(--default-navy);
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.news-section .section-header .btn-viewall .arrow {
  margin-left: 8px;
}
.news-section .section-header .btn-viewall:hover {
  opacity: 0.8;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow: hidden scroll;
}
.news-list li {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.news-list li:first-child {
  border-top: 1px solid #eee;
}
.news-list .news-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 840px) {
  .news-list .news-info {
    flex-wrap: wrap;
    gap: 5px;
  }
}
.news-list .news-info .date {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--default-navy);
  font-size: 1rem;
  min-width: 95px;
}
.news-list .news-info .badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 4px;
}
.news-list .news-info .badge.new {
  background-color: var(--default-green);
  color: var(--default-white);
  text-transform: uppercase;
}
.news-list .news-info .badge.category {
  background-color: var(--base-lightblue);
  color: var(--default-navy);
}
.news-list .news-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--default-black);
  text-decoration: none;
  transition: color 0.3s;
}
.news-list .news-title:hover {
  color: var(--default-blue);
  text-decoration: underline;
}
.news-list .news-title.title_only:hover {
  text-decoration: none;
  color: var(--default-black);
}

.quick-links {
  background-color: var(--base-lightblue);
  padding: 60px 0px;
  margin: 60px auto 0;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .quick-links {
    margin: 40px auto 0;
    padding: 40px 0;
  }
}
@media screen and (max-width: 840px) {
  .quick-links .quick-links-inner {
    width: 90%;
    margin: 0 auto;
  }
}
.quick-links .section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.125rem;
  color: var(--default-navy);
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .quick-links .section-title {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }
}
.quick-links .links-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto 20px;
}
@media all and (min-width: 841px) {
  .quick-links .links-main-grid {
    width: 900px;
  }
}
.quick-links .card-large {
  background: var(--default-white);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.quick-links .card-large:hover {
  transform: translateY(-5px);
}
.quick-links .card-large .card-img {
  height: 200px;
  overflow: hidden;
}
.quick-links .card-large .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quick-links .card-large .card-body {
  padding: 25px;
}
.quick-links .card-large .card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--default-navy);
  font-size: 1.4rem;
  margin: 0;
  display: block;
  position: relative;
  text-align: left;
}
.quick-links .card-large .card-body h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--default-navy);
  border-radius: 50%;
  right: 0px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.quick-links .card-large .card-body h3::after {
  content: "→";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.quick-links .links-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media all and (min-width: 841px) {
  .quick-links .links-sub-grid {
    width: 900px;
    margin: 0 auto;
  }
}
.quick-links .card-sub {
  background-color: var(--default-navy);
  color: var(--default-white);
  padding: 40px 20px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s;
}
.quick-links .card-sub:hover {
  background-color: var(--default-blue);
}
.quick-links .card-sub .icon-box {
  height: 60px;
  margin-bottom: 20px;
}
.quick-links .card-sub .icon-box img {
  height: 100%;
  width: auto;
}
.quick-links .card-sub p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  position: relative;
}
.quick-links .card-sub p::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 50%;
  right: 20px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.quick-links .card-sub p::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.quick-links .card-sub .btn-arrow-small {
  border-color: rgba(255, 255, 255, 0.4);
  margin-top: 15px;
  width: 28px;
  height: 28px;
}
.quick-links .card-sub .btn-arrow-small::after {
  font-size: 12px;
}

@media (max-width: 768px) {
  .quick-links .links-main-grid,
  .quick-links .links-sub-grid {
    grid-template-columns: 1fr;
  }
}
.important-dates {
  max-width: 1100px;
  margin: 0px auto 60px;
  padding-top: 60px;
  position: relative;
}
@media all and (min-width: 841px) {
  .important-dates {
    width: 900px;
  }
}
@media screen and (max-width: 840px) {
  .important-dates {
    width: 90%;
    margin: 0px auto 20px;
  }
}
.important-dates::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 45px;
  background-color: var(--default-green);
  z-index: 0;
}
@media screen and (max-width: 840px) {
  .important-dates::before {
    left: 20px;
  }
}
.important-dates .title-with-bar {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--default-navy);
  font-size: 3.125rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 840px) {
  .important-dates .title-with-bar {
    font-size: 1.875rem;
  }
}
.important-dates .section-lead {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--default-black);
  margin-bottom: 40px;
}
.important-dates .section-header {
  position: relative;
  z-index: 1;
  padding-left: 110px;
}
@media screen and (max-width: 840px) {
  .important-dates .section-header {
    padding-left: 80px;
  }
}

.timeline {
  position: relative;
}
.timeline .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  z-index: 1;
}
.timeline .timeline-item .tl-card {
  flex: 1;
  background: var(--default-white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px 40px 25px 100px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  min-height: 113px;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .timeline .timeline-item .tl-card {
    display: block;
    padding: 25px 20px 25px 80px;
  }
}
.timeline .timeline-item .tl-card::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: var(--default-white);
  border: 5px solid var(--default-green);
  border-radius: 50%;
  z-index: 10;
}
@media screen and (max-width: 840px) {
  .timeline .timeline-item .tl-card::before {
    left: 30px;
  }
}
.timeline .timeline-item .tl-card .tl-date-area {
  width: 240px;
}
@media screen and (max-width: 840px) {
  .timeline .timeline-item .tl-card .tl-date-area {
    width: 100%;
  }
}
.timeline .timeline-item .tl-card .tl-date-area .label {
  display: inline-block;
  background: var(--base-lightblue);
  color: var(--default-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 12px;
  border-radius: 2px;
  margin-bottom: 5px;
}
.timeline .timeline-item .tl-card .tl-date-area .date {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--default-green);
  margin: 0;
}
.timeline .timeline-item .tl-card .tl-content {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--default-navy);
}
.timeline .timeline-item .tl-card .tl-content p {
  margin: 0;
  line-height: 1.5;
}
.timeline .timeline-item.highlight .tl-left .tl-circle {
  border-color: var(--default-white);
  background-color: var(--default-white);
}
.timeline .timeline-item.highlight .tl-card {
  background: var(--default-gradient01);
  border: none;
}
.timeline .timeline-item.highlight .tl-card .date, .timeline .timeline-item.highlight .tl-card .tl-content {
  color: var(--default-white);
}
.timeline .timeline-item.highlight .tl-card::before {
  background-color: var(--default-green);
  border: 5px solid var(--default-white);
}

.welcome-note {
  background-color: var(--base-lightblue);
  padding: 80px 0;
  margin: 60px 0 0;
}
@media all and (min-width: 841px) {
  .welcome-note {
    min-width: 980px;
  }
}
@media screen and (max-width: 840px) {
  .welcome-note {
    padding: 40px 0;
    margin: 40px 0 0;
  }
}
.welcome-note .welcome-inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.welcome-note .welcome-header {
  position: absolute;
  top: -20px;
  left: 0;
  background-color: var(--default-navy);
  padding: 20px 60px 20px 40px;
  border-radius: 0px 8px 8px 0;
}
@media screen and (max-width: 840px) {
  .welcome-note .welcome-header {
    top: -10px;
    padding: 10px 40px 10px 30px;
  }
}
.welcome-note .welcome-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--default-white);
  font-size: 2.2rem;
  margin: 0;
}
@media screen and (max-width: 840px) {
  .welcome-note .welcome-header h2 {
    font-size: 1.875rem;
  }
}
.welcome-note .welcome-body {
  padding-top: 100px;
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .welcome-note .welcome-body {
    width: 90%;
    padding-top: 70px;
  }
}
.welcome-note .welcome-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-black);
  margin-bottom: 20px;
}
.welcome-note .text-more {
  display: none;
}
.welcome-note .text-more.is-open {
  display: block;
}
.welcome-note .btn-wrap {
  text-align: center;
  margin-top: 40px;
}
.welcome-note .btn-readmore {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--default-navy);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  height: 60px;
  position: relative;
}
.welcome-note .btn-readmore .btn-text {
  padding: 0 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--default-black);
}
.welcome-note .btn-readmore .btn-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--default-navy);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -30px;
  background: var(--base-lightblue);
  transition: transform 0.3s;
  position: absolute;
  top: 20px;
  right: 0px;
}
.welcome-note .btn-readmore:hover {
  background-color: rgba(34, 42, 85, 0.05);
}
.welcome-note .btn-readmore:hover .btn-icon {
  transform: translateY(5px);
}
.welcome-note .btn-readmore.is-active .btn-icon {
  transform: rotate(180deg);
}

.keynotes {
  padding: 80px 0;
  text-align: center;
  background-color: var(--default-white);
}
@media all and (min-width: 841px) {
  .keynotes {
    min-width: 980px;
  }
}
@media screen and (max-width: 840px) {
  .keynotes {
    padding: 40px 0;
  }
}
.keynotes .keynotes-inner {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .keynotes .keynotes-inner {
    width: 90%;
  }
}
.keynotes .section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--default-navy);
  font-size: 3.125rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 840px) {
  .keynotes .section-title {
    font-size: 1.875rem;
  }
}
.keynotes .section-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--default-navy);
  opacity: 0.8;
  margin-bottom: 60px;
}
.keynotes .keynote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 840px) {
  .keynotes .keynote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.keynotes .keynote-item .speaker-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background-color: #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 840px) {
  .keynotes .keynote-item .speaker-img {
    width: 150px;
    height: 150px;
  }
}
.keynotes .keynote-item .speaker-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keynotes .keynote-item .speaker-info .name {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--default-navy);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.keynotes .keynote-item .speaker-info .univ {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--default-navy);
  opacity: 0.7;
  font-size: 0.95rem;
  margin: 0;
}

.titleArea {
  position: relative;
  padding-bottom: 280px;
  background: var(--base-lightblue);
}
@media screen and (max-width: 840px) {
  .titleArea {
    padding-bottom: 180px;
  }
}
.titleArea::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: url(../common/img_secondary_main01.png) no-repeat center center;
  background-size: cover;
  border-top: 4px solid var(--default-navy);
}
@media screen and (max-width: 840px) {
  .titleArea::before {
    height: 180px;
  }
}
.titleArea h1 {
  font-size: 3.125rem;
  font-weight: bold;
  color: var(--default-navy);
  padding: 60px 0;
  width: 90%;
  margin: 0 auto;
  font-family: var(--font-heading);
  line-height: 1.2;
}
@media screen and (max-width: 840px) {
  .titleArea h1 {
    font-size: 2.1875rem;
    padding: 134px 0 40px;
  }
}
.titleArea .date {
  font-size: 1.25rem;
  color: var(--default-navy);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 0.8em;
}
@media screen and (max-width: 840px) {
  .titleArea .date {
    font-size: 1rem;
  }
}
.titleArea.news h1 {
  font-size: 2.25rem;
}
@media screen and (max-width: 840px) {
  .titleArea.news h1 {
    font-size: 1.5rem;
  }
}

.btn-home {
  margin: 40px auto 80px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .btn-home {
    margin: 20px auto 40px;
  }
}
.btn-home a {
  display: inline-block;
  text-align: center;
  padding: 20px 120px;
  background: var(--default-white);
  border-radius: 5px;
  border: 2px solid var(--default-navy);
  color: var(--default-navy);
  font-size: 1rem;
  box-shadow: 0 3px 6px var(--base-light-gray);
  position: relative;
  font-weight: bold;
  text-decoration: none;
}
.btn-home a::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../common/ico_btn_home.png) no-repeat center;
  background-size: contain;
  transition: 0.3s;
}
.btn-home a:hover {
  background: var(--default-navy);
  color: var(--default-white);
}
.btn-home a:hover::before {
  background: url(../common/ico_btn_home_white.png) no-repeat center;
  background-size: contain;
  transition: 0.3s;
}

.edit-area,
.cate_list_innner {
  width: 90%;
  margin: 30px auto 0;
  min-height: 500px;
}
.edit-area .cate_list_select,
.cate_list_innner .cate_list_select {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  background: #fff;
  border-radius: 3px;
  border: none;
  font-size: 0.875rem;
  width: 400px;
  display: block;
  margin: 0 auto 30px;
}
@media screen and (max-width: 840px) {
  .edit-area .cate_list_select,
  .cate_list_innner .cate_list_select {
    width: 100%;
    margin-bottom: 20px;
  }
}
.edit-area .cate_list_select::before,
.cate_list_innner .cate_list_select::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  margin: auto;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--default-navy);
  pointer-events: none;
}
.edit-area .cate_list_select select,
.cate_list_innner .cate_list_select select {
  width: 100%;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none !important;
  background: #fff;
  color: var(--default-navy);
  border: var(--default-navy) 2px solid;
  display: inline-block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 52px;
  padding: 14px 30px 16px 15px;
  font-weight: bold;
}

.pagenation {
  margin: 30px 0;
}
.pagenation p {
  font-size: 0.875rem;
  color: var(--default-black);
  margin: 20px 0 20px;
  text-align: center;
  font-weight: bold;
}
.pagenation ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagenation ul li {
  width: 24.25%;
}
.pagenation ul li a {
  display: block;
  text-align: center;
  padding: 20px 0;
  background-color: #ccc;
  color: var(--default-black);
}
.pagenation ul li a.count_active {
  background-color: var(--default-navy);
  color: var(--default-white);
  transition: 0.3s;
}

#secondary .news-list {
  max-height: none !important;
  overflow: visible !important;
}

/* パスワード入力セクションの囲い */
.c_password {
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.c_password h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1a2a5a;
}

.c_password p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* 入力フィールド */
.input_page_login input[type=password] {
  width: 100%;
  max-width: 300px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.input_page_login input[type=password]:focus {
  outline: none;
  border-color: #1a2a5a;
  box-shadow: 0 0 5px rgba(26, 42, 90, 0.2);
}

/* 送信ボタン (Submit) */
.confirm_btn {
  display: inline-block;
  background-color: #1a2a5a; /* ネイビー */
  color: #ffffff !important;
  padding: 10px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.1s;
}

.confirm_btn:hover {
  opacity: 0.9;
}

.confirm_btn:active {
  transform: translateY(1px);
}

.hotel_map {
  max-width: 1000px;
  position: relative;
}
.hotel_map img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}
.hotel_map .pointer_hotel {
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
}
.hotel_map .pointer_hotel a {
  display: block;
  width: 100%;
  height: 100%;
}
.hotel_map .pointer_hotel.dejima_messe {
  left: 28%;
  top: 28%;
  width: 21%;
  height: 8.5%;
}
.hotel_map .pointer_hotel.marriott {
  left: 40%;
  top: 44.5%;
  width: 12%;
  height: 8.5%;
}
.hotel_map .pointer_hotel.marriott2 {
  left: 38.2%;
  top: 40%;
  width: 3.8%;
  height: 7%;
}
.hotel_map .pointer_hotel.hilton {
  left: 18%;
  top: 15%;
  width: 14%;
  height: 9.5%;
}
.hotel_map .pointer_hotel.new_nagasaki {
  left: 54.4%;
  top: 45.5%;
  width: 17.5%;
  height: 6.8%;
}
.hotel_map .pointer_hotel.jr_kyushu {
  left: 46%;
  top: 37%;
  width: 20%;
  height: 7.5%;
}
.hotel_map .pointer_hotel.dormy {
  left: 62.5%;
  top: 58%;
  width: 15.5%;
  height: 10%;
}
.hotel_map .pointer_hotel.toyoko_inn {
  left: 48.6%;
  top: 80%;
  width: 15%;
  height: 10%;
}/*# sourceMappingURL=style.css.map */