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

.small50 {
  font-size: 0.5em;
}

.small85 {
  font-size: 0.85em;
}

.small90 {
  font-size: 0.9em;
}

.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, .tolist03, .tolist02 {
  text-align: right;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .tolist, .tolist03, .tolist02 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .tolist, .tolist03, .tolist02 { /* 600px以上のとき */
    width: 1000px;
  }
}

.tolist02 {
  width: 100%;
  margin-bottom: 10px;
}

.tolist03 {
  width: 95%;
}

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

.link:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e"; /*アイコンのユニコード*/
  font: var(--fa-font-solid);
  position: relative; /*絶対位置*/
  font-size: 1.2em; /*サイズ*/
  color: #2fe001; /*アイコン色*/
  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: #2fe001; /*アイコン色*/
  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, .fimgarea {
  width: 100%;
  min-height: 50px;
  text-align: center;
  font-size: 1em;
  position: relative;
  display: block;
}
.imgarea a:link, .fimgarea a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.imgarea a:visited, .fimgarea 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, .fimgarea img, .imgarea02 img, .imgarea03 img {
  padding: 0;
}

.fimgarea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 50px;
}
.fimgarea img {
  margin: 0;
  padding: 0;
}

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

.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;
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@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;
  }
}

.regular {
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

/* ドロワーメニュー */
/* ドロワーメニュー */
.ul_open_h {
  background: #2fe001;
  color: #666;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0;
  height: 100%;
  transition: 0.35s ease-in-out;
  overflow-y: scroll;
  position: fixed;
  z-index: 40;
  padding-top: 80px;
}
.ul_open_h li {
  padding: 7px;
  width: 220px;
  border-bottom: 1px #666 solid;
  font-size: 0.85em;
}
.ul_open_h li.bottom {
  margin-bottom: 100px;
}
.ul_open_h li.bottom {
  margin-bottom: 100px;
}
.ul_open_h li a:link {
  color: #666;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.ul_open_h li a:visited {
  color: #666;
  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;
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .btn { /* PC */
    position: absolute;
    top: 45px;
    right: 40px;
    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: #707a68;
  }
}
.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 #707a68;
  }
}
.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 #707a68;
  }
}

.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 */
#headwrap {
  width: 100%;
  background-color: #2fe001;
  z-index: 40;
  position: fixed;
  top: 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    min-height: 70px;
  }
}
#headwrap .headarea {
  position: relative;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #headwrap .headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headwrap .headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .headarea { /* pc */
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .headarea { /* mobile */
    min-height: 70px;
  }
}
#headwrap .headarea .h-title {
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #headwrap .headarea .h-title { /* pc */
    position: absolute;
    top: 20px;
    left: 33px;
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .headarea .h-title { /* mobile */
    position: absolute;
    top: 15px;
    left: 0px;
    font-size: 18px;
  }
}
#headwrap .headarea .menuarea {
  position: absolute;
  bottom: 10px;
  right: 30px;
  font-size: 18px;
}
#headwrap .headarea .menuarea .f {
  border-right: 1px #333 solid;
  float: left;
  padding: 3px 20px;
}

/* main area */
main.toppage {
  min-height: 300px;
}
@media screen and (min-width: 600px) {
  main.toppage { /* pc */
    padding-top: 100px;
    background-size: cover;
    z-index: -1;
    background-image: url("../images/main_bk.02.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 599px) {
  main.toppage { /* mobile */
    padding-top: 70px;
  }
}
@media screen and (max-width: 599px) {
  main.toppage::before { /* mobile */
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../images/main_bk.02.jpg");
    background-size: cover;
  }
}

main.subpage {
  min-height: 300px;
}
@media screen and (min-width: 600px) {
  main.subpage { /* pc */
    padding-top: 100px;
    background-size: cover;
    z-index: -1;
  }
}
@media screen and (max-width: 599px) {
  main.subpage { /* mobile */
    padding-top: 70px;
  }
}

/* top page */
#marea, #sarea {
  width: 100%;
  background-color: #fff;
  margin-top: 400px;
  min-height: 200px;
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}

#sarea {
  margin-top: 10px;
  padding-bottom: 400px;
  background: url("../images/sub_bk.jpg") center bottom no-repeat;
}

.toparea, .subarea {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .toparea, .subarea { /* 600px以上のとき */
    width: 1000px;
    padding-top: 110px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .toparea, .subarea { /* 600px以上のとき */
    width: 360px;
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
.toparea h1, .subarea h1 {
  position: relative;
  background: #fff100;
  margin: 0 auto;
  font-weight: 400;
  margin: 0 auto;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 600px) {
  .toparea h1, .subarea h1 { /* 600px以上のとき */
    font-size: 26px;
    padding: 0.5rem 0 calc(0.5rem + 10px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .toparea h1, .subarea h1 { /* 600px以上のとき */
    font-size: 20px;
    padding: 0.3rem 0 calc(0.5rem + 5px);
  }
}
.toparea h1:before, .subarea h1:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #000;
}

@media screen and (min-width: 600px) {
  .subarea { /* 600px以上のとき */
    padding-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .subarea { /* 600px以上のとき */
    padding-top: 80px;
  }
}

summary {
  list-style: none;
  cursor: pointer;
}

.n-title::-webkit-details-marker {
  display: none;
}

.n-title {
  display: block;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .n-title { /* PC */
    width: 900px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .n-title { /* mobile */
    width: 320px;
    margin: 20px 0 0 10px;
    text-align: left;
  }
}
.n-title a:link, .n-title a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.n-detail {
  min-height: 200px;
  margin: 0 auto;
  border-top: 1px #333 solid;
  border-bottom: 1px #333 solid;
  padding: 10px;
  box-sizing: content-box;
}
@media screen and (min-width: 600px) {
  .n-detail { /* PC */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .n-detail { /* mobile */
    width: 340px;
  }
}
.n-detail .sub-txt {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .n-detail .sub-txt { /* PC */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .n-detail .sub-txt { /* mobile */
    width: 340px;
  }
}

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

/* about */
.about {
  margin: 0 auto;
  margin-top: 30px;
  background-color: bisque;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 1rem;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .about { /* 600px以上のとき */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .about { /* 599px以下のとき */
    width: 340px;
  }
}
.about h2 {
  text-align: left;
  font-size: 20px;
  border-bottom: 1px #333 solid;
  padding-left: 20px;
  box-sizing: border-box;
}

.list {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .list { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .list { /* 599px以下のとき */
    width: 340px;
  }
}
.list div.rarea {
  padding: 6px;
  border-bottom: 1px dotted #2fe001;
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .list div.rarea { /* 600px以上のとき */
    display: flex;
    justify-content: flex-start;
  }
}
.list dt {
  text-align: left;
}
@media screen and (min-width: 600px) {
  .list dt { /* 600px以上のとき */
    width: 300px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .list dt { /* 599px以下のとき */
    width: 340px;
    padding-bottom: 5px;
  }
}
.list dd {
  margin-left: 0;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .list dd { /* 600px以上のとき */
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 599px) {
  .list dd { /* 599px以下のとき */
    width: 340px;
  }
}

/* compe */
#submenu {
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  #submenu { /* 600px以上のとき */
    width: 1000px;
    min-height: 70px;
  }
}
@media screen and (max-width: 599px) {
  #submenu { /* 599px以下のとき */
    width: 340px;
  }
}
#submenu .b-btn {
  text-align: center;
  float: left;
  background: bisque;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  #submenu .b-btn { /* 600px以上のとき */
    margin: 0 0 20px 20px;
    font-size: 1.4em;
    width: 225px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  #submenu .b-btn { /* 599px以下のとき */
    margin: 0 10px 20px 10px;
    font-size: 1.4em;
    text-align: center;
    width: 150px;
    padding: 10px 0;
  }
}
#submenu .b-btn:hover {
  box-shadow: 0 5px 10px #666;
  transform: translate(0, -3px);
}

.compelist {
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  background-color: bisque;
  border-radius: 20px; /* CSS3草案 */
  -webkit-border-radius: 20px; /* Safari,Google Chrome用 */
  -moz-border-radius: 20px; /* Firefox用 */
}
@media screen and (min-width: 600px) {
  .compelist { /* 600px以上のとき */
    width: 850px;
  }
}
@media screen and (max-width: 599px) {
  .compelist { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  .compelist dl { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .compelist dl { /* 599px以下のとき */
    width: 320px;
  }
}
.compelist dt {
  float: left;
  border-top: 1px #036 dotted;
  padding: 5px 0 0 0;
  text-align: center;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .compelist dt { /* 600px以上のとき */
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .compelist dt { /* 599px以下のとき */
    width: 100px;
  }
}
.compelist dd {
  float: left;
  margin: 0 0 5px 5px;
  border-top: 1px #036 dotted;
  padding: 5px 0 0 5px;
  text-align: left;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .compelist dd { /* 600px以上のとき */
    width: 670px;
  }
}
@media screen and (max-width: 599px) {
  .compelist dd { /* 599px以下のとき */
    width: 200px;
  }
}
.compelist dt.top, .compelist dd.top {
  border-top: none;
}

.compeimg {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .compeimg { /* 600px以上のとき */
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  .compeimg { /* 599px以下のとき */
    width: 340px;
  }
}
.compeimg .sarea {
  text-align: center;
  position: relative;
  line-height: 1em;
}
@media screen and (min-width: 600px) {
  .compeimg .sarea { /* PC */
    width: 33%;
    float: left;
    margin: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .compeimg .sarea { /* mobile */
    width: 320px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.compeimg .sarea img {
  width: 280px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

h2.sub, h2.sub02 {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 2px solid #2fe001;
  padding: 5px 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  h2.sub, h2.sub02 { /* 600px以上のとき */
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  h2.sub, h2.sub02 { /* 600px以上のとき */
    width: 360px;
  }
}

h3.compe {
  margin: 0 auto;
  text-align: left;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  h3.compe { /* 600px以上のとき */
    width: 980px;
    padding: 0.5rem 1rem;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  h3.compe { /* 599px以下のとき */
    width: 340px; /* 幅指定 */
    padding: 0.5rem 0.2rem;
    font-size: 16px;
  }
}

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

dl.sub, dl.sub02, dl.sub03 {
  list-style-type: none;
  margin: 0 auto;
  margin-bottom: 50px;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.sub, dl.sub02, dl.sub03 { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub, dl.sub02, dl.sub03 { /* 600px以上のとき */
    width: 800px;
  }
}
dl.sub dt, dl.sub02 dt, dl.sub03 dt {
  margin: 0.5em 0;
  position: relative;
  width: 150px;
  float: left;
  line-height: 1.8em;
  text-align: left;
}
dl.sub dd, dl.sub02 dd, dl.sub03 dd {
  margin: 0.5em 0;
  position: relative;
  float: left;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.sub dd, dl.sub02 dd, dl.sub03 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub dd, dl.sub02 dd, dl.sub03 dd { /* 600px以上のとき */
    width: 630px;
  }
}
dl.sub dd ol, dl.sub02 dd ol, dl.sub03 dd ol {
  list-style-position: outside;
  margin-left: 1.5em;
}

.toptolist, .toptolist03, .toptolist04, .toptolist02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  display: block;
  background: #fff; /* BOXの背景色         */
  border: 1px #2fe001 solid;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .toptolist, .toptolist03, .toptolist04, .toptolist02 { /* 600px以上のとき */
    width: 180px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    border-radius: 18px; /* 角丸の指定          */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .toptolist, .toptolist03, .toptolist04, .toptolist02 { /* 599px以下のとき */
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
  }
}
.toptolist:hover, .toptolist03:hover, .toptolist04:hover, .toptolist02:hover {
  background-color: #2fe001;
  text-decoration: none;
}
.toptolist a:link, .toptolist03 a:link, .toptolist04 a:link, .toptolist02 a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.toptolist a:visited, .toptolist03 a:visited, .toptolist04 a:visited, .toptolist02 a:visited {
  text-decoration: none;
}

.toptolist02 {
  z-index: 20;
  margin: 0 5px;
}

.toptolist03, .toptolist04 {
  position: relative;
  margin: 20px 10px;
  bottom: 0;
  right: 0;
}
.toptolist03 :hover, .toptolist04 :hover {
  color: #fff;
}
.toptolist03 a:link, .toptolist04 a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.toptolist03 a:visited, .toptolist04 a:visited {
  text-decoration: none;
}

.toptolist04 {
  width: 250px; /* BOXの幅             */
}

#ssubarea {
  position: relative;
  margin: 0 auto;
  padding-bottom: 50px;
  z-index: 20;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #ssubarea { /* pc */
    width: 1050px;
  }
}
@media screen and (max-width: 599px) {
  #ssubarea { /* mobile */
    width: 360px;
  }
}

@media screen and (min-width: 600px) {
  #rside-wrap { /* pc */
    position: sticky;
    top: 10px;
    right: 10px;
    float: right;
    z-index: 45;
    width: 200px;
  }
}
@media screen and (max-width: 599px) {
  #rside-wrap { /* mobile */
    width: 360px;
  }
}

@media screen and (min-width: 600px) {
  .rside { /* pc */
    width: 200px;
  }
}
.rside ul.right {
  margin: 0;
  list-style-type: none;
  font-weight: normal;
}
.rside ul.right li div {
  width: 100%;
  font-size: 1em;
  margin: 0 0 10px 0;
  font-weight: normal;
  padding: 0.8em 0 0.8em 0.8em;
  text-align: left;
  background-color: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.rside ul.right li div:hover {
  background-color: #2fe001;
  text-decoration: none;
}
.rside ul.right li div a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.rside ul.right li div a:visited {
  text-decoration: none;
}
.rside ul.right li a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.rside ul.rsub {
  margin: 0 0 0 0.8em;
  font-weight: normal;
  border: none;
  list-style-type: disc;
  list-style-position: inside;
}
.rside ul.rsub li {
  font-size: 1em;
  margin: 0;
  font-weight: normal;
  padding: 0.3em 0;
  text-align: left;
  border: none;
}

#newsarea {
  margin: 0 auto;
  min-height: 120px;
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (min-width: 600px) {
  #newsarea { /* 600px以上のとき */
    width: 1100px;
  }
}
@media screen and (max-width: 599px) {
  #newsarea { /* 599px以下のとき */
    width: 360px;
  }
}
#newsarea div.imgflex {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  #newsarea div.imgflex { /* 600px以上のとき */
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media screen and (max-width: 599px) {
  #newsarea div.imgflex { /* 599px以下のとき */ }
}
#newsarea div.imgflex img.view {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  #newsarea div.imgflex img.view { /* 600px以上のとき */
    width: 380px;
    margin: 30px 30px 5px 30px;
  }
}
@media screen and (max-width: 599px) {
  #newsarea div.imgflex img.view { /* 599px以下のとき */
    width: 340px;
    margin: 0 auto;
  }
}
#newsarea div.albumitem {
  width: 360px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  #newsarea div.albumitem { /* 599px以下のとき */
    margin-top: 20px;
  }
}
#newsarea div.albumitem img.view {
  width: 300px;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
}
#newsarea .msize {
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  #newsarea .msize { /* PC */
    width: 560px;
    height: 315px;
  }
}
@media screen and (max-width: 599px) {
  #newsarea .msize { /* mobile */
    width: 340px;
    height: 280px;
  }
}

@media screen and (min-width: 600px) {
  .f-top { /* PC */
    margin-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .f-top { /* mobile */ }
}

#flowarea {
  margin: 0 auto;
  margin-top: 20px;
  border-bottom: 1px #666 solid;
}
@media screen and (min-width: 600px) {
  #flowarea { /* PC */
    width: 900px;
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 599px) {
  #flowarea { /* mobile */
    width: 360px;
  }
}
#flowarea .farea01 {
  text-align: left;
}
@media screen and (min-width: 600px) {
  #flowarea .farea01 { /* PC */
    width: 150px;
  }
}
@media screen and (max-width: 599px) {
  #flowarea .farea01 { /* mobile */
    width: 360px;
  }
}
#flowarea .farea02 {
  min-height: 100px;
  text-align: left;
  padding: 10px 10px 20px 10px;
  box-sizing: border-box;
  /* --------アイコンを作ります-------- */
  /* アコーディオンが開いた時のスタイル */
  /* アイコンのバーのスタイル */
  /* オープン時にアニメーションを設定 */
}
@media screen and (min-width: 600px) {
  #flowarea .farea02 { /* PC */
    width: 750px;
  }
}
@media screen and (max-width: 599px) {
  #flowarea .farea02 { /* mobile */
    width: 360px;
  }
}
#flowarea .farea02 .imgarea img, #flowarea .farea02 .fimgarea img {
  margin-bottom: 20px;
}
#flowarea .farea02 summary {
  position: relative;
  display: block; /* 矢印を消す */
  cursor: pointer;
}
#flowarea .farea02 summary::-webkit-details-marker {
  display: none; /* 矢印を消す */
}
#flowarea .farea02 .summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px;
}
#flowarea .farea02 .icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
#flowarea .farea02 details {
  margin-top: 10px;
}
#flowarea .farea02 details[open] .icon {
  transform: rotate(180deg);
}
#flowarea .farea02 .icon::before,
#flowarea .farea02 .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: dodgerblue;
}
#flowarea .farea02 .icon::before {
  left: 0;
  transform: rotate(45deg);
}
#flowarea .farea02 .icon::after {
  right: 0;
  transform: rotate(-45deg);
}
#flowarea .farea02 .f-detail {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
#flowarea .farea02 details[open] .f-detail {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.workspace {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.workarea, .workarea02 {
  margin: 0 0 10px 0;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  display: inline-block;
  line-height: 18px;
  font-size: 15px;
}
@media screen and (min-width: 600px) {
  .workarea, .workarea02 { /* PC */
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  .workarea, .workarea02 { /* mobile */
    width: 360px;
  }
}

@media screen and (min-width: 600px) {
  .workarea img { /* PC */
    width: 250px;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 599px) {
  .workarea img { /* mobile */
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 600px) {
  .workarea02 { /* PC */
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .workarea02 { /* mobile */
    width: 360px;
  }
}
@media screen and (min-width: 600px) {
  .workarea02 img { /* PC */
    margin: 5px 0 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .workarea02 img { /* mobile */
    width: 320px;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

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

h1.sub {
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 0 0 5px 20px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-bottom: 1px #666 solid;
}
@media screen and (min-width: 600px) {
  h1.sub { /* 600px以上のとき */
    width: 1050px;
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  h1.sub { /* 600px以上のとき */
    width: 360px;
    font-size: 28px;
  }
}

h2.sub02 {
  margin: 0 0 20px 0;
}
@media screen and (min-width: 600px) {
  h2.sub02 { /* 600px以上のとき */
    width: 840px;
  }
}
@media screen and (max-width: 599px) {
  h2.sub02 { /* 600px以上のとき */
    width: 360px;
  }
}

.ba {
  margin: 10px 0;
  min-width: 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 15px;
  background: #ED8059; /* BOXの背景色         */
}

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

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

img.view3 {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

img.margin20 {
  margin: 20px 0;
}

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

dl.about {
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  border-bottom: 1px solid #666;
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  dl.about { /* 600px以上のとき */
    width: 950px;
  }
}
@media screen and (max-width: 599px) {
  dl.about { /* 599px以下のとき */
    width: 350px;
  }
}
dl.about dt {
  border-top: 1px solid #666;
  box-sizing: border-box;
  padding: 10px 0 0 10px;
  text-align: left;
}
@media screen and (min-width: 600px) {
  dl.about dt { /* 600px以上のとき */
    width: 250px;
  }
}
@media screen and (max-width: 599px) {
  dl.about dt { /* 599px以下のとき */
    width: 100px;
  }
}
dl.about dd {
  border-top: 1px solid #666;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 0 10px 0;
  text-align: left;
}
@media screen and (min-width: 600px) {
  dl.about dd { /* 600px以上のとき */
    width: 700px;
  }
}
@media screen and (max-width: 599px) {
  dl.about dd { /* 599px以下のとき */
    width: 250px;
  }
}
@media screen and (min-width: 600px) {
  dl.about dd .a-sub { /* 600px以上のとき */
    width: 650px;
    margin: 0 0 0 50px;
  }
}
@media screen and (max-width: 599px) {
  dl.about dd .a-sub { /* 599px以下のとき */
    width: 240px;
    margin: 0 0 0 10px;
  }
}

.sub-menu ul {
  margin: 0;
  list-style-position: inside;
}

.sub-menu li {
  float: left;
  padding: 0 0 10px 5px;
  margin: 0 40px 0 0;
  list-style-type: none;
}

h3.sub {
  box-sizing: border-box;
  position: relative;
  padding: 8px 30px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  z-index: 5;
  border-bottom: 2px #2fe001 double;
}
@media screen and (min-width: 600px) {
  h3.sub { /* 600px以上のとき */
    font-size: 20px;
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  h3.sub { /* 599px以下のとき */
    font-size: 18px;
    width: 350px;
  }
}

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

dl.sub02 dt:after, dl.sub03 dt:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.8em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: red;
  border-radius: 100%;
}

dl.sub03 dt {
  width: 100%;
  float: none;
}
dl.sub03 dd {
  float: none;
}
@media screen and (max-width: 599px) {
  dl.sub03 dd { /* 599px以下のとき */
    width: 320px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub03 dd { /* 600px以上のとき */
    width: 90%;
    margin-left: 60px;
  }
}

@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
.tolistBtn {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 40px;
}

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

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

.map {
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .map { /* 600px以上のとき */
    width: 600px;
    height: 600px;
  }
}
@media screen and (max-width: 599px) {
  .map { /* 599px以下のとき */
    width: 320px;
    height: 320px;
  }
}

h2.news, h2.news02 {
  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, h2.news02 { /* 599px以下のとき */
    width: 340px; /* 幅指定 */
    font-size: 20px; /* 文字サイズ指定 */
  }
}
@media screen and (min-width: 600px) {
  h2.news, h2.news02 { /* 600px以上のとき */
    width: 980px;
    font-size: 22px; /* 文字サイズ指定 */
  }
}

.next {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
}
@media screen and (min-width: 600px) {
  .next { /* 600px以上のとき */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.next div {
  margin: 0 20px;
}
.next .nextTolist {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  display: block;
  background: #fff; /* BOXの背景色         */
  border: 1px #2fe001 solid;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .next .nextTolist { /* 600px以上のとき */
    width: 180px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    border-radius: 18px; /* 角丸の指定          */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .next .nextTolist { /* 599px以下のとき */
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.next .nextTolist:hover {
  background-color: #2fe001;
  text-decoration: none;
}
.next .nextTolist a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.next .nextTolist a:visited {
  text-decoration: none;
}

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

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

/* animation */
/* Loading背景画面設定　*/
.splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #2fe001;
  text-align: center;
  opacity: 1;
  visibility: visible;
}

.splash.is-active {
  opacity: 0;
  visibility: hidden;
}

/* Loading画像中央配置　*/
.splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

.splash_logo.is-active {
  opacity: 1;
  visibility: visible;
}

/* Loading アイコンの大きさ設定　*/
@media screen and (min-width: 600px) {
  .splash_logo img { /* 600px以上のとき */
    width: 250px;
  }
}
@media screen and (max-width: 599px) {
  .splash_logo img { /* 599px以下のとき */
    width: 150px;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: scale(5%);
  }
  to {
    opacity: 1;
    transform: scale(100%);
  }
}
/* Instagram 読み込み */
/* コンテナ */
.instagram-container {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .instagram-container { /* 600px以上のとき */
    width: 880px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
  }
}
@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: 0 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;
  }
}

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

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

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: #2fe001;
  border-radius: 100%;
}

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

.farea {
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
}
@media screen and (max-width: 600px) {
  .farea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  .farea {
    width: 1200px;
  }
}

.footer1 {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .footer1 { /* PC */
    width: 100%;
    margin: 0 auto;
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 {
    width: 100%;
    min-height: 180px;
    font-size: 18px;
  }
}
.footer1 .icon {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer1 .icon .f-icon {
  font-size: 30px;
  display: block;
  margin: 10px 20px;
}
.footer1 .f-logo {
  margin: 0 auto;
  width: 100%;
  margin-top: 20px;
  display: block;
  text-align: center;
}
.footer1 a:link, .footer1 a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

#fcopyarea {
  width: 100%;
  margin: 0 auto;
  display: block;
  background-color: #2fe001;
}
#fcopyarea .fcopy {
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 0 0 8px 0;
  background-color: #2fe001;
}
@media screen and (max-width: 600px) {
  #fcopyarea .fcopy {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #fcopyarea .fcopy {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #fcopyarea .fcopy { /* pc */
    margin-top: 5px;
    font-size: 1em;
  }
}
@media screen and (max-width: 599px) {
  #fcopyarea .fcopy {
    margin-top: 5px;
    font-size: 0.8em;
  }
}
#fcopyarea .fcopy div {
  margin: 0 auto;
  min-height: 15px;
  height: auto;
  position: relative;
  font-size: 0.85em;
  text-align: center;
}/*# sourceMappingURL=style.css.map */