@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
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
/*--------color code -------*/
html, body {
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body {
  min-height: 100vh;
}
.w_base {
  margin: 0 auto;
  max-width: 1160px;
  width: 90vw;
}
/*h1, h2, h3, h4, h5 {
  font-family: serif, "Noto Serif JP";
}*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
}
.hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
h1.hd_logo {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 220px;
}
h1.hd_logo a {
  font-size: 1.4em;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
h1.hd_logo a img {
  width: 32px;
  height: auto;
}
h1.hd_logo a.site_title {
  display: block;
  width: 180px;
  text-decoration: none;
  color: #000;
}
.hd_insta img {
  width: 80%;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  width: calc(100% - 300px);
}
.nav {
  width: 100%;
  height: 100%;
}
.nav_list {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.nav_list > li {
  display: inline-block;
  width: 100%;
  height: inherit;
}
.nav_list > li > a {
  font-family: "IBM Plex Sans JP";
  font-weight: 600;
  font-size: 1.2em;
  color: #000;
  padding: 20px 4px;
  display: inline-grid;
  border-left: 1px solid #ccc;
  width: 100%;
  height: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav_list > li:last-child {
  border-right: 1px solid #ccc;
}
.nav_list > li:nth-child(4) {
  letter-spacing: -0.12em
}
.current > a {
  background: #83dddd;
  color: #000 !important
}
.nav_list > li a:hover {
  color: #006eb0;
}
.nav_list > li a.contact_nav {
  background-color: #006eb0;
  color: #fff;
}
ul.nav_list li:hover ul.sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: Appear 0.3s forwards;
  animation: Appear 0.3s forwards;
}
.sub-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 100vw;
  left: 0;
  background-color: #006eb0;
  padding-left: 33vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.sub-menu span {
  position: absolute;
  left: 10vw;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sub-menu > li {
  width: 33vw;
}
.sub-menu > li > a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 1rem;
  font-size: 1.2em;
}
.sub-menu > li > a:hover {
  color: #fff;
  background-color: #719bad;
}
.sub-menu li:hover .nav_glist {
  display: block;
  -webkit-animation: Appear 0.3s forwards;
  animation: Appear 0.3s forwards;
}
@-webkit-keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_glist {
  display: none;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 34vw;
  right: 0;
  top: 0;
  height: 100%;
  overflow: scroll;
  background-color: #959595;
  overflow-Y: scroll;
  overflow-x: hidden;
}
.nav_glist li {
  width: 34vw;
}
.nav_glist li a {
  color: #fff !important;
  text-decoration: none;
  padding: 1rem 0 1rem 1rem;
  display: block;
  width: 100%;
}
.nav_glist li a:hover {
  background-color: #acacac;
}
/**
.nav_glist::-webkit-scrollbar{

}
**/
.li_has_child > a, .active > a {
  position: relative;
}
.active > a {
  color: #006eb0 !important;
}
.li_has_child > a:hover:before, .active > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #006eb0;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 0;
}
.main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 700px;
}
.side {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  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/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_wrapper {
  margin-top: auto;
}
.ft_wrapper .ft_innr_con {
  background-color: #D2E3DF;
}
.ft_wrapper .ft_innr_con p.ft_subtitle {
  font-size: 1.4em;
  font-weight: bold;
}
.ft_wrapper .ft_innr_con p.ft_address {
  font-size: 1.1em;
}
.ft_wrapper .ft_innr_box {
  position: relative;
  padding-top: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ft_wrapper .ft_innr_box figure {
  width: auto;
}
.ft_wrapper .ft_innr_box figure img {
  width: auto;
}
.ft_wrapper .ft_innr_box p.ft_title {
  font-size: 1.8em;
  font-weight: bold;
  margin-left: 0.4em;
  margin-top: 15px;
  margin-bottom: 10px
}
.ft_wrapper .sns_links {
  position: absolute;
  right: 0;
}
.ft_wrapper .sns_links a {
  text-decoration: none;
}
.ft_wrapper .sns_links a img {
  margin-right: 10px;
}
.ft_wrapper .ft_bg_cp {
  background: #006eb0;
  color: #fff;
}
.ft_wrapper .ft {
  padding: 30px 0;
}
.ft_wrapper .ft_copy {
  font-size: 12px;
  text-align: center;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #003f8e;
  bottom: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}
.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}
.index_content {
  padding: 50px 0;
}
.index_slider_bg {
  position: relative;
}
.index_slider_bg .index_title {
  z-index: 2;
  left: 50%;
  top: 70px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.index_slider_bg .index_title h1 {
  font-size: max(50px, 3.5vw);
  text-align: left;
  width: 100%;
  font-family: serif;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.index_slider_bg .index_title h1 span {
  color: #ee7800;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.index_slider_bg .index_title p {
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider img {
  width: 100%;
  height: 70vh !important;
  max-height: 650px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: "object-fit: cover!important;";
  filter: brightness(80%);
}
.index_h1 {
  /*font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;*/
  text-align: center;
  font-size: 4.6em;
  color: #006eb0;
}
.row_rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.row_rev > .index_text a {
  text-align: right;
}
.a_i_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.index_btn {
  display: block;
  margin: auto;
  position: relative;
  color: #006eb0;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  border: solid 1px #006eb0;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}
.index_con1_bgimg {
  background-image: url(../images/bg-img-1.jpg);
  background-size: cover;
}
.index_con1 {
  color: #001e43;
  text-align: center;
}
.index_con1 > h3 {
  font-weight: bold;
  font-size: 1.5em;
  font-family: "Noto Sans JP";
}
.index_con1 > h2 {
  font-weight: bold;
  font-size: 3.4em;
  margin: 20px auto;
  font-size: min(50px, 2.8vw);
}
.index_con2 {
  position: relative;
}
.index_con2 span {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #D2E3DF;
  top: 80px;
  z-index: -1;
}
.index_text h1 {
  position: relative;
  color: #006eb0;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 30px;
}
.index_text h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #006eb0;
  bottom: -10px;
}
.index_text h2 {
  font-weight: bold;
  font-size: 2.3em;
}
.index_text a {
  display: block;
  color: #003f8e;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.index_text a:hover {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.index_con3_bg {
  background-color: #D2E3DF;
}
.index_con3 {
  position: relative;
  padding: 5em 0 7em;
}
.index_con3 span {
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #fff;
  top: 40px;
  z-index: 0;
}
.index_con3 .con3_fig {
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px;
}
h2[class^=h2_num] {
  position: relative;
}
h2[class^=h2_num] > span {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 3em;
  color: #D2E3DF;
  position: absolute;
  top: -100px;
  z-index: 0;
  left: 0;
}
.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.news_list .news_list_item {
  width: 30%;
  margin-bottom: 2rem;
  margin: 0 20px
}
.news_list .news_list_item > a {
  display: block;
  width: 100%;
  /*overflow: hidden;*/
  /*aspect-ratio: 3/2;*/
}
.news_list .news_list_item img {
  width: 100%;
  height: auto;
		object-fit: contain!important
}
/*.news_list .news_list_item > a img {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news_list .news_list_item > a img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}*/
.news_list .news_list_item > span {
  font-size: 1.2rem;
  color: #006eb0;
  font-weight: bold;
  display: block;
  margin: 0.9em 0;
}
.news_list .news_list_item > p {
  font-size: 1.2rem;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_main {
  height: 200px;
  background: url(../images/bg-img-1.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page_main h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: max(4vw, 50px);
  color: rgba(255, 255, 255, 0.9);
}
.page {
  margin: 100px auto;
}
.page h1 {
  display: inline-block;
  position: relative;
  color: #006eb0;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
.page h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #006eb0;
  bottom: -10px;
}
.page h2 {
  font-weight: bold;
  font-size: 2.3rem;
  margin: 1.2em 0 0.8em 0;
  color: #006eb0
}
.page .h2_voice {
  font-weight: bold;
  font-size: 2.1rem;
  margin: 1.2em 0 0.8em 0;
  color: #006eb0
}
.page h3 {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 1em 0;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.page h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h5 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h6 {
  font-weight: bold;
  margin-bottom: 1.2em;
}
.page p {
  line-height: 2.5rem;
  margin: 1em 0;
}
.page figure img {
  width: 100%;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5, .mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.member_box {
  width: 1000px;
}
/*# sourceMappingURL=style.css.map */