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

.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: #039a5a; /*アイコン色*/
  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: #039a5a; /*アイコン色*/
  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: #039a5a;
}

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

@media screen and (min-width: 600px) {
  /* pc */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
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;
}

/* ドロワーメニュー */
/* ドロワーメニュー */
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: #039a5a;
  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;
}

.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 */
#t-headwrap {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #t-headwrap { /* pc */
    height: 100vh;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap { /* mobile */
    height: 50vh;
  }
}
#t-headwrap .video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  #t-headwrap .video { /* pc */
    height: 100vh;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .video { /* mobile */
    height: 50vh;
  }
}
#t-headwrap .video video {
  min-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 600px) {
  #t-headwrap .video video { /* pc */
    min-height: 100vh;
    height: 100vh;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .video video { /* mobile */
    height: 50vh;
  }
}
#t-headwrap .video img {
  min-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 600px) {
  #t-headwrap .video img { /* pc */
    min-height: 100vh;
    height: 100vh;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .video img { /* mobile */
    height: 288px;
  }
}
#t-headwrap .t-naviwrap {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 30;
}
#t-headwrap .t-naviwrap .t-headarea {
  position: relative;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #t-headwrap .t-naviwrap .t-headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #t-headwrap .t-naviwrap .t-headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #t-headwrap .t-naviwrap .t-headarea { /* pc */
    min-height: 130px;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .t-naviwrap .t-headarea { /* mobile */
    min-height: 55px;
  }
}
@media screen and (min-width: 600px) {
  #t-headwrap .t-naviwrap .t-headarea img.h-logo { /* pc */
    position: absolute;
    top: 26px;
    left: 30px;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .t-naviwrap .t-headarea img.h-logo { /* mobile */
    position: absolute;
    top: 12px;
    left: 9px;
    width: 190px;
  }
}
@media screen and (min-width: 600px) {
  #t-headwrap .t-naviwrap .t-headarea .h-menu { /* pc */
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .t-naviwrap .t-headarea .h-menu { /* mobile */
    display: none;
  }
}
#t-headwrap .t-naviwrap .t-headarea .order-btn {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff; /* BOXの背景色         */
  border: 3px #3AAE36 solid;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  #t-headwrap .t-naviwrap .t-headarea .order-btn { /* 600px以上のとき */
    bottom: 30px;
    left: 820px;
    width: 270px; /* BOXの幅             */
    height: 55px; /* BOXの高さ           */
    border-radius: 10px; /* 角丸の指定          */
    vertical-align: middle;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .t-naviwrap .t-headarea .order-btn { /* 599px以下のとき */
    bottom: 12px;
    right: 15px;
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
  }
}
#t-headwrap .t-naviwrap .t-headarea .order-btn:hover {
  background-color: #D5D975;
  text-decoration: none;
}
#t-headwrap .t-naviwrap .t-headarea .order-btn div {
  margin: 0 5px;
}
#t-headwrap .t-naviwrap .t-headarea .order-btn a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#t-headwrap .t-naviwrap .t-headarea .order-btn a:visited {
  text-decoration: none;
}
#t-headwrap .t-naviwrap .t-headarea .order-btn .line {
  color: #3AAE36;
}
#t-headwrap .h-front {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  #t-headwrap .h-front { /* pc */
    min-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .h-front { /* mobile */ }
}
#t-headwrap .h-front img {
  margin: 0 auto;
}
#t-headwrap .t-front {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  #t-headwrap .t-front { /* pc */
    height: 500px;
    background: url("../images/head_bk.png") left bottom repeat-x;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap .t-front { /* mobile */
    height: 200px;
    background: url("../images/head_bk_s.png") left bottom repeat-x;
  }
}

#headwrap {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    min-height: 130px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    height: 55px;
  }
}
#headwrap .naviwrap {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 30;
}
#headwrap .naviwrap .headarea {
  position: relative;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #headwrap .naviwrap .headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headwrap .naviwrap .headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .naviwrap .headarea { /* pc */
    min-height: 130px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .naviwrap .headarea { /* mobile */
    min-height: 55px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .naviwrap .headarea img.h-logo { /* pc */
    position: absolute;
    top: 26px;
    left: 30px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .naviwrap .headarea img.h-logo { /* mobile */
    position: absolute;
    top: 12px;
    left: 9px;
    width: 190px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .naviwrap .headarea .h-menu { /* pc */
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .naviwrap .headarea .h-menu { /* mobile */
    display: none;
  }
}
#headwrap .naviwrap .headarea .order-btn {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff; /* BOXの背景色         */
  border: 3px #3AAE36 solid;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  #headwrap .naviwrap .headarea .order-btn { /* 600px以上のとき */
    bottom: 30px;
    left: 820px;
    width: 270px; /* BOXの幅             */
    height: 55px; /* BOXの高さ           */
    border-radius: 10px; /* 角丸の指定          */
    vertical-align: middle;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .naviwrap .headarea .order-btn { /* 599px以下のとき */
    bottom: 12px;
    right: 15px;
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
  }
}
#headwrap .naviwrap .headarea .order-btn:hover {
  background-color: #D5D975;
  text-decoration: none;
}
#headwrap .naviwrap .headarea .order-btn div {
  margin: 0 5px;
}
#headwrap .naviwrap .headarea .order-btn a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#headwrap .naviwrap .headarea .order-btn a:visited {
  text-decoration: none;
}
#headwrap .naviwrap .headarea .order-btn .line {
  color: #3AAE36;
}

/* main area */
main {
  min-height: 300px;
  z-index: 0;
}

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

#subarea {
  position: relative;
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #subarea { /* pc */
    width: 1065px;
    z-index: 20;
  }
}
@media screen and (max-width: 599px) {
  #subarea { /* mobile */
    width: 360px;
  }
}
#subarea h1 {
  font-weight: 700;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
  line-height: 30px;
  background-image: linear-gradient(to right, #333 5px, transparent 5px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 600px) {
  #subarea h1 { /* 600px以上のとき */
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  #subarea h1 { /* 600px以上のとき */
    font-size: 22px;
  }
}

.top-about {
  width: 100%;
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .top-about { /* 600px以上のとき */
    height: 650px;
  }
}
@media screen and (max-width: 599px) {
  .top-about { /* 600px以上のとき */
    height: 320px;
  }
}
.top-about .a-onigiri01, .top-about .a-onigiri02, .top-about .a-img01, .top-about .a-img02 {
  position: absolute;
}
@media screen and (min-width: 600px) {
  .top-about .a-onigiri01, .top-about .a-onigiri02, .top-about .a-img01, .top-about .a-img02 { /* 600px以上のとき */
    top: 0px;
    left: 165px;
  }
}
@media screen and (max-width: 599px) {
  .top-about .a-onigiri01, .top-about .a-onigiri02, .top-about .a-img01, .top-about .a-img02 { /* 600px以上のとき */
    top: 0px;
    left: 0px;
    width: 190px;
  }
}
@media screen and (min-width: 600px) {
  .top-about .a-onigiri02 { /* 600px以上のとき */
    top: 300px;
    left: 545px;
  }
}
@media screen and (max-width: 599px) {
  .top-about .a-onigiri02 { /* 600px以上のとき */
    top: 110px;
    left: 170px;
  }
}
@media screen and (min-width: 600px) {
  .top-about .a-img01 { /* 600px以上のとき */
    top: 5px;
    left: 534px;
  }
}
@media screen and (max-width: 599px) {
  .top-about .a-img01 { /* 600px以上のとき */
    top: 5px;
    left: 180px;
    width: 170px;
  }
}
@media screen and (min-width: 600px) {
  .top-about .a-img02 { /* 600px以上のとき */
    top: 337px;
    left: 176px;
  }
}
@media screen and (max-width: 599px) {
  .top-about .a-img02 { /* 600px以上のとき */
    top: 180px;
    left: 0px;
    width: 170px;
  }
}
.top-about .a-txt01, .top-about .a-txt02 {
  position: absolute;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .top-about .a-txt01, .top-about .a-txt02 { /* 600px以上のとき */
    top: 60px;
    left: 250px;
    font-size: 20px;
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .top-about .a-txt01, .top-about .a-txt02 { /* 600px以上のとき */
    top: 22px;
    left: 30px;
    font-size: 14px;
    font-weight: 400;
  }
}
@media screen and (min-width: 600px) {
  .top-about .a-txt02 { /* 600px以上のとき */
    top: 420px;
    left: 660px;
  }
}
@media screen and (max-width: 599px) {
  .top-about .a-txt02 { /* 600px以上のとき */
    top: 220px;
    left: 228px;
  }
}

.top-order {
  width: 100%;
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .top-order { /* 600px以上のとき */
    height: 800px;
  }
}
@media screen and (max-width: 599px) {
  .top-order { /* 600px以上のとき */
    height: 560px;
  }
}
.top-order .order-img {
  position: absolute;
}
@media screen and (min-width: 600px) {
  .top-order .order-img { /* 600px以上のとき */
    top: 50px;
    left: 113px;
  }
}
@media screen and (max-width: 599px) {
  .top-order .order-img { /* 600px以上のとき */
    top: 10px;
    left: 0px;
    width: 350px;
  }
}
.top-order .o-txt01, .top-order .o-txt02, .top-order .o-txt03 {
  position: absolute;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .top-order .o-txt01, .top-order .o-txt02, .top-order .o-txt03 { /* 600px以上のとき */
    top: 20px;
    left: 430px;
    font-size: 20px;
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-txt01, .top-order .o-txt02, .top-order .o-txt03 { /* 600px以上のとき */
    top: 10px;
    left: 100px;
    font-size: 14px;
    font-weight: 400;
  }
}
@media screen and (min-width: 600px) {
  .top-order .o-txt02 { /* 600px以上のとき */
    top: 180px;
    left: 310px;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-txt02 { /* 600px以上のとき */
    top: 105px;
    left: 48px;
  }
}
@media screen and (min-width: 600px) {
  .top-order .o-txt03 { /* 600px以上のとき */
    top: 200px;
    left: 665px;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-txt03 { /* 600px以上のとき */
    top: 120px;
    left: 232px;
  }
}
.top-order .o-txt04 {
  position: absolute;
  background-color: #F4F0B8;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .top-order .o-txt04 { /* 600px以上のとき */
    width: 710px;
    top: 440px;
    left: 170px;
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-txt04 { /* 600px以上のとき */
    width: 350px;
    top: 300px;
    left: 5pxx;
    font-size: 14px;
    font-weight: 400;
    padding: 20px 10px;
    box-sizing: border-box;
    border-radius: 20px;
  }
}
.top-order .o-btn {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  background: #fff; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .top-order .o-btn { /* 600px以上のとき */
    bottom: 30px;
    left: 110px;
    width: 850px; /* BOXの幅             */
    height: 170px; /* BOXの高さ           */
    border-radius: 30px; /* 角丸の指定          */
    vertical-align: middle;
    border: 10px #3AAE36 solid;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-btn { /* 599px以下のとき */
    bottom: 12px;
    left: 5px;
    width: 350px; /* BOXの幅             */
    height: 120px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
    border: 5px #3AAE36 solid;
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    box-sizing: border-box;
  }
}
.top-order .o-btn:hover {
  background-color: #D5D975;
  text-decoration: none;
}
.top-order .o-btn .o-btn-txt01 {
  align-items: center;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .top-order .o-btn .o-btn-txt01 { /* 600px以上のとき */
    display: flex;
    justify-content: flex-start;
    width: 650px;
    margin: 40px 0 0 40px;
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-btn .o-btn-txt01 { /* 600px以上のとき */
    width: 150px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    font-weight: 400;
    justify-content: flex-start;
  }
}
.top-order .o-btn .o-btn-txt0101 {
  display: flex;
  justify-content: flex-start;
}
.top-order .o-btn .o-btn-txt02 {
  text-align: left;
}
@media screen and (min-width: 600px) {
  .top-order .o-btn .o-btn-txt02 { /* 600px以上のとき */
    width: 680px;
    margin: 20px 0 0 40px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-btn .o-btn-txt02 { /* 600px以上のとき */
    width: 80px;
    position: absolute;
    top: 30px;
    left: 170px;
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  .top-order .o-btn .o-btn-qr { /* 600px以上のとき */
    margin: 30px 30px 0 0;
    float: right;
  }
}
@media screen and (max-width: 599px) {
  .top-order .o-btn .o-btn-qr { /* 600px以上のとき */
    position: absolute;
    top: 20px;
    right: 10px;
    width: 70px;
  }
}
.top-order .o-btn .line {
  color: #3AAE36;
}

.sub-order01 {
  width: 100%;
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .sub-order01 { /* 600px以上のとき */
    height: 550px;
  }
}
@media screen and (max-width: 599px) {
  .sub-order01 { /* 600px以上のとき */
    height: 420px;
  }
}
.sub-order01 .order-img {
  position: absolute;
}
@media screen and (min-width: 600px) {
  .sub-order01 .order-img { /* 600px以上のとき */
    top: 50px;
    left: 113px;
  }
}
@media screen and (max-width: 599px) {
  .sub-order01 .order-img { /* 600px以上のとき */
    top: 10px;
    left: 0px;
    width: 350px;
  }
}
.sub-order01 .o-txt01, .sub-order01 .o-txt02, .sub-order01 .o-txt03 {
  position: absolute;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .sub-order01 .o-txt01, .sub-order01 .o-txt02, .sub-order01 .o-txt03 { /* 600px以上のとき */
    top: 20px;
    left: 0;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .sub-order01 .o-txt01, .sub-order01 .o-txt02, .sub-order01 .o-txt03 { /* 600px以上のとき */
    top: 10px;
    left: 0;
    font-size: 14px;
  }
}
.sub-order01 .o-txt02 {
  width: 100px;
}
@media screen and (min-width: 600px) {
  .sub-order01 .o-txt02 { /* 600px以上のとき */
    top: 180px;
    left: 305px;
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .sub-order01 .o-txt02 { /* 600px以上のとき */
    top: 105px;
    left: 30px;
  }
}
.sub-order01 .o-txt03 {
  width: 100px;
}
@media screen and (min-width: 600px) {
  .sub-order01 .o-txt03 { /* 600px以上のとき */
    top: 200px;
    left: 660px;
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .sub-order01 .o-txt03 { /* 600px以上のとき */
    top: 120px;
    left: 220px;
  }
}
.sub-order01 .o-txt04 {
  position: absolute;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .sub-order01 .o-txt04 { /* 600px以上のとき */
    width: 100%;
    bottom: 10px;
    left: 0;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .sub-order01 .o-txt04 { /* 600px以上のとき */
    width: 350px;
    top: 300px;
    left: 5pxx;
    font-size: 14px;
    padding: 20px 10px;
  }
}

.sub-order02 {
  width: 100%;
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .sub-order02 { /* 600px以上のとき */
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .sub-order02 { /* 600px以上のとき */
    height: 200px;
  }
}
.sub-order02 .o-btn {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  background: #fff; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .sub-order02 .o-btn { /* 600px以上のとき */
    bottom: 50px;
    left: 110px;
    width: 850px; /* BOXの幅             */
    height: 170px; /* BOXの高さ           */
    border-radius: 30px; /* 角丸の指定          */
    vertical-align: middle;
    border: 10px #3AAE36 solid;
  }
}
@media screen and (max-width: 599px) {
  .sub-order02 .o-btn { /* 599px以下のとき */
    bottom: 30px;
    left: 5px;
    width: 350px; /* BOXの幅             */
    height: 120px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
    border: 5px #3AAE36 solid;
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    box-sizing: border-box;
  }
}
.sub-order02 .o-btn:hover {
  background-color: #D5D975;
  text-decoration: none;
}
.sub-order02 .o-btn .o-btn-txt01 {
  align-items: center;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .sub-order02 .o-btn .o-btn-txt01 { /* 600px以上のとき */
    display: flex;
    justify-content: flex-start;
    width: 650px;
    margin: 40px 0 0 40px;
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .sub-order02 .o-btn .o-btn-txt01 { /* 600px以上のとき */
    width: 150px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    font-weight: 400;
    justify-content: flex-start;
  }
}
.sub-order02 .o-btn .o-btn-txt0101 {
  display: flex;
  justify-content: flex-start;
}
.sub-order02 .o-btn .o-btn-txt02 {
  text-align: left;
}
@media screen and (min-width: 600px) {
  .sub-order02 .o-btn .o-btn-txt02 { /* 600px以上のとき */
    width: 680px;
    margin: 20px 0 0 40px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .sub-order02 .o-btn .o-btn-txt02 { /* 600px以上のとき */
    width: 80px;
    position: absolute;
    top: 30px;
    left: 170px;
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  .sub-order02 .o-btn .o-btn-qr { /* 600px以上のとき */
    margin: 30px 30px 0 0;
    float: right;
  }
}
@media screen and (max-width: 599px) {
  .sub-order02 .o-btn .o-btn-qr { /* 600px以上のとき */
    position: absolute;
    top: 20px;
    right: 10px;
    width: 70px;
  }
}
.sub-order02 .o-btn .line {
  color: #3AAE36;
}

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: 100%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
  }
}
@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: 3px #333 solid;
  border-bottom: 3px #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: 1px 5px;
  display: inline-block;
  background: #ED8059; /* BOXの背景色         */
}

.workspace {
  width: 100%;
  display: flex;
  justify-content: start;
  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: 33%;
  }
}
@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 */
    width: 160px;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

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

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

@media screen and (max-width: 599px) {
  #navi { /* 599px以下のとき */
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #navi { /* 600px以上のとき */
    width: 100%;
    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;
  }
}

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

.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 #039a5a 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: #039a5a;
  text-decoration: none;
  color: #fff;
}
.next .nextTolist a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.next .nextTolist a:visited {
  text-decoration: none;
}
.next a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.next 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;
}

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

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

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

@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
.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;
  }
}

/* animation */
/* Loading背景画面設定　*/
.splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  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;
}

/* ~~ フッター ~~ */
@media screen and (min-width: 600px) {
  footer { /* 600px以上のとき */
    min-height: 340px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    min-height: 240px;
  }
}

#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */
    min-height: 340px;
    background: url("../images/foot_bk.png") no-repeat center bottom/cover;
  }
}
@media screen and (max-width: 599px) {
  #fwrap {
    min-height: 240px;
    background: url("../images/foot_bk_s.png") no-repeat center bottom/cover;
  }
}

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

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

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

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