@charset "UTF-8";
/*!

*/
/* _reset.scssを読み込む */
/* Reset.css */
/* line 2, scss/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 5, scss/_reset.scss */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* line 25, scss/_reset.scss */
body {
  line-height: 1.7;
}

/* line 28, scss/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 32, scss/_reset.scss */
nav ul {
  list-style: none;
}

/* line 35, scss/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 38, scss/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 43, scss/_reset.scss */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
/* line 51, scss/_reset.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
/* line 57, scss/_reset.scss */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* line 63, scss/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 66, scss/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* line 70, scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
/* line 75, scss/_reset.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* line 83, scss/_reset.scss */
input, select {
  vertical-align: middle;
  -webkit-appearance: none !important;
}

/********************************************
基本の定義
********************************************/
/* テキストカラー*/
/* メインカラー */
/* サブカラー */
/* ミックスカラー */
/* コンテンツ幅 */
/* ロゴ設定 -スムーズスクロールも要調整- */
/********************************************
ブレイクポイントの定義
********************************************/
/* 
--- サンプル ---
@include mq() {
	<ここに処理を記述>
}
--- 引数付き ---
//@include mq($breakpoint: bs) {
	<ここに処理を記述>
}
*/
/********************************************
CDN fontawesome.css
********************************************/
/*
数が多すぎるから省略。
*/
/********************************************
CDN animate.css
********************************************/
/*
アニメーションを付けたい場所にanimate__animatedクラスを追加。
あとは属性でアニメーションを指定する。
data-animate="animate__fadeInUp"

挙動はjQueryで制御してあるよ～(。-`ω-)
*/
/*******************************************/
/* ページ全体 */
/* line 79, scss/style.scss */
body {
  font-family: "Noto Sans JP", serif;
  word-break: break-all;
  font-size: 17px;
  color: #050001;
}

/* line 82, scss/style.scss */
input, select, button, textarea {
  font-family: inherit;
}

/* line 85, scss/style.scss */
a:link, a:visited, a:hover {
  transition: color .3s ease;
  color: inherit;
  text-decoration: none;
}

/* line 90, scss/style.scss */
a:hover {
  color: #828080;
}

/* line 93, scss/style.scss */
img {
  vertical-align: top;
}

/* line 96, scss/style.scss */
small {
  font-size: .85rem;
}

/* animate制御 */
/* line 100, scss/style.scss */
.animate__animated {
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

/* line 104, scss/style.scss */
.animate_cont {
  opacity: 1 !important;
}

/* _splash.scssを読み込む */
/* Loading背景画面設定 */
/* line 2, scss/_splash.scss */
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #013c5e;
  background-image: url(image/bg.png);
  text-align: center;
  color: #000;
  animation: bg 5s infinite linear;
}

@keyframes bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 360px 360px;
  }
}
/* Loadingバー中央配置 */
/* line 25, scss/_splash.scss */
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #000;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* ヘッダー */
/* line 112, scss/style.scss */
header {
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #c1bfc0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  width: 100%;
  position: fixed;
}
/* line 121, scss/style.scss */
header #title {
  max-height: 80px;
  overflow: hidden;
  padding-left: .75rem;
}
/* line 125, scss/style.scss */
header #title img {
  width: auto;
  height: 80px;
}
@media (max-width: 1280px) {
  /* line 125, scss/style.scss */
  header #title img {
    max-width: 300px;
    height: auto;
  }
}
@media (max-width: 480px) {
  /* line 125, scss/style.scss */
  header #title img {
    max-width: 220px;
  }
}
/* line 138, scss/style.scss */
header #header nav {
  display: none;
  margin-top: 10px;
  /* メニューを出したときに余白つける、PCにこの余白はいらないよ。 */
}
/* line 142, scss/style.scss */
header #header nav li a {
  font-size: 1rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  letter-spacing: 3px;
  display: block;
  padding: 1rem;
  margin: 0 2rem;
  border-bottom: 1px solid #a8a6a6;
}
/* line 152, scss/style.scss */
header #header nav li:last-of-type a {
  border-bottom: none;
}
/* line 155, scss/style.scss */
header #header nav .telephone {
  display: none;
}

/* slideToggle */
/* line 162, scss/style.scss */
#slideToggle {
  display: none;
}

