@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スタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** color change
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-size: 14px;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-size: 14px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  padding: 10px;
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
}
.hd_bg .hd .hd_logo a .hd_item span {
  display: block;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New Bold", "Barlow Medium", sans-serif;
  font-size: 18px;
  letter-spacing: 0.3em;
  line-height: 1.2em;
  margin: 5px;
}
.hd_bg .hd .hd_logo a .hd_item p {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.hd_bg .hd .hd_logo a .hd_item img {
  max-width: 50px;
  width: 100%;
  height: auto;
  margin: 5px;
  transition: all 0.5s ease;
}

.index_slider_bg {
  width: 100%;
  height: 776px;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
  opacity: 0.6;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy img {
  margin-bottom: 40px;
  width: 197px;
  height: 192px;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h1 {
  letter-spacing: 0.05em;
  font-family: "Barlow", sans-serif;
  font-size: 60px;
  font-style: Italic;
  font-weight: 600;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick video {
  width: 100%;
  height: 776px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.9);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  **menu
  ******************************************************************************
----------------------------------------------------------------------------*/
.menu-wrapper {
  position: relative;
}

.menu-icon {
  z-index: 9999;
  display: inline-block;
  width: 29px;
  height: 30px;
  position: fixed;
  top: 20px;
  right: 60px;
  cursor: pointer;
}
.menu-icon span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.4s;
}

#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: scale(1.1) translateY(5px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: scale(1.3) rotate(-45deg) translateY(-5px);
}
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}
#menu-toggle:checked ~ .menu {
  top: 0;
}

