@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP&family=Noto+Serif+JP:wght@400;700&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: #009BD2;
}

.small75 {
  font-size: 75%;
}

.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-regular);
  position: relative; /*絶対位置*/
  font-size: 1.2em; /*サイズ*/
  color: #009BD2; /*アイコン色*/
  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: #009BD2; /*アイコン色*/
  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 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: #009BD2;
}

.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;
  }
}
a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

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

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

@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;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: url("./images/body_bk.jpg") left top repeat;
}
@media screen and (max-width: 600px) {
  body {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  body {
    min-width: 1200px;
  }
}
@media screen and (max-width: 599px) {
  body { /* 600px以上のとき */
    position: relative;
    left: 0;
    overflow-x: hidden;
  }
}

.bold {
  font-weight: 700;
}

.regular {
  font-weight: 400;
}

.scolor {
  color: #009BD2;
}

.cardo-regular {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
}

.cardo-bold {
  font-family: "Cardo", serif;
  font-weight: 700;
  font-style: normal;
}

.cardo-regular-italic {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: italic;
}

/* ドロワーメニュー */
/* ドロワーメニュー */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* menu */
.p-sp-nav-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 5;
  transition: all 0.3s;
}

/* .bg-activeが付与された時 */
.p-sp-nav-bg.bg-active {
  display: block;
  transition: all 0.3s;
}

/* ナビゲーション全体を囲うタグ */
#sp-g-nav {
  position: fixed;
  z-index: 46;
  color: #fff;
  background: #009BD2;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  width: 100%;
  width: 300px;
  top: -120%;
  right: 0;
  transition: all 0.3s;
}

/*アクティブクラスがついたら表示位置変更*/
#sp-g-nav.panel-active {
  width: 100%;
  width: 300px;
  height: 100vh;
  top: 0;
  right: 0;
  transition: all 0.3s;
}

/* ナビゲーション本体 */
.p-sp-nav_ul {
  width: 100%;
  color: #666;
  margin-top: 80px;
  list-style: none;
}

.p-sp-nav_li {
  border-bottom: 1px #fff solid;
  padding: 7px;
  font-size: 0.85em;
  text-align: left;
}
.p-sp-nav_li.bottom {
  margin-bottom: 100px;
}
.p-sp-nav_li a:link {
  color: #fff;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.p-sp-nav_li a:visited {
  color: #fff;
  text-decoration: underline;
}

.p-sp-nav_a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #666;
}

ul.nav-sub {
  margin: 5px 0 0 20px;
  list-style-type: disc;
  list-style-position: inside;
  color: #fff;
}
ul.nav-sub li {
  margin: 0 0 0.2em 0;
}

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

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

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

/* ヘッダーメニュー */
/* header */
#t-headtop {
  width: 100%;
  position: relative;
  background-color: #009BD2;
  position: relative;
  border-bottom: 3px #FC5C43 solid;
}
@media screen and (max-width: 600px) {
  #t-headtop {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #t-headtop {
    min-width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #t-headtop { /* pc */
    height: 700px;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(0, 155, 210) 20%, rgb(0, 155, 210) 80%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (max-width: 599px) {
  #t-headtop { /* mobile */
    height: 565px;
    background-color: #45B6DE;
  }
}