@media screen and (max-width: 1399px) {
  /* line 166, scss/style.scss */
  #slideToggle {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 22px;
    right: 22px;
    width: 32px;
    height: 40px;
  }

  /* line 175, scss/style.scss */
  #slideToggle {
    /* 共通の設定はここ！ */
    /* 個別の設定はこちらへ～ */
  }
  /* line 177, scss/style.scss */
  #slideToggle span, #slideToggle span:before, #slideToggle span:after {
    display: block;
    position: absolute;
    border-radius: 40px;
    width: 100%;
    height: 4px;
    background: #050001;
  }
  /* line 186, scss/style.scss */
  #slideToggle span {
    top: 50%;
    bottom: 50%;
    margin: auto;
    transition: transform .3s ease;
  }
  /* line 191, scss/style.scss */
  #slideToggle span:before, #slideToggle span:after {
    content: "";
    transition: transform .3s ease;
  }
  /* line 195, scss/style.scss */
  #slideToggle span:before {
    top: -10px;
  }
  /* line 198, scss/style.scss */
  #slideToggle span:after {
    top: 10px;
  }
  /* line 201, scss/style.scss */
  #slideToggle span.active {
    background: rgba(255, 255, 255, 0);
    transform: rotate(90deg);
  }
  /* line 204, scss/style.scss */
  #slideToggle span.active:before {
    top: 0;
    transform: rotate(135deg);
  }
  /* line 208, scss/style.scss */
  #slideToggle span.active:after {
    top: 0;
    transform: rotate(-135deg);
  }
}
@media screen and (max-width: 480px) {
  /* line 217, scss/style.scss */
  #slideToggle {
    top: 14px;
  }
}
/* sildeToggle End */
/* PC */
@media screen and (min-width: 1400px) {
  /* line 226, scss/style.scss */
  header #title {
    padding-left: 0;
  }
  /* line 228, scss/style.scss */
  header #title img {
    width: 100%;
  }
  /* line 232, scss/style.scss */
  header #header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding-left: .75rem;
    padding-right: .75rem;
  }
  /* line 241, scss/style.scss */
  header #header nav {
    display: inline;
    margin-top: 0;
  }
  /* line 245, scss/style.scss */
  header #header nav ul {
    display: flex;
  }
  /* line 248, scss/style.scss */
  header #header nav li {
    align-self: center;
    margin-right: 2rem;
  }
  /* line 252, scss/style.scss */
  header #header nav li:last-child {
    margin-right: 0;
  }
  /* line 255, scss/style.scss */
  header #header nav li a {
    position: relative;
    display: inline;
    padding: 0;
    margin: 0rem;
    border-bottom: none;
  }
  /* line 261, scss/style.scss */
  header #header nav li a:after {
    position: absolute;
    content: "";
    background: #050001;
    left: 0;
    right: 0;
    bottom: -8px;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    transition: width .2s ease;
  }
  /* line 273, scss/style.scss */
  header #header nav li a:hover:after {
    width: 100%;
  }
  /* line 277, scss/style.scss */
  header #header nav .telephone {
    display: inline;
    text-align: center;
    background: #013c5e;
    border-radius: 20px;
    color: #fff;
    padding: .4rem 1rem;
  }
  /* line 284, scss/style.scss */
  header #header nav .telephone .tele_in1 {
    font-size: .85rem;
  }
  /* line 287, scss/style.scss */
  header #header nav .telephone img {
    max-width: 32px;
    height: auto;
  }
  /* line 291, scss/style.scss */
  header #header nav .telephone .tele_in2 {
    font-size: 1.4rem;
    font-family: serif;
  }
}
/* main */
/* line 303, scss/style.scss */
#main {
  text-align: center;
  margin: auto;
  max-width: 1920px;
  width: 100%;
  height: auto;
  position: relative;
  content: "";
  background: url(image/eyecatch.jpg) fixed;
  background-size: contain;
  padding-top: 46.875%;
}
/* line 315, scss/style.scss */
#main div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
@media screen and (max-width: 991px) {
  /* line 315, scss/style.scss */
  #main div {
    left: auto;
    transform: none;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
  }
}
/* line 329, scss/style.scss */
#main h1 {
  font-size: 40px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6), -1px -1px 4px rgba(0, 0, 0, 0.5);
}
/* line 336, scss/style.scss */
#main hr {
  background: #b8d200;
  height: 3px;
}
/* line 340, scss/style.scss */
#main p {
  font-size: 1.2em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8), -1px -1px 4px rgba(0, 0, 0, 0.7);
}
/* line 346, scss/style.scss */
#main img {
  max-width: 100%;
}
/* line 351, scss/style.scss */
#main.mr-none div {
  max-width: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* line 356, scss/style.scss */
