@charset "utf-8";
/* CSS Document */

:root{
  --primary_color: #F8B62C;
  --primary_color_rgb: 248,182,44;
  --line_color: #707070;
  --border_color: #BFBFBF;
  --txt_color: #000;
  --txt_color02: #008C8C;
  --txt_color03: #D96F03;
  --caution_color: #F0142F;
  --additional_color: #FFFBEE;
  --additional_color02: #F9F8F4;
  --sp_inner: 94.6%;
}


/*---------------------------------------------------------------------
	container
---------------------------------------------------------------------*/
#container {
  overflow: hidden;
  background-color: var(--primary_color);
}
#container.fixed {
    position: fixed;
    width: 100%;
}

@media print, screen and (max-width: 768px) {
  .sp_none { display: none; }
}
@media print, screen and (min-width: 769px) {
  .tab_none { display: none; }
}
@media print, screen and (min-width: 1280px) {
  .pc_none { display: none; }
}

@media print, screen and (max-width: 425px) {
  .sp_block { display: block; }
}

.font_mincho {
	font-family: 'Noto Serif JP';
}

/*---------------------------------------------------------------------
	alert_box
---------------------------------------------------------------------*/
.alert_box {
  padding: 10px;
  background: #B20000;
}
.alert_box .inner {
  background: #fff;
  padding: 12px;
  border: 4px solid #FF8A92;
  max-width: 1200px;
  margin: 0 auto;
}
.alert_box .head {
  background: #B20000;
  padding: 10px;
  position: relative;
}
.alert_box .ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
.alert_box .link {
  position: absolute;
  right: 8px;
  top: 8px;
}
.alert_box .link a {
  color: #000;
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
  background: #fff;
  border: 1px solid #BFBFBF;
  padding: 2px 20px 2px 10px;
}
.alert_box .link a::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #E60011;
}

.alert_box .list {}
.alert_box .list li {}
.alert_box .list a {
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #BFBFBF;
  padding: 5px;
  padding-left: 20px;
  position: relative;
}
.alert_box .list a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #B20000;
}
.alert_box .list .date {
  color: #707070;
  font-size: 1.4rem;
}
.alert_box .list .title {
  text-decoration: underline;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .alert_box {
    padding: 30px;
  }
  .alert_box .ttl {
    font-size: 2.4rem;
  }
  .alert_box .link a {
    width: 200px;
    padding: 6px;
    transition: .3s;
  }
  .alert_box .link a::before {
    right: 8px;
    top: 14px;
  }
  .alert_box .link a:hover {
    background: #fff4bd;
  }
  .alert_box .list a {
    display: table;
    width: 100%;
    padding: 10px 10px 10px 20px;
    transition: .3s;
  }
  .alert_box .list a:hover {
    border-bottom-color: #B20000;
    background: #fff4bd;
  }
  .alert_box .list .date {
    display: table-cell;
    vertical-align: top;
    font-size: 1.6rem;
    width: 140px;
    padding-top: 4px;
  }
  .alert_box .list .title {
    display: table-cell;
    vertical-align: top;
    font-size: 2rem;
  }
  .alert_box .list a::before {
    top: 22px;
  }
}

/*---------------------------------------------------------------------
	site_header
---------------------------------------------------------------------*/
#site_header {
  position: relative;
  width: var(--sp_inner);
  margin: 11px auto 0;
  background: #fff;
  border-radius: 5px;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  position: relative;
  z-index: 200;
  box-shadow: 0 3px 3px rgba(0,0,0,.16);
}

.site_logo {
  float: left;
  width: 60%;
  max-width: 300px;
  line-height: 1;
  vertical-align: top;
}

.header_menu {
  display: none;
}

.site_logo_sp{
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
}

a.btn_contact, a.btn_contact:visited {
  color: #3264AF;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  box-shadow: 0 5px 0 #AEAEAE;
  background-color: #FFF;
  border-radius: 40px;
}
a.btn_contact img {
  position: relative;
  bottom: 0.1em;
  margin-right: 0.7em;
  width: 1em;
}
a.btn_contact:hover {
  text-decoration: none;
  position: relative;
  top: 2.5px;
  box-shadow: none;
  background-color: #FFE100;
}

/*--- fixed ---*/
#site_header.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}


/* pc */
@media print, screen and (min-width: 1280px) {
  #site_header {
    display: grid;
    grid: auto / 237px 1fr;
    gap: 0 15px;
    width: 96.875%;
    margin: 30px auto 17px;
    align-items: center;
    padding: 10px 35px 10px 14px;
    background-color: rgba(255,255,255,.94);
  }

  [class^="dir_"] #site_header{
  margin-bottom: 2px;
}

  .site_logo,
  .site_logo img{
    width: 100%;
  }
  .header_menu {
    display: block;
    float: right;
    text-align: right;
  }
  .g_navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 35px;
  }
  .g_navi > li {}
  .g_navi > li + li { margin-left: 10px;}
  .g_navi > li > a {
    position: relative;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    text-decoration: none;
    padding: 5px 5px;
    transition: .3s;
  }
  .g_navi > li > a:hover {
    color: #000;
  }

  .g_navi > li > a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 0;
    height: 4px;
    border-radius: 2px;
    background: var(--primary_color);
    transition: .3s;
  }

  .g_navi > li > a:hover::after,
  .g_navi > li > a.current::after{
    width: 100%;
  }

  .btn_site_navi{
    display: none;
  }
}


/*----- btn_site_navi -----*/
.btn_site_navi {
    width: 70px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.btn_site_navi a {
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 1.1rem;
    text-align: center;
    font-weight: bold;
}
.btn_site_navi .line {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  background: var(--primary_color);
  width: 30px;
  height: 2px;
}
.btn_site_navi .line::before,
.btn_site_navi .line::after {
  content: "";
  position: absolute;
  left: 0;
  background: var(--primary_color);
  width: 100%;
  height: 2px;
  transition: .3s;
}
.btn_site_navi .line::before {
  top: -6px;
}
.btn_site_navi .line::after {
  top: 6px;
}
.btn_site_navi .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
}


/*.btn_site_navi.open .line { background: none; }
.btn_site_navi.open .line::before {transform: rotate(45deg);top: 0;}
.btn_site_navi.open .line::after { transform: rotate(-45deg); top:0;}*/

/* pc_l */
@media print, screen and (min-width: 1460px) {
  .btn_site_navi {
    width: 94px;
  }
  .btn_site_navi a { font-size: 1.3rem; }
}


/*----- site_navi -----*/
.site_navi {
  /*display: none;*/
  background: var(--primary_color);
  position: fixed;
  right: -100%;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  z-index: 1000;
  padding: 60px 20px 20px;
  transition: .8s;
  opacity: 0;
  max-width: 600px;
}

.site_navi .menu li a{
  text-decoration: none;
  font-size: 20px;
  color: #fff;
}

.site_navi .inner {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  padding-bottom: 8px;
  width: 275px;
}

.site_navi_logo {
  display: block;
  width: 203px;
  margin: 0 auto;
}
.site_navi .menu {
  margin: 60px auto;
}
.site_navi .menu li {
  margin-bottom: 25px;
}

.site_navi a.btn_contact {
  font-size: 14px;
  width: 163px;
  box-shadow: 0 5px 0 #AEAEAE;
}

.close_site_navi {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  text-shadow: 0 0 3px rgb(0 0 0 / 50%);
}
.close_site_navi a {
  display: block;
  width: 70px;
  height: 70px;
}
.close_site_navi .line {
    position: absolute;
    left: 130%;
    top: 50%;
    width: 26px;
    margin-left: -13px;
  transition: all .5s ease .5s;
}
.close_site_navi .line::before,
.close_site_navi .line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #008ECF;
  transition: all .3s ease 1s;
}
.close_site_navi .line::before { top: -9px; }
.close_site_navi .line::after { top: 3px; }

.site_navi.open {
  right: 0;
  opacity: 1;
}
.open .close_site_navi .line {
  left: 50%;
}
.open .close_site_navi .line::before {
    top: -3px;
    transform: rotate(-45deg);
}
.open .close_site_navi .line::after {
    transform: rotate(45deg);
    top: -3px;
}

.site_navi_links .menu_01 {
  margin-bottom: 20px;
}
.site_navi_links .menu_01 li {
  margin-bottom: 3px;
}
.site_navi_links .menu_01 li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: #00468C;
  padding: 10px;
  position: relative;
}
.site_navi_links .menu_01 li a::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #92DDFF;
    border-bottom: 2px solid #92DDFF;
    transform: rotate(-45deg);
    margin-top: -4px;
}

.site_navi_links .menu_02 {}
.site_navi_links .menu_02 .item {}
.site_navi_links .menu_02 .item > ul > li {
  margin-bottom: 5px;
}
.site_navi_links .menu_02 .item > ul > li > a {
  display: block;
  color: #000;
  text-decoration: none;
  border: 1px solid #92DDFF;
  padding: 10px;
  position: relative;
}
.site_navi_links .menu_02 .item > ul > li > a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #92DDFF;
  border-bottom: 2px solid #92DDFF;
  transform: rotate(-45deg);
  margin-top: -4px;
}
.site_navi_links .menu_02 .item .pull_btn::before {
  transform: rotate(45deg);
  margin-top: -6px;
  transition: .5s;
}
.site_navi_links .menu_02 .item .pull_btn.open::before {
  transform: rotate(225deg);
  margin-top: -4px;
}
.site_navi_links .menu_02 .pull_link {
  display: none;
  padding: 10px;
  background: #c7eeff;
}
.site_navi_links .menu_02 .pull_link li {}
.site_navi_links .menu_02 .pull_link li + li {
    border-top: 1px dotted #009fe8;
}
.site_navi_links .menu_02 .pull_link a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  padding: 5px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .site_navi { padding-top: 80px; }
  .close_site_navi a { height: 77px; }
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .site_navi {
    padding: 100px 40px 40px;
  }
  .site_navi .inner {
    max-width: 1200px;
    margin: 0 auto;
    overflow: inherit;
  }
  
  .site_navi_links .menu_01 {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .site_navi_links .menu_01 li {
    display: table-cell;
    vertical-align: top;
  }
  .site_navi_links .menu_01 li + li {
    padding-left: 5px;
  }
  .site_navi_links .menu_01 li a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 11px 10px 20px;
  }
  .site_navi_links .menu_01 li a:hover {
    transition: .3s;
    background-color: #FC841A;
  }
  .site_navi_links .menu_01 li a::before {
    transform: rotate(45deg);
    right: auto;
    left: 50%;
    top: auto;
    bottom: 10px;
    margin-left: -2px;
  }
  .site_navi_links .menu_01 li a:hover::before {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
  
  .site_navi_links .menu_02 {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .site_navi_links .menu_02 .item {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    text-align: left;
    border-right: 1px dashed #BFBFBF;
  }
  .site_navi_links .menu_02 .item:first-child {
    padding-left: 10px;
  }
  .site_navi_links .menu_02 .item ul + ul {
    margin-top: 30px;
  }
  .site_navi_links .menu_02 .item > ul > li > a {
    border: none;
    padding: 5px;
    font-weight: 500;
  }
  .site_navi_links .menu_02 .item > ul > li > a:hover {
    transition: .3s;
    background: #f7f7da;
  }
  .site_navi_links .menu_02 .item > ul > li > a::before {
    display: none;
  }
  .site_navi_links .menu_02 .pull_link {
    display: block;
    background: none;
    padding: 0 0 0 20px;
  }
  .site_navi_links .menu_02 .pull_link li + li {
    border-top: none;
  }
  .site_navi_links .menu_02 .pull_link a {
    font-size: 1.5rem;
    padding: 2px;
  }
  .site_navi_links .menu_02 .pull_link a:hover {
    transition: .3s;
    background: #f7f7da;
  }
  
}

/* pc_l */
@media print, screen and (min-width: 1460px) {
}

/*---------------------------------------------------------------------
	topic_path_top
---------------------------------------------------------------------*/
.topic_path_top {
  margin: 10px auto 30px;
}
.topic_path_top > ol {
  font-size: 13px;
  font-size: 1.3rem;
}
.topic_path_top > ol > li {
  display: inline;
  color: #111111;
}
.topic_path_top > ol > li + li::before {
  content: ">";
  margin: 0 5px;
}
.topic_path_top > ol > li a,
.topic_path_top > ol > li a:visited {
  text-decoration: none;
  color: #111111;
}
.topic_path_top > ol > li:last-child a {
    text-decoration: none;
    color: #111111;
}

/*---------------------------------------------------------------------
	pagebody
---------------------------------------------------------------------*/
#pagebody{
  padding: 0 0 30px;
  background-color: var(--additional_color);
}

.pagebody_inner {
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: content-box;
    margin: 0 auto;
}
.pagebody_inner_02 {
    max-width: 1760px;
    padding: 0 15px;
    box-sizing: content-box;
    margin: 0 auto;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  #pagebody{
    padding: 0 0 110px;
  }

  .pagebody_inner_02 {
    padding: 0 40px;
  }
  .pagebody_inner_02 .pagebody_inner { padding: 0; }
}

/*--------------------------------------------------
	alpha
--------------------------------------------------*/
#alpha {
}

/* pc */
@media print, screen and (min-width: 1280px) {
  #alpha {
    float: left;
    width: 76.66%;
  }
}


/*--------- text -----------*/
.page_ttl {
  color: #007FB9;
  font-size: 2.2rem;
  font-weight: 500;
  background: #eee;
  padding: 25px 10px;
  line-height: 1.4;
}
.page_ttl span {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .page_ttl {
    font-size: 3rem;
  }
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .page_ttl {
    font-size: 3.4rem;
    padding: 35px;
  }
}

.content1 {
  line-height: 1.8;
}
.content1 p {
  margin: 1em 0;
}
.content1 h2 + p,
.content1 h3 + p,
.content1 h4 + p,
.content1 h5 + p,
.content1 h6 + p {
  margin-top: 0;
}
.content1 div > p {
  margin-top: 0;
}

/* headline */
.content1 * + h2 {
  margin-top: 80px;
}
.content1 * + h3 {
  margin-top: 60px;
}
.content1 * + h4 {
  margin-top: 40px;
}
.content1 * + h5 {
  margin-top: 20px;
}
.content1 h2 + h3,
.content1 h3 + h4 {
  margin-top: 0;
}

/* utility */
.content1 * + dl,
.content1 * + ol,
.content1 * + ul,
.content1 * + table {
  margin-top: 20px;
}

