@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, /*blockquote,*/ pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, /*q,*/ s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing:border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,picture,q,ruby,s,samp,section,small,span,strike,strong,summary,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,*::before,*::after{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}img{vertical-align:bottom}

/* ===============================================
# 共通
=============================================== */
:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-lightblue: #a0a7b2;
    --color-theme: #292f4a;
    --color-point: #f08c1d;
    --box-shadow: 0 0 2.2rem rgba(0, 0, 0, .05);
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  }
*{
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body{
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Meiryo, "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, Arial, Sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.875;
  color: #444;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}
a:link {
  color: inherit;
}
em { font-weight: bold; }
img {
  width: auto;
  max-width: 100%;
  margin: auto;
}
a:hover {
  opacity: 80%;
}

main{
  width: 100%;
  padding-top: 0;
  margin: 0;
}
.wrapper {
  position: relative;
}
.wrapper h2 {
  margin-bottom: 40px;
}
.wrapper h2 span {
  display: block;
  line-height: 1;
}
.wrapper h2 .en {
  font-size: 56px;
  font-size: 5.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.wrapper h2 .ja {
  margin-top: 10px;
}

.inner{
  position: relative;
  max-width: 1240px;
  width: 95%;
  margin: 0 auto;
  color: #292f4a;
}
.inner h2 {
  font-size: 20px;
  font-size: 2.0rem;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
.en{
  font-family: "Roboto", sans-serif;
}
.txt_center{
  text-align: center;
}
.txt_right {
  text-align: right;
}
.fs-28{
  font-size: 28px;
  font-size: 2.8rem;
}

@media screen and (max-width :834px){
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .inner {
    width: 92%;
  }
}

/* ===============================================
# header
=============================================== */
header{
  width: 100%;
  position: fixed;
  top: 0;
  padding-left: calc(40 / 1440 * 100vw);
  padding-right: calc(20 / 1440 * 100vw);
  padding-bottom: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 15;
}
header:before {
  content: "";
  width: 100vw;
  height: 100%;
/*  opacity: 0;
  visibility: hidden;*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity ease 0.4s, visibility ease 0.4s;
}
header.transform:before {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  backdrop-filter: blur(15px) saturate(180%);
}
header .hd_inner{
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
}
.hd_block_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hd_block_left h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 800;
}
.hd_block_left h1 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}
.hd_block_left h1 span + span {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.hd_block_left h1 span + span:before {
  content: '';
  width: 0.05em;
  height: 16px;
  background: #000;
  position: absolute;
  margin-left: -10px;
}

.hd_block_center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hd_block_center li {
  margin-right: calc(24 / 1440 * 100vw);
  font-size: calc(16 / 1440 * 100vw);
}
.hd_block_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hd_block_right ul li + li{
  margin-left: 10px;
}
.hd_block_right ul a {
  position: relative;
  padding: 10px calc(1.8vw);
  border-radius: 10rem;
  display: block;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.line a {
  background: #06C655;
  font-size: calc(17 / 1440 * 100vw);
  letter-spacing: 0.1em;
}
.line img {
  vertical-align: middle;
  width: calc(1.6vw);
  margin: auto calc(0.6vw);
}
.hd_block_right ul .tel a {
  font-size: calc(20 / 1440 * 100vw);
}
.tel a {
  background: #f08c1d;
  letter-spacing: 0.05em;
}

@media screen and (min-width :825px){
}
@media screen and (min-width :1025px){
}
@media screen and (max-width :834px){
  header {
    padding: 10px 1.5vw;
  }
  header .hd_inner {
    margin-top: 0;
    padding: 0;
  }
  .hd_block_left h1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hd_block_left h1 span {
    margin-right: 0;
  }
  .hd_block_left h1 span + span {
    font-size: 9px;
    font-size: 0.9rem;
  }
  .hd_block_left h1 span + span:before {
    display: none;
  }
  .hd_block_right ul .line a,
  .hd_block_right ul .tel a{
    font-size: 14px;
    font-size: 1.4rem;
    padding: 1.1rem 1rem;
  }
  .hd_block_right ul .line a img {
    display: none;
  }
}
/* ===============================================
# main
=============================================== */
.main {
  position: relative;
}
/* ===============================================
# area_promo
=============================================== */
.area_promo {
  background: url("../img/img_promo.jpg") 30% center no-repeat;
  background-size: auto 100%;
}
.area_promo .promo_inner {
  padding-top: 22rem;
  padding-left: 10vw;
  padding-right: 2vw;
  padding-bottom: 100px;
  max-width: 60vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: top;
      -webkit-box-orient: vertical;
  -webkit-box-direction: revert;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-left: 30vw;
}
.area_promo .promo_inner .promo_txt {
  position: relative;
}
.area_promo .promo_inner .promo_ico {
  margin: 20px 0 ;
  width:  160px;
}
@media screen and (max-width :834px){
  .area_promo {
    background-position: 63% center;
  }
  .area_promo .promo_inner {
    max-width: 64%;
    padding-left: 10px;
    padding-top: 130px;
        -webkit-box-orient: vertical;
    -webkit-box-direction: revert;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .area_promo .promo_inner .promo_ico {
    margin: 0 0 10px 0;
    max-width: 84px;
  }
}
/* ===============================================
# area_reason
=============================================== */
.area_reason h2 {
  margin-top: -20px;
}
.area_reason .box_reason li {
  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;
  margin-bottom: 80px;
}
.area_reason .box_reason li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.area_reason .box_reason .box_txt {
  width: 50%;
}
.area_reason .box_reason .box_txt .ttl_reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  min-height: 126px;
  margin-bottom: 40px;
}
.area_reason .box_reason .box_txt .ttl_reason .no {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 26px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.04em;
}
.area_reason .box_reason .box_txt .ttl_reason .no:before {
  content: '';
  width: 126px;
  height: 126px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border: 1px solid #292f4a;
  border-radius: 50%;
}
.area_reason .box_reason .box_txt .ttl_reason .no span {
  position: relative;
  padding: 18px 10px;
  color: #f08c1e;
  font-size: 48px;
  font-size: 4.8rem;
  background: #fff;
}
.area_reason .box_reason .img {
  width: 43.75%;
}

@media screen and (max-width :834px){
  .area_reason .box_reason li,
  .area_reason .box_reason li:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .area_reason .box_reason .box_txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .area_reason .box_reason .box_txt .ttl_reason {
    min-height: inherit;
    margin-bottom: 20px;
  }
  .area_reason .box_reason .box_txt .ttl_reason .no {
    padding: 0 0 0 6px;
  }
  .area_reason .box_reason .box_txt .ttl_reason .no:before {
    width: 82px;
    height: 82px;
  }
  .area_reason .box_reason .box_txt .ttl_reason .no span {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .area_reason .box_reason .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* ===============================================
# area_voice
=============================================== */
.area_voice{
  padding: 100px 0 150px;
  overflow: hidden;
  background: #eff6f7;
}

  .swiper-button-prev, .swiper-button-next {
    display: grid;
    place-content: center;
    width: 5.4rem;
    height: 5.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background: var(--color-theme);
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
  }
  .swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
  }

  .list_voice {
    padding: 80px 0 0;
  }
  .list_voice .swiper {
    overflow: visible;
  }
  .list_voice .swiper-controller {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 3.2rem;
  }
  .list_voice .swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto 0 0;
    text-align: center;
  }
  .list_voice .swiper-pagination-bullet {
    width: 18vw;
    height: 3px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: top;
    background-color: var(--color-gray);
  }
  .list_voice .swiper-pagination-bullet-active {
    width: 20vw;
    background-color: var(--color-theme);
  }
  .list_voice .swiper-button-prev, .list_voice .swiper-button-next {
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-right: 2rem;
  }
  .list_voice .swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
  }
  .list_voice .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .list_voice .slide {
    width: 36rem;
    border-radius: 20px;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
      background: #fff;
  }
    .list_voice .slide:after {
    content: '';
    display: block;
    clear: both;
  }
.list_voice .slide .slide-media img {
  float: right;
  margin-right: 20px;
  margin-top: -80px;
  box-shadow: 0 0 5px rgba(107,107,107,0.2) ;
}
.list_voice .slide h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  font-weight: 700;
}
.list_voice .slide h3 span {
  margin-left: 10px;
  background: #292f4a;
  color: #fff;
  border-radius: 2rem;
  min-width: 5rem;
  padding: 0 10px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}

  .list_voice .slide-content {
    padding: 3.2rem;
  }
.btn_link a {
  position: relative;
  border: 1px solid #292f4a;
  border-radius: 5rem;
  padding: 5px 48px 5px 20px;
  margin-top: 60px;
  display: inline-block;
  font-weight: 500;
}
.btn_link a:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 16px;
  height: 12px;
  background: url("../img/ico_arrow_blue.svg") 0 0 no-repeat;
  margin-left: 16px;
}
@media screen and (max-width :834px){
  .list_voice .swiper-pagination-bullet {
    width: 2rem;
  }
  .list_voice .swiper-pagination-bullet-active {
    width: 5rem;
  }
}

/* ===============================================
# area_message
=============================================== */
.area_message {
  padding-bottom: 100px;
  position: relative;
  background: url("../img/bg_message.png") 0 bottom no-repeat;
  overflow-x: clip;
}
.area_message:before {
  content: '';
  background: url("../img/bg_blur.png") 0 0 no-repeat;
  width: 710px;
  height: 100%;
  position: absolute;
  top: -25%;
  left: -25vw;
}
.area_message .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.area_message h2 {
  position: absolute;
  top: -50px;
  right: 0;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.90;
}
.area_message p {
  width: 40em;
  margin: 60px auto 0;
  letter-spacing: 0.06rem;
  font-weight: 500;
}
@media screen and (min-width :1025px){
}
@media screen and (max-width :834px){
  .area_message .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .area_message h2 {
    position: relative;
    -ms-writing-mode: tb-rl;
    writing-mode: revert;
    font-size: 3.6rem;
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .area_message p {
    width: 26em;
    margin: 0;
  }
}

/* ===============================================
# area_point
=============================================== */
.area_point {
  padding: 70px 0;
}
.area_point #list_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.area_point #list_point a {
  width: 48%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
  border-radius: 0 0 20px 20px;
  color: var(--color-theme);
  z-index: 10;
}
.area_point #list_point .img_thum img {
  border-radius: 20px 20px 0 0;
}
.area_point #list_point a h3 {
  padding: 20px;
  font-weight: 600;
}

@media screen and (max-width :834px){
  .area_point {
    padding: 0;
  }
  .area_point #list_point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .area_point #list_point a {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===============================================
# area_company
=============================================== */
.area_company {
  padding: 70px 0;
  position: relative;
}
.area_company:before {
  content: '';
  background: url("../img/bg_blur.png") 0 0 no-repeat;
  width: 710px;
  height: 100%;
  position: absolute;
  top: -25%;
  right: 0;
}

.area_company h3 {
  text-align: center;
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: 600;
  color: var(--color-theme);
}
.area_company .txt_company {
  margin: 50px auto 40px;
  width: 80%;
}
.area_company .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid var(--color-lightblue);
  border-bottom: 1px solid var(--color-lightblue);
  padding: 0 10px 4px;
}
.area_company .col2 dl {
  width: 50%;
}
.area_company .col1 {
  border-bottom: 1px solid var(--color-lightblue);
  padding: 0 10px 4px;
}
.area_company dt {
  color: var(--color-point);
}
.area_company dd {
  margin-left: 0.8em;
}


.area_company .company_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(to top, #eff6f7,#fff);
  border-radius: 20px 20px 0 0;
  padding: 0 60px;
  margin-top: -26px;
}
.area_company .img_company {
  width: 35%;
  min-width: 220px;
  padding-top: 40px;
}