#main.mr-none img {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media screen and (max-width: 991px) {
  /* line 362, scss/style.scss */
  #main {
    background: url(image/eyecatch.jpg) bottom;
    background-size: cover;
    padding-top: 120%;
  }
  /* line 366, scss/style.scss */
  #main div {
    top: 38%;
  }
  /* line 369, scss/style.scss */
  #main h1 {
    font-size: 1.75em;
  }
  /* line 372, scss/style.scss */
  #main p {
    font-size: 1em;
  }
}
/* line 383, scss/style.scss */
main {
  display: block;
}

/* 共通仕様 */
/* line 388, scss/style.scss */
main.container-fluid {
  max-width: 1200px;
  background: #fff;
}

/* line 393, scss/style.scss */
h2 {
  font-size: 2em;
  color: #013c5e;
  position: relative;
  margin-bottom: 1.25rem;
}
/* line 398, scss/style.scss */
h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #013c5e;
}

/* line 407, scss/style.scss */
h2 img {
  width: 100%;
}

/* line 411, scss/style.scss */
#intro {
  margin-top: 19rem;
}
/* line 413, scss/style.scss */
#intro .intro_img {
  position: relative;
}
/* line 416, scss/style.scss */
#intro .intro_img img:nth-of-type(1) {
  position: absolute;
  z-index: 5;
  top: -140px;
  left: 0;
  box-shadow: 8px 8px 1px rgba(0, 0, 0, 0.3);
}
/* line 423, scss/style.scss */
#intro .intro_img img:nth-of-type(2) {
  position: absolute;
  z-index: 3;
  top: 85px;
  right: -60%;
  box-shadow: 8px 8px 1px rgba(0, 0, 0, 0.3);
  opacity: .5;
}
/* line 433, scss/style.scss */
#intro .intro_text {
  position: relative;
  z-index: 50;
}

/* line 438, scss/style.scss */
#b_intro {
  position: relative;
  z-index: 12;
  margin-top: 8rem;
}
/* line 442, scss/style.scss */
#b_intro ul {
  list-style-position: inside;
}
/* line 444, scss/style.scss */
#b_intro ul li {
  padding-bottom: .2rem;
}
/* line 447, scss/style.scss */
#b_intro ul li:last-of-type {
  padding-bottom: 1rem;
}

/* line 452, scss/style.scss */
#goal p {
  display: block;
  background: #013c5e;
  border-radius: 15px;
  color: #fff;
  font-size: 1.2em;
  padding: 1.15rem 1rem;
  margin-top: 2rem;
  margin-bottom: 0rem;
  text-align: center;
}
/* line 462, scss/style.scss */
#goal p span {
  display: inline-block;
  position: relative;
}
/* line 466, scss/style.scss */
#goal p span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 4px;
  background: rgba(184, 210, 0, 0.5);
}
@media screen and (min-width: 992px) {
  /* line 476, scss/style.scss */
  #goal p br {
    display: none;
  }
}

/* line 482, scss/style.scss */
#goal h3 {
  position: relative;
  font-size: 1.5em;
  color: #ed6d1a;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
/* line 488, scss/style.scss */
#goal h3:before {
  position: absolute;
  left: 0;
  content: "●";
}
/* line 493, scss/style.scss */
#goal h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #ed6d1a;
}
/* line 503, scss/style.scss */
#goal ul {
  list-style-position: inside;
}

/* line 507, scss/style.scss */
#goal table {
  text-align: center;
  font-size: 1.1em;
  width: 100%;
}
/* line 511, scss/style.scss */
#goal table th, #goal table td {
  padding: .75rem;
  border: 6px solid #fff;
}
/* line 515, scss/style.scss */
#goal table th {
  background: #e26a20;
  color: #fff;
}
/* line 519, scss/style.scss */
#goal table tr {
  color: #013c5e;
  font-weight: bold;
}
/* line 523, scss/style.scss */
#goal table tr:nth-child(even) {
  background: #fef6f0;
}
/* line 526, scss/style.scss */
#goal table tr:nth-child(odd) {
  background: #f9ddc5;
}