#t-headarea {
  margin: 0 auto;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 600px) {
  #t-headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #t-headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #t-headarea { /* pc */
    min-height: 700px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea { /* mobile */
    min-height: 565px;
    width: 100%;
  }
}
#t-headarea .t-headover {
  width: 100%;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover { /* pc */
    background: url("../images/headover_bk.png") center top repeat-y;
    height: 700px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover { /* mobile */
    min-height: 200px;
    background-color: #45B6DE;
  }
}
#t-headarea .t-headover .t-menuarea {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #009BD2;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea { /* pc */
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea { /* mobile */
    width: 100%;
  }
}
#t-headarea .t-headover .t-menuarea .t-logo {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FC5C43;
  color: #fff;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea .t-logo { /* pc */
    width: 300px;
    height: 170px;
    font-size: 44px;
    line-height: 42px;
    padding: 60px 20px 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea .t-logo { /* mobile */
    width: 100%;
    height: 100px;
    font-size: 40px;
    line-height: 38px;
    padding: 10px 20px 0 20px;
  }
}
#t-headarea .t-headover .t-menuarea .t-name {
  position: absolute;
  background-color: #B38081;
  color: #fff;
  vertical-align: bottom;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea .t-name { /* pc */
    width: 300px;
    top: 170px;
    left: 0;
    height: 65px;
    font-size: 24px;
    padding: 12px 20px 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea .t-name { /* mobile */
    width: 100%;
    top: 100px;
    left: 0;
    height: 50px;
    font-size: 22px;
    padding: 10px 20px 0 20px;
  }
}
#t-headarea .t-headover .t-menuarea .t-status {
  position: absolute;
  background-color: #45B6DE;
  color: #000;
  text-align: right;
  vertical-align: bottom;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea .t-status { /* pc */
    width: 300px;
    top: 235px;
    left: 0;
    height: 215px;
    font-size: 24px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea .t-status { /* mobile */
    width: 100%;
    top: 150px;
    left: 0;
    height: 110px;
    font-size: 20px;
    padding: 5px 20px;
  }
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea .t-status div { /* pc */
    margin: 20px 0 10px 0;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea .t-status div { /* mobile */
    margin: 5px 0 10px 0;
    line-height: 20px;
  }
}
#t-headarea .t-headover .t-menuarea a:link {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#t-headarea .t-headover .t-menuarea a:visited {
  color: #fff;
  text-decoration: none;
}
#t-headarea .t-headover .t-menuarea a:hover, #t-headarea .t-headover .t-menuarea a:active, #t-headarea .t-headover .t-menuarea a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  color: #fff;
  text-decoration: none;
}
#t-headarea .t-headover .t-menuarea .hmenu {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea .hmenu { /* pc */
    bottom: 50px;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea .hmenu { /* mobile */
    display: none;
  }
}
#t-headarea .t-headover .t-menuarea .hmenu .htitle {
  text-align: right;
}
@media screen and (min-width: 600px) {
  #t-headarea .t-headover .t-menuarea .hmenu .htitle { /* pc */
    padding: 3px 20px;
    margin-bottom: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .t-headover .t-menuarea .hmenu .htitle { /* mobile */
    padding: 3px 5px;
    margin-bottom: 3px;
    font-size: 16px;
  }
}
#t-headarea .t-headover .t-menuarea .hmenu .htitle:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f04b"; /*アイコンのユニコード*/
  font: var(--fa-font-sharp-solid);
  position: relative; /*絶対位置*/
  font-size: 1em; /*サイズ*/
  color: #fff; /*アイコン色*/
  margin: -5px 0 0 5px;
}
#t-headarea .slider-top {
  position: absolute;
  z-index: 3;
}
@media screen and (min-width: 600px) {
  #t-headarea .slider-top { /* pc */
    width: 900px;
    height: 700px;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .slider-top { /* mobile */
    width: 100%;
    bottom: 0;
    right: 0;
  }
  #t-headarea .slider-top img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#headwrap {
  width: 100%;
  position: relative;
  border-bottom: 3px #FC5C43 solid;
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    height: 100px;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(0, 155, 210) 20%, rgb(0, 155, 210) 80%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    height: 180px;
    background-color: #009BD2;
  }
}

#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: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headarea { /* pc */
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #headarea { /* mobile */
    width: 100%;
    height: 180px;
  }
}
#headarea .h-logo {
  position: absolute;
  background-color: #FC5C43;
  color: #fff;
  top: 0;
  left: 0;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  #headarea .h-logo { /* pc */
    width: 380px;
    height: 100px;
    font-size: 40px;
    line-height: 34px;
    padding: 10px 20px 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-logo { /* mobile */
    width: 100%;
    height: 100px;
    font-size: 36px;
    line-height: 32px;
    padding: 10px 0 0 20px;
  }
}
@media screen and (min-width: 600px) {
  #headarea .h-logo .hsmall { /* pc */
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-logo .hsmall { /* mobile */
    font-size: 22px;
  }
}
#headarea .h-status {
  position: absolute;
  color: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  #headarea .h-status { /* pc */
    width: 600px;
    top: 0;
    left: 400px;
    height: 215px;
    font-size: 24px;
    text-align: left;
    vertical-align: bottom;
    line-height: 26px;
    padding: 5px 0;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-status { /* mobile */
    top: 100px;
    left: 0;
    width: 100%;
    font-size: 22px;
    line-height: 24px;
    padding: 10px 0 0 20px;
  }
}
@media screen and (min-width: 600px) {
  #headarea .h-status div { /* pc */
    margin: 10px 0 10px 0;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-status div { /* mobile */
    margin: 5px 0 5px 0;
  }
}

/* main area */
main {
  min-height: 300px;
}
@media screen and (min-width: 600px) {
  main { /* 600px以上のとき */
    background: url("../images/main_bk.jpg") center center no-repeat;
  }
}
@media screen and (max-width: 599px) {
  main { /* 600px以上のとき */
    background: url("../images/main_bk_b.jpg") center center no-repeat;
  }
}

/* top page */
#marea {
  min-height: 400px;
  margin: 0 auto;
  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: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #marea { /* 600px以上のとき */
    padding: 50px 0 50px 0;
    background: url("./images/news_bk.png") 100px 50px no-repeat;
  }
}
@media screen and (max-width: 599px) {
  #marea { /* 600px以上のとき */
    padding: 0 0 100px 0;
    background: url("./images/news_bk_s.png") 30px 10px no-repeat;
  }
}

h1 {
  position: relative;
  margin: 0 auto;
  text-align: center; /* 文字位置指定 */
  border-bottom: 3px #009BD2 solid;
  padding: 0 0 10px 0;
}
@media screen and (min-width: 600px) {
  h1 { /* forPC */
    width: 1150px;
    font-size: 26px; /* 文字サイズ指定 */
  }
}
@media screen and (max-width: 599px) {
  h1 { /* forSP */
    margin-top: 20px;
    font-size: 22px; /* 文字サイズ指定 */
  }
}

h2.news {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 20px #009BD2 solid;
  border-right: 20px #009BD2 solid;
  border-bottom: 2px #009BD2 solid;
  border-top: 2px #009BD2 solid;
  box-sizing: border-box;
  text-align: center;
  color: #000;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  h2.news { /* 600px以上のとき */
    width: 900px;
    font-size: 24px;
    padding: 2px 0 5px 40px;
  }
}
@media screen and (max-width: 599px) {
  h2.news { /* 600px以上のとき */
    width: 100%;
    font-size: 20px;
    padding: 5px;
  }
}

/* toparea */
.toparea {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 70px;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .toparea { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .toparea { /* 600px以上のとき */
    width: 100%;
  }
}
.toparea h1.top {
  margin-bottom: 0;
  border-left: 20px #009BD2 solid;
  border-bottom: 2px #009BD2 solid;
  box-sizing: border-box;
  text-align: left;
  color: #000;
}
@media screen and (min-width: 600px) {
  .toparea h1.top { /* 600px以上のとき */
    width: 800px;
    font-size: 26px;
    padding: 2px 0 5px 40px;
  }
}
@media screen and (max-width: 599px) {
  .toparea h1.top { /* 600px以上のとき */
    width: 100%;
    font-size: 24px;
    padding: 2px 0 5px 20px;
  }
}
.toparea .txtarea {
  display: block;
  border-left: 20px #BFE6F4 solid;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 600px) {
  .toparea .txtarea { /* 600px以上のとき */
    width: 800px;
    padding: 20px 10px 70px 40px;
  }
}
@media screen and (max-width: 599px) {
  .toparea .txtarea { /* 600px以上のとき */
    width: 100%;
    padding: 20px 10px 50px 20px;
  }
}
.toparea .txtarea .ttxt {
  text-align: left;
  font-size: 16px;
}
.toparea .txtarea .ttxt-button {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  background: #BFE6F4; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .toparea .txtarea .ttxt-button { /* 600px以上のとき */
    width: 300px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .toparea .txtarea .ttxt-button { /* 599px以下のとき */
    width: 280px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    line-height: 28px;
  }
}
.toparea .txtarea .ttxt-button:hover {
  background-color: #009BD2;
  text-decoration: none;
  color: #fff;
}
.toparea .txtarea .ttxt-button a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.toparea .txtarea .ttxt-button a:visited {
  text-decoration: none;
}
.toparea a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.toparea a:visited {
  text-decoration: none;
}
.toparea:hover {
  text-decoration: none;
}

#newsarea {
  position: relative;
}
@media screen and (min-width: 600px) {
  #newsarea { /* 600px以上のとき */
    width: 950px;
    margin: 0 auto;
    min-height: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  #newsarea { /* 599px以下のとき */
    width: 360px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 40px;
    background: url("./images/area_btm_s.png") center bottom no-repeat;
  }
}

.h-imgarea {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .h-imgarea { /* 600px以上のとき */
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .h-imgarea { /* 599px以下のとき */ }
}
@media screen and (min-width: 600px) {
  .h-imgarea img { /* 600px以上のとき */
    margin: 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .h-imgarea img { /* 599px以下のとき */
    width: 300px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

#profarea01 {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  #profarea01 { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  #profarea01 { /* 599px以下のとき */
    width: 360px;
  }
}
#profarea01 div {
  position: absolute;
  text-align: left;
}
@media screen and (min-width: 600px) {
  #profarea01 div { /* 600px以上のとき */
    left: 450px;
    top: 230px;
    line-height: 40px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #profarea01 div { /* 599px以下のとき */
    left: 130px;
    top: 20px;
    line-height: 26px;
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

#profarea02 {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  #profarea02 { /* 600px以上のとき */
    width: 800px;
    display: flex;
  }
}
@media screen and (max-width: 599px) {
  #profarea02 { /* 599px以下のとき */
    width: 340px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
#profarea02 .pttl {
  background-color: #FC5C43;
  padding: 20px 0 20px 10px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 600px) {
  #profarea02 .pttl { /* 600px以上のとき */
    width: 200px;
  }
}
@media screen and (max-width: 599px) {
  #profarea02 .pttl { /* 599px以下のとき */
    width: 100%;
  }
}
#profarea02 .pdetail {
  text-align: left;
  border: 2px #009BD2 solid;
  box-sizing: border-box;
  padding: 20px 0 20px 10px;
}
@media screen and (min-width: 600px) {
  #profarea02 .pdetail { /* 600px以上のとき */
    width: 590px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  #profarea02 .pdetail { /* 599px以下のとき */
    width: 100%;
    margin-top: 10px;
  }
}

dl.prof {
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  border-bottom: 1px solid #BFE6F4;
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  dl.prof { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  dl.prof { /* 599px以下のとき */
    width: 350px;
  }
}
dl.prof dt {
  border-top: 1px solid #BFE6F4;
  box-sizing: border-box;
  padding: 10px 0 0 10px;
  text-align: center;
  font-size: 22px;
}
@media screen and (min-width: 600px) {
  dl.prof dt { /* 600px以上のとき */
    width: 130px;
  }
}
@media screen and (max-width: 599px) {
  dl.prof dt { /* 599px以下のとき */
    width: 100px;
  }
}
dl.prof dd {
  border-top: 1px solid #BFE6F4;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 0 10px 0;
  text-align: left;
}
@media screen and (min-width: 600px) {
  dl.prof dd { /* 600px以上のとき */
    width: 670px;
  }
}
@media screen and (max-width: 599px) {
  dl.prof dd { /* 599px以下のとき */
    width: 250px;
  }
}
@media screen and (min-width: 600px) {
  dl.prof dd .a-sub { /* 600px以上のとき */
    width: 650px;
    margin: 0 0 0 50px;
  }
}
@media screen and (max-width: 599px) {
  dl.prof dd .a-sub { /* 599px以下のとき */
    width: 240px;
    margin: 0 0 0 10px;
  }
}
dl.prof .prof-button {
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  background: #BFE6F4; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  dl.prof .prof-button { /* 600px以上のとき */
    width: 300px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  dl.prof .prof-button { /* 599px以下のとき */
    width: 250px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    line-height: 28px;
  }
}
dl.prof .prof-button:hover {
  background-color: #009BD2;
  text-decoration: none;
  color: #fff;
}
dl.prof .prof-button a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
dl.prof .prof-button a:visited {
  text-decoration: none;
}
dl.prof a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
dl.prof a:visited {
  text-decoration: none;
}

/* common */
.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;
}

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

.tobutton, .tobutton02 {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  background: #BFE6F4; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .tobutton, .tobutton02 { /* 600px以上のとき */
    width: 300px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .tobutton, .tobutton02 { /* 599px以下のとき */
    width: 280px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    line-height: 28px;
  }
}
.tobutton:hover, .tobutton02:hover {
  background-color: #009BD2;
  text-decoration: none;
  color: #fff;
}
.tobutton a:link, .tobutton02 a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.tobutton a:visited, .tobutton02 a:visited {
  text-decoration: none;
}

.tobutton02 {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .tobutton02 { /* 600px以上のとき */
    width: 150px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    line-height: 36px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .tobutton02 { /* 599px以下のとき */
    width: 280px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    line-height: 28px;
  }
}

.next {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
}
.next div {
  margin: 0 10px;
}

.next02 {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
}
@media screen and (min-width: 600px) {
  .next02 { /* 600px以上のとき */
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .next02 { /* 599px以下のとき */ }
}
.next02 .prevttl {
  line-height: 36px;
  text-align: left;
  padding-left: 5px;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .next02 .prevttl { /* 600px以上のとき */ }
}
@media screen and (max-width: 599px) {
  .next02 .prevttl { /* 599px以下のとき */
    width: 100%;
  }
}
.next02 .nextttl {
  line-height: 36px;
  text-align: right;
  padding-right: 5px;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .next02 .nextttl { /* 600px以上のとき */ }
}
@media screen and (max-width: 599px) {
  .next02 .nextttl { /* 599px以下のとき */
    width: 100%;
  }
}
.next02 a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.next02 a:visited {
  text-decoration: none;
}

.toprev:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f100"; /*アイコンのユニコード*/
  font: var(--fa-font-regular);
  position: relative; /*絶対位置*/
  font-size: 1em; /*サイズ*/
  margin: -5px 10px 0 10px;
}

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

.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: #c98477; /* BOXの背景色         */
}

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

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

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

