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

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

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

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

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

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

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

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

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

p {
  margin: 10px 0 0 0;
}

.red {
  color: red;
}

.orange {
  color: #F60;
}

.blue {
  color: #36C;
}

.blue2 {
  color: dodgerblue;
}

.violet {
  color: purple;
}

.green {
  color: green;
}

.brown {
  color: brown;
}

.grey {
  color: gray;
}

.sitecolor {
  color: grey;
}

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

.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: "EB Garamond", "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  background-color: #fff;
  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;
}

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

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

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

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

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

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

.btn {
  position: absolute;
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .btn { /* PC */
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    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 */
#headtop {
  width: 100%;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #headtop { /* pc */
    height: 900px;
  }
}
@media screen and (max-width: 599px) {
  #headtop { /* mobile */
    height: 500px;
  }
}
#headtop .slider-top {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  #headtop .slider-top { /* pc */
    height: 700px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .slider-top { /* mobile */
    height: 500px;
  }
}
@media screen and (min-width: 600px) {
  #headtop .slider-top img { /* pc */
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  #headtop .slider-top img { /* mobile */
    width: 100%;
  }
}
#headtop .slider div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
}
@media screen and (min-width: 600px) {
  #headtop .slider div { /* pc */
    height: 900px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .slider div { /* mobile */
    height: 500px;
  }
}
#headtop .t-headarea {
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}
@media screen and (min-width: 600px) {
  #headtop .t-headarea { /* pc */
    min-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .t-headarea { /* mobile */
    min-height: 70px;
  }
}
#headtop .t-headarea .t-sub-headarea {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #headtop .t-headarea .t-sub-headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headtop .t-headarea .t-sub-headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headtop .t-headarea .t-sub-headarea { /* pc */
    min-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .t-headarea .t-sub-headarea { /* mobile */
    min-height: 70px;
  }
}
@media screen and (min-width: 600px) {
  #headtop .t-headarea .t-sub-headarea img.h-logo { /* pc */
    position: absolute;
    top: 33px;
    left: 18px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .t-headarea .t-sub-headarea img.h-logo { /* mobile */
    position: absolute;
    top: 15px;
    left: 6px;
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  #headtop .t-headarea .t-sub-headarea .h-menu-tx { /* pc */
    position: absolute;
    bottom: 40px;
    right: 45px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .t-headarea .t-sub-headarea .h-menu-tx { /* mobile */
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  #headtop .t-headarea .t-sub-headarea .h-mail { /* pc */
    position: absolute;
    top: 35px;
    right: 125px;
    font-size: 48px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .t-headarea .t-sub-headarea .h-mail { /* mobile */
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #headtop .t-headarea .t-sub-headarea .h-mail-tx { /* pc */
    position: absolute;
    bottom: 40px;
    right: 120px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  #headtop .t-headarea .t-sub-headarea .h-mail-tx { /* mobile */
    display: none;
  }
}

#headsub {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #headsub { /* pc */
    min-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  #headsub { /* mobile */
    min-height: 70px;
  }
}
#headsub .headarea {
  position: relative;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #headsub .headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headsub .headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headsub .headarea { /* pc */
    min-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  #headsub .headarea { /* mobile */
    min-height: 70px;
  }
}
@media screen and (min-width: 600px) {
  #headsub .headarea img.h-logo { /* pc */
    position: absolute;
    top: 33px;
    left: 18px;
  }
}
@media screen and (max-width: 599px) {
  #headsub .headarea img.h-logo { /* mobile */
    position: absolute;
    top: 15px;
    left: 6px;
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  #headsub .headarea .h-menu-tx { /* pc */
    position: absolute;
    bottom: 40px;
    right: 45px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  #headsub .headarea .h-menu-tx { /* mobile */
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  #headsub .headarea .h-mail { /* pc */
    position: absolute;
    top: 35px;
    right: 125px;
    font-size: 48px;
  }
}
@media screen and (max-width: 599px) {
  #headsub .headarea .h-mail { /* mobile */
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #headsub .headarea .h-mail-tx { /* pc */
    position: absolute;
    bottom: 40px;
    right: 120px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  #headsub .headarea .h-mail-tx { /* mobile */
    display: none;
  }
}

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

#subpage {
  background: url("../images/main_bk.jpg") center bottom repeat-y;
}

@media screen and (min-width: 600px) {
  #toppage { /* 600px以上のとき */
    background: url("../images/top_main_bk.02.jpg") center top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  #toppage { /* 600px以上のとき */
    background: url("../images/top_main_bk_s.jpg") center top repeat;
  }
}

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

#menuarea {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  #menuarea { /* 600px以上のとき */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  #menuarea { /* 600px以上のとき */
    width: 360px;
  }
}
#menuarea h1 {
  font-weight: 400;
  margin: 0 auto;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 600px) {
  #menuarea h1 { /* 600px以上のとき */
    font-size: 36px;
  }
}
@media screen and (max-width: 599px) {
  #menuarea h1 { /* 600px以上のとき */
    font-size: 32px;
  }
}
#menuarea h1 .h1-sub {
  font-size: 0.5em;
  line-height: 1em;
  letter-spacing: 0.08em;
}
#menuarea .circle {
  color: red;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

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

.n-title {
  display: block;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .n-title { /* PC */
    width: 930px;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 20px;
    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; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

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

.workarea {
  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 { /* PC */
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  .workarea { /* mobile */
    width: 180px;
  }
}
.workarea img {
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .workarea img { /* PC */
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  .workarea img { /* mobile */
    width: 160px;
    height: 160px;
  }
}

.workdetail {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .workdetail { /* PC */
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .workdetail { /* mobile */
    width: 100%;
  }
}

.searcharea {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px;
  box-sizing: border-box;
  display: inline-block;
  line-height: 18px;
  font-size: 15px;
  border-top: 1px #000 solid;
  border-bottom: 1px #000 solid;
  position: relative;
}
@media screen and (min-width: 600px) {
  .searcharea { /* PC */
    width: 1000px;
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .searcharea { /* mobile */
    width: 360px;
    min-height: 100px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 600px) {
  .searcharea form { /* PC */
    width: 840px;
    display: block;
    position: absolute;
    top: 0;
    left: 160px;
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .searcharea form { /* mobile */
    width: 360px;
    display: block;
    margin: 0 auto;
  }
}
.searcharea .title {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .searcharea .title { /* PC */
    width: 150px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
  }
}
@media screen and (max-width: 599px) {
  .searcharea .title { /* mobile */
    width: 360px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (min-width: 600px) {
  .searcharea .word { /* PC */
    width: 650px;
    float: left;
    text-align: left;
    padding: 10px;
    line-height: 1.7em;
  }
}
@media screen and (max-width: 599px) {
  .searcharea .word { /* mobile */
    width: 360px;
    margin: 0 auto;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.7em;
  }
}
@media screen and (min-width: 600px) {
  .searcharea .search { /* PC */
    width: 150px;
    float: left;
    display: grid;
    place-items: center;
    height: 100px;
    line-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .searcharea .search { /* mobile */
    width: 360px;
    height: 30px;
    line-height: 30px;
  }
}

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

/* common */
.toptolist, .toptolist03, .toptolist04, .toptolist02 {
  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 grey solid;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .toptolist, .toptolist03, .toptolist04, .toptolist02 { /* 600px以上のとき */
    bottom: 15px;
    right: 40px;
    width: 180px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    border-radius: 18px; /* 角丸の指定          */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .toptolist, .toptolist03, .toptolist04, .toptolist02 { /* 599px以下のとき */
    bottom: 12px;
    right: 15px;
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
  }
}
.toptolist:hover, .toptolist03:hover, .toptolist04:hover, .toptolist02:hover {
  background-color: grey;
  text-decoration: none;
  color: #fff;
}
.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 {
  bottom: 5px;
  z-index: 20;
}

.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の幅             */
}

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

h1.sub {
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: 55px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 600px) {
  h1.sub { /* 600px以上のとき */
    width: 1000px;
    font-size: 36px;
  }
}
@media screen and (max-width: 599px) {
  h1.sub { /* 600px以上のとき */
    width: 360px;
    font-size: 32px;
  }
}
h1.sub span.h1-sub {
  font-size: 0.5em;
  line-height: 1em;
  letter-spacing: 0.08em;
}
h1.sub:before {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  width: 40px;
  left: 0;
  height: 6px;
  border-top: double 6px grey;
}

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 #aaa;
  border-bottom: 2px solid #aaa;
  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;
  }
}

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 grey 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: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 40px;
}

.tobutton {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: grey;
  border: 2px solid grey;
  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: grey;
  color: #fff;
}
.tobutton:hover:before {
  transform: skewX(-45deg) translateX(13.5em);
  transition: all 0.5s ease-in-out;
}

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

img.view {
  width: 380px;
  -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;
}

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

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

.kiji {
  margin: 0 auto;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 50px;
  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;
}

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

/* Instagram 読み込み */
/* コンテナ */
.instagram-container {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .instagram-container { /* 600px以上のとき */
    width: 880px;
    margin: 0 auto;
    margin-top: 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;
  }
}

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

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

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

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

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

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

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

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: grey;
  border-radius: 100%;
}

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

#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */
    min-height: 120px;
  }
}
@media screen and (max-width: 599px) {
  #fwrap {
    min-height: 150px;
  }
}

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

.footer1, .footer2 {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .footer1, .footer2 {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  .footer1, .footer2 {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  .footer1, .footer2 { /* 600px以上のとき */
    padding-top: 0;
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .footer1, .footer2 {
    padding-top: 5px;
    min-height: 150px;
  }
}
.footer1 .f-logo, .footer2 .f-logo {
  width: 100%;
  text-align: center;
  line-height: 1.2em;
  padding: 10px 0;
  display: block;
}
@media screen and (min-width: 600px) {
  .footer1 .f-logo, .footer2 .f-logo { /* 600px以上のとき */
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-logo, .footer2 .f-logo {
    font-size: 14px;
    margin: 0 auto;
    padding-top: 5px;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .footer1 .f-logo img, .footer2 .f-logo img { /* 600px以上のとき */
    margin: 10px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-logo img, .footer2 .f-logo img {
    margin: 10px 0 0 0;
  }
}
.footer1 .ftitle, .footer2 .ftitle {
  color: grey;
  margin-top: 20px;
  margin-bottom: 10px;
}
.footer1 .ftitle a:link, .footer2 .ftitle a:link, .footer1 .ftitle a:visited, .footer2 .ftitle a:visited {
  color: grey;
}
.footer1 .f-access, .footer2 .f-access {
  position: absolute;
}
@media screen and (min-width: 600px) {
  .footer1 .f-access, .footer2 .f-access { /* 600px以上のとき */
    top: 100px;
    right: 380px;
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-access, .footer2 .f-access {
    top: 150px;
    right: 10px;
    font-size: 38px;
  }
}

@media screen and (min-width: 600px) {
  .footer2 { /* 600px以上のとき */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .footer2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    padding: 5px 0 10px 0;
  }
}
.footer2 img {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  margin-left: 10px;
}
.footer2 div {
  padding: 0 20px;
}
.footer2 div.secTit {
  padding: 0 0 0 20px;
  position: relative;
  text-align: center;
}
.footer2 div.secTit:after {
  position: relative;
  display: inline-block;
  content: "";
  background: grey;
  width: 2px;
  height: 1.5em;
  margin-top: -0.2em;
  vertical-align: middle;
  transform: rotate(35deg);
}
@media screen and (min-width: 600px) {
  .footer2 div.secTit:after { /* 600px以上のとき */
    margin: 0 20px 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer2 div.secTit:after {
    margin: 0 10px 0 20px;
  }
}

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