.lead_01,
.content1 h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
.lead_02,
.content1 h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}
.lead_03,
.content1 h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.lead_04,
.content1 h5 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.lead_05 { color: #224262; font-weight: 500; font-size: 1.8rem; }
.lead_06 { color: #B55C5C; font-weight: 500; font-size: 1.8rem; }
.lead_07 { color: #333333; font-weight: 500; font-size: 1.8rem; }

.el_top_head{
  line-height: 1.1;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary_color);
}

.el_top_head__eng{
  display: block;
  margin-bottom: 10px;
  font-size: 3.2rem;
  color: #000;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .lead_01,
  .content1 h2 {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
  
  .lead_02,
  .content1 h3 {
    font-size: 3rem;
    padding-bottom: 30px;
  }
  
  .lead_03,
  .content1 h4 { font-size: 2.8rem; }
  
  .lead_04,
  .content1 h5 { font-size: 2.6rem; }
  
  .lead_05,
  .lead_06,
  .lead_07 { font-size: 2.4rem; }

  .el_top_head{
  }

  .el_top_head__eng{
    margin-bottom: 14px;
    font-size: 4.2rem;
  }

}


.fc_01 { color: #F0142F; }
.fc_02 { color: var(--primary_color); }
.fc_03 { color: var(--txt_color02); }
.fc_04 { color: var(--txt_color03); }

.modified_date {
  color: #A5A5A5;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: right;
}

/*--------- btn -----------*/
a.btn_01 {
    display: block;
    width: 60%;
    max-width: 280px;
    color: var(--primary_color);
    text-decoration: none;
    border: 1px solid var(--border_color);
    background: #fff url("/image/icon/arrow_01.svg") no-repeat right 15px center;
    padding: 10px 40px 10px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 40px;
    transition: all .3s;
}

a.btn_01:hover,
a.btn_01:active{
  background: #FFFAF0 url("/image/icon/arrow_01_b.svg") no-repeat right 15px center;;
  color: #666666;
}

.btn_01.el_btn__center,
.el_btn__center{
  margin-right: auto;
  margin-left: auto;
}

.btn_01.btn_01__rev{
  padding: 10px 20px 10px 40px;
  background: #fff url("/image/icon/arrow_01_rev.svg") no-repeat 15px center;
}

.btn_01.btn_01__rev:hover,
.btn_01.btn_01__rev:active{
  background: #fff url("/image/icon/arrow_01_b_rev.svg") no-repeat 15px center;
}


@media print, screen and (min-width: 768px) {
	a.btn_01 {
    width: 260px;
    min-width: auto;
		padding: 16px 40px 16px 25px;
    font-size: 1.6rem;
	}

  a.btn_01,
  a.btn_01:hover,
  a.btn_01:active{
    background-position: right 23px center;
  }

  .btn_01.btn_01__rev{
		padding: 16px 25px 16px 40px;
  }

  .btn_01.btn_01__rev,
  .btn_01.btn_01__rev:hover,
  .btn_01.btn_01__rev:active{
    background-position: 23px center;
  }

}

/* pc */
@media screen and (min-width: 1280px) {
}


/*--------- bg -----------*/
.bg_box_01 {
  background: #F0F7F6;
  padding: 10px 15px;
}
.bg_box_02 {
  background: #F6F5EE;
  padding: 10px 15px;
}
.bg_box_03 {
  border: 1px solid #ccc;
  padding: 10px 15px;
}

/*--------- template -----------*/
.fll_img { margin-bottom: 15px; }
.flr_img { margin-bottom: 15px; }

.sp_flr_img {
    float: right;
    margin: 0 0 0 20px;
}
.sp_fll_img {
    float: left;
    margin: 0 20px 0 0;
}

.fll_img img,
.fll_img img {
  max-width: 100%;
  height: auto;
  
}

.fl_over {
  overflow: hidden;
}

@media print, screen and (min-width: 767px) {
  .fll_img {
    float: left;
    max-width: 45%;
    margin: 0 40px 0 0;
  }
  .flr_img {
    float: right;
    max-width: 45%;
    margin: 0 0 0 40px;
  }
}
.caption,
.list_1column .caption,
.list_2column .caption,
.list_3column .caption,
.list_4column .caption,
.list_5column .caption {
  font-size: 86.66%;
  line-height: 1.4;
  padding-top: 7px;
  text-align: center;
  margin: 0;
}
.list_1column img,
.list_2column img,
.list_3column img,
.list_4column img,
.list_5column img {
  width: 100%;
  height: auto;
}

.list_2column .width_auto,
.list_3column .width_auto {
	width: auto;
}

/* list_2column */
.list_2column {}
.list_2column .item + .item {
  margin-top: 15px;
}

.ly_2column_center{
  display: grid;
  gap: 20px 30px;
}

.ly_2column_center [class^="btn_"]{
  width: 80%;
}

.border_box * + .ly_2column_center{
  margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
  .list_2column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_2column .item {
    width: 48.75%;
    margin: 0 2.5% 2.5% 0;
  }
  .list_2column .item + .item { margin-top: 0; }
  .list_2column .item:nth-child(2n) {
    margin-right: 0;
  }

  .ly_2column_center{
    display: flex;
    justify-content: center;
  }

  .ly_2column_center [class^="btn_"]{
    margin: 0;
  }

  .border_box * + .ly_2column_center{
    margin-top: 40px;
  }
}

/* list_3column */
.list_3column {}
.list_3column .item + .item {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .list_3column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_3column .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_3column .item + .item { margin-top: 0; }
  .list_3column .item:nth-child(3n) {
    margin-right: 0;
  }
}

/* list_4column */
.list_4column {
  display: flex;
  flex-wrap: wrap;
}
.list_4column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_4column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_4column .item,
  .list_4column .item:nth-child(2n){
    width: 23.33%;
    margin: 0 2.08% 2.08% 0;
  }
  .list_4column .item:nth-child(4n) {
    margin-right: 0;
  }
}

/* list_5column */
.list_5column {
  display: flex;
  flex-wrap: wrap;
}
.list_5column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_5column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_5column .item,
  .list_5column .item:nth-child(2n){
    width: 18%;
  }
  
  .list_5column .item:nth-child(2n){
    margin-right: 2.5%;;
  }
  
  .list_5column .item:nth-child(5n) {
    margin-right: 0;
  }
}

.contact_box {
  background: #fafafa;
  padding: 15px 20px;
  border: 3px solid #133775;
}
* + .contact_box {
  margin-top: 60px;
}

/*--------- list_index -----------*/
* + .list_index {
  margin-top: 60px;
}
.list_index {}
.list_index .item {}
.list_index .item + .item  {
  margin-top: 15px;
}
.list_index .item > a {
    color: #000;
    text-decoration: none;
    position: relative;
    border: 1px solid #bfbfbf;
  display: table;
    width: 100%;
}
.list_index .item .thumb {
  display: table-cell;
  vertical-align: middle;
  width: 35%;
}
.list_index .item .thumb span {
  position: relative;
  padding-bottom: 66.66%;
  overflow: hidden;
  display: block;
}
.list_index .item .thumb img {
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  max-width: none;
  max-height: 100%;
  transition: .5s;
  width: 100%;
}
.list_index .item > a:hover .thumb img {
  opacity: 1;
  transform: scale(1.08);
}
.list_index .item .thumb + .detail {
  border-left: 1px solid #ccc;
}
.list_index .item .detail {
  display: table-cell;
  vertical-align: middle;
  background: #018FCF no-repeat right 10px center/40px;
  padding: 15px 0;
}
.list_index .item .ttl {
  font-size: 1.8rem;
  color: #fff;
  font-weight: normal;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
}
.list_index .item .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #009FE8;
  border-bottom: 2px solid #009FE8;
  transform: rotate(-45deg);
}
.list_index .item .lead {
    font-size: 1.5rem;
    margin-top: 5px;
  padding: 7px 10px;
  background: #FCE6D6;
}
.list_index .item > ul {
  margin: 5px 0 30px 10px;
}
.list_index .item > ul li + li {}
.list_index .item > ul a {
    display: block;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #bfbfbf;
    font-size: 1.5rem;
    padding: 5px 10px 5px 20px;
    position: relative;
}
.list_index .item > ul a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  border: 4px solid transparent;
  border-left: 6px solid #009FE8;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .list_index {
    display: flex;
    flex-wrap: wrap;
  }
  .list_index .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_index .item + .item {
    margin-top: 0;
  }
  .list_index .item:nth-child(3n) {
    margin-right: 0;
  }
  
  .list_index .item a {
    display: block;
  }
  .list_index .item a:hover {
    border-color: #008ECF;
  }
  .list_index .item a:hover .ttl {
    color: #008ECF;
  }
  .list_index .item .thumb {
    display: block;
    width: auto;
  }
  .list_index .item .detail {
    display: block;
    padding: 15px 10px;
    background-size: auto;
  }
  .list_index .item a:hover .detail {
    background-color: #ffffe9;
    transition: .3s;
  }
  .list_index .item .thumb + .detail {
    border-left: none;
  }
  .list_index .item .ttl {
    padding: 7px 0 7px 30px;
  }
  .list_index .item .ttl::before {
    left: 7px;
  }
}



/* hierarchy_link */
.hierarchy_link {
  background: #eee;
  text-align: center;
  padding: 20px;
  margin: 70px 0;
}
.hierarchy_link .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hierarchy_link .ttl {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 20px;
}
.hierarchy_link .ttl a {
  color: #000;
  text-decoration: none;
  display: inline-block;
}
.hierarchy_link li {}
.hierarchy_link li + li {
  margin-top: 10px;
}
.hierarchy_link li a {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
  border: 1px solid #BFBFBF;
  text-align: left;
  background: #fff;
  padding: 10px 10px 10px 30px;
}
.hierarchy_link li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #EB6100;
  border-bottom: 2px solid #EB6100;
  transform: rotate(-45deg);
}
/* tablet */
@media print, screen and (min-width: 768px) {
  .hierarchy_link {
    margin: 100px 0;
  }
  .hierarchy_link .ttl {
    font-size: 2.4rem;
  }
  .hierarchy_link .inner {
    display: flex;
    flex-wrap: wrap;
  }
  .hierarchy_link li {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
    
  }
  .hierarchy_link li + li { margin-top: 0; }
  .hierarchy_link li:nth-child(3n) { margin-right: 0; }
  .hierarchy_link li a {
    font-size: 1.8rem;
    transition: .3s;
    padding: 16px 16px 16px 35px;
  }
  .hierarchy_link li a::before {
    left: 13px;
    top: 26px;
  }
  .hierarchy_link li a:hover {
    color: #000;
    border-color: #EB6100;
    background-color: #FFF6D1;
  }
}


/*--------------------------------------------------
	list_magazine
--------------------------------------------------*/
.list_magazine {
  display: flex;
  flex-wrap: wrap;
}
.list_magazine .item {
  width: 48%;
  margin: 0 4% 4% 0;
}
.list_magazine .item:nth-child(2n) {
  margin-right: 0;
}
.list_magazine .item a {
  display: block;
  color: #000;
  text-decoration: none;
}
.list_magazine .item img {
  border: 1px solid #ccc;
  width: 100%;
}
.list_magazine .ttl {
  font-weight: 500;
  color: #007FB9;
  margin: 5px 0;
}
.list_magazine .icon_cat {
    font-size: 1.1rem;
    display: inline-block;
    vertical-align: top;
    background: #ebebeb;
    border-radius: 3px;
    padding: 2px 10px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_magazine .item,
  .list_magazine .item:nth-child(2n) {
    width: 31%;
    margin: 0 3.5% 3.5% 0;
  }
  .list_magazine .item:nth-child(3n) { margin-right: 0; }
  .list_magazine .ttl {
    font-size: 2rem;
  }
  .list_magazine .icon_cat {
      font-size: 1.4rem;
  }
}

/*--------------------------------------------------
	list_topics
--------------------------------------------------*/
.bl_topics_wrapper{
  padding: 50px 0 80px;
  background-image: linear-gradient(to right,#FBF7E9 30px, #FFFBEE 30px, #FFFBEE 60px, #FBF7E9 60px, #FBF7E9);
  background-size: 60px 20px;
}

/* list_topics */
.list_topics {
  background: #fff;
  border-top: 1px dotted #bbb;
}
.list_topics li {
  border-bottom: 1px dotted #bbb;
}
.list_topics li a {
  color: #000;
  display: block;
  text-decoration: none;
  padding: 10px;
}
.list_topics li span {
  display: inline-block;
  vertical-align: top;
}
.list_topics li .date {
  margin-right: 10px;
  font-size: 1.3rem;
}
.list_topics li .icon_cat {
    font-size: 1.1rem;
    text-align: center;
    font-weight: normal;
    background: #EBEBEB;
    padding: 1px 8px;
    border-radius: 3px;
}
.list_topics li .cat_01 { background: #DFFFBF; }
.list_topics li .cat_02 { background: #BFDFFF; }
.list_topics li .cat_03 { background: #E4F4FC; }
.list_topics li .cat_04 { background: #FFF9E5; }
.list_topics li .cat_05 { background: #ECE5FF; }

.list_topics li .title {
  display: block;
  margin-top: 5px;
}

.ly_listTopics_tmb{
  display: grid;
  gap: 35px 30px;
  grid-template-columns: repeat(auto-fit, minmax(1fr,376px));
  margin-bottom: 40px;
  background-color: transparent;
}

.ly_listTopics_tmb,
.ly_listTopics_tmb > li{
  border: none;
}

.ly_listTopics_tmb > li{
  background-color: #fff;
}

.ly_listTopics_tmb > li a,
.list_topics.ly_listTopics_tmb > li a{
  padding: 20px;
  text-align: center;
}

.ly_listTopics_tmb .thumb,
.ly_listTopics_tmb .detail{
  display: block;
  line-height: 1.44;
}

.ly_listTopics_tmb .thumb{
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid #EAE4D1;
  overflow: hidden;
}

.ly_listTopics_tmb .detail{
  text-align: left;
}

.ly_listTopics_tmb .date,
.ly_listTopics_tmb .more{
  font-size: 1.4rem;
}

.ly_listTopics_tmb .title{
  margin-top: 3px;
  font-weight: 500;
}

.ly_listTopics_tmb .more{
  display: block;
  margin-top: 15px;
  text-align: right;
}

.list_topics.ly_listTopics{
  border-top: none;
}

.list_topics.ly_listTopics a{
  display: grid;
  gap: 5px 10px;
  padding: 15px 10px;
}

.list_topics.ly_listTopics > li{
  border: none;
}

.list_topics.ly_listTopics > li + li{
  border-top: 2px dotted var(--line_color);
}

.list_topics.ly_listTopics .ly_listTopics__meta,
.list_topics.ly_listTopics .title{
  margin: 0;
  font-size: 1.6rem;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_topics li a {
    padding: 15px 20px;
  }
  .list_topics li .date {
    font-size: 1.8rem;
  }
  .list_topics li .icon_cat {
    font-size: 1.3rem;
    padding: 3px 20px;
  }

  .ly_listTopics_tmb{
    grid: auto / repeat(2, 1fr);
  }

  .list_topics.ly_listTopics a{
    grid: auto / 150px 1fr;
    gap: 5px 30px;
    padding: 20px 20px;
  }

  .list_topics.ly_listTopics .ly_listTopics__meta,
  .list_topics.ly_listTopics .title{
    font-size: 2.0rem;
  }
  
  .dir_topics .ly_detailTopics .content1 {
    font-size: 20px;
  }

}
/* pc */
@media print, screen and (min-width: 1280px) {
  .list_topics li a { transition: .3s; }
  .list_topics li a:hover {
    background-color: #fffced;
  }
  .list_topics li a:hover .title {
    text-decoration: underline;
  }

  .ly_listTopics_tmb{
    grid: auto / repeat(3, 1fr);
  }

  .ly_listTopics_tmb .date,
  .ly_listTopics_tmb .more{
    font-size: 1.6rem;
  }

  .ly_listTopics_tmb .title{
    margin-top: 8px;
    font-size: 1.8rem;
  }

  .ly_listTopics_tmb .more{
    margin-top: 13px;
  }
  
  .dir_topics .ly_detailTopics .content1 {
    font-size: 22px;
  }

}



/* .pager */
.pager {
  margin: 60px 0;
  padding: 50px 0;
  text-align: center;
  background: #FCF8ED;
}
.pager ul {
}
.pager ul li {
  font-size: 81.25%;
  margin: 3px;
  display: inline-block;
}
.pager a,
.pager span {
  color: #000;
  display: block;
  text-decoration: none;
  border: 1px solid #CCC;
  padding: 9px 16px;
  background-color: #fff;
}
.pager li.total span {
  border-color: #FFF;
}
.pager li.prev span,
.pager li.next span,
.pager li.first span,
.pager li.last span {
  border: 1px solid #ccc;
  color: #EDEDED;
}
.pager li.current span {
  color: #fff;
  background: #915E33;
}
.pager a:hover {
  color: #915E33;
  border: 1px solid #999;
  background: #EEEAD9;
}

/* link_prev_next */
.link_prev_next {
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
  padding-top: 40px;
}
/*
.link_prev_next > li {
  display: inline-block;
  width: 80%;
  max-width: 300px;
}
.link_prev_next > li a {
  color: #000;
  border: 1px solid #ccc;
  display: block;
  padding: 16px 40px;
  text-decoration: none;
  transition: .3s;
  border-radius: 3px;
  position: relative;
}
.link_prev_next > li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  border: 5px solid transparent;
  border-right: 8px solid #aaa;
  margin-top: -5px;
}
.link_prev_next > li a:hover {
  background-color: #e6f6fd;
}
*/
/* pc */
@media print, screen and (min-width: 1280px) {
  .link_prev_next { margin-top: 80px; }
}


/*サムネイル付きトピックス*/
.list_thumb_topics {
    font-size: 0;
	margin-bottom: 30px;
}
.list_thumb_topics li {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
}
.list_thumb_topics li:nth-child(3n) {
	margin-right: 0;
}
.list_thumb_topics .thumb {
    position: relative;
    padding-bottom: 66.66%;
    overflow: hidden;
    background-color: #F8F6F0;
  border: 1px solid #ccc;
}
.list_thumb_topics .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}
.list_thumb_topics a { text-decoration: none; }
.list_thumb_topics .detail {
    font-size: 15px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px dotted #bbb;
}
.list_thumb_topics a:hover .detail { background-color: #f8f6f0; }

/*広報紙*/
.list_kouhou {
    font-size: 0;
	margin-bottom: 30px;
}
.list_kouhou .item {
    font-size: 16px;
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	vertical-align: top;
	text-align: center;
	border: 1px solid #bbb;	
}
.list_kouhou .item a { display: block; padding: 5px; }
.list_kouhou .item a:hover { background-color: #f5f4ef; }
.list_kouhou .item:nth-child(3n) {
	margin-right: 0;
}
.list_kouhou .ttl a {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #333;
}

/*---------------------------------------------------------------------
	top_ttl
---------------------------------------------------------------------*/
.top_ttl {
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
	line-height: 1;
	position: relative;
	margin-bottom: 15px;
}
.top_ttl .ja {
	display: block;
}
.top_ttl .en {
  color: #00468C;
  display: inline-block;
  margin: 0 auto;
  background: #fff;
  padding: 0 15px;
  font-size: 1.3rem;
  font-family: 'Noto Serif JP';
  position: relative;
}
.top_ttl::before {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 6px;
    background: #009FE8;
    margin-left: -40%;
}

/* tablet */
@media screen and (min-width: 768px) {
	.top_ttl::before {
		width: 390px;
		margin-left: -195px;
	}
	
}

/* pc */
@media screen and (min-width: 1280px) {
	.top_ttl {
		font-size: 3.4rem;
		margin-bottom: 25px;
	}
	.top_ttl .en {
		font-size: 1.6rem;
	}
}




/*---------------------------------------------------
	beta
---------------------------------------------------*/
#beta {
  margin-top: 40px;
}
/* pc */
@media print, screen and (min-width: 1280px) {
  #beta {
    float: right;
    width: 20%;
    margin-top: 0;
  }
}

/*---------------------------------------------------
	sidemenu
---------------------------------------------------*/
.side_menu {}
.side_menu a {
	color: #000;
  display: block;
  text-decoration: none;
}
.side_menu a:hover {
  text-decoration: underline;
}
.side_menu .level_1 {
  border-top: 1px solid #ccc;
}
.side_menu .level_1 > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.side_menu .level_1 > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.side_menu .level_1 > li > a.selected,
.side_menu .level_1 > li > a:hover {
  color: #133557;
}
.side_menu .level_2 > li + li {}
.side_menu .level_2 > li > a {
	font-size: 1.4rem;
	border-bottom: 1px dotted #bbb;
	padding: 15px;
	position: relative;
}
.side_menu .level_2 > li > a::before {
	content: "";
	width: 2px;
	height: 20px;
	background: #BBBBBB;
	position: absolute;
	left: 0;
	top: 16px;
}
.side_menu .level_2 > li > a.selected,
.side_menu .level_2 > li > a:hover {
	color: #008ECF;
}
.side_menu .level_2 > li > a.selected::before,
.side_menu .level_2 > li > a:hover::before {
	background: #009FE8;
}

.side_menu .level_3 {
  margin:10px 0 10px 10px;
  background: #fafafa;
}
.side_menu .level_3 > li > a {
  padding: 10px;
  padding-left: 23px;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
  position: relative 
}
.side_menu .level_3 > li > a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}
.side_menu .level_3 > li > a.selected,
.side_menu .level_3 > li > a:hover {
  color: #133557;
}
.side_menu .level_3 > li > a.selected::before,
.side_menu .level_3 > li > a:hover::before {
	background: #009FE8;
}

.side_menu .level_4 {
  margin-left: 22px;
}
.side_menu .level_4 > li+ li {
  border-top: 1px dotted #ccc;
}
.side_menu .level_4 > li > a {
  padding: 8px;
  font-size: 1.4rem;
  position: relative;
}
.side_menu .level_4 > li > a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 15px;
    width: 7px;
    height: 7px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.side_menu .level_4 > li > a.selected,
.side_menu .level_4 > li > a:hover {
  color: #133557;
}
.side_menu .level_4 > li > a.selected::before,
.side_menu .level_4 > li > a:hover::before {
	border-left-color: #009FE8;
	border-bottom-color: #009FE8;
}

/*--------- beta -----------*/
.list_side_menu {
  border: 4px double #bdbdbd;
}
.list_side_menu+ .list_side_menu {
  margin-top: 30px;
}
.list_side_menu .ttl {
  font-size: 100%;
  color: #007fb9;
  font-weight: bold;
  padding: 15px 10px;
  position: relative;
  background: #ececec;
}
.list_side_menu ul {
  padding: 10px;
}
.list_side_menu li {}
.list_side_menu li + li {
  border-top: 1px dotted #e0d7bc;
}
.list_side_menu li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 94%;
  padding: 7px 5px 7px 23px;
  position: relative;
}
.list_side_menu li a::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.list_side_menu li .date {
    display: block;
    font-size: 90%;
    font-weight: bold;
}
/* pc */
@media print, screen and (min-width: 1280px) {
  .list_side_menu li a { transition: .3s; }
  .list_side_menu li a:hover { background: #ecf7fd; }
}

/*------サイドバナー-------*/
.bnr_side li {
    font-size: 14px;
    text-align: center;
    margin: 0 0 10px;
}
/*---------------------------------------------------------------------
	faq
---------------------------------------------------------------------*/
.list_faq + .lead_01 {
	margin-top: 60px;
}
.list_faq .item {
  margin-bottom: 20px;
}
.list_faq .btn_q {
	font-size: 16px;
  font-weight: 500;
  position: relative;
  background-color: #ecf7fd;
}
.list_faq .btn_q::before,
.list_faq .btn_q::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    margin-top: -11px;
    width: 2px;
    height: 22px;
    background: #009fe8;
  transition: .3s;
}
.list_faq .btn_q::before {}
.list_faq .btn_q::after { transform: rotate(90deg); }

.list_faq .btn_q.on { background: #ffffe7; }
.list_faq .btn_q.on::before { transform: rotate(-90deg); background: #FD6D06; }
.list_faq .btn_q.on::after { transform: rotate(270deg); background: #FD6D06; }

.list_faq .btn_q >* {
  color: #000;
  cursor: pointer;
	display: block;
	font-size: 112.5%;
	line-height: 1.6;
	padding: 15px 40px 15px 43px;
	border: 1px solid #ccc;
	position: relative;
}
.list_faq .btn_q >*::before {
  content: "Q";
  display: inline-block;
	color: #009fe8;
	position: absolute;
	top: 14px;
	left: 16px;
}
.list_faq .box_a {
  display: none;
  position: relative;
	border: 1px solid #BFBFBF;
	padding: 15px 15px 15px 50px;
	border-top: none;
}
.list_faq .box_a::before {
  content: "A";
  display: inline-block;
	color: #FD6D06;
	font-size: 112.5%;
	font-weight: bold;
  position: absolute;
	top: 14px;
	left: 22px;
}
.faq_contents {}
.faq_contents .icon_q {}
.faq_contents .icon_a {}



@media screen and (min-width: 768px) {
  .list_faq .item {
    margin-bottom: 20px;
  }
  .list_faq .btn_q >* {
  }
  
  .list_faq + .lead_01 {
    margin-top: 100px;
  }
}

/*---------------------------------------------------------------------
	gallery　フォトアルバム
---------------------------------------------------------------------*/
.list_gallery {
    width: 100% !important;
}
.list_gallery .item {
	float: left;
    /*width: 260px;*/
  width: 100%;
    margin-bottom: 20px;
}
.list_gallery .item a {
	color: #fff;
	display: block;
	position: relative;
}
.list_gallery .item img { width: 100%; }
.list_gallery .detail {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
}
.list_gallery .detail dl {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.list_gallery .detail .date {
	font-size: 15px;
	text-align: center;
}
.list_gallery .detail .ttl {
	font-size: 17px;
	text-align: center;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_gallery .item {
    width: 32%;
    margin: 0 1% 1% 0;
  }
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .list_gallery .item {
    width: 24%;
    margin: 0 1% 1% 0;
  }
  .list_gallery .detail {
    background: rgba(0,0,0,.6);
    -webkit-transform: rotateY(-90deg) rotateX(-90deg);
    transform: rotateY(-90deg) rotateX(-90deg);
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
  }
  .list_gallery a:hover .detail {
    -webkit-transform: rotateY(0) rotateX(0);
    transform: rotateY(0) rotateX(0);
    opacity: 1;
  }
}

/* gallery_detail */
.gallery_detail_head { margin-bottom: 30px; }
.gallery_detail_head .date {
	font-size: 17px;
	text-align: center;
}
.gallery_detail_head .ttl {
	font-size: 20px;
	font-weight: normal;
	text-align: center;
}
.gallery_detail_head .content {
	text-align: center;
	margin-top: 20px;
}
/*---------------------------------------------------------------------
	contact
---------------------------------------------------------------------*/
.mail_form {
  border: 8px solid #d6f0fb;
  margin: 0 auto;
  padding: 22px;
}
.mail_form form {
  margin: 0 auto;
}
.mail_form form dl {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 20px;
}
.mail_form form dt {
  width: 30%;
  display: table-cell;
  vertical-align: top;
  font-size: 93.75%;
  padding-right: 10px;
  padding-top: 12px;
}
.mail_form form dd {
  display: table-cell;
  vertical-align: top;
}
.mail_form form .bg_on {
  background-color: #ececec;
  padding: 12px;
}
.mail_form form .bg_on label {
  /*width: 20%;*/
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.mail_form form .border_on {
  border: 1px solid #CCCCCC;
  padding: 12px;
}
.mail_form.confirm_list dd {
  background-color: #E5F6FB;
  padding: 12px;
  word-break: break-all;
}
.mail_form .btn_list {
  text-align: center;
  margin: 20px auto;
}
.mail_form .icon_required::before {
    content: "必須";
    color: #fff;
    background: #e20000;
    font-size: 80%;
    border-radius: 3px;
    padding: 2px 9px;
    margin-right: 10px;
}
.icon_required_p {
  color: #fff;
  background: #e20000;
  font-size: 80%;
  border-radius: 3px;
  padding: 2px 9px;
  margin-right: 10px;
}
.mail_form .error {
  color: #d71618;
  font-size: 13px;
}
.form_errors {
    color: #d80000;
    border: 5px solid #e69898;
    text-align: left;
    padding: 20px;
    background: #fafafa;
    margin-bottom: 20px;
}
.mail_form.type_02 form {
  max-width: none;
}
.mail_form.type_02 form dl {
  max-width: 870px;
}
.mail_form.type_02 form dl dt {
  width: 35%;
}
.mail_form input,
.mail_form button,
.mail_form textarea,
.mail_form select {
  margin: 0;
  font-size: 16px;
  padding: 12px;
}
.mail_form input:-ms-input-placeholder {
 color: #808080;
}
.mail_form select,
.mail_form textarea,
.mail_form input[type="tel"],
.mail_form input[type="text"],
.mail_form input[type="email"],
.mail_form input[type="password"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  background-color: #ececec;
}
.mail_form input.small {
  width: 27%;
}
.mail_form input[type="file"] {
  font-size: 16px;
}
.mail_form input[type="radio"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form input[type="checkbox"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: #ececec;
  position: relative;
}
.mail_form .twin {
  font-size: 0;
}
.mail_form .twin input + input {
  margin-left: 3.44%;
}
.mail_form .twin input {
  width: 48.26%;
  display: inline-block;
}
.mail_form textarea {
  width: 100%;
  height: 150px;
  background-color: #ececec;
}
.mail_form input[type="text"]:focus,
.mail_form input[type="email"]:focus,
.mail_form textarea:focus {
  box-shadow: 0 0 7px #008CD6;
}
.btm_text {
  /*width: 69%;
  margin-left: auto;*/
  text-align: center;
}
.mail_form input[type="submit"] {
  color: #fff;
  padding: 1em 5em;
  background-color: #358FDD;
  border: none;
  border-radius: 0;
}
.mail_form input[type="submit"]:hover {
  background-color: #055FAD;
}
.mail_form input[type="reset"],
.mail_form input.back {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
  border: none;
  border-radius: 0;
}
.mail_form input[type="reset"]:hover,
.mail_form input.back:hover {
  background-color: #555;
}
.mail_form .btn_backhome {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #358FDD;
  text-decoration: none;
  border: none;
  border-radius: 0;
  display: inline-block;
}
.mail_form .btn_backhome:hover {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
}
.form_message {
  background-color: #ffffbb;
  border: 2px solid #df0000;
  color: #df0000;
  font-size: 120%;
  font-weight: bold;
  margin: 10px auto;
  padding: 10px 15px;
}

@media print, screen and (max-width: 768px) {
  .mail_form {
    padding: 12px;
    border-width: 4px;
  }
  .mail_form form dl {
    padding: 0 10px;
    margin-bottom: 15px;
  }
  .mail_form form dt {
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 10px;
    padding: 0;
  }
  .mail_form form dd {
    display: block;
    width: auto;
  }
  .mail_form input,
  .mail_form button,
  .mail_form textarea,
  .mail_form select {
    padding: 10px;
  }
  .mail_form input.small {
    width: 50%;
  }
  .mail_form input[type="submit"] {
    padding: 1em;
  }
  .btm_text {
    width: auto;
    text-align: center;
  }
}

/* btn_radio  btn_checkbox */
.btn_radio,
.btn_checkbox {
    display: inline-block;
    margin-right: 6px;
}
.btn_radio + label,
.btn_checkbox + label {
  background-color: #ececec;
  /*border: 1px solid #358fdd;*/
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  position: relative;
  margin-bottom: 5px;
}
#confirm.btn_checkbox + label {
  background: #ffffe5;
  border: 1px solid #aaa;
  width: 100%;
}

.btn_radio.size_s + label,
.btn_checkbox.size_s + label {
	padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
}

 
@media (min-width: 1px) {
    .btn_radio,
    .btn_checkbox {
        display: none;
        margin: 0;
    }
    .btn_radio + label,
    .btn_checkbox + label {
        padding-left: 37px;
		color: #000;
	transition: all .2s;
	-webkit-transition: all .2s;
    }
	.btn_radio:checked + label,
    .btn_checkbox:checked + label {
		background-color: #cbe2f6;
        border-color: #358fdd;
	}
    .btn_radio + label::before,
    .btn_checkbox + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
         
        background: #FFF;
    }
    .btn_radio + label::before {
        border: 1px solid #aaa;
        border-radius: 30px;
    }
    .btn_checkbox + label::before {
        border: 1px solid #aaa;
    }
    .btn_radio:checked + label::after,
    .btn_checkbox:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .btn_radio:checked + label::after {
        left: 15px;
         
        width: 8px;
        height: 8px;
        margin-top: -4px;
         
        background: #358fdd;
        border-radius: 8px;
    }
    .btn_checkbox:checked + label::after {
        left: 12px;
         
        width: 16px;
        height: 8px;
        margin-top: -8px;
         
        border-left: 3px solid #358fdd;
        border-bottom: 3px solid #358fdd;
         
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.input_btn_list {
    letter-spacing: -.5em;
}

.input_btn_list li {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 10px 0;
}

.input_btn_list label {
    margin: 0 !important;
}

.mail_form input.input_other {
  display: none;
  width: auto;
  margin-left: 10px;
  padding: 10px;
}

/*---------------------------------------------------------------------
	404
---------------------------------------------------------------------*/
.thumb_404 {
  margin-right: 40px;
  float: left;
  width: 20%;
}
.border_box {
  padding: 20px;
  border: 10px solid #fbf4e8;
}
.border_box > ul {
  color: #FF7F00;
  padding-left: 20px !important;
}

.dir_404 .border_box{
  padding: 30px;
  border: none;
  background-color: #fff;
}

/*---------------------------------------------------------------------
	search
---------------------------------------------------------------------*/
/* google カスタム検索の調整 */
.site_search {}
.site_search #___gcse_0 {
    background: #edf8fd;
    padding: 15px;
}
.site_search #___gcse_0 .gsc-control-searchbox-only {
  max-width: 500px;
  margin: 0 auto;
}
.site_search table,
.site_search table.gsc-search-box td,
.site_search table.gsc-search-box td.gsc-input {
  padding: 0;
  border: none;
}
.site_search .gsc-adBlock {
    display: none;
}

/* pc */
@media screen and (min-width: 1280px) {
  
  .site_search #___gcse_0 {
    padding: 30px;
  }
  .site_search input#gsc-i-id1 {
    padding: 10px !important;
  }
  .site_search button.gsc-search-button {
    padding: 15px 27px;
    margin-left: 10px;
  }
  .site_search .gsc-above-wrapper-area-container {
    border: none;
  }
  .site_search .gsc-above-wrapper-area-container td {
    border: none;
    padding: 0;
  }
  .site_search .gsc-selected-option-container {
    box-sizing: content-box;
  }
  .site_search .gsc-webResult.gsc-result {
    border: 1px solid #e9e9e9;
    margin: 20px 0;
    padding: 15px 20px;
  }
  .site_search .gsc-results { width: 100%; }
  .site_search .gsc-cursor-box.gs-bidi-start-align {
    text-align: center;
  }
  .site_search .gsc-cursor-page {
    font-size: 1.6rem;
    border: 1px solid #ccc;
    padding: 7px 15px;
    border-radius: 3px;
    display: inline-block !important;
  }
  .site_search {}
  
}



.list_search {}
.list_search .item {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
}
.list_search .item + .item {margin-top: 20px; }
.list_search .ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
.list_search .url {
    color: #808080;
    font-size: 1.2rem;
    margin: 5px 0;
}

/*---------------------------------------------------------------------
	sitemap
---------------------------------------------------------------------*/
.list_sitemap {}
.list_sitemap a:hover {
  opacity: .8;
}

.list_sitemap .level01 {
  font-size: 100%;
  font-weight: normal;
  margin-bottom: 15px;
}
.list_sitemap * + .level01 {
  margin-top: 40px;
}
.list_sitemap .level01 > a {
    display: block;
    background: var(--primary_color);
    background-size: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 160%;
    padding: 12px 15px;
    position: relative;
    border-radius: 3px;
}
.list_sitemap .level02 {
  font-size: 0;
}
.list_sitemap .level02 >li {
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  width: 49.16%;
  margin: 0 1.66% 1.66% 0;
}
.list_sitemap .level02 >li:nth-child(2n) {
  margin-right: 0;
}
.list_sitemap .level02 >li > a {
    border: 1px solid #ccc;
    display: block;
    text-decoration: none;
    padding: 12px;
    border-radius: 3px;
    color: #133775;
    background: #fafafa;
    position: relative;
}
.list_sitemap .level02 >li > a::before {
    content: "";
    position: absolute;
    right: 9px;
    top: 50%;
    margin-top: -6px;
    border: 4px solid transparent;
    border-left: 6px solid #133775;
}

.list_sitemap .level03,
.list_sitemap .level04,
.list_sitemap .level05 {
  color: #4787ed;
  margin-top: 10px;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 36px;
}
.list_sitemap .level04,
.list_sitemap .level05 {
  margin-left: 24px;
}
.list_sitemap .level03 li + li {
  margin-top: 5px;
}

/*---------------------------------------------------------------------
  js-inview
---------------------------------------------------------------------*/
/* 管理画面で見えなくなるので…#container */
#container .js_slide_up {
  opacity: 0;
  position: relative;
  top: 50px;
}
#container .js_slide_down {
  opacity: 0;
  position: relative;
  top: -50px;
}
#container .js_slide_left {
  opacity: 0;
  position: relative;
  left: -50px;
}
#container .js_slide_right {
  opacity: 0;
  position: relative;
  right: -50px;
}
#container .js_fade {
  opacity: 0;
}

/*---------------------------------------------------------------------
	page_scroll
---------------------------------------------------------------------*/
#page_scroll_navi {
    position: absolute;
    z-index: 100;
    left: 50%;
    top: -60px;
    margin-left: -60px;
}
#page_scroll_navi a {
    display: block;
    width: 120px;
}

@media print, screen and (min-width: 769px) {
  #page_scroll_navi.fixed {
    position: fixed;
    top: auto;
    bottom: 70px;
  }
}

/* pc */
@media screen and (min-width: 1280px) {
}

/*---------------------------------------------------------------------
	site_footer
---------------------------------------------------------------------*/
.bl_footer_outer{
  padding: 65px 0 0;
  background-color: var(--additional_color);
}

#site_footer {
  padding: 90px 0 46px;
  padding: 90px 0 120px;
  background: var(--primary_color);
  text-align: center;
  position: relative;
}

#site_footer::before {
  content: "";
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(/image/bg_footer.png) repeat-x left bottom/contain;
  mix-blend-mode: screen;
}


#site_footer .inner { 
  position: relative;
  z-index: 100;
  margin: auto;
  width: var(--sp_inner);
  padding: 40px 20px 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .65);
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

#site_footer .inner > dl{
  font-weight: 500;
}

#site_footer .inner > dl > dt{
  margin-bottom: 20px;
}

#site_footer .inner > dl > dd{
  font-size: 1.8rem;
}

.bl_footerInfo_manager{
  margin-top: 60px;
  font-size: 1.6rem;
}

.bl_footerInfo_manager_name{
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}

.before_at::before {
  content: "@";
}

.bl_footerInfo_sns{
  margin-top: 30px;
}

.bl_sns_list{
  display: grid;
  gap: 5px 24px;
  grid: auto/ repeat(3, 48px);
  justify-content: center;
}

.footer_navi {
  padding: 40px 20px 20px;
  background: #ECF7FD;
}
.copyright {
  margin-top: 24px;
  color: #000;
  font-size: 1.5rem;
  text-align: center;
}

/* 追加：2026/01/21 */
.footer_fixedBtnUnit {
  position: fixed;
  left: auto;
  bottom: 10px;
  right: 10px;
  width: 280px;
  z-index: 999;
}
.footer_fixedBtnUnit a {
  display: block;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .bl_footer_outer{
    padding: 60px 0 0;
  }

  #site_footer {
    padding: 125px 0 90px;
    padding: 90px 0 190px;
    background: var(--primary_color);
    text-align: left;
  }

  #site_footer::before {
    background: url(/image/bg_footer_pc.png) repeat-x left bottom/contain;
  }

  #site_footer .inner { 
    max-width: 1340px;
    padding: 40px 70px 30px;
  }

  #site_footer .inner > dl > dt{
    margin-bottom: 25px;
  }

  .bl_footer_tel{
    padding-right: 30px;
  }

  #site_footer .inner > dl > dd,
  #site_footer .bl_footerInfo_manager{
    font-size: 1.8rem;
  }

  .bl_footerInfo{
    display: flex;
    align-items: flex-end;
    gap: 20px;
    justify-content: space-between;
  }

  .bl_footerInfo_manager{
    margin: 35px 0 15px;
  }

  .bl_footerInfo_manager_name{
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .bl_footerInfo_manager_mail{
    font-size: 1.3rem;
  }

  .bl_footerInfo_sns{
    margin-top: 30px;
  }

  .bl_sns_list{
    gap: 5px 15px;
    grid: auto/ repeat(3, 30px);
    justify-content: flex-end;
  }

  .footer_navi {
    padding: 40px 20px 20px;
    background: #ECF7FD;
  }
  .copyright {
    margin-top: 12px;
    font-size: 1.6rem;
    text-align: right;
  }

  /* 追加：2026/01/21 */
  .footer_fixedBtnUnit {
    bottom: 20px;
    right: 20px;
    width: 356px;
  }

}

