@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP&display=swap");
@media screen and (max-width: 599px) {
  .pc { /* 599px以下のとき */
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .sp { /* 600px以上のとき */
    display: none;
  }
}

@media screen and (max-width: 599px) {
  img { /* 599px以下のとき */
    max-width: 100%;
    height: auto;
    width: auto;
  }
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0; /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
}

a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
  border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
  color: #42413C;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:visited {
  color: #6E6C64;
  text-decoration: underline;
}

a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

p {
  margin: 10px 0 0 0;
}

.red {
  color: red;
}

.orange {
  color: #F60;
}

.blue {
  color: #36C;
}

.blue2 {
  color: dodgerblue;
}

.violet {
  color: purple;
}

.green {
  color: green;
}

.brown {
  color: brown;
}

.grey {
  color: gray;
}

.sitecolor {
  color: #003b90;
}

.small85 {
  font-size: 85%;
}

.small90 {
  font-size: 90%;
}

.large11 {
  font-size: 1.1em;
}

.large12 {
  font-size: 1.2em;
}

.large14 {
  font-size: 1.4em;
}

.large18 {
  font-size: 1.8em;
}

.large25 {
  font-size: 2.5em;
}

.strong {
  font-weight: bold;
}

.tolist, .tolist02 {
  text-align: right;
  margin-top: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .tolist, .tolist02 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .tolist, .tolist02 { /* 600px以上のとき */
    width: 1000px;
  }
}

.tolist02 {
  width: 100%;
}

.pdfarea {
  width: 90%;
  padding: 15px 10px;
  font-size: 0.9em;
  text-align: left;
  border: 1px #ccc solid;
  margin: 0 auto;
  margin-top: 20px;
}

.link:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e"; /*アイコンのユニコード*/
  font: var(--fa-font-solid);
  position: relative; /*絶対位置*/
  font-size: 1.2em; /*サイズ*/
  color: #f00; /*アイコン色*/
  margin: -5px 0 0 5px;
}

.pdf:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f1c1"; /*アイコンのユニコード*/
  font: var(--fa-font-regular);
  position: relative; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  color: #f00; /*アイコン色*/
  margin: -5px 0 0 5px;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt { /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: right;
  margin-left: 8px;
}

.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: left;
  margin-right: 8px;
}

.clearfloat { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.kana {
  ime-mode: active;
}

.rome {
  ime-mode: disabled;
}

.lh20 {
  line-height: 2em;
}

.lh25 {
  line-height: 2.5em;
}

.imgarea {
  width: 100%;
  text-align: center;
  font-size: 1em;
  position: relative;
}
.imgarea a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.imgarea a:visited {
  text-decoration: none;
}

.imgarea02 {
  width: 49%;
  text-align: center;
  font-size: 1em;
  float: left;
}
.imgarea02 img {
  padding: 20px;
}

.imgarea03 {
  width: 33%;
  text-align: center;
  font-size: 0.9em;
  float: left;
  margin-top: 20px;
}

.imgarea04 {
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .imgarea04 { /* sp */
    width: 420px;
  }
}
@media screen and (max-width: 599px) {
  .imgarea04 { /* mobile */
    width: 320px;
  }
}

.imgarea-f {
  width: 100%;
  text-align: center;
  font-size: 1em;
  position: relative;
  display: flex;
}
.imgarea-f a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.imgarea-f a:visited {
  text-decoration: none;
}

.imgarea img, .imgarea02 img, .imgarea03 img {
  padding: 0;
}

/* square */
.square:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  margin: -5px 8px 0 5px;
  color: #003b90;
}

.shadow01 {
  box-shadow: 0 10px 8px -6px #8d8c8c;
}

.shadow02 {
  display: inline-block;
  position: relative;
  padding: 6px;
  box-shadow: 0 2px 6px #999;
  background-color: #fff;
  margin-bottom: 20px;
}
.shadow02 img {
  padding: 0;
}

.zoom, .zoom08 {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.zoom:hover {
  transform: scale(1.1);
}

.zoom08:hover {
  transform: scale(1.05);
}

.gray {
  filter: grayscale(0);
  transition: 0.3s ease-in-out;
}

.gray:hover {
  filter: grayscale(100%);
}

.opacity {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.opacity:hover {
  opacity: 0.5;
}

.e-flash:hover {
  opacity: 1;
  animation: flash 1.5s;
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 599px) {
  html { /* 599px以下のとき */
    position: relative;
    overflow-x: hidden;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS P Gothic", sans-serif;
  font-weight: 400;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8em;
  min-width: 1200px;
}
@media screen and (min-width: 600px) {
  body { /* PC */ }
}
@media screen and (max-width: 599px) {
  body { /* mobile */
    min-width: initial;
    position: relative;
    left: 0;
    overflow-x: hidden;
  }
}

.thin {
  font-weight: 100;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

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

/* ドロワーメニュー */
.ul_open_h {
  background: #003b90;
  color: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0;
  height: 100%;
  transition: 0.35s ease-in-out;
  overflow-y: scroll;
  position: fixed;
  z-index: 50;
  padding-top: 50px;
}
.ul_open_h li {
  padding: 5px;
  width: 220px;
  border-bottom: 1px #fff solid;
  font-size: 0.85em;
  font-family: "Noto Sans JP", sans-serif;
}
.ul_open_h li.bottom {
  margin-bottom: 100px;
}
.ul_open_h li a:link {
  color: #fff;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.ul_open_h li a:visited {
  color: #fff;
  text-decoration: underline;
}

.open-sub {
  margin: 0 0 0 20px;
  list-style-position: inside;
  list-style-type: disc;
  font-family: "Noto Sans JP", sans-serif;
}
.open-sub li {
  font-size: 1em;
  border-bottom: none;
  padding-top: 5px;
  line-height: 1.7em;
}

.dmenu {
  padding: 0 0 0 10px;
}

.open-1 {
  right: -100%;
}
.open-1.active {
  right: 0px;
}

.move-1.on.btn {
  position: fixed;
  right: 25px;
  top: 10px;
}

.btn {
  position: absolute;
  /*    background: #fff; */
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .btn { /* PC */
    position: absolute;
    top: 15px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .btn { /* mobile */
    position: absolute;
    top: 5px;
    right: 18px;
    width: 35px;
    height: 35px;
  }
}
.btn:before, .btn:after, .btn span {
  display: block;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.35s ease-in-out;
}
.btn span {
  background-color: #003b90;
  top: calc(50% - 1.5px);
}
@media screen and (min-width: 600px) {
  .btn span { /* 600px以上のとき */
    height: 5px;
  }
}
@media screen and (max-width: 599px) {
  .btn span { /* 600px以上のとき */
    height: 3px;
  }
}
.btn:before {
  content: "";
}
@media screen and (min-width: 600px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 5px);
    border-top: 5px solid #003b90;
  }
}
@media screen and (max-width: 599px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 3px);
    border-top: 3px solid #003b90;
  }
}
.btn:after {
  content: "";
}
@media screen and (min-width: 600px) {
  .btn:after { /* 600px以上のとき */
    bottom: calc(25% - 5px);
    border-top: 5px solid #003b90;
  }
}
@media screen and (max-width: 599px) {
  .btn:after { /* 600px以上のとき */
    bottom: calc(25% - 3px);
    border-top: 3px solid #003b90;
  }
}

.btn.on span {
  display: none;
}
.btn.on:before {
  top: calc(50% - 1.8px);
  transform: rotate(315deg);
  border-top: 5px solid #fff;
}
.btn.on:after {
  bottom: calc(50% - 1.5px);
  transform: rotate(-315deg);
  border-top: 5px solid #fff;
}

/* header */
#headwrap {
  width: 100%;
  position: relative;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 600px) {
  #headwrap {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headwrap {
    min-width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    height: 260px;
    background: url("./images/head_bk.jpg") left top repeat-x;
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    height: 135px;
    background: url("./images/head_bk_s.jpg") left top repeat-x;
  }
}

#headarea {
  margin: 0 auto;
  height: auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headarea { /* pc */
    min-height: 260px;
  }
}
@media screen and (max-width: 599px) {
  #headarea { /* mobile */
    min-height: 135px;
  }
}
@media screen and (min-width: 600px) {
  #headarea img.h-logo { /* pc */
    position: absolute;
    top: 2px;
    left: 5px;
  }
}
@media screen and (max-width: 599px) {
  #headarea img.h-logo { /* mobile */
    position: absolute;
    top: 4px;
    left: 10px;
    width: 60px;
  }
}
@media screen and (min-width: 600px) {
  #headarea img.h-title { /* pc */
    position: absolute;
    top: 25px;
    left: 163px;
  }
}
@media screen and (max-width: 599px) {
  #headarea img.h-title { /* mobile */
    position: absolute;
    top: 8px;
    left: 80px;
    width: 220px;
  }
}
#headarea a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#headarea a:visited {
  text-decoration: none;
}
#headarea a:hover, #headarea a:active, #headarea a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}
#headarea .h-menuarea01 {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea01 { /* pc */
    top: 120px;
    left: 350px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-menuarea01 { /* mobile */
    top: 60px;
    font-size: 14px;
  }
}
#headarea .h-menuarea01 div {
  float: left;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea01 div { /* pc */
    padding: 3px 50px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-menuarea01 div { /* mobile */
    padding: 3px 35px;
  }
}
#headarea .h-menuarea01 a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
  color: #fff;
}
#headarea .h-menuarea01 a:visited {
  text-decoration: none;
  color: #fff;
}
#headarea .h-menuarea01 a:hover, #headarea .h-menuarea01 a:active, #headarea .h-menuarea01 a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
  color: #fff;
}
#headarea .h-menuarea02, #headarea .h-menuarea022 {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea02, #headarea .h-menuarea022 { /* pc */
    bottom: 10px;
    left: 200px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-menuarea02, #headarea .h-menuarea022 { /* mobile */
    bottom: 0;
    left: 9px;
    font-size: 14px;
  }
}
#headarea .h-menuarea02 div, #headarea .h-menuarea022 div {
  float: left;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea02 div, #headarea .h-menuarea022 div { /* pc */
    padding: 3px 50px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-menuarea02 div, #headarea .h-menuarea022 div { /* mobile */
    padding: 1px 6px;
  }
}
#headarea .h-menuarea02 .f, #headarea .h-menuarea022 .f {
  border-right: 1px #666 solid;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea022 { /* pc */
    left: 280px;
  }
}
#headarea .hs-menu {
  color: #003b90;
  position: absolute;
}
@media screen and (min-width: 600px) {
  #headarea .hs-menu { /* pc */
    top: 60px;
    right: 22px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .hs-menu { /* mobile */
    top: 33px;
    right: 14px;
  }
}

/* main area */
main {
  width: 100%;
  min-height: 300px;
  text-align: center;
}

main.top {
  padding-bottom: 300px;
}
@media screen and (min-width: 600px) {
  main.top { /* PC */
    background: url("../images/main_bk.jpg") center bottom no-repeat;
  }
}
@media screen and (max-width: 599px) {
  main.top { /* mobile */
    background: url("../images/main_bk_s.jpg") center bottom no-repeat;
  }
}

#topwrap {
  width: 100%;
  text-align: left;
  position: relative;
  bottom: 0;
}

.bg-slider, .s-bg-slider {
  width: 100%;
  min-height: 550px;
  background-position: center center;
  background-size: cover;
  display: block;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s-bg-slider {
  background-position: center top;
  min-height: 254px;
  background-size: cover;
  margin: 0 auto;
}

/* top page */
#marea {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #marea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #marea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #marea { /* PC */
    min-height: 700px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  #marea { /* mobile */
    padding: 0 0 20px 0;
  }
}
#marea .bkimg {
  position: absolute;
  top: 20px;
  right: -80px;
}

#marea.top {
  padding-top: 50px;
}

.banner {
  margin: 10px 0 30px 0;
}
@media screen and (max-width: 599px) {
  .banner { /* mobile */
    width: 330px;
    margin: 10px 0;
  }
}

.centerBtn, #cararea .Btn {
  margin: 0 auto;
  border: 1px #003b90 solid;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .centerBtn, #cararea .Btn { /* PC */
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .centerBtn, #cararea .Btn { /* mobile */
    width: 250px;
  }
}
.centerBtn a:link, #cararea .Btn a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.centerBtn a:visited, #cararea .Btn a:visited {
  text-decoration: none;
}
.centerBtn div, #cararea .Btn div {
  background-color: rgba(255, 255, 255, 0.4);
  color: #003b90;
  font-family: "Noto Serif JP", serif;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .centerBtn div, #cararea .Btn div { /* PC */
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .centerBtn div, #cararea .Btn div { /* mobile */
    font-size: 16px;
  }
}
.centerBtn div:before, #cararea .Btn div:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.centerBtn div:hover, #cararea .Btn div:hover {
  background-color: #003b90;
  color: #fff;
}
.centerBtn div:hover:before, #cararea .Btn div:hover:before {
  transform: skewX(-45deg) translateX(20em);
  transition: all 0.5s ease-in-out;
}

#cararea {
  width: 970px;
  height: 320px;
  margin: 0 auto;
  border-top: 2px #ccc dotted;
  position: relative;
  margin-top: 20px;
}
#cararea .car {
  position: absolute;
  top: 30px;
  left: 50px;
}
#cararea .Btn {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

#toptitle {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #toptitle { /* PC */
    width: 1000px;
    min-height: 150px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  #toptitle { /* mobile */
    width: 360px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 600px) {
  #toptitle .n-title { /* PC */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  #toptitle .n-title { /* mobile */
    width: 320px;
    margin: 20px 0 0 10px;
    text-align: left;
  }
}
#toptitle .toptxt {
  margin: 20px 0 0 20px;
  text-align: left;
  width: 950px;
  float: left;
}

.sarea, .sarea2 {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .sarea, .sarea2 { /* PC */
    width: 33%;
    float: left;
    margin: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .sarea, .sarea2 { /* mobile */
    width: 320px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.sarea img.view, .sarea2 img.view {
  width: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 600px) {
  .sarea2 { /* PC */
    width: 50%;
  }
}
.sarea2 img.view {
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.daysttl {
  width: 280px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.view {
  width: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.view2 {
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.catetag, .new {
  margin: 0 5px;
  min-width: 30px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
  padding: 2px 10px;
  display: inline-block;
  background: #003b90; /* BOXの背景色         */
}

.new {
  background: #c98477; /* BOXの背景色         */
}

@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
.tolistBtn {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.tobutton {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: #003b90;
  border: 2px solid #003b90;
  font-size: 16px;
  display: inline-block;
  width: 200px;
  border-radius: 35px;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
}
.tobutton:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.tobutton:hover {
  background-color: #003b90;
  color: #fff;
}
.tobutton:hover:before {
  transform: skewX(-45deg) translateX(13.5em);
  transition: all 0.5s ease-in-out;
}

.next {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
}

.toprev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f100";
  font-weight: 900;
  font-size: 1.2em;
  color: #393a34;
}

.tonext:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  font-size: 1.2em;
  color: #393a34;
}

.kiji {
  margin: 0 auto;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .kiji { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .kiji { /* 600px以上のとき */
    width: 800px;
  }
}
.kiji:before {
  clear: both;
}

/* policy */
dl.policy {
  margin-top: 20px;
  margin-bottom: 20px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  dl.policy { /* pc */
    width: 950px;
  }
}
@media screen and (max-width: 599px) {
  dl.policy { /* mobile */
    width: 340px;
  }
}
dl.policy dt {
  font-size: 1.2em;
  text-align: left;
}
dl.policy dd {
  text-align: left;
  width: 900px;
}
@media screen and (min-width: 600px) {
  dl.policy dd { /* pc */
    margin: 5px 0 20px 30px;
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  dl.policy dd { /* mobile */
    margin: 5px 0 20px 10px;
    width: 320px;
  }
}
dl.policy ul {
  margin: 0 0 0 30px;
}

/* profile */
/* mail */
@media screen and (min-width: 600px) {
  .formarea { /* 600px以上のとき */
    width: 1000px;
    margin: 30px 0 0 100px;
  }
}
@media screen and (max-width: 599px) {
  .formarea { /* 600px以下のとき */
    width: 320px;
    margin: 0 auto;
  }
}

.hissu {
  display: inline-block;
  background-color: #FD080C;
  color: #fff;
  min-width: 30px;
  width: auto;
  font-size: 0.8em;
  border-radius: 20%;
  text-align: center;
  padding: 1px 3px;
  font-family: "Noto Sans JP", sans-serif;
}

form {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

form dl {
  margin: 0 0 0.25em 0;
  clear: both;
  display: inline-block;
  margin: 0 auto;
  list-style-type: none;
}
@media screen and (min-width: 600px) {
  form dl { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  form dl { /* 600px以下のとき */
    width: 320px;
  }
}

form dt {
  text-align: left;
}
@media screen and (min-width: 600px) {
  form dt { /* 600px以上のとき */
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  form dt { /* 600px以下のとき */
    width: 100%;
  }
}

form dd {
  margin: 0 0 2em 0;
  text-align: left;
  width: 72%;
  display: block;
}
@media screen and (min-width: 600px) {
  form dd { /* 600px以上のとき */
    float: left;
  }
}
@media screen and (max-width: 599px) {
  form dd { /* 600px以下のとき */
    width: 100%;
  }
}

form dd.order {
  margin: 0 0 0.8em 0;
  text-align: left;
  display: block;
}
@media screen and (min-width: 600px) {
  form dd.order { /* 600px以上のとき */
    float: left;
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  form dd.order { /* 600px以下のとき */
    width: 100%;
  }
}

label {
  margin: 0 0 0.5em 0;
  font-size: pxtoem(16, 16);
}

input {
  margin: 0 0 0.5em 0;
  border: 1px solid grey;
  padding: 6px 10px;
  color: dark_grey;
  font-size: pxtoem(16, 16);
}

textarea {
  border: 1px solid grey;
  padding: 6px 10px;
  width: 100%;
  color: dark_grey;
}

select {
  min-width: 100px;
  margin: 5px 0px;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

/* common */
@media screen and (max-width: 599px) {
  #navi { /* 599px以下のとき */
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #navi { /* 600px以上のとき */
    width: 1150px;
    margin: 0 auto;
    text-align: right;
    padding-top: 30px;
  }
}

h1.news {
  margin: 0 auto;
  position: relative;
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  h1.news { /* pc */
    width: 970px;
    height: 90px;
    line-height: 80px;
    background: url("../images/h1_bk_sub.png") center top no-repeat;
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  h1.news { /* mobile */
    width: 340px;
    height: 34px;
    background: url("../images/h1_bk_s.png") center top no-repeat;
    font-size: 18px;
    margin: 20px 0;
  }
}

.toptolist {
  position: absolute;
  bottom: 7px;
  right: 15px;
  color: #003b90;
  font-size: 15px;
  text-align: center;
  line-height: 30px;
  width: 90px; /* BOXの幅             */
  height: 30px; /* BOXの高さ           */
  background: #dceaf1; /* BOXの背景色         */
  border-radius: 13px; /* 角丸の指定          */
}
@media screen and (min-width: 600px) {
  .toptolist { /* pc */
    display: none;
  }
}
.toptolist a:link {
  color: #003b90;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.toptolist a:visited {
  color: #003b90;
  text-decoration: none;
}

h2.sub, h2.zai, h2.gr, h2.day, h2.kyo {
  position: relative;
  padding: 0 0 10px 20px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: left;
  padding: 5px 0 5px 20px;
  background-color: #edeeef;
}
@media screen and (min-width: 600px) {
  h2.sub, h2.zai, h2.gr, h2.day, h2.kyo { /* 600px以上のとき */
    font-size: 22px;
    border-left: 30px #74bbda solid;
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  h2.sub, h2.zai, h2.gr, h2.day, h2.kyo { /* 599px以下のとき */
    font-size: 18px;
    border-left: 20px #74bbda solid;
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  h2.zai { /* 600px以上のとき */
    border-left: 30px #97609A solid;
  }
}
@media screen and (max-width: 599px) {
  h2.zai { /* 599px以下のとき */
    border-left: 20px #97609A solid;
  }
}

@media screen and (min-width: 600px) {
  h2.gr { /* 600px以上のとき */
    border-left: 30px #56b559 solid;
  }
}
@media screen and (max-width: 599px) {
  h2.gr { /* 599px以下のとき */
    border-left: 20px #56b559 solid;
  }
}

@media screen and (min-width: 600px) {
  h2.day { /* 600px以上のとき */
    border-left: 30px #e95682 solid;
  }
}
@media screen and (max-width: 599px) {
  h2.day { /* 599px以下のとき */
    border-left: 20px #e95682 solid;
  }
}

@media screen and (min-width: 600px) {
  h2.kyo { /* 600px以上のとき */
    border-left: 30px #ed9b6b solid;
  }
}
@media screen and (max-width: 599px) {
  h2.kyo { /* 599px以下のとき */
    border-left: 20px #ed9b6b solid;
  }
}

h2.news {
  margin: 0 auto;
  position: relative;
  text-align: left;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  h2.news { /* pc */
    width: 900px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  h2.news { /* mobile */
    width: 340px;
    padding-top: 10px;
  }
}

@media screen and (max-width: 599px) {
  h2.sub02 { /* mobi */
    width: 320px; /* 幅指定 */
    font-size: 20px;
    padding-left: 0;
  }
}
@media screen and (min-width: 600px) {
  h2.sub02 { /* pc */
    width: 900px;
    font-size: 22px;
  }
}

h3.sub {
  position: relative; /*相対位置*/
  line-height: 1.4; /*行高*/
  text-align: left;
  margin: 20px 0 20px 100px;
  padding: 0 0 0 50px;
  font-size: 20px;
}
h3.sub:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f724"; /*アイコンのユニコード*/
  font: var(--fa-font-solid);
  position: absolute; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  left: 0; /*アイコンの位置*/
  top: 0; /*アイコンの位置*/
  color: #003b90; /*アイコン色*/
}

.txt {
  margin: 0 auto;
  line-height: 1.8em;
  font-size: 1em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .txt { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .txt { /* 600px以上のとき */
    width: 950px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.txt .indent {
  padding-left: 1em;
  text-indent: -1em;
}

.txt02 {
  margin: 0 auto;
  line-height: 1.8em;
  font-size: 1em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .txt02 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .txt02 { /* 600px以上のとき */
    width: 80%;
    margin-left: 15%;
  }
}
.txt02 .indent {
  padding-left: 1em;
  text-indent: -1em;
}

dl.sub, dl.sub02 {
  list-style-type: none;
  margin: 0 auto;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.sub, dl.sub02 { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub, dl.sub02 { /* 600px以上のとき */
    width: 900px;
  }
}
dl.sub dt, dl.sub02 dt {
  margin: 8px 0 8px 0;
  position: relative;
  width: 200px;
  float: left;
  line-height: 1.5em;
  text-align: left;
}
dl.sub dt:after, dl.sub02 dt:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.5em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #003b90;
  border-radius: 100%;
}
dl.sub dd, dl.sub02 dd {
  margin: 8px 0 8px 0;
  position: relative;
  float: left;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.sub dd, dl.sub02 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub dd, dl.sub02 dd { /* 600px以上のとき */
    width: 680px;
  }
}
dl.sub dd ol, dl.sub02 dd ol {
  list-style-position: outside;
  margin-left: 1.5em;
}

dl.sub02 dt:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.5em;
  left: -1em;
  width: 10px;
  height: 10px;
  border: 1px #003b90 solid;
  border-radius: 100%;
}

dl.day {
  list-style-type: none;
  margin: 0 auto;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.day { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.day { /* 600px以上のとき */
    width: 900px;
  }
}
dl.day dt {
  margin: 8px 0 8px 0;
  position: relative;
  line-height: 1.5em;
  text-align: left;
  font-size: 1.3em;
}
dl.day dd {
  margin: 8px 0 20px 20px;
  position: relative;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.day dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.day dd { /* 600px以上のとき */
    width: 680px;
  }
}

ul.sub, ul.sub04 {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
  list-style-position: outside;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  ul.sub, ul.sub04 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  ul.sub, ul.sub04 { /* 600px以上のとき */
    width: 950px;
  }
}
ul.sub li, ul.sub04 li {
  margin: 0 0 30px 0;
  text-align: left;
}

ul.sub02, ul.sub03 {
  list-style-type: none;
  list-style-position: outside;
}
@media screen and (min-width: 600px) {
  ul.sub02, ul.sub03 { /* pc */
    width: 550px;
    margin: 0 auto;
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  ul.sub02, ul.sub03 { /* sp */
    width: 300px;
    margin: 0 0 5px 30px;
  }
}
ul.sub02 li, ul.sub03 li {
  margin: 0 0 10px 0;
  position: relative;
  line-height: 1.5em;
  text-align: left;
}
ul.sub02 li:after, ul.sub03 li:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #003b90;
  border-radius: 100%;
}

@media screen and (min-width: 600px) {
  ul.sub03 { /* pc */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  ul.sub03 { /* sp */ }
}
ul.sub03 li {
  margin: 0 0 30px 0;
}

ul.sub04 {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  ul.sub04 { /* pc */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  ul.sub04 { /* sp */ }
}
ul.sub04 li {
  margin: 0 0 10px 0;
}

/* ~~ フッター ~~ */
footer {
  border-top: 5px #003b90 solid;
}
@media screen and (min-width: 600px) {
  footer { /* 600px以上のとき */
    min-height: 585px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    background: url("./images/footer_bk.jpg") center bottom no-repeat;
    min-height: 150px;
  }
}

#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
}

#farea {
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #farea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #farea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #farea { /* 600px以上のとき */
    padding-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  #farea {
    padding-top: 5px;
  }
}

.footer1 {
  text-align: center;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .footer1 { /* PC */
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 {
    min-height: 150px;
  }
}
.footer1 .f-logo {
  width: 100%;
  text-align: center;
  display: block;
}
@media screen and (min-width: 600px) {
  .footer1 .f-logo { /* 600px以上のとき */
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-logo {
    font-size: 14px;
    margin: 0 auto;
    padding-top: 5px;
    text-align: center;
  }
}
.footer1 .f-menuarea {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .footer1 .f-menuarea { /* pc */
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-menuarea { /* mobile */
    font-size: 16px;
  }
}
.footer1 .f-menuarea div.f-txt {
  padding: 0 30px 0 0;
  font-weight: 500;
  color: #003b90;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .footer1 .f-menuarea div.f-txt { /* pc */
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-menuarea div.f-txt { /* mobile */
    display: none;
  }
}
.footer1 .f-menuarea div.fs-txt {
  font-weight: 500;
  color: #003b90;
  position: absolute;
  top: 120px;
  left: 90px;
}
@media screen and (min-width: 600px) {
  .footer1 .f-menuarea div.fs-txt { /* pc */
    display: none;
  }
}
.footer1 .f-menuarea div.f-top {
  background-color: #003b90;
  color: #fff;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .footer1 .f-menuarea div.f-top { /* pc */
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 35px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-menuarea div.f-top { /* mobile */
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 0 20px;
  }
}
.footer1 .f-menuarea div.f-top a:link, .footer1 .f-menuarea div.f-top a:visited {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.footer1 .f-menuarea a:link, .footer1 .f-menuarea a:visited {
  color: #003b90;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.footer2 {
  padding: 0 0 20px 0;
  text-align: center;
  position: relative;
  height: auto;
  width: 100%;
  text-align: center;
  font-size: 15px;
}
.footer2 .fmenu1 {
  margin: 10px 20px 0 20px;
  width: 330px;
  min-height: 340px;
  text-align: left;
  vertical-align: top;
  display: block;
  height: auto;
  line-height: 2em;
  display: inline-block;
}
.footer2 .fmenu1 a:link, .footer2 .fmenu1 a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.footer2 .fmenu1 .tag0, .footer2 .fmenu1 .tag4, .footer2 .fmenu1 .tag3, .footer2 .fmenu1 .tag2, .footer2 .fmenu1 .tag1 {
  width: 290px;
  padding: 3px 0 3px 10px;
  background-color: #edeeef;
  border-left: 30px #74bbda solid;
  font-size: 18px;
}
.footer2 .fmenu1 .tag1 {
  border-left: 30px #97609A solid;
}
.footer2 .fmenu1 .tag2 {
  border-left: 30px #56b559 solid;
}
.footer2 .fmenu1 .tag3 {
  border-left: 30px #e95682 solid;
}
.footer2 .fmenu1 .tag4 {
  border-left: 30px #ed9b6b solid;
}
.footer2 .fmenu1 .item {
  width: 300px;
  margin: 10px 0 20px 30px;
}

#fcopy {
  border-top: 2px #003b90 solid;
  width: 100%;
  display: block;
  text-align: center;
  padding: 0 0 8px 0;
  font-size: 1em;
}
@media screen and (min-width: 600px) {
  #fcopy { /* pc */
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  #fcopy {
    margin-top: 5px;
  }
}
#fcopy div {
  margin: 0 auto;
  min-height: 15px;
  height: auto;
  position: relative;
  font-size: 0.85em;
}/*# sourceMappingURL=sub_style.css.map */