@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- 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 {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100vh;
  background: url(../images/body_bg.png);
}

.w_base {
  width: 960px;
  margin: 0 auto;
}

.w_base02 {
  width: 1150px;
  margin: 0 auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  z-index: 1;
}

.hd {
  position: relative;
  background: url(../images/ft_bg.png) no-repeat;
  overflow: hidden;
}
.hd::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
}

.hd_logo {
  position: relative;
  z-index: 1;
  padding: 15px 0;
}
.hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.hd_logo a h1 {
  color: #f4b183;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 1px 1px 3px #333;
}
.hd_logo a h1 span {
  display: block;
  margin-bottom: 5px;
  color: #fbe5d6;
  line-height: 1.1;
}
.hd_logo a h1 span:first-child {
  font-size: 0.7em;
}
.hd_logo a h1 span:last-child {
  font-size: 0.44em;
}
.hd_logo a img {
  width: 70px;
  margin-right: 10px;
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  position: relative;
  z-index: 1;
  background: #fff;
}

.nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8em 1em;
  z-index: 1000;
  padding: 1em 0;
}
.nav_list > li {
  position: relative;
}
.nav_list > li > a {
  display: block;
  padding: 0.5em 1rem;
  color: #001746;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid #001746;
  transition: all 0.3s ease;
}
.nav_list > li > a:hover {
  background: #001746;
  color: #fff;
}
.nav_list > li.current > a {
  background: #001746;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
  background: #fff;
}

.main {
  order: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: relative;
  margin-top: auto;
  background: url(../images/ft_bg.png) no-repeat;
  background-size: cover;
}
.ft_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
.ft_bg .ft {
  position: relative;
  padding: 30px 0 10px;
}
.ft_bg .ft .ft_con {
  margin: 0 0 70px;
}
.ft_bg .ft .ft_con .ft_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.ft_bg .ft .ft_con .ft_logo a h1 {
  font-size: 22px;
  line-height: 1.5;
}
.ft_bg .ft .ft_con .ft_logo a h1 span {
  display: block;
  font-style: normal;
}
.ft_bg .ft .ft_con .ft_logo a h1 span:first-child {
  font-size: 0.7em;
}
.ft_bg .ft .ft_con .ft_logo a h1 span:last-child {
  font-size: 0.44em;
}
.ft_bg .ft .ft_con .ft_logo a img {
  width: 70px;
  margin-right: 10px;
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}
.ft_bg .ft .ft_con .ft_nav {
  margin: 40px 0;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list {
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list > li {
  width: 50%;
  margin: 0 0 5px;
  text-align: left;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list > li > a {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.ft_bg .ft .ft_con .ft_bnr {
  position: relative;
  width: 540px;
}
.ft_bg .ft .ft_con .ft_bnr ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.ft_bg .ft .ft_con .ft_bnr ul > li {
  width: calc(33.3333333333% - 5px);
}
.ft_bg .ft .ft_con .ft_bnr ul > li > a {
  position: relative;
  display: block;
  padding: 10px 5px;
  background: #fff;
  color: #636363;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.ft_bg .ft .ft_con .ft_bnr ul > li > a:after {
  position: absolute;
  top: 0;
  right: 5px;
  content: url(../images/icon_elink_gray.png);
}

.ft_copy {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: absolute;
  top: 30px;
  right: 0;
  width: 30px;
  height: 70px;
  z-index: 100;
}
.pt .pt_btn {
  border-radius: 50%;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  height: 100%;
  line-height: 1.3;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  width: 100%;
}
.pt .pt_btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: url(../images/pt_arrow_gray.png);
}
.pt .pt_btn:hover {
  opacity: 0.6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_hd_bg {
  overflow: hidden;
  position: relative;
  height: 100vh;
  background: #fff;
}

.index_hd {
  position: relative;
  height: 100vh;
  z-index: 1;
}
.index_hd .hd_logo {
  position: relative;
  top: 0;
  z-index: 1;
  padding: 0;
  background: url(../images/ft_bg.png) no-repeat center center;
  background-size: cover;
}
.index_hd .hd_logo::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
}
.index_hd .hd_logo a {
  padding: 2.5em 0;
  justify-content: center;
}
.index_hd .hd_logo a h1 {
  color: #f4b183;
  font-size: clamp(2.25rem, -0.556rem + 3.9vw, 4.125rem);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 1px 3px #333;
}
.index_hd .hd_logo a h1 span {
  margin-bottom: 5px;
  color: #fbe5d6;
  line-height: 1.1;
}
.index_hd .nav_bg {
  position: relative;
  top: 0;
  z-index: 1;
  width: 100%;
}
.index_hd .nav_bg .nav .nav_list {
  justify-content: center;
  max-width: 100%;
  margin-bottom: 0;
  padding: 1em 0;
}
.index_hd .nav_bg .nav .nav_list > li > a {
  padding: 0.5em 1rem;
  color: #001746;
  font-size: clamp(1rem, 0.065rem + 1.3vw, 1.625rem);
  transition: all 0.3s ease;
}
.index_hd .nav_bg .nav .nav_list > li > a:hover {
  background: #001746;
  color: #fff;
}
.index_hd .nav_bg .nav .nav_list > li:nth-child(4n) a:after {
  display: none;
}
.index_hd .nav_bg .nav .nav_list > li.current > a {
  background: #001746;
  color: #fff;
}
.index_hd .eyecatch {
  position: absolute;
  width: 100vw;
}
.index_hd .eyecatch .eyecatch_img {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.index_hd .eyecatch .eyecatch_img img {
  width: 100%;
  height: auto;
}
.index_hd .eyecatch .eyecatch_img .eyecatch_img_item_01 {
  width: 100%;
  max-width: 380px;
}
.index_hd .eyecatch .eyecatch_img .eyecatch_img_item_02 {
  position: relative;
  z-index: -1;
  margin-left: -70px;
}
.index_hd .eyecatch .eyecatch_img .eyecatch_img_item_03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -90px;
}
.index_hd .fuwafuwa {
  animation: fuwafuwa 1.8s linear infinite;
}
.index_hd .button_down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  z-index: 100;
  transition: All 0.5s ease;
}
.index_hd .button_down:after {
  content: url(../images/pt_arrow_gray.png);
  display: block;
  transform: rotate(-180deg);
}

@keyframes fuwafuwa {
  0% {
    margin-bottom: -4px;
    opacity: 1;
  }
  50% {
    margin-bottom: 4px;
    opacity: 0.7;
  }
  100% {
    margin-bottom: -4px;
    opacity: 1;
  }
}
.index_slider img {
  width: 100vw;
  opacity: 0.5;
}

.index_info {
  margin: 0 0 50px;
}
.index_info .info_con {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.index_info .info_con dl {
  width: calc(50% - 20px);
  margin: 0 10px 40px;
}
.index_info h2 {
  color: #001746;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0px;
}
.index_info h2 span {
  display: block;
  margin: -15px 0 0;
  font-size: 16px;
  font-weight: normal;
}

.index_info_con {
  margin: 40px 0 0;
}

.icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: 700;
  margin-left: 0.3em;
}
.icon_new:before {
  content: "NEW";
}

.index_con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index_con > div {
  width: calc(50% - 30px);
  margin: 0 0 40px;
}
.index_con > div h2 {
  color: #001746;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
.index_con > div h2 span {
  display: block;
  margin: -15px 0 0;
  font-size: 16px;
  font-weight: normal;
}
.index_con > div figure img {
  width: 100%;
  height: auto;
}
.index_con > div a {
  position: relative;
}
.index_con > div a span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  background: #000;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
}
.index_con > div .more a {
  position: relative;
  display: block;
  width: 310px;
  margin: 30px 0 0;
  padding: 17px 0;
  font-size: 18px;
  font-weight: 700;
  color: #001746;
  text-align: center;
  text-decoration: none;
  border: 1px solid #001746;
  transition: all 0.5s ease;
}
.index_con > div .more a:hover {
  background: #001746;
  color: #fff;
}
.index_con > div .more a:hover:after {
  content: url(../images/more_arrow_ov.png);
}
.index_con > div .more a:after {
  position: absolute;
  right: 10px;
  transform: translate(0, -50%);
  display: inline-block;
  content: url(../images/more_arrow.png);
  width: 22px;
  height: 6px;
  transition: all 0.5s ease;
}

.index_message {
  padding: 75px 0;
  background: url(../images/index_bg.png);
  background-size: cover;
}
.index_message .eyecatch {
  margin: 0 0 30px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
.index_message .eyecatch span {
  display: block;
  margin: 0 0 10px;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
}
.index_message p {
  padding: 0 50px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 2.2;
}

.index_access {
  padding: 70px 0 0;
}
.index_access h2 {
  color: #001746;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0px;
}
.index_access h2 span {
  display: block;
  margin: -15px 0 0;
  font-size: 16px;
  font-weight: normal;
}
.index_access p {
  margin: 15px 0 20px;
  font-size: 16px;
}
.index_access #index_access_map {
  width: 100%;
  height: 500px;
}
.index_access #index_access_map p {
  height: 100%;
  margin: 0 !important;
}
.index_access #index_access_map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.more a {
  position: relative;
  display: block;
  width: 310px;
  margin: 0 auto;
  padding: 17px 0;
  font-size: 18px;
  font-weight: 700;
  color: #001746;
  text-align: center;
  text-decoration: none;
  border: 1px solid #001746;
  transition: all 0.5s ease;
}
.more a:hover {
  background: #001746;
  color: #fff;
}
.more a:hover:after {
  content: url(../images/more_arrow_ov.png);
}
.more a:after {
  position: absolute;
  right: 10px;
  transform: translate(0, -50%);
  display: inline-block;
  content: url(../images/more_arrow.png);
  width: 22px;
  height: 6px;
  transition: all 0.5s ease;
}

/*----------------------------------------------------------------------------
******************************************************************************
** archive
******************************************************************************
----------------------------------------------------------------------------*/
.info_con {
  margin: 40px 0 0;
}
.info_con dl {
  display: flex;
  margin: 0 0 40px;
}
.info_con dl dt {
  display: flex;
  align-items: center;
  height: 86px;
  margin-right: 15px;
  padding: 10px 6px;
  background: #001746;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  text-align: center;
}
.info_con dl dt span {
  display: block;
  font-size: 16px;
}
.info_con dl dd {
  font-size: 18px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  padding: 45px 0;
  background: url(../images/index_bg.png);
  background-size: cover;
}
.con_bg h1 span {
  display: inline-block;
  margin: 0 0 0 15px;
  font-size: 22px;
  font-weight: normal;
}

.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h2 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 0 0.2em;
  font-size: 24px;
  border-bottom: 3px solid #ccc;
}
.mcon h2:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #001d4f;
}
.mcon h3 {
  margin-top: 16px;
  margin-bottom: 16px;
  color: #333;
  font-size: 20px;
  border-bottom: 1px dotted #ccc;
}
.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,
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 15px;
}
.mcon ol li,
.mcon ul li {
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
}
.mcon ul li {
  margin-left: 1.5em;
  list-style-type: disc;
}
.mcon p {
  margin-bottom: 1em;
  font-size: 15px;
}
.mcon .alignright {
  display: block;
  margin: 0 0 0 auto !important;
  text-align: right;
}
.mcon .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
  text-align: left;
}
.mcon .aligncenter {
  display: block;
  margin: 0 auto !important;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */