<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/*---------------
   追加 reset
---------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

li {
  list-style: none;
}

/*---------------
   共通
---------------*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1200px;
  color: #000;
  font-family: "游ゴシック体","Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 16px;
  letter-spacing: .15em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media only screen and (max-width: 640px) {
  body {
    min-width: 100%;
    font-size: calc((26/760)*100vw);
  }
}

a:hover {
  opacity: .6;
  transition: .5s;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .sp {
    display: inherit !important;
  }
}

.anchor {
  margin-top: 120px;
  padding-top: -120px;
}
@media only screen and (max-width: 640px) {
  .anchor {
    margin-top: calc((110/760)*100vw);
    padding-top: calc((-110/760)*100vw);
  }
}

.inner {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 640px) {
  .inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((30/760)*100vw);
  }
}

.flex_wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}

/*---------------
   テキスト関係
---------------*/
.np {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 2.2;
}
@media only screen and (max-width: 640px) {
  .np {
    font-size: calc((30/760)*100vw);
    line-height: 1.8;
  }
}

.nps {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .nps {
    font-size: calc((24/760)*100vw);
  }
}

/*---------------
   header
---------------*/
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 2000px;
  min-width: 1200px;
  height: 120px;
  background: #FFF;
  box-shadow: 0 0 10px -5px rgba(10, 49, 144, 0.2);
  z-index: 999;
}
@media only screen and (max-width: 640px) {
  .header {
    min-width: 100%;
    height: calc((110/760)*100vw);
    box-shadow: 0 0 calc((15/760)*100vw) calc((-5/760)*100vw) rgba(10, 49, 144, 0.2);
    background: #FFF;
  }
}
.header .inner {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 calc((120/2000)*100vw);
}
@media only screen and (max-width: 1200px) {
  .header .inner {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .header .inner {
    padding: calc((17/760)*100vw) calc((30/760)*100vw) calc((10/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .header_logo {
    width: calc((386/760)*100vw);
  }
}
.header .gnav_button {
  display: none;
}
@media only screen and (max-width: 640px) {
  .header .gnav_button {
    display: block;
    background: url("../images/common/header_menu_open.png") top right no-repeat;
    background-size: contain;
    border: none;
    padding: 0;
    width: calc((124/760)*100vw);
    height: calc((110/760)*100vw);
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    outline: none;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_button.active {
    background: url("../images/common/header_menu_close.png") top right no-repeat;
    background-size: contain;
  }
}
.header .gnav_menu {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu {
    flex-wrap: wrap;
  }
}
.header .gnav_menu.main {
  width: calc((1025/2000)*100vw);
  margin: 0;
}
@media only screen and (max-width: 1200px) {
  .header .gnav_menu.main {
    width: 620px;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu.main {
    width: 100%;
    margin: 0;
  }
}
.header .gnav_menu.info {
  width: calc((475/2000)*100vw);
}
@media only screen and (max-width: 1200px) {
  .header .gnav_menu.info {
    width: 290px;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu.info {
    width: 100%;
  }
}
.header .gnav_menu li {
  color: #0A3190;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: .2em;
}
@media only screen and (max-width: 1200px) {
  .header .gnav_menu li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li {
    width: 100%;
    margin: 0;
    font-size: calc((30/760)*100vw);
    text-align: center;
  }
}
.header .gnav_menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li a {
    height: auto;
    padding: calc((30/760)*100vw);
  }
}
.header .gnav_menu li a:hover {
  opacity: .6;
  transition: .5s;
}
.header .gnav_menu li.tel, .header .gnav_menu li.contact {
  margin: 0;
  color: #FFF;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.tel, .header .gnav_menu li.contact {
    width: 100%;
    border: none;
  }
}
.header .gnav_menu li.tel a, .header .gnav_menu li.contact a {
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.tel a, .header .gnav_menu li.contact a {
    width: 100%;
    height: calc((110/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.tel {
    margin-left: 0;
  }
}
.header .gnav_menu li.tel a {
  width: calc((240/2000)*100vw);
  background: url("../images/common/bg_base.png");
  font-size: 20px;
}
@media only screen and (max-width: 1200px) {
  .header .gnav_menu li.tel a {
    width: 145px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.tel a {
    width: 100%;
    margin: 0;
    font-size: calc((38/760)*100vw);
  }
}
.header .gnav_menu li.tel a:before {
  content: '';
  width: 19px;
  height: 19px;
  margin-right: .3em;
  background: url("../images/common/header_ico_tel.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.tel a:before {
    width: calc((35/760)*100vw);
    height: calc((35/760)*100vw);
  }
}
.header .gnav_menu li.contact a {
  width: calc((235/2000)*100vw);
  background: url("../images/common/header_contact_bg.png");
  font-size: 17px;
  line-height: 1.4;
}
@media only screen and (max-width: 1200px) {
  .header .gnav_menu li.contact a {
    width: 145px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.contact a {
    width: 100%;
    font-size: calc((38/760)*100vw);
  }
}
.header .gnav_menu li.contact a:before {
  content: '';
  width: 29px;
  height: 29px;
  margin-right: .3em;
  background: url("../images/common/header_ico_contact.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu li.contact a:before {
    width: calc((50/760)*100vw);
    height: calc((50/760)*100vw);
  }
}
.header .gnav_menu_wrapper {
  display: flex;
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu_wrapper {
    display: block;
    width: 100%;
    transition: all 0.2s;
    transform: translate(100%);
    position: fixed;
    top: calc((110/760)*100vw);
    right: 0;
    z-index: 1000;
    background: #FFF;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_menu_wrapper.open {
    transform: translate(0);
  }
}

/*---------------
   main
---------------*/
.main {
  margin-top: 120px;
}
@media only screen and (max-width: 640px) {
  .main {
    margin-top: calc((110/760)*100vw);
  }
}

.page_ttl {
  position: relative;
  max-width: 2000px;
  height: calc((700/2000)*100vw);
  max-height: 700px;
  margin: 0 auto;
  background: url("../images/common/page_ttl_bg.jpg") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1200px) {
  .page_ttl {
    width: 1200px;
    height: 420px;
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl {
    width: 100%;
    height: calc((267/760)*100vw);
  }
}
.page_ttl .ttl {
  position: absolute;
  top: 50%;
  left: calc((30/2000)*100vw);
  transform: translateY(-40%);
  width: calc((1000/2000)*100vw);
  max-width: 1000px;
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl {
    left: calc((30/760)*100vw);
  }
}
@media only screen and (max-width: 1200px) {
  .page_ttl .ttl .en {
    width: 630px;
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl .en {
    width: calc((550/760)*100vw);
  }
}
.page_ttl .ttl .jp {
  margin: calc((-50/2000)*100vw) 0 0 calc((130/2000)*100vw);
  color: #FFF;
  font-size: calc((50/2000)*100vw);
  font-weight: bold;
  letter-spacing: .3em;
  line-height: 1.2;
}
@media only screen and (max-width: 1200px) {
  .page_ttl .ttl .jp {
    margin: -30px 0 0 70px;
    font-size: 36px;
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl .jp {
    margin: calc((-20/760)*100vw) 0 0 calc((40/760)*100vw);
    font-size: calc((40/760)*100vw);
    letter-spacing: .15em;
  }
}

.content {
  width: 100%;
  overflow-x: hidden;
}

.lttl {
  margin-bottom: 65px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
  .lttl {
    margin-bottom: calc((70/760)*100vw);
  }
}
.lttl .en {
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .lttl .en {
    width: calc((500/760)*100vw);
    margin: 0 auto calc((15/760)*100vw);
  }
}
.lttl .jp {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .lttl .jp {
    font-size: calc((40/760)*100vw);
  }
}

.mttl {
  margin: 80px 0 30px;
  color: #0A3190;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mttl {
    margin: calc((80/760)*100vw) 0 calc((30/760)*100vw);
    font-size: calc((40/760)*100vw);
  }
}

.lead {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .lead {
    margin-bottom: calc((40/760)*100vw);
    font-size: calc((40/760)*100vw);
    line-height: 1.6;
  }
}

.purchase .content {
  background: url("../images/common/purchase_bg.png") bottom center no-repeat;
}
@media only screen and (max-width: 640px) {
  .purchase .content {
    background: url("../images/common/purchase_bg.png") bottom calc((-150/760)*100vw) center no-repeat;
  }
}
.purchase .purchase_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .purchase .purchase_list {
    flex-wrap: wrap;
  }
}
.purchase .purchase_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 245px;
  margin: 0 30px;
  background: #0A3190;
  box-shadow: 0 0 0 10px rgba(10, 49, 144, 0.2);
  border-radius: 150px;
}
@media only screen and (max-width: 640px) {
  .purchase .purchase_list li {
    width: calc((330/760)*100vw);
    height: calc((330/760)*100vw);
    margin: 0;
    box-shadow: 0 0 0 calc((10/760)*100vw) rgba(10, 49, 144, 0.2);
  }
}
@media only screen and (max-width: 640px) {
  .purchase .purchase_list li:first-child {
    margin-right: calc((40/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .purchase .purchase_list li:last-child {
    margin-top: calc((-10/760)*100vw);
  }
}
.purchase .purchase_list_ico {
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .purchase .purchase_list_ico {
    width: calc((150/760)*100vw);
    margin: 0 auto calc((10/760)*100vw);
  }
}
.purchase .purchase_list_ttl {
  color: #FFF;
  font-size: 2.0rem;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .purchase .purchase_list_ttl {
    font-size: calc((30/760)*100vw);
    letter-spacing: 0;
  }
}

.basic_table {
  width: 100%;
  border-top: #000 1px dotted;
}
.basic_table tr {
  border-bottom: #000 1px dotted;
}
.basic_table th, .basic_table td {
  padding: 1em 1em 1em 0;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: .15em;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}
@media only screen and (max-width: 640px) {
  .basic_table th, .basic_table td {
    font-size: calc((24/760)*100vw);
  }
}
.basic_table th {
  width: 240px;
}
@media only screen and (max-width: 640px) {
  .basic_table th {
    width: calc((200/760)*100vw);
  }
}

.note {
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .note {
    font-size: calc((20/760)*100vw);
  }
}
.note li {
  margin-bottom: .5em;
  padding-left: 1em;
  text-indent: -1em;
}
.note li:before {
  content: '・';
  color: #0A3190;
  font-weight: bold;
}

.col2_wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .col2_wrap {
    margin-bottom: calc((50/760)*100vw);
  }
}
.col2_item {
  width: 48%;
  margin-top: 30px;
  background: rgba(7, 37, 105, 0.5);
}
@media only screen and (max-width: 640px) {
  .col2_item {
    width: 100%;
    margin-top: calc((30/760)*100vw);
  }
}
.col2_item:nth-child(-n+2) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  .col2_item:nth-child(2) {
    margin-top: calc((30/760)*100vw);
  }
}

.col3_wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.col3_item {
  width: 30%;
  margin-top: 30px;
  background: rgba(7, 37, 105, 0.5);
}
@media only screen and (max-width: 640px) {
  .col3_item {
    width: 100%;
    margin-top: calc((30/760)*100vw);
  }
}
.col3_item:nth-child(-n+3) {
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  .col3_item:nth-child(2), .col3_item:nth-child(3) {
    margin-top: calc((30/760)*100vw);
  }
}

.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  width: 300px;
  padding: .5em 1em;
  background: #0A3190;
  border-radius: 5px;
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .btn a {
    width: 80%;
    font-size: 3.4210526316vw;
  }
}
.btn a:hover {
  opacity: .6;
  transition: .5s;
}

.sample.container {
  background: rgba(7, 37, 105, 0.5);
  padding: 50px;
}
@media only screen and (max-width: 640px) {
  .sample.container {
    padding: calc((50/760)*100vw);
  }
}
.sample .content {
  padding: 50px;
}
@media only screen and (max-width: 640px) {
  .sample .content {
    padding: calc((50/760)*100vw);
  }
}
.sample .inner {
  background: #FFF;
  padding: 30px;
}
@media only screen and (max-width: 640px) {
  .sample .inner {
    padding: calc((30/760)*100vw);
  }
}

/*---------------
   footer
---------------*/
.footer {
  background: url("../images/common/bg_base.png");
}
@media only screen and (max-width: 640px) {
  .footer {
    padding-bottom: calc((160/760)*100vw);
  }
}
.footer .footer_top {
  padding: 100px 0;
  background: #ECEFF7;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top {
    padding: calc((100/760)*100vw) 0;
  }
}
.footer .footer_top_lttl {
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_lttl {
    margin-bottom: calc((60/760)*100vw);
  }
}
.footer .footer_top_lttl .en {
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_lttl .en {
    width: calc((500/760)*100vw);
    margin: 0 auto calc((10/760)*100vw);
  }
}
.footer .footer_top_lttl .jp {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_lttl .jp {
    font-size: calc((36/760)*100vw);
    letter-spacing: 0;
  }
}
.footer .footer_top_info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_info {
    flex-wrap: wrap;
    margin-bottom: calc((20/760)*100vw);
  }
}
.footer .footer_top_info .tel, .footer .footer_top_info .contact {
  width: 395px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_info .tel, .footer .footer_top_info .contact {
    width: calc((580/760)*100vw);
    margin-bottom: calc((30/760)*100vw);
  }
}
.footer .footer_top_info .tel .num {
  color: #0A3190;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.0;
  letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_info .tel .num {
    margin-bottom: calc((10/760)*100vw);
    font-size: calc((60/760)*100vw);
  }
}
.footer .footer_top_info .tel .num:before {
  display: inline-block;
  content: '';
  width: 34px;
  height: 34px;
  margin-right: .2em;
  background: url("../images/common/footer_top_ico_tel.png") top center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_info .tel .num:before {
    width: calc((55/760)*100vw);
    height: calc((55/760)*100vw);
  }
}
.footer .footer_top_info .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 63px;
  background: url("../images/common/footer_top_ico_contact.png") top 8px left 30px no-repeat, url("../images/common/footer_top_arrow_tel.png") top 50% right 13px no-repeat, #0A3190;
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_info .contact a {
    height: calc((100/760)*100vw);
    background: url("../images/common/footer_top_ico_contact.png") top calc((15/760)*100vw) left calc((30/760)*100vw) no-repeat, url("../images/common/footer_top_arrow_tel.png") top 50% right calc((20/760)*100vw) no-repeat, #0A3190;
    background-size: calc((53/760)*100vw), calc((45/760)*100vw);
    font-size: calc((30/760)*100vw);
  }
}
.footer .footer_top_text {
  text-align: center;
}
.footer .footer_bottom {
  padding: 50px 0 20px;
  color: #FFF;
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom {
    padding: calc((50/760)*100vw) 0 calc((20/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom nav {
    display: none;
  }
}
.footer .footer_bottom_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .2em;
}
.footer .footer_bottom_nav li {
  margin: 0 1em;
}
.footer .footer_bottom_logo {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .2em;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_logo {
    margin-bottom: calc((40/760)*100vw);
    font-size: calc((30/760)*100vw);
    line-height: 1.2;
  }
}
.footer .footer_bottom_logo img {
  display: inline-block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_logo img {
    width: calc((280/760)*100vw);
    margin-bottom: calc((30/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_logo .en {
    display: inline-block;
    margin-top: calc((10/760)*100vw);
    font-size: calc((18/760)*100vw);
  }
}
.footer .footer_bottom_address {
  margin-bottom: 40px;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_address {
    margin-bottom: calc((40/760)*100vw);
    font-size: calc((20/760)*100vw);
  }
}
.footer .footer_bottom_copy {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_copy {
    font-size: calc((20/760)*100vw);
  }
}

.sp_fix {
  display: none;
}
@media only screen and (max-width: 640px) {
  .sp_fix {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: calc((30/760)*100vw);
    z-index: 999;
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix li {
    width: calc((340/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc((100/760)*100vw);
    border-radius: calc((10/760)*100vw);
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix li.tel a {
    background: url("../images/common/bg_base.png");
    font-size: calc((30/760)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix li.tel a:before {
    content: '';
    width: calc((30/760)*100vw);
    height: calc((30/760)*100vw);
    margin-right: .5em;
    background: url("../images/common/header_ico_tel.png") top center no-repeat;
    background-size: contain;
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix li.contact a {
    font-size: calc((23/760)*100vw);
    background: url("../images/common/header_contact_bg.png");
  }
}
@media only screen and (max-width: 640px) {
  .sp_fix li.contact a:before {
    content: '';
    width: calc((41/760)*100vw);
    height: calc((41/760)*100vw);
    margin-right: .5em;
    background: url("../images/common/header_ico_contact.png") top center no-repeat;
    background-size: contain;
  }
}
</pre></body></html>