.area_company .box_message {
  padding-left: 40px;
}
.area_company .box_message h4 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.area_company .box_message h4 span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 1.2em;
}
.area_company .box_message p + p {
  margin-top: 20px;
}
@media screen and (max-width :834px){
  .area_company {
    padding: 70px 0 0;
  }
  .area_company:before {
    top: -50vw;
    z-index: -5;
  }
  .area_company .inner {
    width: 100%;
  }
  .area_company .inner h2,
  .area_company .inner h3,
  .area_company .inner .txt_company,
  .area_company .inner .box_message{
    width: 92%;
  }
  .area_company h3 {
    font-size: 20px;
    font-size: 2.0rem;
    margin: 0 auto;
  }
  .area_company .txt_company {
    margin: 20px auto;
    width: 100%;
  }
  .area_company .col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0 4px;
  }
  .area_company .col2 dl {
    width: 100%;
  }
  .area_company .col2 dl + dl {
  border-top: 1px solid var(--color-lightblue);
  }
  .area_company .company_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: revert;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 0;
    padding: 0;
  }
  .area_company .box_message {
    padding-left: 0;
  }
  .area_company .box_message h4 {
    margin-bottom: 10px;
  }
  .area_company .box_message h4 span {
    display: block;
  }
}
/* ===============================================
# area_contact
=============================================== */
.area_contact {
  padding: 70px 0;
  background: url("../img/bg_contact.jpg") center center no-repeat;
  background-size: cover;
}
.area_contact p {
  font-weight: bold;
  margin-bottom: 40px;
}
.area_contact .contact_block {
  margin: 0 auto;
}
.area_contact .contact_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.area_contact .contact_block li + li{
  margin-left: 4rem;
}
.area_contact .contact_block a {
  position: relative;
  min-width: 240px;
  min-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.area_contact .contact_block a span {
  font-size: 12px;
  font-size: 1.2rem;
}
.area_contact .contact_block .tel {
  font-size: 20px;
  font-size: 2.0rem;
}

@media print,screen and (min-width : 1025px){
}
@media screen and (max-width :834px){
  .area_contact .contact_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .area_contact .contact_block li + li{
    margin-left: 0;
    margin-top: 1em;
  }
  .area_contact .contact_block .line a {
    font-size: 1.6rem;
    font-size: 16px;
  }
  .area_contact .contact_block .line img {
    width: 1.2em;
    margin-right: 0.6em;
  }
}
/* ===============================================
# footer
=============================================== */
footer {
  background: #2b2c31;
  color: #fff;
}
.ft_block_inner {
  max-width: 95%;
  margin: 0 auto;
  padding: 30px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 100;
}
.ft_block_left .ft_company {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ft_block_left h1 {
  display: block;
  font-size: 20px;
  font-size: 2.0rem;
}
.ft_btn a {
  width: 7.5em;
  border: 1px solid rgba(255,255,255,0.5);
  margin-left: 1em;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-clip: padding-box;
}
.ft_btn a span img {
  vertical-align: baseline;
  width: 0.9em;
}

@media screen and (max-width :834px){
.ft_block_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  }
}