.overlay {
  height: 776px;
  position: fixed;
  inset: 0;
  background: #3E4453;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 2;
}
.overlay .menu {
  position: absolute;
  width: 100%;
  transition: top 0.4s ease;
  z-index: 3;
}
.overlay .menu .menu_content {
  display: flex;
  width: auto;
  margin: 10%;
}
.overlay .menu .menu_content .menu_item {
  flex: 1;
  padding: 0 5%;
}
.overlay .menu .menu_content .menu_item .menu_title {
  display: block;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.overlay .menu .menu_content .menu_item .menu_list {
  flex-direction: column;
  list-style: none;
  padding: 0;
  font-size: 18px;
  color: #FFFFFF;
}
.overlay .menu .menu_content .menu_item .menu_list .sub_menu {
  list-style: none;
  padding-left: 20px;
  margin-top: 15px;
  margin-left: 20px;
  border-left: 1px solid #FFFFFF;
}
.overlay .menu .menu_content .menu_item .menu_list .sub_menu li {
  margin-bottom: 15px;
  color: #FFFFFF;
}
.overlay .menu .menu_content .menu_item .menu_list li {
  margin-bottom: 15px;
  color: #FFFFFF;
}
.overlay .menu .menu_content .menu_item .menu_list li a {
  text-decoration: none;
  color: #FFFFFF;
}
.overlay .menu .menu_content .menu_item .menu_list li a:hover {
  color: #33B4EE;
}
.overlay .menu .menu_content .menu_item .menu_section {
  margin-bottom: 67px;
}

.icon_items img {
  margin: 0 5%;
}

details {
  display: block;
}

details summary {
  display: none;
}

.accordion-content {
  display: block !important;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}
.index_main .index_con1 {
  height: 503px;
  color: #3E4453;
  text-align: center;
  padding: 100px 0;
}
.index_main .index_con1 .index_btn1 a {
  display: inline-block;
  width: 297px;
  height: 75px;
  margin: 0 auto;
  padding: 20px 30px;
  background-color: #3E4453;
  color: #fff;
  font-size: 22px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index_main .index_con1 .index_btn1 a:hover {
  background-color: #33B4EE;
  transition: all 0.3s ease;
}
.index_main .index_con1 h2 {
  font-family: "小塚明朝 Pro", "Kozuka Mincho Pro", serif;
  font-size: 33px;
}
.index_main .index_con1 h3 {
  font-size: 22px;
}
.index_main .index_con1 p {
  font-family: "Zen kaku Gothic New", "Zen Kaku Gothic Medium", "Yu Gothic Medium", "YuGothic Medium", sans-serif;
  font-style: medium;
  font-size: 22px;
  line-height: 2em;
  margin-top: 20px;
  margin-bottom: 30px;
}
.index_main .index_imgbg {
  width: 100%;
  height: 591px;
  background: url(../images/index_bg2.jpeg) no-repeat center;
  background-size: cover;
}
.index_main .index_con2 {
  height: 353px;
  color: #3E4453;
  text-align: center;
  padding: 100px 0;
}
.index_main .index_con2 h2 {
  font-family: "小塚明朝 Pro", "Kozuka Mincho Pro", serif;
  font-size: 33px;
}
.index_main .index_con2 h3 {
  font-size: 22px;
}
.index_main .index_con2 p {
  font-family: "Zen kaku Gothic New", "Zen Kaku Gothic Medium", "Yu Gothic Medium", "YuGothic Medium", sans-serif;
  font-style: medium;
  font-size: 22px;
  line-height: 2em;
  margin-top: 20px;
  margin-bottom: 30px;
}
.index_main .index_con3 .index_future {
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3%;
}
.index_main .index_con3 .index_future .index_future_box {
  background-color: #000;
  height: 100%;
  width: 100%;
  position: relative;
  align-items: flex-end;
}
.index_main .index_con3 .index_future .index_future_box img {
  opacity: 0.5;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_con3 .index_future .index_future_box .index_future_namber {
  position: absolute;
  top: 10%;
  left: 10%;
}
.index_main .index_con3 .index_future .index_future_box .index_future_namber h2 {
  height: 20px;
  padding: 0px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
}
.index_main .index_con3 .index_future .index_future_box .index_future_namber h3 {
  font-family: "Barlow", sans-serif;
  font-size: 67px;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  padding: 0;
  margin: 0;
}
.index_main .index_con3 .index_future .index_future_box p {
  position: absolute;
  bottom: 50px;
  left: 10%;
  font-family: "Zen Kaku Gothic New" sans-serif;
  font-size: 22px;
  font-style: medium;
  color: #fff;
  padding: 0;
  margin: 0px;
}
.index_main .index_con3 .index_btn2 {
  text-align: center;
  margin-bottom: 100px;
}
.index_main .index_con3 .index_btn2 a {
  display: inline-block;
  width: 297px;
  height: 75px;
  margin: 0 auto;
  padding: 20px 30px;
  outline: #3E4453 solid 1px;
  background-color: #FFFFFF;
  color: #3E4453;
  font-size: 22px;
  font-family: "Barlow", sans-serif;
  font-style: medium;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index_main .index_con3 .index_btn2 a:hover {
  background-color: #33B4EE;
  transition: all 0.3s ease;
}
.index_main .index_news {
  justify-content: space-around;
  height: 1026px;
  padding: 30px 0;
  position: relative;
  justify-content: center;
}
.index_main .index_news .index_news_con {
  position: relative;
  align-items: flex-end;
  width: 100%;
  height: 1026px;
  position: relative;
  justify-content: center;
  background-color: #000;
}
.index_main .index_news .index_news_con img {
  width: 100%;
  height: 1026px;
  opacity: 0.6;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_news .index_news_con .index_news_bg {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_main .index_news .index_news_con h2 {
  color: #fff;
  font-family: "小塚明朝 Pro", "Kozuka Mincho Pro", serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 30px;
}
.index_main .index_news .index_news_con .index_news_box {
  width: 100%;
  height: 172px;
  margin: 0 auto;
  display: flex;
  background-color: #FFFFFF;
  margin-bottom: 20px;
}
.index_main .index_news .index_news_con .index_news_box img {
  display: block;
  opacity: 1;
  width: auto;
  height: 172px;
  padding: 5px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #c1c3c7;
}
.index_main .index_news .index_news_con .index_news_item {
  padding: 20px;
}
.index_main .index_news .index_news_con .index_news_item span {
  padding: 0;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  color: #000;
}
.index_main .index_news .index_news_con .index_news_item p {
  margin: 10px 0 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #3E4453;
}
.index_main .index_news .index_news_con .index_news_item a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_main .index_news .index_btn3 {
  width: 297px;
  height: 75px;
  margin: 0px auto;
}
.index_main .index_news .index_btn3 a {
  display: inline-block;
  width: 297px;
  height: 75px;
  margin: 20px auto;
  padding: 20px 30px;
  background-color: #FFFFFF;
  color: #3E4453;
  font-size: 22px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.index_main .index_news .index_btn3 a:hover {
  background-color: #33B4EE;
  transition: all 0.3s ease;
}
.index_main .index_news .index_con3 {
  color: #3E4453;
  text-align: center;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  background-color: #3E4453;
}
.ft_bg .nav {
  align-items: center;
  height: 100%;
  overflow: visible;
}
.ft_bg .nav .nav_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 200px;
  gap: 0 10px;
  width: 100%;
}
.ft_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.ft_bg .nav .nav_list > li > a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s ease;
}
.ft_bg .nav .nav_list > li > a::after {
  position: absolute;
  left: 0;
}
.ft_bg .nav .nav_list > li > a:hover::after {
  transform: scale(1, 1);
}
.ft_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.ft_bg .ft {
  height: 60px;
  padding: 10px 0;
  background-color: #ffffff;
}
.ft_bg .ft .ft_copy {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-align: center;
  color: #3E4453;
}

.index_con4 {
  width: 100%;
  height: 395px;
  color: #3E4453;
  text-align: center;
}
.index_con4 img {
  margin-bottom: 10px;
}
.index_con4 h3 {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-style: medium;
  letter-spacing: 0.2em;
  padding-bottom: 15px;
}
.index_con4 h4 {
  font-family: "zen kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: bold;
  letter-spacing: 0.2em;
  padding-bottom: 15px;
}
.index_con4 .ft_icon_items {
  display: flex;
  align-items: center;
}
.index_con4 .ft_icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.index_con4 .ft_icon_items a img:last-child {
  margin-left: 0;
}
.index_con4 .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.index_con4 p {
  margin-top: 15px;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.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;
}

@media screen and (max-width: 999px) {
  main {
    padding: 10px;
  }
  .nav_bg .nav .nav_list > li {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
  }
  .nav_bg .nav .nav_list > li > a {
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */