@charset "UTF-8";
/* =================================================================================================

　基本スタイル

================================================================================================= */
/* CSS Document */
/* ----------------------------------------------------------------------------
　リセット
---------------------------------------------------------------------------- */
body a {
  outline: 0;
}

body, h1, h2, h3, h4, h5, ul, li, dl, dt, dd, p, strong, address {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

address {
  font-style: normal;
}

img {
  border: 0;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

input[type=text] {
  -webkit-appearance: none;
          appearance: none;
}

input:focus {
  outline: none;
}

select:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

/* ----------------------------------------------------------------------------
　フォントサイズ
---------------------------------------------------------------------------- */
html {
  font-size: 16px;
}

@media screen and (max-width: 800px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 592px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 12px;
  }
}
body {
  -webkit-text-size-adjust: 100%;
}

/* ----------------------------------------------------------------------------
　フォントファミリー
---------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #221714;
  overflow-x: hidden !important;
}

select, input, textarea, button {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/* ----------------------------------------------------------------------------
　リンク
---------------------------------------------------------------------------- */
a {
  text-decoration: none;
  text-underline-offset: 0.1rem;
  color: #221714;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 592px) {
  a:hover {
    opacity: 1;
  }
}

/* ----------------------------------------------------------------------------
　要素の表示・非表示
---------------------------------------------------------------------------- */
.is-visible-xld,
.is-visible-ld,
.is-visible-md,
.is-visible-sd {
  display: none;
}

@media all and (max-width: 1366px) {
  .is-visible-xld {
    display: block;
  }

  .is-hidden-xld {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .is-visible-ld {
    display: block;
  }

  .is-hidden-ld {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .is-visible-md {
    display: block;
  }

  .is-hidden-md {
    display: none;
  }
}
@media screen and (max-width: 592px) {
  .is-visible-sd {
    display: block;
  }

  .is-hidden-sd {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------
　画像ぼやけ対策
---------------------------------------------------------------------------- */
img {
  -webkit-backface-visibility: hidden;
}

/* ----------------------------------------------------------------------------
　デバッグ用
---------------------------------------------------------------------------- */
#widthdebug {
  position: fixed;
  left: 0rem;
  bottom: 0rem;
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
  z-index: 1000000;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
}

main {
  display: block;
  overflow-x: hidden !important;
}

main {
  background-color: #F5F5F5;
  overflow: hidden;
}

/* ----------------------------------------------------------------------------
　ヘッダ
---------------------------------------------------------------------------- */
header {
  box-sizing: border-box;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 592px) {
  header {
    padding: 0rem 0rem;
  }
}

header .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 233px;
          flex: 0 0 233px;
  margin-left: 1.5rem;
}
@media all and (max-width: 1366px) {
  header .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media screen and (max-width: 800px) {
  header .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media screen and (max-width: 592px) {
  header .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    margin-left: 0.5rem;
  }
}
header .logo img {
  width: 100%;
}

header .menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  header .menu {
    display: none;
  }
}

header .menu li {
  position: relative;
  margin: 0.2rem 0;
}
header .menu li:after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 1px;
  height: 100%;
  background-color: #999;
}
header .menu li:first-child:after {
  display: none;
}

header .menu li a {
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  padding: 0 0.9rem;
  line-height: 100%;
  position: relative;
}
header .menu li a:after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -0.5rem;
  width: 0%;
  height: 3px;
  background-color: #F0831E;
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1024px) {
  header .menu li a:after {
    bottom: -0.3rem;
  }
}
header .menu li a:hover {
  color: #d45703;
  opacity: 1;
}
header .menu li a:hover:after {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  header .menu li a {
    font-size: 0.75rem;
    padding: 0 0.3rem;
  }
}
header .info {
  text-align: right;
  margin-right: 0.8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 165px;
          flex: 0 0 165px;
}
@media screen and (max-width: 800px) {
  header .info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media screen and (max-width: 592px) {
  header .info {
    margin-right: 0.5rem;
  }
}

header .info .tel {
  font-family: "Staatliches", cursive;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.5rem;
  font-weight: 400;
}
header .info .tel img {
  width: 14px;
  margin-right: 0.3rem;
}
header .info .tel a {
  color: #F0831E;
}
@media screen and (max-width: 592px) {
  header .info .tel {
    font-size: 1.4rem;
  }
}

header .info .time {
  font-size: 0.7rem;
}

header .btn_contact {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
@media all and (max-width: 1366px) {
  header .btn_contact {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
}
@media screen and (max-width: 1024px) {
  header .btn_contact {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }
}
@media screen and (max-width: 800px) {
  header .btn_contact {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 592px) {
  header .btn_contact {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
}

header .btn_contact a {
  display: block;
  background-color: #F0831E;
  text-align: center;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  overflow: hidden;
}

header .btn_contact a:after {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0rem;
  left: -100%;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #d45703, #d45703 48.5%, #d45703 50.5%, rgba(0, 0, 0, 0) 50.5%, rgba(0, 0, 0, 0) 51.5%, rgba(0, 0, 0, 0));
}

header .btn_contact a:before {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0rem;
  right: -100%;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 48.5%, rgba(0, 0, 0, 0) 50.5%, #d45703 50.5%, #d45703 51.5%, #d45703);
}

header .btn_contact a:hover {
  opacity: 1;
}

header .btn_contact a:hover:after {
  left: 0%;
}

header .btn_contact a:hover:before {
  right: 0%;
}

header .btn_contact a img {
  display: block;
  width: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media screen and (max-width: 592px) {
  header .btn_contact a img {
    width: 65%;
  }
}

header .btn_contact a:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

header .btn_contact a span {
  position: relative;
  z-index: 2;
}

header .sp_menu_open {
  width: 25px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 800px) {
  header .sp_menu_open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

header .sp_menu_open a {
  display: block;
  width: 100%;
  height: 20px;
  position: relative;
}
header .sp_menu_open a img {
  width: 100%;
}

header .sp_menu_open a span {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 3px;
  background-color: #000;
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header .sp_menu_open a span:nth-child(2) {
  top: 45%;
}

header .sp_menu_open a span:nth-child(3) {
  top: 90%;
}

header .sp_menu_open.active a span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 45%;
}

header .sp_menu_open.active a span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 45%;
}

header .sp_menu_open.active a span:nth-child(3),
header .sp_menu_open.active a span:nth-child(4) {
  display: none;
}

#sp_menu {
  display: none;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99;
}
#sp_menu.active {
  display: block;
  -webkit-animation: spMenuAnime 0.3s ease-in-out 0s forwards;
          animation: spMenuAnime 0.3s ease-in-out 0s forwards;
}

@-webkit-keyframes spMenuAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes spMenuAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#sp_menu ul li {
  border-bottom: 1px dotted #ccc;
}

#sp_menu ul li a {
  text-align: center;
  display: block;
  padding: 1.5rem 0;
  background: url("../img/btn_box_contact_arrow.svg") right 1rem top 50% no-repeat;
  background-size: 0.7rem auto;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ----------------------------------------------------------------------------
　フッタ
---------------------------------------------------------------------------- */
footer {
  position: relative;
  z-index: 11;
  background-color: #fff;
}
@media screen and (max-width: 592px) {
  footer {
    z-index: 1;
  }
}

footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4rem 2rem;
}
@media screen and (max-width: 800px) {
  footer .inner {
    padding: 3rem 1rem;
  }
}
@media screen and (max-width: 592px) {
  footer .inner {
    padding: 2rem 1rem;
    display: block;
  }
}

footer .inner .logo {
  width: 236px;
}
@media screen and (max-width: 800px) {
  footer .inner .logo {
    width: 180px;
  }
}
@media screen and (max-width: 592px) {
  footer .inner .logo {
    width: 70%;
    margin: 0 auto 2rem;
  }
}
footer .inner .logo img {
  width: 100%;
}

footer .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 592px) {
  footer .menu ul {
    display: block;
    text-align: center;
  }
}

footer .menu ul li {
  margin-left: 2rem;
  position: relative;
  line-height: 100%;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  footer .menu ul li {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 800px) {
  footer .menu ul li {
    font-size: 0.7rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 592px) {
  footer .menu ul li {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
  }
}
footer .menu ul li:after {
  content: "";
  position: absolute;
  top: 0rem;
  left: -1rem;
  width: 1px;
  height: 100%;
  background-color: #221714;
}
@media screen and (max-width: 800px) {
  footer .menu ul li:after {
    left: -0.5rem;
  }
}
@media screen and (max-width: 592px) {
  footer .menu ul li:after {
    display: none;
  }
}
footer .menu ul li:first-child:after {
  display: none;
}

footer .menu .cap {
  text-align: right;
  color: #727272;
}
@media screen and (max-width: 1024px) {
  footer .menu .cap {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 592px) {
  footer .menu .cap {
    font-size: 1.125rem;
    text-align: left;
  }
}

footer .copyright {
  background-color: #454545;
  text-align: center;
  color: #fff;
  padding: 1.3rem 0;
}

/* ----------------------------------------------------------------------------
　ページTOP
---------------------------------------------------------------------------- */
.pagetop {
  padding-bottom: 1rem;
  position: fixed;
  right: 1rem;
  bottom: 0rem;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 999;
}
.pagetop.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pageTopAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
          animation: pageTopAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

.pagetop a {
  display: block;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 60px;
}
@media screen and (max-width: 592px) {
  .pagetop a {
    width: 50px;
  }
  .pagetop a.fixed_btn_show {
    padding-bottom: 4rem;
  }
}
.pagetop a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.pagetop a img {
  display: block;
  width: 100%;
}

/* ----------------------------------------------------------------------------
　パンくずナビ（通常）
---------------------------------------------------------------------------- */
main > .topicpath {
  background-color: #ECEDF1;
  padding: 0.3rem 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 592px) {
  main > .topicpath {
    padding: 0.3rem 0rem;
    margin-bottom: 4rem;
  }
}

main > .topicpath ul {
  width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  main > .topicpath ul {
    width: 95%;
  }
}

main > .topicpath ul li {
  font-size: 0.8rem;
  margin: 0.1rem 0;
}
main > .topicpath ul li a {
  position: relative;
  margin-right: 2rem;
  text-decoration: underline;
  color: #3891e5;
}
@media screen and (max-width: 592px) {
  main > .topicpath ul li a {
    margin-right: 1.5rem;
  }
}
main > .topicpath ul li a:after {
  content: "";
  position: absolute;
  top: 0.1rem;
  right: -1.3rem;
  width: 8px;
  height: 100%;
  background: url("/sismil/img/topicpath_arrow.svg") center center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 592px) {
  main > .topicpath ul li a:after {
    top: 0.1rem;
    right: -1.1rem;
  }
}
main > .topicpath ul li br {
  display: none;
}

/* ----------------------------------------------------------------------------
　共通タイトルスタイル
---------------------------------------------------------------------------- */
.common_title_style01 {
  font-size: 2rem;
  padding-bottom: 0.7rem;
  line-height: 150%;
  background: url("../img/common_title_style01.svg") 0 bottom no-repeat;
}
.common_title_style01.center {
  text-align: center;
  background-position: center bottom;
}
@media screen and (max-width: 592px) {
  .common_title_style01.sp_center {
    text-align: center;
    background-position: center bottom;
  }
}
@media screen and (max-width: 1024px) {
  .common_title_style01 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 800px) {
  .common_title_style01 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 592px) {
  .common_title_style01 {
    font-size: 1.8rem;
  }
}

.particle01,
.particle02,
.particle03,
.particle04,
.particle05,
.particle06,
.particle07 {
  position: absolute;
}
.particle01 img,
.particle02 img,
.particle03 img,
.particle04 img,
.particle05 img,
.particle06 img,
.particle07 img {
  width: 100%;
}

/* ----------------------------------------------------------------------------
　もっと詳しい情報はコチラから
---------------------------------------------------------------------------- */
#contact {
  padding: 5rem 0;
  width: 980px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1060px) {
  #contact {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #contact {
    width: 92%;
    padding: 3rem 0;
  }
}

#contact .particle01 {
  width: 13.9%;
  top: 10%;
  left: -22%;
}
@media screen and (max-width: 592px) {
  #contact .particle01 {
    top: 0%;
    left: 0%;
  }
}

#contact .particle02 {
  width: 32%;
  bottom: 15%;
  right: -30%;
}
@media screen and (max-width: 592px) {
  #contact .particle02 {
    bottom: 0%;
    right: 0%;
  }
}

#contact .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 592px) {
  #contact .flex {
    display: block;
    margin-bottom: 1rem;
  }
}

#contact .flex .copy {
  width: 38%;
}
@media screen and (max-width: 592px) {
  #contact .flex .copy {
    width: 100%;
    margin-bottom: 0rem;
  }
}

#contact .flex .copy h2 {
  width: 95%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 592px) {
  #contact .flex .copy h2 {
    width: 80%;
    margin: 0 auto 1.5rem;
  }
}
#contact .flex .copy h2 img {
  width: 100%;
}

#contact .flex .copy .info .title {
  font-size: 1.275rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  #contact .flex .copy .info .title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 800px) {
  #contact .flex .copy .info .title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 592px) {
  #contact .flex .copy .info .title {
    font-size: 1.275rem;
    text-align: center;
  }
}

#contact .flex .copy .info .tel {
  font-size: 3.5rem;
  line-height: 100%;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-family: "Lato", sans-serif;
}
#contact .flex .copy .info .tel a {
  color: #F0831E;
}
@media screen and (max-width: 1024px) {
  #contact .flex .copy .info .tel {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 800px) {
  #contact .flex .copy .info .tel {
    font-size: 2rem;
  }
}
@media screen and (max-width: 592px) {
  #contact .flex .copy .info .tel {
    text-align: center;
    font-size: 3.5rem;
  }
}

#contact .flex .copy .info .time {
  font-size: 1.275rem;
}
@media screen and (max-width: 1024px) {
  #contact .flex .copy .info .time {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 800px) {
  #contact .flex .copy .info .time {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 592px) {
  #contact .flex .copy .info .time {
    font-size: 1.275rem;
    text-align: center;
  }
}

#contact .flex .photo {
  width: 60%;
}
@media screen and (max-width: 592px) {
  #contact .flex .photo {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#contact .flex .photo img {
  width: 115%;
}
@media screen and (max-width: 592px) {
  #contact .flex .photo img {
    width: 100%;
  }
}

#contact .btn_box {
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  #contact .btn_box {
    width: 100%;
  }
}
@media screen and (max-width: 592px) {
  #contact .btn_box {
    display: block;
  }
}

#contact .btn_box li {
  width: 48.5%;
}
@media screen and (max-width: 592px) {
  #contact .btn_box li {
    width: 100%;
    margin-bottom: 1rem;
  }
  #contact .btn_box li:last-child {
    margin-bottom: 0rem;
  }
}

#contact .btn_box li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  border: 4px solid #F0831E;
  padding: 0.5rem 2rem 0.5rem 1.5rem;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
  font-size: 1.125rem;
  line-height: 120%;
  font-weight: 600;
  color: #d96e0a;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 1024px) {
  #contact .btn_box li a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 800px) {
  #contact .btn_box li a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 592px) {
  #contact .btn_box li a {
    font-size: 1rem;
  }
}
#contact .btn_box li a img {
  display: block;
  width: 40px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1024px) {
  #contact .btn_box li a img {
    width: 8.5%;
  }
}
#contact .btn_box li a span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}
#contact .btn_box li a:after {
  content: "";
  position: absolute;
  top: 0rem;
  right: 1rem;
  height: 100%;
  width: 10px;
  background: url("../img/btn_box_contact_arrow.svg") center center no-repeat;
  background-size: 100% auto;
}

#contact .btn_box li a:hover {
  opacity: 1;
  box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

#contact .btn_box li:last-child a {
  border: 4px solid #8EC43E;
  color: #70a720;
}
#contact .btn_box li:last-child a:after {
  background: url("../img/btn_box_dl_arrow.svg") center center no-repeat;
  background-size: 100% auto;
}

/* ----------------------------------------------------------------------------
　パーティクルアニメ
---------------------------------------------------------------------------- */
.particleAnime1 {
  -webkit-animation: particleAnime1 10s linear 0s infinite;
          animation: particleAnime1 10s linear 0s infinite;
}

@-webkit-keyframes particleAnime1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes particleAnime1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.particleAnime2 {
  -webkit-animation: particleAnime2 10s linear 0s infinite;
          animation: particleAnime2 10s linear 0s infinite;
}

@-webkit-keyframes particleAnime2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes particleAnime2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.particleAnime3 {
  -webkit-animation: particleAnime3 10s linear 0s infinite;
          animation: particleAnime3 10s linear 0s infinite;
}

@-webkit-keyframes particleAnime3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes particleAnime3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.particleAnimeZoom1 {
  -webkit-animation: particleAnimeZoom1 10s linear 0s infinite;
          animation: particleAnimeZoom1 10s linear 0s infinite;
}

@-webkit-keyframes particleAnimeZoom1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes particleAnimeZoom1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.particleAnimeZoom2 {
  -webkit-animation: particleAnimeZoom2 10s linear 0s infinite;
          animation: particleAnimeZoom2 10s linear 0s infinite;
}

@-webkit-keyframes particleAnimeZoom2 {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes particleAnimeZoom2 {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.particleAnimeBigZoom {
  -webkit-animation: particleAnimeBigZoom 6s linear 0s infinite;
          animation: particleAnimeBigZoom 6s linear 0s infinite;
}

@-webkit-keyframes particleAnimeBigZoom {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes particleAnimeBigZoom {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}