@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  height: 100%;
  font-size: 14px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
}
body::-webkit-scrollbar {
  display: none;
}

.w_base {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

p {
  color: #041c31;
  font-size: 1.1rem;
}

a {
  color: inherit;
}

h2,
h3,
h4 {
  color: #3682c5;
}

.roboto {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

.bg {
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.bg.bg1 {
  background: url("../images_forum/slideshow/index_bg.jpg") center/cover no-repeat;
  z-index: -1;
}
.bg.bg1.show {
  opacity: 0.7;
}
.bg.bg2 {
  background: url("../images_forum/section_bg.jpg") center/cover no-repeat;
  transition: 1s;
  z-index: -2;
}
.bg.bg3 {
  background: url("../images_forum/access_bg.jpg") center/cover no-repeat;
  transition: 1s;
  z-index: -3;
}
.bg.show {
  opacity: 0.2;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #041c31;
  transition: all 0.5s ease;
}
.hd_bg .hd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  justify-content: center;
  padding: 10px 0;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.2rem;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.hd_bg .hd .hd_logo a .hd_item p {
  font-size: 1.3rem;
  line-height: 1.3em;
}
.hd_bg .hd .hd_logo a .hd_item p span {
  white-space: nowrap;
}
.hd_bg .hd .hd_logo a .hd_item img {
  max-width: 58px;
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}
.hd_bg.hide {
  top: -100%;
  opacity: 0;
  transition: 1.2s all ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  height: 100%;
}
.nav_bg .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: visible;
  margin-left: auto;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
}
.nav_bg .nav .nav_list .nav_icon {
  display: none;
}
.nav_bg .nav .nav_list .nav_hd_logo {
  display: none;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #3682c5;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover::after {
  transform: scale(1, 1);
}
.nav_bg .nav .nav_list > li.current a {
  background: #fff;
  color: #87dce2;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px 30px 30px;
  color: #404040;
  background: #fff;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > p {
  padding: 20px 20px 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  display: flex;
  margin-top: 15px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  width: 100%;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  position: relative;
  justify-content: end;
  align-items: center;
  padding: 10px 0px 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 10px;
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::before {
  background-color: #ff0000;
}
.nav_bg .nav .nav_list > li:nth-of-type(3) > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(4) > .child_wrap {
  left: -250%;
}
.nav_bg .nav .nav_list > li:nth-of-type(5) > .child_wrap {
  left: auto;
  right: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(6) > .child_wrap {
  left: auto;
  right: 0;
}
.nav_bg .nav a.more {
  min-width: 150px;
  min-height: 2.66em;
  font-size: 0.9rem;
  padding-inline: 0.66em;
  transition: all 0.3s ease;
}
.nav_bg .nav a.more::after {
  display: none;
}
.nav_bg .nav a.more:hover {
  opacity: 0.8;
}

.side_link {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.side_link a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  padding-inline: 1em;
  background-color: attr(data-color type(<color>), #3682c5);
  border-top-left-radius: min(0.3265306122vw + 2.7755102041px, 8px);
  border-bottom-left-radius: min(0.3265306122vw + 2.7755102041px, 8px);
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all ease;
}
.side_link a:hover {
  transform: translateX(10px);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tel
  ******************************************************************************
----------------------------------------------------------------------------*/
.tel {
  font-size: 22px;
  font-weight: bold;
}
.tel span {
  font-size: 12px;
  font-weight: normal;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** color change
  ******************************************************************************
----------------------------------------------------------------------------*/
.colorchange.hd_bg {
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
  transition: all 0.5s ease;
}
.colorchange.hd_bg .nav_list > li > a {
  color: #040404;
  transition: all 0.5s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  width: 100%;
}

.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #eee;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images_forum/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  background-color: #3682c5;
  scroll-snap-align: start;
}
.ft_bg .ft_con {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3em;
  justify-content: center;
  padding: 25px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.ft_bg .ft_con .ft_logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
}
.ft_bg .ft_con .ft_logo .ft_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
}
.ft_bg .ft_con .ft_logo .ft_item img {
  width: 58px;
  height: auto;
}
.ft_bg .ft_con .ft_logo .ft_item h2 {
  font-size: 1.3rem;
  line-height: 1.3em;
  color: #fff;
}
.ft_bg .ft_con .nav_bg .nav a::after {
  background: #fff;
}
.ft_bg .ft_con .nav_bg .nav a.more {
  color: #3682c5;
  background: #fff;
}
.ft_bg .ft_con p {
  text-align: center;
  color: #fff;
}
.ft_bg .ft_con p a {
  text-decoration: none;
}
.ft_bg .ft_con .ft_box h2 {
  margin: 5px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  color: #87dce2;
}
.ft_bg .ft_con .ft_box .ft_address {
  display: flex;
  flex-wrap: nowrap;
}
.ft_bg .ft_con .ft_box .ft_address p {
  font-size: 1rem;
}
.ft_bg .ft_con .ft_box .ft_address p:last-of-type {
  margin-left: 5px;
}
.ft_bg .ft_con .ft_icon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img {
  margin-right: 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img:last-child {
  margin-left: 0;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.ft_bg .ft {
  padding: 25px 0;
}
.ft_bg .ft .ft_copy {
  font-size: 11px;
  text-align: center;
  color: #fff;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15%;
  bottom: 115px;
  z-index: 100;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.pt_btn {
  background: #3682c5;
  width: 17px;
  aspect-ratio: 29/30;
  -webkit-mask: url("../images_forum/arrow.svg") center/contain no-repeat;
  mask: url("../images_forum/arrow.svg") center/contain no-repeat;
  transform: rotate(-90deg);
}

.advent.pt {
  display: flex;
  opacity: 1;
  transition: all 0.3s ease;
}
.advent.pt .pt_btn {
  opacity: 1;
}
.advent.pt:hover {
  opacity: 0.6;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_bnr_list li {
  margin-bottom: 4px;
}
.index_bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images_forum/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_bnr_list a:hover {
  background-color: #000;
  background-image: url(../images_forum/icon_elink_white.png);
  color: #fff;
}

a.more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 260px;
  min-height: 60px;
  background: #3682c5;
  border-radius: 8px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  padding-inline: 45px;
  white-space: nowrap;
}
a.more::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(calc(-50% + 0px));
  content: "";
  height: 0.8em;
  aspect-ratio: 29/30;
  background: url("../images_forum/arrow.svg") center/contain no-repeat;
  filter: invert(1);
  transition: all 0.3s ease;
}
a.more:hover::after {
  right: 10px;
}
a.more.pc_dn {
  display: none;
}
a.exlink {
  position: relative;
}
a.exlink::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background-size: 100%;
  background-image: url("../images_forum/exlink.svg");
}

section {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  opacity: 0.3;
  transition: opacity 1s ease;
  overflow: hidden;
}
section > div {
  opacity: 0;
  transition: opacity 1s ease;
}
section.active {
  opacity: 1;
}
section.active > div {
  opacity: 1;
}

.index_about h2,
.index_greeting h2,
.index_info h2,
.index_program h2,
.index_access h2 {
  margin-bottom: 0.75em;
  font-size: min(40px, 3.6vw);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}
.index_about h2 span,
.index_greeting h2 span,
.index_info h2 span,
.index_program h2 span,
.index_access h2 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
}
.index_about h3,
.index_greeting h3,
.index_info h3,
.index_program h3,
.index_access h3 {
  font-size: min(34px, 3.1vw);
  font-weight: 500;
  text-align: center;
}
.index_about img,
.index_greeting img,
.index_info img,
.index_program img,
.index_access img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}

.index_about_bg .index_about figure {
  text-align: center;
}
.index_about_bg .index_about figure img {
  width: auto;
  max-height: 45vh;
}
.index_about_bg .index_about .card_white {
  width: 60%;
  margin: 0 auto;
  padding: 0.7em 2em;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2rem;
}

.index_program_bg .index_program dl {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.index_program_bg .index_program dl div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.index_program_bg .index_program dl dt {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}
.index_program_bg .index_program dl dt i {
  display: flex;
  align-items: center;
  color: #3682c5;
  font-size: 1.65em;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.index_program_bg .index_program dl dt i::after {
  display: inline-block;
  content: "";
  width: 19px;
  height: 38px;
  border-left: 1px solid #707070;
  transform: skewX(-30deg) translateX(1rem);
}
.index_program_bg .index_program dl dd {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.index_program_bg .index_program dl dd i {
  display: flex;
  align-items: center;
  color: #3682c5;
  font-size: 1.65em;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.index_program_bg .index_program dl dd i::after {
  display: inline-block;
  content: "";
  width: 19px;
  height: 38px;
  border-left: 1px solid #707070;
  transform: skewX(-30deg) translateX(1rem);
}

.index_access_bg .index_access {
  max-width: 920px;
}
.index_access_bg .index_access figure {
  text-align: center;
}
.index_access_bg .index_access figure img {
  width: auto;
  height: 55vh;
}

.index_info_bg .index_info table {
  margin: 1.4em 0;
}
.index_info_bg .index_info table tr {
  font-size: 1.2rem;
}
.index_info_bg .index_info table tr:first-child th {
  border-top: 3px solid #b1b1b1;
}
.index_info_bg .index_info table tr:first-child td {
  border-top: 1px solid #b1b1b1;
}
.index_info_bg .index_info table th {
  min-width: 170px;
  border-bottom: 3px solid #b1b1b1;
  padding: 1em 1.2em;
  font-weight: normal;
  vertical-align: middle;
}
.index_info_bg .index_info table td {
  border-bottom: 1px solid #b1b1b1;
  padding: 1em 2em;
  font-weight: 500;
  vertical-align: middle;
}
.index_info_bg .index_info strong {
  font-size: 1.7em;
}

.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy h2 {
  position: relative;
  font-size: min(50px, 4vw);
  line-height: 1;
}
.index_slider_bg .index_slider .catchcopy h2::before, .index_slider_bg .index_slider .catchcopy h2::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  height: inherit;
  border: 3px solid #3682c5;
}
.index_slider_bg .index_slider .catchcopy h2::before {
  left: -0.8em;
  border-right: transparent;
}
.index_slider_bg .index_slider .catchcopy h2::after {
  right: -0.8em;
  border-left: transparent;
}
.index_slider_bg .index_slider .catchcopy p {
  font-size: min(18px, 1.8vw);
  margin-bottom: 1em;
}
.index_slider_bg .index_slider .catchcopy hr {
  background: #3682c5;
  width: 145px;
  height: 3px;
}
.index_slider_bg .index_slider .catchcopy .medium {
  font-weight: 500;
  font-size: min(3.2em, 2.8vw);
}
.index_slider_bg .index_slider .catchcopy .medium span {
  font-size: 0.6em;
}
.index_slider_bg .index_slider .catchcopy .bnr_ctn {
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  padding: 1em 2em;
  border-radius: 30px;
  background: #fff;
  color: #3682c5;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.card_white {
  background: #fff;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.16);
  padding: 1.2em 1.8em;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg {
  width: 100%;
}
.page_slider_bg .page_slider {
  position: relative;
}
.page_slider_bg .page_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  font-size: 4vw;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}
.page_slider_bg .page_slider .slider_slick {
  width: 100%;
  margin-bottom: 2rem;
}
.page_slider_bg .page_slider .slider_slick img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.7);
}

.page {
  margin-bottom: 60px;
}
.page a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h2 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #87dce2;
}
.page h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #87dce2;
}
.page h4 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.page h5,
.page h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.page hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe {
  max-width: 100%;
}
.page img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page p {
  line-height: 2em;
  margin-bottom: 1em;
}
.page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page .box .box_item {
  width: 50%;
  padding: 10px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
@media screen and (max-width: 1100px) {
  html,
  body {
    font-size: 13px;
  }
  .w_base {
    width: 90%;
  }
  .side_link a {
    width: 70px;
    font-size: 1em;
    line-height: 1.2;
    transform: translateX(30px);
  }
  .side_link a:hover {
    transform: translateX(0px);
  }
  .index_about,
  .index_greeting,
  .index_info,
  .index_program,
  .index_access {
    padding: 100px 0 0;
  }
  .index_about p,
  .index_greeting p,
  .index_info p,
  .index_program p,
  .index_access p {
    font-size: 1em;
  }
  .index_about figure,
  .index_greeting figure,
  .index_info figure,
  .index_program figure,
  .index_access figure {
    width: 80% !important;
    margin-inline: auto;
  }
  .index_slider_bg .index_slider {
    padding: 100px 0 0;
  }
  .index_slider_bg .index_slider .catchcopy {
    padding: 30px;
  }
  .index_slider_bg .index_slider .catchcopy h2 {
    font-size: 40px;
  }
  .index_slider_bg .index_slider .catchcopy .medium {
    font-size: 2.5em;
  }
  .index_slider_bg .index_slider .catchcopy .bnr_ctn {
    font-size: 1.2em;
  }
  .index_about_bg .index_about figure img {
    width: 100%;
  }
  .index_info_bg .index_info table tr {
    font-size: 1em;
  }
  .index_info_bg .index_info table th,
  .index_info_bg .index_info table td {
    padding: 1em 1.2em;
  }
  .index_info_bg .index_info strong {
    font-size: 1.4em;
  }
  .index_program_bg .index_program dl {
    padding: 1.2em 1.8em;
    gap: 0.8em;
  }
  .index_program_bg .index_program dl div {
    gap: 1em;
  }
  .index_program_bg .index_program strong {
    font-size: 1.4em;
  }
  .index_access_bg .index_access p {
    font-size: 1em;
  }
  .index_access_bg .index_access figure {
    max-width: 650px !important;
  }
  .index_access_bg .index_access figure img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */