@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&family=Murecho&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: #001786;
}

.small75 {
  font-size: 75%;
}

.small85 {
  font-size: 85%;
}

.large11 {
  font-size: 1.1em;
}

.large12 {
  font-size: 1.2em;
}

.large14 {
  font-size: 1.4em;
}

.large18 {
  font-size: 1.8em;
}

.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 5 Free";
  content: "\f0da";
  font-weight: 900;
  color: #000;
  margin: -5px 0 0 5px;
  font-size: 1.2em;
}

.pdf:after {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 400;
  color: #F00;
  margin: -5px 0 0 5px;
  font-size: 1.2em;
}

/* ~~ その他の 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;
}

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

.imgarea02-r {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .imgarea02-r { /* 599px以下のとき */
    text-align: center;
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .imgarea02-r { /* 600px以上のとき */
    text-align: right;
  }
}

@media screen and (max-width: 599px) {
  .imgarea02-l { /* 599px以下のとき */
    text-align: center;
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .imgarea02-l { /* 600px以上のとき */
    text-align: left;
  }
}

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

.imgarea img, .imgarea02 img, .imgarea02-r img, .imgarea02-l 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: #001786;
}

.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: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS P Gothic", sans-serif;
  background-color: #f0efed;
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-family: "UD新ゴ R";
}
@media screen and (max-width: 600px) {
  body {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  body {
    min-width: 1220px;
  }
}
@media screen and (max-width: 599px) {
  body { /* 600px以上のとき */
    position: relative;
    left: 0;
    overflow-x: hidden;
  }
}

/* ドロワーメニュー */
.ul_open_h {
  background: #001786;
  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: 7px;
  width: 220px;
  border-bottom: 1px #fff solid;
  font-size: 0.85em;
}
.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;
}
.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: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .btn { /* mobile */
    position: absolute;
    top: 17px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}
.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: #fff;
  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: "";
  border-top: 5px solid #fff;
}
@media screen and (min-width: 600px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 5px);
  }
}
@media screen and (max-width: 599px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 3px);
  }
}
.btn:after {
  content: "";
  border-top: 5px solid #fff;
}
@media screen and (min-width: 600px) {
  .btn:after { /* 600px以上のとき */
    bottom: calc(25% - 5px);
  }
}
@media screen and (max-width: 599px) {
  .btn:after { /* 600px以上のとき */
    bottom: calc(25% - 3px);
  }
}

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

/* header */
#headwrap {
  width: 100%;
  position: relative;
  background-color: #001786;
}
@media screen and (max-width: 600px) {
  #headwrap {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headwrap {
    min-width: 1220px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    height: 140px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    height: 105px;
  }
}

#headarea {
  margin: 0 auto;
  height: auto;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 600px) {
  #headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headarea {
    width: 1220px;
  }
}
@media screen and (min-width: 600px) {
  #headarea { /* 600px以上のとき */
    min-height: 165px;
    color: #fff;
  }
}
@media screen and (max-width: 599px) {
  #headarea { /* 600px以下のとき */
    min-height: 105px;
  }
}
@media screen and (min-width: 600px) {
  #headarea img.h-logo { /* 600px以上のとき */
    position: absolute;
    top: 25px;
    left: 31px;
  }
}
@media screen and (max-width: 599px) {
  #headarea img.h-logo { /* 600px以下のとき */
    position: absolute;
    top: 13px;
    left: 20px;
    width: 280px;
  }
}
#headarea a:link {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#headarea a:visited {
  color: #fff;
  text-decoration: none;
}
#headarea a:hover, #headarea a:active, #headarea a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}
#headarea .h-menuarea {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea { /* pc */
    top: 50px;
    left: 800px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-menuarea { /* mobile */
    bottom: 2px;
    left: 20px;
    width: 320px;
  }
}
#headarea .h-menuarea div {
  float: left;
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  #headarea .hs-menu { /* pc */
    position: absolute;
    top: 82px;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .hs-menu { /* mobile */
    position: absolute;
    top: 50px;
    right: 8px;
    font-size: 14px;
  }
}

#topwrap {
  width: 100%;
  text-align: left;
}

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

.s-bg-slider {
  width: 100%;
  height: 205px;
  margin: 0 auto;
}

/* main area */
main {
  min-height: 300px;
  padding-bottom: 30px;
}

/* top page */
#marea {
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
  text-align: center;
  min-height: 100px;
}
@media screen and (max-width: 600px) {
  #marea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #marea {
    width: 1220px;
  }
}
@media screen and (min-width: 600px) {
  #marea { /* PC */
    padding: 0 0 50px 0;
  }
}
@media screen and (max-width: 599px) {
  #marea { /* mobile */
    padding: 0 0 20px 0;
  }
}

#toptitle {
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  #toptitle { /* PC */
    width: 1200px;
  }
}
@media screen and (max-width: 599px) {
  #toptitle { /* mobile */
    width: 320px;
    padding-bottom: 20px;
  }
}
#toptitle .top-tolist {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #toptitle .top-tolist { /* PC */
    left: 60px;
    bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  #toptitle .top-tolist { /* mobile */
    right: 20px;
    top: 15px;
  }
}
#toptitle .top-tolist a:link, #toptitle .top-tolist a:visited {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#toptitle .top-tolist a:hover, #toptitle .top-tolist a:active, #toptitle .top-tolist a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}
#toptitle .n-title {
  text-align: left;
  float: left;
  /*
        & :before{
           font-family: "Font Awesome 5 Free";
           content: "\f111";
           font-weight: 900;

           color:$sitecolor;
           margin-right:10px;
        }
  */
}
@media screen and (min-width: 600px) {
  #toptitle .n-title { /* PC */
    width: 950px;
    margin: 20px 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #toptitle .n-title { /* mobile */
    width: 300px;
    margin: 20px 0 0 10px;
  }
}
#toptitle .n-title .new {
  color: red;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
#toptitle .n-title .new:before {
  content: none;
}
#toptitle .toptxt {
  margin: 20px 0 0 20px;
  text-align: left;
  width: 950px;
  float: left;
}

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

#menuarea {
  width: 1199px;
  margin: 0 auto;
  min-height: 1197px;
  min-height: 997px;
  margin-top: 30px;
  position: relative;
  color: #fff;
}
#menuarea .intro {
  position: absolute;
  top: 0;
  left: 0;
}
#menuarea .intro .m-txt {
  position: absolute;
  text-align: left;
  font-family: "Folk Medium";
  font-size: 24px;
  line-height: 1.8em;
  top: 250px;
  left: 30px;
}
#menuarea .tugaku {
  position: absolute;
  top: 0;
  right: 0;
}
#menuarea .tugaku .arrow {
  position: absolute;
  top: 270px;
  left: 280px;
}
#menuarea .tugaku .m-txt02 {
  width: 600px;
  position: absolute;
  top: 350px;
  left: 0;
  font-size: 16px;
  line-height: 1.8em;
}
#menuarea .tugaku .m-txt02 .m-ttl {
  font-size: 30px;
  font-family: "Folk Medium";
}
#menuarea .kojin {
  position: absolute;
  bottom: 0;
  left: 0;
}
#menuarea .kojin .arrow {
  position: absolute;
  top: 280px;
  left: 280px;
}
#menuarea .kojin .m-txt02 {
  width: 600px;
  position: absolute;
  top: 360px;
  left: 0;
  font-size: 16px;
  line-height: 1.8em;
}
#menuarea .kojin .m-txt02 .m-ttl {
  font-size: 30px;
  font-family: "Folk Medium";
}
#menuarea .hojin {
  position: absolute;
  bottom: 0;
  right: 0;
}
#menuarea .hojin .arrow {
  position: absolute;
  top: 280px;
  left: 280px;
}
#menuarea .hojin .m-txt02 {
  width: 600px;
  position: absolute;
  top: 360px;
  left: 0;
  font-size: 16px;
  line-height: 1.8em;
}
#menuarea .hojin .m-txt02 .m-ttl {
  font-size: 30px;
  font-family: "Folk Medium";
}
#menuarea a:link {
  color: #fff;
}
#menuarea a:visited {
  color: #fff;
}

#menuarea-sp {
  width: 320px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  color: #fff;
}
#menuarea-sp .intro {
  margin-bottom: 10px;
}
#menuarea-sp .tugaku, #menuarea-sp .kojin, #menuarea-sp .hojin {
  margin-bottom: 10px;
  position: relative;
}
#menuarea-sp .tugaku .arrow, #menuarea-sp .kojin .arrow, #menuarea-sp .hojin .arrow {
  position: absolute;
  top: 180px;
  right: 15px;
}
#menuarea-sp .tugaku .m-txt02, #menuarea-sp .kojin .m-txt02, #menuarea-sp .hojin .m-txt02 {
  width: 300px;
  position: absolute;
  top: 170px;
  left: 10px;
  line-height: 1.4em;
  font-size: 18px;
  font-family: "Folk Medium";
  text-align: left;
}
#menuarea-sp a:link {
  color: #fff;
}
#menuarea-sp a:visited {
  color: #fff;
}

#subarea {
  position: relative;
  padding-bottom: 50px;
  background-color: #fff;
  text-align: left;
}
@media screen and (min-width: 600px) {
  #subarea { /* 600px以上のとき */
    width: 1200px;
    margin: 0 auto;
    min-height: 800px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  #subarea { /* 599px以下のとき */
    width: 360px;
    margin: 0 auto;
    margin-top: 20px;
    padding-top: 10px;
  }
}

.guide {
  margin: 20px 50px;
  line-height: 1.8em;
}

.introduction {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  height: 365px;
}
@media screen and (min-width: 600px) {
  .introduction { /* 600px以上のとき */
    width: 950px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .introduction { /* 599px以下のとき */
    width: 360px;
    margin: 0 auto;
    margin-top: 20px;
    padding-top: 10px;
  }
}
.introduction div {
  color: #fff;
  font-size: 20px;
  position: absolute;
  line-height: 1.7em;
}
@media screen and (min-width: 600px) {
  .introduction div { /* 600px以上のとき */
    top: 40px;
    left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .introduction div { /* 599px以下のとき */
    top: 20px;
    left: 10px;
  }
}

.busiarea, .kokugoarea, .kobetuarea {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .busiarea, .kokugoarea, .kobetuarea { /* 600px以上のとき */
    width: 950px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea, .kokugoarea, .kobetuarea { /* 599px以下のとき */
    width: 340px;
    margin-top: 30px;
  }
}
.busiarea .rect, .kokugoarea .rect, .kobetuarea .rect {
  margin: 0 auto;
  margin-top: 7px;
  margin-bottom: 7px;
  padding: 0.5em 0;
  border: 3px #001786 solid;
  border-radius: 10px;
  font-family: "M PLUS 1p";
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}
@media screen and (min-width: 600px) {
  .busiarea .rect, .kokugoarea .rect, .kobetuarea .rect { /* 600px以上のとき */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea .rect, .kokugoarea .rect, .kobetuarea .rect { /* 599px以下のとき */
    width: 320px;
  }
}
.busiarea .maru1, .kokugoarea .maru1, .kobetuarea .maru1, .busiarea .maru5, .kokugoarea .maru5, .kobetuarea .maru5, .busiarea .maru4, .kokugoarea .maru4, .kobetuarea .maru4, .busiarea .maru3, .kokugoarea .maru3, .kobetuarea .maru3, .busiarea .maru2, .kokugoarea .maru2, .kobetuarea .maru2 {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #b7002c;
  color: #fff;
  font-family: "M PLUS 1p";
  font-size: 18px;
  line-height: 80px;
}
@media screen and (min-width: 600px) {
  .busiarea .maru1, .kokugoarea .maru1, .kobetuarea .maru1, .busiarea .maru5, .kokugoarea .maru5, .kobetuarea .maru5, .busiarea .maru4, .kokugoarea .maru4, .kobetuarea .maru4, .busiarea .maru3, .kokugoarea .maru3, .kobetuarea .maru3, .busiarea .maru2, .kokugoarea .maru2, .kobetuarea .maru2 { /* 600px以上のとき */
    top: -60px;
    right: 250px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea .maru1, .kokugoarea .maru1, .kobetuarea .maru1, .busiarea .maru5, .kokugoarea .maru5, .kobetuarea .maru5, .busiarea .maru4, .kokugoarea .maru4, .kobetuarea .maru4, .busiarea .maru3, .kokugoarea .maru3, .kobetuarea .maru3, .busiarea .maru2, .kokugoarea .maru2, .kobetuarea .maru2 { /* 599px以下のとき */
    top: -60px;
    right: 20px;
  }
}
@media screen and (min-width: 600px) {
  .busiarea .maru2, .kokugoarea .maru2, .kobetuarea .maru2 { /* 600px以上のとき */
    top: 70px;
    right: 150px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea .maru2, .kokugoarea .maru2, .kobetuarea .maru2 { /* 599px以下のとき */
    top: 100px;
  }
}
@media screen and (min-width: 600px) {
  .busiarea .maru3, .kokugoarea .maru3, .kobetuarea .maru3 { /* 600px以上のとき */
    top: 200px;
    right: 50px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea .maru3, .kokugoarea .maru3, .kobetuarea .maru3 { /* 599px以下のとき */
    top: 320px;
  }
}
@media screen and (min-width: 600px) {
  .busiarea .maru4, .kokugoarea .maru4, .kobetuarea .maru4 { /* 600px以上のとき */
    top: 330px;
    right: 150px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea .maru4, .kokugoarea .maru4, .kobetuarea .maru4 { /* 599px以下のとき */
    top: 440px;
  }
}
@media screen and (min-width: 600px) {
  .busiarea .maru5, .kokugoarea .maru5, .kobetuarea .maru5 { /* 600px以上のとき */
    top: 490px;
  }
}
@media screen and (max-width: 599px) {
  .busiarea .maru5, .kokugoarea .maru5, .kobetuarea .maru5 { /* 599px以下のとき */
    top: 570px;
  }
}

@media screen and (min-width: 600px) {
  .kobetuarea { /* PC */
    width: 500px;
  }
  .kobetuarea .rect {
    width: 500px;
  }
}
@media screen and (max-width: 599px) {
  .kobetuarea { /* mobile */
    width: 320px;
  }
  .kobetuarea .rect {
    width: 320px;
  }
}

@media screen and (min-width: 600px) {
  .kokugoarea { /* PC */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .kokugoarea { /* mobile */
    width: 340px;
  }
}
.kokugoarea .rect {
  border: 3px brown solid;
}

/* homework */
.hwarea {
  border-bottom: 1px #001786 solid;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .hwarea { /* PC */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .hwarea { /* mobile */
    width: 340px;
  }
}
.hwarea .hwtitle {
  text-align: left;
  font-size: 18px;
}
@media screen and (min-width: 600px) {
  .hwarea .hwtitle { /* PC */
    width: 800px;
    margin: 10px 0 10px 30px;
  }
}
@media screen and (max-width: 599px) {
  .hwarea .hwtitle { /* mobile */
    width: 330px;
    margin: 10px 0 10px 0;
  }
}
.hwarea .hwmsg {
  text-align: left;
}
@media screen and (min-width: 600px) {
  .hwarea .hwmsg { /* PC */
    width: 700px;
    float: right;
  }
}
@media screen and (max-width: 599px) {
  .hwarea .hwmsg { /* mobile */
    width: 330px;
    margin: 0 auto;
  }
}
.hwarea .hwtolist {
  width: 100%;
  text-align: right;
  float: right;
  margin: 10px 0;
}

/* staff */
.staffarea {
  border-bottom: 1px #001786 solid;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .staffarea { /* PC */
    width: 900px;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .staffarea { /* mobile */
    width: 340px;
    padding: 10px;
  }
}
.staffarea .sfname {
  text-align: left;
  font-size: 18px;
}
@media screen and (min-width: 600px) {
  .staffarea .sfname { /* PC */
    width: 800px;
    margin: 10px 0 10px 0;
  }
}
@media screen and (max-width: 599px) {
  .staffarea .sfname { /* mobile */
    width: 330px;
    margin: 10px 0 10px 0;
  }
}
@media screen and (min-width: 600px) {
  .staffarea .sfarea { /* PC */
    width: 800px;
    margin: 10px 0 10px 0;
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .staffarea .sfarea { /* mobile */
    width: 330px;
    margin: 10px 0 10px 0;
  }
}
.staffarea .sfimg {
  width: 300px;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
}
.staffarea .sfimg img {
  width: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}
.staffarea .sfmsg {
  padding: 5px;
  box-sizing: border-box;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .staffarea .sfmsg { /* PC */
    width: 700px;
  }
}
@media screen and (max-width: 599px) {
  .staffarea .sfmsg { /* mobile */
    width: 330px;
    margin: 0 auto;
  }
}
.staffarea .sftolist {
  width: 100%;
  text-align: right;
  float: right;
  margin: 10px 0;
}

.n-title2 {
  margin: 0 auto;
  font-size: 1em;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .n-title2 { /* 600px以上のとき */
    margin-bottom: 10px;
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  .n-title2 { /* 599px以下のとき */
    width: 320px;
    padding: 10px 0 5px 10px;
  }
}
.n-title2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
  color: #001786;
  margin-right: 10px;
}
.n-title2 .new {
  color: red;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
.n-title2 .new:before {
  content: none;
}

@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, .tobutton-brown, .tobutton-violet, .tobutton-orange, .tobutton-blue2, .tobutton-blue, .tobutton-green, .tobutton-red, .tobutton-hw {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: #001786;
  border: 2px solid #001786;
  font-size: 16px;
  display: inline-block;
  border-radius: 0.3em;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
}
.tobutton:before, .tobutton-brown:before, .tobutton-violet:before, .tobutton-orange:before, .tobutton-blue2:before, .tobutton-blue:before, .tobutton-green:before, .tobutton-red:before, .tobutton-hw: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, .tobutton-brown:hover, .tobutton-violet:hover, .tobutton-orange:hover, .tobutton-blue2:hover, .tobutton-blue:hover, .tobutton-green:hover, .tobutton-red:hover, .tobutton-hw:hover {
  background-color: #001786;
  color: #fff;
}
.tobutton:hover:before, .tobutton-brown:hover:before, .tobutton-violet:hover:before, .tobutton-orange:hover:before, .tobutton-blue2:hover:before, .tobutton-blue:hover:before, .tobutton-green:hover:before, .tobutton-red:hover:before, .tobutton-hw:hover:before {
  transform: skewX(-45deg) translateX(13.5em);
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 599px) {
  .tobutton-hw { /* 599px以下のとき */
    width: 250px;
  }
}
@media screen and (min-width: 600px) {
  .tobutton-hw { /* 600px以上のとき */
    width: 450px;
  }
}

.tobutton-red {
  color: red;
  border: 2px solid red;
}
.tobutton-red:hover {
  background-color: red;
}

.tobutton-green {
  color: green;
  border: 2px solid green;
}
.tobutton-green:hover {
  background-color: green;
}

.tobutton-blue {
  color: #36C;
  border: 2px solid #36C;
}
.tobutton-blue:hover {
  background-color: #36C;
}

.tobutton-blue2 {
  color: dodgerblue;
  border: 2px solid dodgerblue;
}
.tobutton-blue2:hover {
  background-color: dodgerblue;
}

.tobutton-orange {
  color: #f60;
  border: 2px solid #f60;
}
.tobutton-orange:hover {
  background-color: #f60;
}

.tobutton-violet {
  color: purple;
  border: 2px solid purple;
}
.tobutton-violet:hover {
  background-color: purple;
}

.tobutton-brown {
  color: brown;
  border: 2px solid brown;
}
.tobutton-brown:hover {
  background-color: brown;
}

.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;
}

/* 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;
  padding: 3px;
  background-color: #FD080C;
  color: #fff;
  min-width: 30px;
  width: auto;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
}

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;
  }
}

@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%;
  }
}

@media screen and (min-width: 600px) {
  .input-area { /* 600px以上のとき */
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .input-area { /* 600px以下のとき */
    width: 90%;
  }
}

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;
    margin-top: 10px;
  }
}

h1.sub {
  text-align: left; /* 文字位置指定 */
  margin: 0 auto;
  margin-top: 20px;
  padding: 0.5em 0;
  border-top: 3px #001786 solid;
  border-bottom: 3px #001786 solid;
  font-family: "Folk Medium";
}
@media screen and (max-width: 599px) {
  h1.sub { /* mobile */
    width: 360px; /* 幅指定 */
    font-size: 22px; /* 文字サイズ指定 */
  }
}
@media screen and (min-width: 600px) {
  h1.sub { /* PC */
    width: 1150px; /* 幅指定 */
    font-size: 26px; /* 文字サイズ指定 */
  }
}
h1.sub div {
  margin-left: 20px;
  line-height: 1.3em;
}

h2.sub {
  position: relative;
  padding-bottom: 0.2em;
  padding-left: 20px;
  border-bottom: 4px solid #ccc;
  margin: 0 auto;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  h2.sub { /* 599px以下のとき */
    width: 340px; /* 幅指定 */
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  h2.sub { /* 600px以上のとき */
    width: 1100px;
    font-size: 22px;
  }
}
h2.sub:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 4px;
  background-color: #001786;
}

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

.reg-txt {
  line-height: 1.5em;
  font-size: 0.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .reg-txt { /* 599px以下のとき */
    margin: 0 auto;
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .reg-txt { /* 600px以上のとき */
    margin: 40px 0 0 450px;
    width: 800px;
  }
}

.adultarea {
  border-top: 2px orange dashed;
  padding: 20px 0;
}
@media screen and (min-width: 600px) {
  .adultarea { /* 600px以上のとき */
    width: 900px;
  }
}

ul {
  list-style-position: outside;
  margin: 0 0 0 1em;
}

ul.sub {
  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 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  ul.sub { /* 600px以上のとき */
    width: 1000px;
  }
}
ul.sub li {
  margin: 0 0 30px 0;
}

.dltable {
  border: 1px solid #000;
  border-right: none;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .dltable { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .dltable { /* 600px以上のとき */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .dltable { /* 599px以下のとき */ }
  .dltable .row1 {
    width: 79px;
  }
  .dltable .row2 {
    width: 100px;
  }
  .dltable .row3 {
    width: 52px;
  }
  .dltable .row4 {
    width: 77px;
  }
  .dltable .row5 {
    width: 105px;
  }
  .dltable .row6 {
    width: 170px;
  }
  .dltable .row7 {
    width: 168px;
  }
}
@media screen and (min-width: 600px) {
  .dltable { /* 600px以上のとき */ }
  .dltable .row1 {
    width: 165px;
  }
  .dltable .row2 {
    width: 400px;
  }
  .dltable .row3 {
    width: 110px;
  }
  .dltable .row4 {
    width: 225px;
  }
  .dltable .row5 {
    width: 221px;
  }
  .dltable .row6 {
    width: 450px;
  }
  .dltable .row7 {
    width: 448px;
  }
}
.dltable dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.dltable dl:last-child {
  border-bottom: none;
}
.dltable dl dt {
  margin: 0;
  padding: 10px 0;
  background: antiquewhite none repeat scroll 0 0;
  border-right: 1px solid #000;
  color: #333;
}
.dltable dl dd {
  margin: 0;
  padding: 10px 0;
  border-right: 1px solid #000;
}
.dltable dl dd.bk-violet {
  background-color: rgba(128, 0, 128, 0.2);
}

.bk-red {
  background-color: rgba(255, 0, 0, 0.2);
}

.bk-green {
  background-color: rgba(0, 128, 0, 0.2);
}

.bk-blue {
  background-color: rgba(51, 102, 104, 0.2);
}

.bk-blue2 {
  background-color: rgba(30, 144, 255, 0.2);
}

.bk-orange {
  background-color: rgba(255, 102, 0, 0.2);
}

.wrap-dltable {
  margin: 0 auto;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .wrap-dltable { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .wrap-dltable { /* 600px以上のとき */
    width: 900px;
  }
}

#submenu {
  min-height: 70px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  #submenu { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  #submenu { /* 600px以上のとき */
    width: 1000px;
  }
}
#submenu .submenuarea {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
#submenu .b-btn, #submenu .b-btn-orange, #submenu .b-btn-brown, #submenu .b-btn-violet, #submenu .b-btn-blue2, #submenu .b-btn-blue, #submenu .b-btn-green, #submenu .b-btn-red {
  border: 3px #001786 solid;
  font-family: "M PLUS 1p";
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  #submenu .b-btn, #submenu .b-btn-orange, #submenu .b-btn-brown, #submenu .b-btn-violet, #submenu .b-btn-blue2, #submenu .b-btn-blue, #submenu .b-btn-green, #submenu .b-btn-red { /* 599px以下のとき */
    margin: 0 auto;
    margin: 10px 20px 10px 0;
    width: 335px;
    padding: 0.5em 0;
  }
}
@media screen and (min-width: 600px) {
  #submenu .b-btn, #submenu .b-btn-orange, #submenu .b-btn-brown, #submenu .b-btn-violet, #submenu .b-btn-blue2, #submenu .b-btn-blue, #submenu .b-btn-green, #submenu .b-btn-red { /* 600px以上のとき */
    margin: 0 14px 10px 14px;
    min-width: 280px;
    float: left;
    padding: 0.5em 0.3em;
  }
}
#submenu .b-btn:hover, #submenu .b-btn-orange:hover, #submenu .b-btn-brown:hover, #submenu .b-btn-violet:hover, #submenu .b-btn-blue2:hover, #submenu .b-btn-blue:hover, #submenu .b-btn-green:hover, #submenu .b-btn-red:hover {
  color: #fff;
}
#submenu .b-btn-red {
  border: 3px red solid;
}
#submenu .b-btn-red:hover {
  background-color: red;
}
#submenu .b-btn-green {
  border: 3px green solid;
}
#submenu .b-btn-green:hover {
  background-color: green;
}
#submenu .b-btn-blue {
  border: 3px #36c solid;
}
#submenu .b-btn-blue:hover {
  background-color: #36c;
}
#submenu .b-btn-blue2 {
  border: 3px dodgerblue solid;
}
#submenu .b-btn-blue2:hover {
  background-color: dodgerblue;
}
#submenu .b-btn-violet {
  border: 3px purple solid;
}
#submenu .b-btn-violet:hover {
  background-color: purple;
}
#submenu .b-btn-brown {
  border: 3px brown solid;
}
#submenu .b-btn-brown:hover {
  background-color: brown;
}
#submenu .b-btn-orange {
  border: 3px orange solid;
}
#submenu .b-btn-orange:hover {
  background-color: orange;
}

summary {
  width: 100%;
  border-top: 1px #001786 solid;
  border-bottom: 1px #001786 solid;
  padding: 0.5em 0;
  background-color: #001786;
  color: #fff;
}

.menuttl {
  font-size: 18px;
  margin: 20px 0 10px 0;
}

h2.news {
  position: relative;
  padding-bottom: 0.2em;
  padding-left: 20px;
  border-bottom: 2px dotted #666;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  h2.news { /* 599px以下のとき */
    width: 340px; /* 幅指定 */
    font-size: 20px; /* 文字サイズ指定 */
  }
}
@media screen and (min-width: 600px) {
  h2.news { /* 600px以上のとき */
    width: 980px;
    font-size: 22px; /* 文字サイズ指定 */
  }
}

h3.sub {
  position: relative;
  color: white;
  padding: 0.5em 0.5em 0.5em 1.4em;
  background-color: #001786;
  text-align: left;
}
@media screen and (max-width: 599px) {
  h3.sub { /* 599px以下のとき */
    width: 320px; /* 幅指定 */
    margin: 40px 0 20px 0;
  }
}
@media screen and (min-width: 600px) {
  h3.sub { /* 600px以上のとき */
    width: 400px;
    margin: 40px 0 20px 50px;
  }
}
h3.sub:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 4px;
  background-color: white;
}

h3.class, h3.class-red, h3.class-green, h3.class-blue, h3.class-blue2,
h3.class-violet, h3.class-orange, h3.class-brown {
  position: relative;
  padding: 0 0.5em 0.5em 1.7em;
  font-family: "M PLUS 1p";
  text-align: left;
  line-height: 30px;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  h3.class, h3.class-red, h3.class-green, h3.class-blue, h3.class-blue2,
  h3.class-violet, h3.class-orange, h3.class-brown { /* 599px以下のとき */
    margin-left: 0px;
  }
}
@media screen and (min-width: 600px) {
  h3.class, h3.class-red, h3.class-green, h3.class-blue, h3.class-blue2,
  h3.class-violet, h3.class-orange, h3.class-brown { /* 600px以上のとき */
    margin-left: 80px;
  }
}
h3.class:after, h3.class-red:after, h3.class-green:after, h3.class-blue:after, h3.class-blue2:after,
h3.class-violet:after, h3.class-orange:after, h3.class-brown:after {
  position: absolute;
  top: 0.4em;
  left: 0.4em;
  z-index: 2;
  content: "";
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}

h3.class-red:after {
  background-color: red;
}

h3.class-green:after {
  background-color: green;
}

h3.class-blue:after {
  background-color: #36c;
}

h3.class-blue2:after {
  background-color: dodgerblue;
}

h3.class-violet:after {
  background-color: purple;
}

h3.class-orange:after {
  background-color: orange;
}

h3.class-brown:after {
  background-color: brown;
}

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

dl.sub02 {
  list-style-type: none;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.sub02 { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub02 { /* 600px以上のとき */
    width: 600px;
  }
}
dl.sub02 dt {
  margin: 0 0 8px 0;
  position: relative;
  width: 150px;
  float: left;
  line-height: 1.5em;
  text-align: left;
}
dl.sub02 dt:after {
  display: none;
}
dl.sub02 dd {
  margin: 0 0 8px 0;
  position: relative;
  float: left;
  line-height: 1.5em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.sub02 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub02 dd { /* 600px以上のとき */
    width: 430px;
  }
}

ul.sub02 {
  list-style-type: none;
  list-style-position: outside;
}
@media screen and (max-width: 599px) {
  ul.sub02 { /* 599px以下のとき */
    width: 320px;
    margin: 0 0 10px 30px;
  }
}
@media screen and (min-width: 600px) {
  ul.sub02 { /* 600px以上のとき */
    width: 1000px;
    margin: 0 0 10px 100px;
  }
}
ul.sub02 li {
  margin: 0 0 10px 0;
  position: relative;
  line-height: 1.5em;
  text-align: left;
}
ul.sub02 li:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #001786;
  border-radius: 100%;
}

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

.gakuincolor {
  color: #A7337E;
}

dl.history {
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  dl.history { /* 600px以上のとき */
    width: 1000px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  dl.history { /* 599px以下のとき */
    width: 360px;
  }
}
dl.history dt {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  dl.history dt { /* 600px以上のとき */
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  dl.history dt { /* 599px以下のとき */
    width: 360px;
  }
}
@media screen and (min-width: 600px) {
  dl.history dd { /* 600px以上のとき */
    width: 900px;
    margin-left: 100px;
    margin-top: -2.5em;
  }
}
@media screen and (max-width: 599px) {
  dl.history dd { /* 599px以下のとき */
    width: 360px;
  }
}
@media screen and (min-width: 600px) {
  dl.history dd .h-box { /* 600px以上のとき */
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 599px) {
  dl.history dd .h-box { /* 599px以下のとき */
    width: 320px;
  }
}
dl.history dd .h-box div {
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  dl.history dd .h-box div { /* 600px以上のとき */
    width: 50%;
    border-bottom: 1px #001786 solid;
    padding: 10px 10px 20px 10px;
  }
}
@media screen and (max-width: 599px) {
  dl.history dd .h-box div { /* 599px以下のとき */
    width: 100%;
    padding: 5px 10px 10px 10px;
  }
}
dl.history dd .h-box div.h-center {
  text-align: center;
  font-size: 1.2em;
  padding-bottom: 0px;
}
@media screen and (min-width: 600px) {
  dl.history dd .h-box div.h-title { /* 600px以上のとき */
    display: none;
  }
}
@media screen and (max-width: 599px) {
  dl.history dd .h-box div.h-title { /* 599px以下のとき */
    padding: 0;
  }
}

table.fee {
  position: relative;
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid rgb(140, 140, 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
@media screen and (min-width: 600px) {
  table.fee { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  table.fee { /* 599px以下のとき */
    width: 360px;
  }
}
table.fee caption {
  caption-side: bottom;
  padding: 10px;
  font-weight: normal;
  text-align: right;
}
table.fee thead {
  background-color: rgb(228, 240, 245);
}
table.fee th,
table.fee td {
  font-weight: normal;
  border: 1px solid rgb(160, 160, 160);
  padding: 8px 10px;
}
table.fee th {
  text-align: center;
}
table.fee td {
  text-align: right;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ~~ フッター ~~ */
footer {
  font-family: "Murecho", sans-serif;
  background-color: #001786;
  color: #fff;
}

#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */ }
}
.footer1 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .footer1 { /* PC */
    height: 170px;
    padding-top: 30px;
  }
}
.footer1 .f-logo {
  margin: 0 auto;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 600px) {
  .footer1 .f-logo { /* 600px以上のとき */
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-logo {
    font-size: 25px;
    line-height: 1.2em;
    padding-top: 20px;
  }
}
.footer1 .f-logo a:link, .footer1 .f-logo a:visited {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.footer1 .f-addr {
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .footer1 .f-addr { /* 600px以上のとき */
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-addr {
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer1 .buttonarea {
  padding-top: 20px;
  width: 370px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.footer1 .buttonarea img {
  float: left;
  margin: 0 5px;
}

.footer2 {
  margin: 0 auto;
  padding: 10px 0 20px 0;
  text-align: center;
  position: relative;
  min-height: 100px;
  height: auto;
  font-size: 15px;
}
@media screen and (max-width: 600px) {
  .footer2 {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  .footer2 {
    width: 1220px;
  }
}
.footer2 .f-home {
  margin: 20px 0 0 120px;
  float: left;
}
.footer2 .fmenu1 {
  float: left;
  margin: 10px 0 0 70px;
  text-align: left;
  display: block;
  min-height: 140px;
  height: auto;
  padding: 10px 30px 0 0;
  line-height: 2em;
}
.footer2 .fmenu1 a:link, .footer2 .fmenu1 a:visited {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.footer3 {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .footer3 { /* PC */
    width: 1200px;
    padding-bottom: 20px;
  }
  .footer3 img {
    float: left;
    margin: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .footer3 {
    width: 330px;
    margin-top: 20px;
  }
  .footer3 img {
    margin: 10px 0;
  }
}

.iconarea02 {
  margin: 0 auto;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  margin: 0 auto;
  position: relative;
}
.iconarea02 a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.iconarea02 a:visited {
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .iconarea02 {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  .iconarea02 {
    width: 1220px;
  }
}
@media screen and (min-width: 600px) {
  .iconarea02 { /* 600px以上のとき */
    padding-top: 20px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .iconarea02 {
    padding: 10px 0px;
  }
}
.iconarea02 .bjbutton, .iconarea02 .sachikobutton, .iconarea02 .gakubutton {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
  background: #0000FF; /* BOXの背景色         */
  color: #fff;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .iconarea02 .bjbutton, .iconarea02 .sachikobutton, .iconarea02 .gakubutton { /* 600px以上のとき */
    width: 380px; /* BOXの幅             */
    height: 70px; /* BOXの高さ           */
    line-height: 70px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .iconarea02 .bjbutton, .iconarea02 .sachikobutton, .iconarea02 .gakubutton { /* 599px以下のとき */
    width: 320px; /* BOXの幅             */
    line-height: 26px;
    font-size: 26px;
    padding: 5px 0 10px 0;
  }
}
.iconarea02 .bjbutton:hover, .iconarea02 .sachikobutton:hover, .iconarea02 .gakubutton:hover {
  background-color: #009bd2;
  text-decoration: none;
  color: #fff;
}
.iconarea02 .bjbutton a:link, .iconarea02 .sachikobutton a:link, .iconarea02 .gakubutton a:link {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.iconarea02 .bjbutton a:visited, .iconarea02 .sachikobutton a:visited, .iconarea02 .gakubutton a:visited {
  color: #fff;
  text-decoration: none;
}
.iconarea02 .gakubutton {
  background-color: #a7337e;
}
.iconarea02 .sachikobutton {
  background-color: #45b6de;
}
.iconarea02 a:link {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.iconarea02 a:visited {
  color: #fff;
  text-decoration: none;
}

#fcopy {
  width: 100%;
  color: #fff;
  display: block;
  text-align: center;
  padding: 0 0 8px 0;
  font-size: 1em;
}
@media screen and (min-width: 600px) {
  #fcopy { /* 600px以上のとき */
    height: 15px;
  }
}
@media screen and (max-width: 599px) {
  #fcopy {
    height: 50px;
    margin-top: 20px;
  }
}
#fcopy div {
  margin: 0 auto;
  min-height: 15px;
  height: auto;
  position: relative;
  font-size: 0.85em;
}
@media screen and (max-width: 600px) {
  #fcopy div {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #fcopy div {
    width: 1220px;
  }
}/*# sourceMappingURL=style.css.map */