.txt {
  margin: 0 auto;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .txt { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .txt { /* 600px以上のとき */
    width: 1000px;
  }
}

.plush {
  min-height: 500px;
}

.top-ol-banner {
  margin: 0 auto;
  width: 314px;
  height: 121px;
  background: url("./images/top_ol_bnr_bk.jpg") left top no-repeat;
  position: relative;
}
.top-ol-banner .j {
  position: absolute;
  top: 60px;
  left: 20px;
  color: #fff;
  font-size: 16px;
}
.top-ol-banner .e {
  position: absolute;
  top: 46px;
  right: 50px;
  color: #009BD2;
  font-family: "Gideon Roman", cursive;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .top-ol-banner {
    display: none;
  }
}

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

.to-n-list {
  position: absolute;
  z-index: 49;
}
@media screen and (min-width: 600px) {
  .to-n-list { /* 600px以上のとき */
    top: 20px;
    right: 80px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .to-n-list { /* 599px以下のとき */
    top: 5px;
    right: 20px;
    font-size: 16px;
  }
}

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

@media screen and (min-width: 600px) {
  .n-title, .n-title2 { /* PC */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .n-title, .n-title2 { /* mobile */
    width: 320px;
    margin: 5px 0 10px 10px;
    text-align: left;
  }
}

.toptxt {
  margin: 20px 0 0 20px;
  text-align: left;
  width: 950px;
  float: left;
}

.n-title2 {
  background: url("./images/list_top.png") left top no-repeat;
  padding: 0 0 0 25px;
}
@media screen and (min-width: 600px) {
  .n-title2 { /* 600px以上のとき */
    margin: 0 0 10px 100px;
  }
}
@media screen and (max-width: 599px) {
  .n-title2 { /* 599px以下のとき */
    margin: 0 0 10px 10px;
  }
}

ul.sub {
  width: 90%;
  list-style: disc;
  list-style-position: outside;
}
@media screen and (min-width: 600px) {
  ul.sub { /* 600px以上のとき */
    margin: 50px 0 0 120px;
  }
}
@media screen and (max-width: 599px) {
  ul.sub { /* 599px以下のとき */
    margin: 50px 0 0 10px;
  }
}
ul.sub li {
  margin: 0 0 30px 0;
}

/* Instagram 読み込み */
/* コンテナ */
.instagram-container {
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .instagram-container {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  .instagram-container {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  .instagram-container { /* 600px以上のとき */
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .instagram-container { /* 599px以下のとき */
    width: 360px;
    margin-top: 50px;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (min-width: 600px) {
  .instagram-item { /* 600px以上のとき */
    width: 180px;
    height: 180px;
    padding: 0;
    margin: 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .instagram-item { /* 599px以下のとき */
    width: 160px;
    height: 160px;
    padding: 0;
    margin: 20px 10px;
    float: left;
  }
}

a.instagram-card {
  display: block;
  position: relative;
  margin-bottom: 16px;
  text-align: center;
  font-size: 0.8em;
}

.instagram-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 600px) {
  .instagram-card__img { /* 600px以上のとき */
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .instagram-card__img { /* 599px以下のとき */
    width: 160px;
    height: 160px;
  }
}

/* mail */
@media screen and (min-width: 600px) {
  .formarea { /* 600px以上のとき */
    width: 900px;
    margin: 30px 0 0 100px;
  }
}
@media screen and (max-width: 599px) {
  .formarea { /* 600px以下のとき */
    width: 360px;
    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: 340px;
  }
}

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

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: 320px;
  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;
}

/* order */
.ftxt {
  width: 100%;
  margin: 20px 0;
  border-bottom: 2px #ccc dotted;
}

.ftxt2 {
  width: 100%;
  margin: 20px 0;
  font-size: 1.2em;
}

h1.sub {
  text-align: left; /* 文字位置指定 */
  background-color: #009BD2;
  margin: 20px 0;
  padding: 0.5em 0;
}
@media screen and (max-width: 599px) {
  h1.sub { /* 599px以下のとき */
    width: 100%; /* 幅指定 */
    font-size: 22px; /* 文字サイズ指定 */
  }
}
@media screen and (min-width: 600px) {
  h1.sub { /* 600px以上のとき */
    width: 100%; /* 幅指定 */
    font-size: 26px; /* 文字サイズ指定 */
  }
}
h1.sub div {
  width: 90%;
  color: #fff;
}
@media screen and (max-width: 599px) {
  h1.sub div { /* 599px以下のとき */
    margin-left: 10px;
  }
}
@media screen and (min-width: 600px) {
  h1.sub div { /* 600px以上のとき */
    margin-left: 100px;
  }
}

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: #009BD2;
}

h3.sub {
  position: relative;
  color: white;
  padding: 0.5em 0.5em 0.5em 1.4em;
  background-color: #009BD2;
  text-align: left;
}
@media screen and (max-width: 599px) {
  h3.sub { /* 599px以下のとき */
    width: 320px; /* 幅指定 */
    margin: 40px 0 20px 10px;
  }
}
@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;
}

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;
}
dl.sub dt:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.5em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #009BD2;
  border-radius: 100%;
}
dl.sub dd {
  margin: 8px 0 8px 0;
  position: relative;
  float: left;
  line-height: 1.5em;
  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.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: #009BD2;
  border-radius: 100%;
}

/* ~~ フッター ~~ */
#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
  border-top: 3px #FC5C43 solid;
  background-color: #ebebeb;
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */
    height: 240px;
  }
}
@media screen and (max-width: 599px) {
  #fwrap {
    min-height: 150px;
  }
}

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

#fcopy {
  background-color: #fff;
  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: 10px;
  }
}
@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=style.css.map */