.bl_pagebody_top{
  padding: 5px 2.7% 0;
  background: var(--primary_color);
}

.page_ttl__eng{
  line-height: 1;
  margin-bottom: -3px;
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
}

.page_ttl{
  margin: 0 0 30px;
  padding: 14px 0;
  line-height: 1.3;
  background-color: var(--additional_color);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: var(--txt_color);
}

.page_ttl > span{
  display: block;
  width: var(--sp_inner);
  margin: 0 auto;
}

@media print, screen and (min-width: 1280px) {
  .bl_pagebody_top{
    padding: 5px 1.5625% 0;
  }

  .bl_pagebody_top .topic_path_top{
    margin-bottom: 20px;
  }

  .page_ttl__eng{
    margin-bottom: -6px;
    font-size: 10rem;
  }

  .page_ttl{
    margin: 0 0 30px;
    padding: 24px 0;
    line-height: 1.3;
    font-size: 4rem;
  }

  .page_ttl > span{
    display: block;
    width: var(--sp_inner);
    margin: 0 auto;
  }
}

/*---------------------------------------------------------------------
	experience
---------------------------------------------------------------------*/
.da_main_content{
  background-image: url(/image/bg_repeat02.png);
  background-repeat: repeat-y;
  background-position: 100% 0;
}

/* ヒーローセクション */
.da_hero_section {
  background-color: #f8b62c;
  padding: 40px 0;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.da_hero_label {
  font-size: clamp(4.8rem, 5.2vw, 10rem);
  font-weight: 800;
  color: #fffbee;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.da_hero_title {
  font-size: clamp(2.4rem, 2.1vw, 4rem);
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

/* メインコンテンツ背景 */
.da_main_content {
  padding: 60px 0;
  background-color: #fffbee;
}

/* 出展者カード */
.ly_card_column{
  display: grid;
  gap: 45px 40px;
}

.da_card_item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
}

.da_card_item_image {
  width: 100%;
  /* height: 210px; */
  background-color: #fbf7e9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.da_card_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.da_card_item_body {
  padding: 15px 0;
}

.da_card_item_title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
}

.da_card_item_category {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #d99432;
  margin-bottom: 20px;
}

.da_card_item_tag {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #D99432;
  margin-right: 5px;
}

.da_card_item_description {
  font-size: 1.6rem;
  line-height: 2.1;
  margin-top: 12px;
}

.da_card_item_description{
  margin-top: 15px;
}

/* データなし */
.da_no_data {
  width: 100%;
  text-align: center;
  padding: 60px 0;
  font-size: 1.8rem;
}