/* line 531, scss/style.scss */
#target {
  margin-top: 5rem;
}
/* line 533, scss/style.scss */
#target ul {
  list-style-position: inside;
}
/* line 535, scss/style.scss */
#target ul li {
  padding-bottom: .2rem;
}
/* line 538, scss/style.scss */
#target ul li:last-of-type {
  padding-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  /* line 545, scss/style.scss */
  h2 {
    font-size: 1.5rem;
  }

  /* line 551, scss/style.scss */
  #intro .intro_img img:nth-of-type(1) {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 0px transparent;
  }
  /* line 557, scss/style.scss */
  #intro .intro_img img:nth-of-type(2) {
    display: none;
  }

  /* 余白の調整＞＜ */
  /* line 564, scss/style.scss */
  #intro {
    margin-top: 5rem;
  }

  /* line 567, scss/style.scss */
  #b_intro {
    margin-top: 2rem;
  }

  /* line 570, scss/style.scss */
  #target {
    margin-top: 2rem;
  }
}
/* flow */
/* line 577, scss/style.scss */
#flow {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 0rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  z-index: 1;
}
/* line 584, scss/style.scss */
#flow:before {
  content: "";
  background: url(image/eyecatch.jpg) fixed bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(16px);
  z-index: -1;
}
/* line 595, scss/style.scss */
#flow h2 {
  text-align: center;
  background: #b8d200;
  border-radius: 12px;
}
/* line 599, scss/style.scss */
#flow h2:after {
  display: none;
}
@media screen and (max-width: 991px) {
  /* line 595, scss/style.scss */
  #flow h2 {
    font-size: 1.5em;
  }
}

/* line 607, scss/style.scss */
.fl_ct {
  max-width: 1200px;
  margin: 0 auto;
}
/* line 610, scss/style.scss */
.fl_ct div {
  --bs-gutter-x: 1.5rem;
  margin-right: calc(.5 * var(--bs-gutter-x));
  margin-left: calc(.5 * var(--bs-gutter-x));
}
/* line 615, scss/style.scss */
.fl_ct img {
  margin: 0 auto;
}
/* line 618, scss/style.scss */
.fl_ct .fl-con {
  margin: 0 auto;
}
/* line 621, scss/style.scss */
.fl_ct ul.fl-list {
  display: block;
  max-width: 768px;
  list-style-position: inside;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 1rem;
  margin: 0 auto;
  font-size: 1.2rem;
}
/* line 631, scss/style.scss */
.fl_ct p {
  max-width: 768px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 1rem;
  margin: 0 auto;
}

/* Access */
/* line 642, scss/style.scss */
div.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* line 646, scss/style.scss */
div.container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
/* line 649, scss/style.scss */
div.container-fluid .row div {
  padding: 0;
}

/* line 653, scss/style.scss */
.bug {
  background: #013c5e;
  padding-top: 7rem;
}

/* line 657, scss/style.scss */
.contact_field {
  --bs-gutter-x: 1.5rem;
  padding-left: calc(var(--bs-gutter-x)* .5) !important;
  padding-right: calc(var(--bs-gutter-x)* .5) !important;
}

/* line 662, scss/style.scss */
.acc_ct {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}
/* line 666, scss/style.scss */
.acc_ct div {
  --bs-gutter-x: 1.5rem;
  margin-right: calc(.5 * var(--bs-gutter-x));
  margin-left: calc(.5 * var(--bs-gutter-x));
}
/* line 671, scss/style.scss */
.acc_ct h2 {
  color: #fff;
}
/* line 673, scss/style.scss */
.acc_ct h2:after {
  border-bottom: 2px solid #fff;
}

/* フッター */
/* line 681, scss/style.scss */
footer {
  margin-top: 0rem;
  background: #013c5e;
  color: #fff;
  font-size: .90rem;
}
/* line 686, scss/style.scss */
footer .container-fluid {
  max-width: 1200px;
  width: 100%;
  padding-top: 4rem;
  --bs-gutter-x: 1.5rem;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
}
/* line 694, scss/style.scss */
footer .row {
  --bs-gutter-x: 1.5rem;
  margin-right: calc(.5 * var(--bs-gutter-x));
  margin-left: calc(.5 * var(--bs-gutter-x));
}
/* line 699, scss/style.scss */
footer .ty {
  --bs-gutter-x: 1.5rem;
  padding-right: calc(var(--bs-gutter-x)* .5) !important;
  padding-left: calc(var(--bs-gutter-x)* .5) !important;
}
/* line 704, scss/style.scss */
footer address {
  font-style: normal;
}
/* line 706, scss/style.scss */
footer address img {
  max-width: 350px;
  height: auto;
}
/* line 711, scss/style.scss */
footer .recruit {
  display: inline-block;
  background: #b8d200;
  color: #013c5e;
  font-weight: bold;
  margin-top: 1.5rem;
  padding: 1rem !important;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 10px;
  min-width: 300px;
}
@media screen and (max-width: 991px) {
  /* line 711, scss/style.scss */
  footer .recruit {
    width: 100%;
  }
}
/* line 725, scss/style.scss */
footer .recruit .re_c a {
  display: block;
  margin-top: 1rem;
  background: #fff;
  border-radius: 10px;
  color: #text_color;
  font-size: .95rem;
  padding: .75rem;
}
/* line 735, scss/style.scss */
footer h3 {
  position: relative;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
/* line 740, scss/style.scss */
footer ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}
/* line 743, scss/style.scss */
footer ul.group {
  margin-left: 1rem;
  opacity: .9;
}
/* line 748, scss/style.scss */
footer small {
  display: block;
  text-align: center;
  padding-top: .5rem;
  padding-bottom: 1rem;
}

/*
footer div {
	max-width: $c_width;
	width: 100%;
	padding-top: 2rem;
	margin: auto;
	p {
		padding-bottom: 1rem;
	}
}
footer span {
	display: block;
	width: 100%;
	margin: auto;
	padding-top: .6rem;
	padding-bottom: .6rem;
	text-align: center;
	font-size: .8rem;
}
*/
/* line 780, scss/style.scss */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* イントロダクション */
/* グッズコーナー */
/* line 788, scss/style.scss */
p.item_name, p.item_price {
  margin-top: 0rem;
}

/* line 791, scss/style.scss */
p.item_name {
  font-size: 1.2rem;
  font-weight: bold;
}

/* line 795, scss/style.scss */
p.item_name:before {
  content: "★";
  font-size: 1.6rem;
  color: #013c5e;
}

/* line 800, scss/style.scss */
p.item_price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* line 805, scss/style.scss */
p.item_price:after {
  font-size: 1rem;
  content: "(税込)";
}

/* アクセス絡み */
/* line 814, scss/style.scss */
#access span {
  display: block;
  padding-left: 2.5rem;
  margin-top: .25rem;
}
/* line 819, scss/style.scss */
#access span.address-name {
  color: #013c5e;
  font-weight: bold;
  line-height: 2rem;
  font-size: 1.2rem;
  height: 2rem;
  position: relative;
  padding-left: 2.5rem;
  margin-top: 1rem;
}
/* line 828, scss/style.scss */
#access span.address-name:before {
  display: inline-block;
  position: absolute;
  left: 0;
  content: "";
  width: 2rem;
  height: 2rem;
  background: #013c5e;
  border-radius: 50%;
}

/* よくある質問 */
/* line 843, scss/style.scss */
.question dt {
  position: relative;
  font-weight: bold;
  border: 1px solid #504d4d;
  padding: 10px 40px 10px 20px;
  background: #4d778e;
  margin-top: 1rem;
}
/* line 850, scss/style.scss */
.question dt:before {
  content: "Ｑ．";
}
/* line 853, scss/style.scss */
.question dt:hover {
  cursor: pointer;
}
/* line 856, scss/style.scss */
.question dt:after {
  position: absolute;
  display: block;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: .75rem;
  height: .75rem;
  border-bottom: 3px solid;
  border-right: 3px solid;
  border-color: #050001;
  transition: transform .15s ease;
  transform: rotate(45deg);
}
/* line 872, scss/style.scss */
.question dt.dt_open:after {
  transform: rotate(-135deg);
}

/* line 876, scss/style.scss */
.question dd {
  border-bottom: 1px solid #504d4d;
  border-left: 1px solid #504d4d;
  border-right: 1px solid #504d4d;
  padding: 10px 20px;
  display: none;
}
/* line 882, scss/style.scss */
.question dd:before {
  content: "Ａ．";
}

/* お問い合わせ */
/* line 889, scss/style.scss */
#contact form {
  background: #e9e8e8;
  padding: 1.5rem;
}
/* line 893, scss/style.scss */
#contact form div {
  padding-top: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #fff;
}
/* line 897, scss/style.scss */
#contact form div:first-of-type {
  padding-top: 0;
}
/* line 902, scss/style.scss */
#contact form p {
  font-size: .85rem;
  margin-top: 0;
  margin-bottom: .5rem;
}
/* line 909, scss/style.scss */
#contact label, #contact span.label {
  display: inline-block;
  margin-bottom: .5rem;
  font-weight: bold;
  position: relative;
}
/* line 915, scss/style.scss */
#contact label + span, #contact span.label + span {
  transform: scale(0.7);
  display: inline-block;
  background: #e64e4e;
  color: #fff;
  padding: .2rem .35rem;
  margin-left: .20rem;
}
/* line 927, scss/style.scss */
#contact label + span + p + span.missingFields {
  display: inline-block;
  border: 2px solid #e65c5c;
  padding: .5rem;
  margin-top: .25rem;
  margin-bottom: .25rem;
}
/* line 935, scss/style.scss */
#contact span input {
  display: inline-block !important;
}
/* line 938, scss/style.scss */
#contact input, #contact textarea {
  display: block;
  border: 2px solid #b4b3b3;
  transition: border .2s ease;
  font-size: 15px;
  padding: .45rem .65rem;
  outline: none;
}
/* line 946, scss/style.scss */
#contact input:focus, #contact textarea:focus {
  border: 2px solid #013c5e;
}
/* line 949, scss/style.scss */
#contact input[type="text"], #contact input[type="email"], #contact textarea[type="text"], #contact textarea[type="email"] {
  width: 250px;
}
/* line 952, scss/style.scss */
#contact input[type="tel"], #contact input[type="password"], #contact textarea[type="tel"], #contact textarea[type="password"] {
  width: 150px;
}
/* line 956, scss/style.scss */
#contact input[type="radio"], #contact textarea[type="radio"] {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  vertical-align: -2px;
}
/* line 963, scss/style.scss */
#contact input[type="radio"]:checked:before, #contact textarea[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #013c5e;
  content: "";
}
/* line 976, scss/style.scss */
#contact input[type="checkbox"], #contact textarea[type="checkbox"] {
  position: relative;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  background: #fff;
  text-align: center;
  cursor: pointer;
  margin-left: 1rem;
  margin-right: .4rem;
}
/* line 988, scss/style.scss */
#contact input[type="checkbox"]:first-of-type, #contact textarea[type="checkbox"]:first-of-type {
  margin-left: 0;
}
/* line 991, scss/style.scss */
#contact input[type="checkbox"]:before, #contact textarea[type="checkbox"]:before {
  font-family: "FontAwesome";
  color: rgba(255, 255, 255, 0);
  transform: scale(0.5);
  transition: all .5s ease;
  display: inline-block;
  position: absolute;
  content: "";
  top: 8px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "\f00c";
}
/* line 1006, scss/style.scss */
#contact input[type="checkbox"]:checked, #contact textarea[type="checkbox"]:checked {
  background: #b3c5cf;
}
/* line 1009, scss/style.scss */
#contact input[type="checkbox"]:checked::before, #contact textarea[type="checkbox"]:checked::before {
  color: #013c5e;
  animation: checkbox_in .25s ease;
  transform: scale(2.4);
}
/* line 1015, scss/style.scss */
#contact input[type="submit"], #contact textarea[type="submit"] {
  display: inline-block;
  width: 120px;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
  background: #013c5e;
  color: #fff;
  transition: background .2s ease;
}
/* line 1024, scss/style.scss */
#contact input[type="submit"]:active, #contact textarea[type="submit"]:active {
  background: #02304b;
}
/* line 1028, scss/style.scss */
#contact input[type="reset"], #contact textarea[type="reset"] {
  display: inline-block;
  margin-left: 1rem;
  width: 120px;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
  background: #aaa;
  color: #fff;
}
/* line 1039, scss/style.scss */
#contact textarea {
  width: 100%;
  height: 200px;
}
/* line 1043, scss/style.scss */
#contact .missingFields {
  border: 2px solid #e65c5c;
}

@keyframes checkbox_in {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(3.1);
  }
  100% {
    transform: scale(2.4);
  }
}
/* _pagetop.scssを必要なら読み込む */
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
/* line 3, scss/_pagetop.scss */
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #013c5e;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

/* line 20, scss/_pagetop.scss */
#page-top a:hover {
  background: #34637e;
}

/*リンクを右下に固定*/
/* line 25, scss/_pagetop.scss */
#page-top {
  position: fixed;
  right: 10px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
/* line 36, scss/_pagetop.scss */
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
/* line 52, scss/_pagetop.scss */
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* (+_+) */
/*
header {display:none;}
#main {padding-top: 0;}
#page-top {display:none;}
footer div {display:none;}
*/
/* AnimeTest */
/*#test {
	display: none;
}*/
