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

.white {
  color: #fff;
}

.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 */
#headwrap {
  width: 100%;
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    height: 1453px;
    height: 1000px;
    background-image: url("../images/header_bk.jpg");
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    height: 1300px;
    background-image: url("../images/header_bk_s.jpg");
  }
}
#headwrap .headarea {
  position: relative;
  margin: 0 auto;
  z-index: 10;
}
@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 */
    height: 510px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .headarea { /* mobile */
    height: 320px;
  }
}
#headwrap .headarea .logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  #headwrap .headarea .logo { /* mobile */
    width: 200px;
  }
}
#headwrap .headarea .area01, #headwrap .headarea .area02 {
  background-color: rgba(255, 255, 255, 0.8);
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  text-align: center;
  box-shadow: 4px 10px 8px -3px #909090;
}
@media screen and (min-width: 600px) {
  #headwrap .headarea .area01, #headwrap .headarea .area02 { /* pc */
    width: 90px;
    height: 435px;
    line-height: 90px;
    right: 100px;
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .headarea .area01, #headwrap .headarea .area02 { /* mobile */
    width: 45px;
    height: 180px;
    line-height: 45px;
    right: 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .headarea .area02 { /* pc */
    top: 80px;
    right: 200px;
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .headarea .area02 { /* mobile */
    top: 30px;
    right: 45px;
    height: 170px;
  }
}
#headwrap .top-copy {
  width: 100%;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 5;
}
@media screen and (min-width: 600px) {
  #headwrap .top-copy { /* pc */
    top: 265px;
    height: 210px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .top-copy { /* mobile */
    top: 150px;
    height: 150px;
  }
}
#headwrap .top-copy p {
  text-shadow: 2px 2px 3px #909090;
  color: #fff;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 600px) {
  #headwrap .top-copy p { /* pc */
    text-align: center;
    font-size: 28px;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .top-copy p { /* mobile */
    text-align: left;
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.5em;
  }
}
#headwrap .movie01, #headwrap .movie02 {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  margin: 0 auto;
  box-shadow: 4px 10px 8px -3px #909090;
}
@media screen and (min-width: 600px) {
  #headwrap .movie01, #headwrap .movie02 { /* pc */
    width: 780px;
    height: 560px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .movie01, #headwrap .movie02 { /* mobile */
    width: 350px;
    height: 300px;
  }
}
#headwrap .movie01 .m-ttl, #headwrap .movie02 .m-ttl {
  width: 100%;
  padding: 10px 0;
  box-shadow: 4px 10px 8px -3px #909090;
  text-align: center;
  background-color: rgba(234, 218, 115, 0.8);
}
#headwrap .movie01 .mvarea, #headwrap .movie02 .mvarea {
  background: url("../images/mvarea_bk.png") center center no-repeat;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  #headwrap .movie01 .mvarea, #headwrap .movie02 .mvarea { /* pc */
    width: 693px;
    height: 390px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .movie01 .mvarea, #headwrap .movie02 .mvarea { /* mobile */
    width: 350px;
    height: 210px;
    background-size: cover;
    margin-top: 10px;
  }
}
#headwrap .movie02 {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  #headwrap .movie02 { /* pc */
    width: 1110px;
    height: 308px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .movie02 { /* mobile */
    width: 350px;
    height: 630px;
  }
}
#headwrap .movie02 .mvarea02 {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  #headwrap .movie02 .mvarea02 { /* pc */
    height: 182px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .movie02 .mvarea02 { /* mobile */
    height: 340px;
    margin-top: 20px;
  }
}
#headwrap .movie02 .mvarea02 img {
  margin: 0 10px;
}
#headwrap .movie02 .mvarea02 div {
  margin: 0 10px;
}
#headwrap .movie02 .mvarea02 .youtube02 {
  width: 320px;
  height: 180px;
}

#sub-headwrap {
  width: 100%;
  height: 200px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #sub-headwrap { /* pc */ }
}
@media screen and (max-width: 599px) {
  #sub-headwrap { /* mobile */ }
}
#sub-headwrap .headarea {
  height: 200px;
  position: relative;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  #sub-headwrap .headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #sub-headwrap .headarea {
    width: 1200px;
  }
}
#sub-headwrap .headarea .logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 300px;
}

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

#area01, #area02, #area03 {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 600px) {
  #area01, #area02, #area03 { /* pc */
    height: 840px;
  }
}
@media screen and (max-width: 599px) {
  #area01, #area02, #area03 { /* mobile */
    height: 650px;
  }
}
#area01 .area01-ttl, #area01 .area01-ttl-01, #area02 .area01-ttl, #area02 .area01-ttl-01, #area03 .area01-ttl, #area03 .area01-ttl-01 {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 5px #000 solid;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 600px) {
  #area01 .area01-ttl, #area01 .area01-ttl-01, #area02 .area01-ttl, #area02 .area01-ttl-01, #area03 .area01-ttl, #area03 .area01-ttl-01 { /* pc */
    width: 1110px;
  }
}
@media screen and (max-width: 599px) {
  #area01 .area01-ttl, #area01 .area01-ttl-01, #area02 .area01-ttl, #area02 .area01-ttl-01, #area03 .area01-ttl, #area03 .area01-ttl-01 { /* mobile */
    width: 360px;
  }
}
#area01 .area01-ttl img, #area01 .area01-ttl-01 img, #area02 .area01-ttl img, #area02 .area01-ttl-01 img, #area03 .area01-ttl img, #area03 .area01-ttl-01 img {
  padding: 5px;
}
@media screen and (max-width: 599px) {
  #area01 .area01-ttl img, #area01 .area01-ttl-01 img, #area02 .area01-ttl img, #area02 .area01-ttl-01 img, #area03 .area01-ttl img, #area03 .area01-ttl-01 img { /* mobile */
    width: 30%;
  }
}
#area01 .area01-ttl-01, #area02 .area01-ttl-01, #area03 .area01-ttl-01 {
  color: #fff;
  border-bottom: 5px #fff solid;
}
#area01 .sns-area, #area02 .sns-area, #area03 .sns-area {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
#area01 .sns-area div, #area02 .sns-area div, #area03 .sns-area div {
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#area01 .bottom-img, #area02 .bottom-img, #area03 .bottom-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

#area02 {
  background: linear-gradient(to bottom, #00AAD1, #0070BA);
  padding-top: 30px;
}
@media screen and (min-width: 600px) {
  #area02 { /* pc */
    height: 900px;
  }
}
@media screen and (max-width: 599px) {
  #area02 { /* mobile */
    height: 750px;
  }
}

#area03 {
  background-color: #005597;
  padding-top: 30px;
}
@media screen and (min-width: 600px) {
  #area03 { /* pc */
    height: 600px;
  }
}
@media screen and (max-width: 599px) {
  #area03 { /* mobile */
    height: 650px;
  }
}
#area03 a:link, #area03 a:visited {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.title-area01, .title-area01-02, .title-area01-01, .title-area02 {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 10px 0;
  background-color: #CBE8E6;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 600px) {
  .title-area01, .title-area01-02, .title-area01-01, .title-area02 { /* pc */
    width: 1110px;
  }
}
@media screen and (max-width: 599px) {
  .title-area01, .title-area01-02, .title-area01-01, .title-area02 { /* mobile */
    width: 360px;
  }
}
.title-area01 .ttl, .title-area01-02 .ttl, .title-area01-01 .ttl, .title-area02 .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-area01 .ttl div, .title-area01-02 .ttl div, .title-area01-01 .ttl div, .title-area02 .ttl div {
  height: 40px;
  line-height: 40px;
}
.title-area01 .ttl:before, .title-area01-02 .ttl:before, .title-area01-01 .ttl:before, .title-area02 .ttl:before {
  content: url(../images/area_ttl_left.png);
  margin-right: 20px;
}
.title-area01 .ttl:after, .title-area01-02 .ttl:after, .title-area01-01 .ttl:after, .title-area02 .ttl:after {
  content: url(../images/area_ttl_right.png);
  margin-left: 20px;
}

.title-area01-01 {
  margin-top: 30px;
}

.title-area01-02 {
  margin-top: 50px;
}

.title-area02 {
  background-color: #DB610D;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .title-area02 { /* pc */
    width: 430px;
  }
}
@media screen and (max-width: 599px) {
  .title-area02 { /* mobile */
    width: 300px;
    font-size: 14px;
  }
}
.title-area02 a:link, .title-area02 a:visited {
  color: #fff;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

/* sample page */
#marea {
  padding: 50px 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;
  }
}
@media screen and (min-width: 600px) {
  #marea { /* pc */
    min-height: 600px;
  }
}
@media screen and (max-width: 599px) {
  #marea { /* mobile */
    min-height: 300px;
  }
}

.movie {
  margin: 30px 0;
}
@media screen and (min-width: 600px) {
  .movie { /* pc */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .movie { /* mobile */
    width: 360px;
  }
}

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

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

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

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

/* 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%);
  }
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#000 0 0);
  background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
  background-size: 20% 100%;
  animation: l1 1s infinite linear;
}

@keyframes l1 {
  0% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
  33% {
    background-size: 20% 10%, 20% 100%, 20% 100%;
  }
  50% {
    background-size: 20% 100%, 20% 10%, 20% 100%;
  }
  66% {
    background-size: 20% 100%, 20% 100%, 20% 10%;
  }
  100% {
    background-size: 20% 100%, 20% 100%, 20% 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: 360px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    min-height: 180px;
  }
}

#fwrap {
  width: 100%;
  background-color: #005597;
  display: block;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */
    background-image: url("../images/footer_bk.svg");
    background-size: cover; /* 画像を全体にフィット */
    background-position: center bottom; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }
}
@media screen and (max-width: 599px) {
  #fwrap {
    background-image: url("../images/footer_bk_s.svg");
    background-position: center bottom; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */
    min-height: 360px;
  }
}
@media screen and (max-width: 599px) {
  #fwrap {
    min-height: 180px;
  }
}

#sub-fwrap {
  width: 100%;
  background-color: #fff;
  display: block;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 600px) {
  #sub-fwrap { /* 600px以上のとき */
    background-image: url("../images/footer_bk.svg");
    background-size: cover; /* 画像を全体にフィット */
    background-position: center bottom; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }
}
@media screen and (max-width: 599px) {
  #sub-fwrap {
    background-image: url("../images/footer_bk_s.svg");
    background-position: center bottom; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }
}
@media screen and (min-width: 600px) {
  #sub-fwrap { /* 600px以上のとき */
    min-height: 360px;
  }
}
@media screen and (max-width: 599px) {
  #sub-fwrap {
    min-height: 180px;
  }
}

#farea {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  #farea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #farea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #farea .f-logo { /* 600px以上のとき */
    position: absolute;
    top: 290px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  #farea .f-logo {
    position: absolute;
    top: 160px;
    left: 20px;
    width: 200px;
  }
}
#farea a:link, #farea 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 */