/* レスポンシブ */
@media (min-width: 768px) {
  .ly_card_column{
    grid: auto / 1fr 1fr;
  }

  .ly_card_column:has(.ly_cs){
    grid: auto / auto;
  }

  .da_card_item{
    padding: 30px;
  }

  .da_card_item_image {
    /*
    height: 240px;
    height: 365px;
    */
  }

  .da_card_item_title {
    /* font-size: 3.2rem; */
  }

  .da_card_item_tag,
  .da_card_item_category{
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .da_hero_section {
    min-height: 200px;
    padding: 30px 0;
  }

  .da_hero_label {
    font-size: 3.6rem;
  }

  .da_hero_title {
    font-size: 2rem;
  }
}

@media (min-width: 1280px) {
  .ly_card_column{
    grid: auto / 1fr 1fr 1fr;
  }
}

/*---------------------------------------------------------------------
	講演・セッション
---------------------------------------------------------------------*/
.ly_sessionList{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  justify-content: center;
  margin: 0 0 40px;
}

.ly_sessionList__link{
  display: block;
  padding: 0 0 0 35px;
  background: url(/image/icon/arrow_02.svg) no-repeat 0 center/20px;
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--txt_color);
}

.bl_section + .bl_section{
  margin-top: 60px;
}

.bl_session + .bl_session{
  margin-top: 20px;
}

.bl_session {
  background-color: #ffffff;
  transition: all .3s;
}

.bl_session:hover {
  background-color: var(--primary_color);
}

.bl_session__contents {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  border-left: 4px solid var(--primary_color);
  padding-left: 12px;
}

.bl_session__contents,
.bl_session__contents:visited{
  color: var(--txt_color);
  text-decoration: none;
}

.bl_session:hover .bl_session__contents {
  border-left-color: #ffffff;
  text-decoration: none;
}

.bl_session__time-wrapper {
  display: block;
}

.el_session_title,
.bl_session__contents .el_session_title{
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  font-weight: 500;
}

.el_session_title::before,
.bl_session__contents .el_session_title::before{
  content: none;
}

.el_speaker-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* =====================================================
  エレメント: el_speaker-card（講演者カード - 標準）
===================================================== */

.el_speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.el_speaker-card__image {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.el_speaker-card__name {
  display: block;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.bl_session__speakers{
  display: grid;
  gap: 20px 0;
}

.bl_session .el_speaker-card__role,
.bl_session .el_speaker-card__name,
.bl_session .el_speaker-card__title{
  margin: 0;
}

.bl_session .el_speaker-card__role{
  line-height: 1;
  font-size: 1.5rem;
}

.el_speaker-card__title {
  display: block;
  margin: 0;
  line-height: 1.3;
}

.bl_modal {
  display: none;
}

.js_bl_session .bl_modal{
  display: block;
}

.bl_modal + .bl_modal{
  margin-top: 20px;
}

.bl_modal_cont {
  position: relative;
  padding: 15px 20px 25px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,.16);
}

.bl_modal_close {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
  line-height: 1;
  margin: 0 0 15px auto;
  font-size: 4rem;
  text-align: right;
  color: var(--primary_color);
  cursor: pointer;
}

.bl_modal_contInner {
  width: var(--sp_inner);
  margin: auto;
}

.bl_modal_session__scadule {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--primary_color);
}

.el_modal_session__day {

}

.el_modal_session__place {

}

.el_modal_session__time {

}

.bl_modal_session__ttl {
  margin: 0 0 30px;
  padding: 0 0 22px;
  border-bottom: 1px solid #CACACA;
  font-size: 2.4rem;
  font-weight: 700;
}

.bl_modal_speakerWrap {
  display: grid;
  gap: 20px;
}

.el_modal_speaker-card {

}

.el_modal_speaker_imgWrap {
  margin-bottom: 15px;
  text-align: center;
}

.el_speaker-card__text {

}

.bl_modal_cont .el_speaker-card__name {
  margin: 0 0 10px;
}

.bl_modal_cont .el_speaker-card__title {
  line-height: 1.75;
  margin: 0 0 10px;
}

.el_speaker-card__profile {

}

#cboxOverlay.js_bl_session{
  z-index: 8000;
}

#colorbox.js_bl_session{
  z-index: 9000;
}

.js_bl_session #cboxContent,
.js_bl_session #cboxLoadedContent{
  background: none;
}

.js_bl_session #cboxContent #cboxClose{
  display: none;
}

.js_bl_session #cboxPrevious,
.js_bl_session #cboxNext{
  display: none !important;
  top: calc(50% - 45px);
  width: 60px;
  height: 90px;
  background: transparent url(/image/icon/arrow_03.svg) no-repeat 0 0;
}

.js_bl_session #cboxPrevious:hover,
.js_bl_session #cboxNext:hover{
  background-position: 0 0;
}

.js_bl_session #cboxPrevious{
  left: -59px;
}

.js_bl_session #cboxNext{
  right: -59px;
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .ly_timetable__container {
    padding: 32px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
  }

  /* 標準セッション：水平レイアウト */
  .bl_session__contents {
    display: grid;
    grid: auto/1fr 1.5fr;
    flex-direction: row;
    align-items: center;
    padding: 20px 15px;
    gap: 40px;
    border-left: 7px solid var(--primary_color);
  }

  .bl_session:hover .bl_session__contents {
    border-left-color: #ffffff;
  }

  .bl_session__time-wrapper {
    flex: 0 0 300px;
    display: flex;
    gap: 15px;
  }

  .el_session_time {
    margin-bottom: 0;
    display: block;
  }

  .el_session_title {
    font-size: 16px;
    margin: 0;
  }

  .el_session_title,
  .bl_session__contents .el_session_title{
    padding-left: 15px;
    border-left: 1px solid var(--primary_color);
  }

  .bl_session:hover .el_session_title,
  .bl_session:hover .bl_session__contents .el_session_title{
    border-left-color: #ffffff;
  }

  .bl_session__speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 20px;
    align-content: flex-start;
    border-left: 1px solid #f0ad4e;
    padding-left: 20px;
  }

  .bl_session:hover .bl_session__speakers {
    border-left-color: #ffffff;
  }

  .el_speaker-card {
    flex-basis: 315px;
    flex-direction: row;
    text-align: left;
  }

  .el_speaker-card__image {
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .el_speaker-card__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .el_speaker-card__name {
    margin-bottom: 0;
    flex-basis: auto;
    align-self: flex-start;
  }

  .el_speaker-card__title {
    font-size: 14px;
    flex-basis: auto;
    align-self: flex-start;
  }

  .bl_modal {

  }

  .bl_modal_cont {
    padding: 15px 30px 55px;
  }

  .bl_modal_close {
    margin-bottom: 5px;
  }

  .bl_modal_contInner {
  }

  .bl_modal_session__scadule {
    gap: 30px;
    font-size: 2rem;
  }

  .el_modal_session__day {

  }

  .el_modal_session__place {

  }

  .el_modal_session__time {

  }

  .bl_modal_session__ttl {
    margin: 0 0 40px;
    padding: 0 0 30px;
    font-size: 3.2rem;
  }

  .bl_modal_speakerWrap {
  }

  .el_modal_speaker-card {
    display: grid;
    grid: auto/120px 280px 1fr;
    gap: 30px;
  }

  .el_modal_speaker_imgWrap {
    margin-bottom: 0;
  }

  .el_speaker-card__text {

  }

  .el_speaker-card__name {

  }

  .el_speaker-card__title {

  }

  .el_speaker-card__profile {

  }
}

@media print, screen and (min-width: 1280px) {
  .ly_sessionList{
    gap: 10px 50px;
    margin: 0 0 90px;
  }

  .ly_sessionList__link{
    font-size: 2.2rem;
  }

  .bl_section + .bl_section{
    margin-top: 80px;
  }

  .bl_session__contents{
    grid: auto/450px 1fr;
  }

  .bl_session__time-wrapper{
    display: grid;
    grid: auto / 1fr 335px;
    align-items: center;
  }

  .el_speaker-card__name {
    font-size: 1.8rem;
  }

  .el_speaker-card__title {
    font-size: 1.6rem;
  }

  .js_bl_session .bl_modal_cont{
    width: calc(100% - 120px);
    margin: auto;
  }

  .js_bl_session #cboxPrevious,
  .js_bl_session #cboxNext{
    display: block !important;
  }

  .js_bl_session #cboxPrevious{
    left: 1px;
  }

  .js_bl_session #cboxNext{
    right: 1px;
  }
}