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

img {
  vertical-align: bottom;
}

li {
  list-style: none;
}

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

body {
  position: relative;
  width: 100%;
  color: #222;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  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: 1600px) {
  body {
    font-size: calc((16/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  body {
    font-size: calc((16/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  body {
    font-size: calc((15/376)*100vw);
  }
}

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: -100px;
  padding-top: 100px;
}

.inner {
  width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 1600px) {
  .inner {
    width: calc((1300/1600)*100vw);
    padding: 0 calc((30/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .inner {
    width: 100%;
    padding: 0 calc((30/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((15/376)*100vw);
  }
}
.inner_narrow {
  width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 1300px) {
  .inner_narrow {
    width: 100%;
    padding: 0 calc((30/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .inner_narrow {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((15/376)*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;
}

/*---------------
   テキスト関係
---------------*/
.p_oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/*---------------
   form
---------------*/
input, select, textarea {
  color: #222;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 1600px) {
  input, select, textarea {
    font-size: calc((16/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  input, select, textarea {
    font-size: calc((16/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  input, select, textarea {
    font-size: calc((15/376)*100vw);
  }
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*---------------
   header
---------------*/
.header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 74px;
  -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;
}
@media only screen and (max-width: 1600px) {
  .header {
    height: calc((74/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header {
    display: block;
    height: calc((56/376)*100vw);
    background: #FFF;
  }
}
.header .header_logo a {
  width: 187px;
  height: 28px;
  display: block;
  background: url("../images/common/header_logo.png") top left no-repeat;
  background-size: contain;
  margin-left: 60px;
  transition: ease 0.5s;
}
@media only screen and (max-width: 1600px) {
  .header .header_logo a {
    margin-left: calc((30/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .header_logo a {
    position: absolute;
    top: 0;
    left: calc((17/376)*100vw);
    width: calc((150/376)*100vw);
    height: calc((21/376)*100vw);
    margin: calc((17/376)*100vw) 0;
  }
}
@media only screen and (max-width: 640px) {
  .header.open .header_logo a {
    background: url("../images/common/header_logo_open.png") top left no-repeat;
    background-size: contain;
    z-index: 99;
    transition: ease 0.5s;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    padding: calc((90/376)*100vw) calc((20/376)*100vw) calc((20/376)*100vw);
    background: url("../images/common/gnav_open_bg.png") bottom left no-repeat, #0080c0;
    background-size: 100% auto;
    position: relative;
    top: 0;
    z-index: 5;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.header .gnav-menu {
  display: none;
}
@media only screen and (max-width: 640px) {
  .header .gnav-menu {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    display: block;
    width: calc((56/376)*100vw);
    height: calc((56/376)*100vw);
    background: url("../images/common/gnav_menu_close.png") top right no-repeat;
    background-size: contain;
    border: none;
    transition: ease 0.5s;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav-menu.open {
    transition: ease 0.5s;
    background: url("../images/common/gnav_menu_open.png") top right no-repeat;
    background-size: contain;
  }
}
.header .gnav_main {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  margin-right: 430px;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_main {
    margin-right: calc((380/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_main {
    display: block;
    margin: 0;
  }
}
.header .gnav_main li {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .1em;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_main li {
    font-size: calc((15/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_main li {
    border: none;
    width: 100%;
    font-size: calc((20/376)*100vw);
    font-weight: 400;
  }
}
.header .gnav_main li:first-child {
  border-left: none;
}
.header .gnav_main li a {
  padding: 0 1.0em;
  display: block;
  text-decoration: none;
  color: #222;
  text-align: center;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_main li a {
    padding: 0 .5em;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_main li a {
    padding: 1em 0;
    color: #FFF;
    text-align: left;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_main li a:before {
    content: 'ー';
  }
}
.header .gnav_main li a:hover span {
  border-bottom: #444 1px solid;
}
@media only screen and (max-width: 640px) {
  .header .gnav_main li a:hover span {
    border-bottom: none;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_main li.contact {
    margin-top: 1em;
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_main li.contact a {
    background: #1c5b02;
  }
}
.header .gnav_info {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
@media only screen and (max-width: 640px) {
  .header .gnav_info {
    position: static;
  }
}
.header .gnav_info .tel, .header .gnav_info .contact {
  width: 180px;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_info .tel, .header .gnav_info .contact {
    width: calc((180/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_info .tel, .header .gnav_info .contact {
    width: 100%;
    margin-bottom: calc((30/376)*100vw);
  }
}
.header .gnav_info .tel a, .header .gnav_info .contact a {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: center;
  height: 74px;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_info .tel a, .header .gnav_info .contact a {
    height: calc((74/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .header .gnav_info .tel a, .header .gnav_info .contact a {
    height: auto;
  }
}
.header .gnav_info .tel span, .header .gnav_info .contact span {
  padding: 0;
}
.header .gnav_info .tel {
  position: relative;
  color: #666;
  font-size: 1.3rem;
  line-height: 1.1;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_info .tel {
    font-size: calc((13/1600)*100vw);
  }
}
.header .gnav_info .tel:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '';
  width: 1px;
  height: 39px;
  background: #8d8d8d;
}
@media only screen and (max-width: 640px) {
  .header .gnav_info .tel:after {
    content: none;
  }
}
.header .gnav_info .tel a {
  padding: 0;
}
.header .gnav_info .tel .num {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #222;
  font-size: 2.0rem;
  letter-spacing: -.03em;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_info .tel .num {
    font-size: calc((20/1600)*100vw);
  }
}
.header .gnav_info .contact {
  box-shadow: none;
}
.header .gnav_info .contact a {
  padding-left: 3em;
}
@media only screen and (max-width: 640px) {
  .header .gnav_info .contact a {
    padding: 0;
  }
}
.header .gnav_info .contact span {
  color: #FFF;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_info .contact span {
    font-size: calc((16/1600)*100vw);
  }
}
.header .gnav_info .contact span:before {
  left: -2em;
  width: 27px;
  height: 19px;
  background: url("../images/common/header_contact.png") top 50% center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1600px) {
  .header .gnav_info .contact span:before {
    width: calc((27/1600)*100vw);
    height: calc((19/1600)*100vw);
  }
}

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

.content {
  padding: 100px 0;
}
@media only screen and (max-width: 1600px) {
  .content {
    padding: calc((100/1600)*100vw) 0;
  }
}
@media only screen and (max-width: 640px) {
  .content {
    padding: calc((100/376)*100vw) 0;
  }
}
.content_top {
  padding: 100px 0;
}
@media only screen and (max-width: 1600px) {
  .content_top {
    padding: calc((100/1600)*100vw) 0;
  }
}
@media only screen and (max-width: 640px) {
  .content_top {
    padding: calc((50/376)*100vw) 0 calc((100/376)*100vw);
  }
}

.btn_basic {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  width: 377px;
  margin: 0 auto;
  box-shadow: 6px 5px 0px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1600px) {
  .btn_basic {
    width: calc((377/1600)*100vw);
    box-shadow: calc((6/1600)*100vw) calc((5/1600)*100vw) 0px 0px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 1300px) {
  .btn_basic {
    width: calc((377/1300)*100vw);
    box-shadow: calc((6/1300)*100vw) calc((5/1300)*100vw) 0px 0px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 640px) {
  .btn_basic {
    width: 100%;
    box-shadow: calc((6/376)*100vw) calc((5/376)*100vw) 0px 0px rgba(0, 0, 0, 0.1);
  }
}
.btn_basic a, .btn_basic .input_wrap {
  display: block;
  background: #0080c0;
  padding: .8em 1em;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
.btn_basic a:after, .btn_basic .input_wrap:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  width: 8px;
  height: 10px;
  border-top: transparent 16px solid;
  border-right: #444 5px solid;
  border-bottom: #444 16px solid;
  border-left: transparent 5px solid;
}
@media only screen and (max-width: 1600px) {
  .btn_basic a:after, .btn_basic .input_wrap:after {
    width: calc((8/1600)*100vw);
    height: calc((10/1600)*100vw);
    border-top: transparent calc((16/1600)*100vw) solid;
    border-right: #444 calc((5/1600)*100vw) solid;
    border-bottom: #444 calc((16/1600)*100vw) solid;
    border-left: transparent calc((5/1600)*100vw) solid;
  }
}
@media only screen and (max-width: 1300px) {
  .btn_basic a:after, .btn_basic .input_wrap:after {
    width: calc((7/1300)*100vw);
    height: calc((10/1300)*100vw);
    border-top: transparent calc((16/1300)*100vw) solid;
    border-right: #444 calc((5/1300)*100vw) solid;
    border-bottom: #444 calc((16/1300)*100vw) solid;
    border-left: transparent calc((5/1300)*100vw) solid;
  }
}
@media only screen and (max-width: 640px) {
  .btn_basic a:after, .btn_basic .input_wrap:after {
    width: calc((8/376)*100vw);
    height: calc((10/376)*100vw);
    border-top: transparent calc((16/376)*100vw) solid;
    border-right: #444 calc((5/376)*100vw) solid;
    border-bottom: #444 calc((16/376)*100vw) solid;
    border-left: transparent calc((5/376)*100vw) solid;
  }
}
.btn_basic a:before, .btn_basic .input_wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #444;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.btn_basic a:hover:before, .btn_basic .input_wrap:hover:before {
  transform-origin: right top;
  transform: scale(1, 1);
}
.btn_basic a input[type="submit"], .btn_basic a input[type="button"], .btn_basic .input_wrap input[type="submit"], .btn_basic .input_wrap input[type="button"] {
  padding: 0;
  background: none;
}
.btn_basic a span, .btn_basic a input[type="submit"], .btn_basic a input[type="button"], .btn_basic .input_wrap span, .btn_basic .input_wrap input[type="submit"], .btn_basic .input_wrap input[type="button"] {
  position: relative;
  z-index: 3;
  display: block;
  color: #FFF;
  font-size: 2.0rem;
  font-weight: 400;
}
@media only screen and (max-width: 1600px) {
  .btn_basic a span, .btn_basic a input[type="submit"], .btn_basic a input[type="button"], .btn_basic .input_wrap span, .btn_basic .input_wrap input[type="submit"], .btn_basic .input_wrap input[type="button"] {
    font-size: calc((20/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .btn_basic a span, .btn_basic a input[type="submit"], .btn_basic a input[type="button"], .btn_basic .input_wrap span, .btn_basic .input_wrap input[type="submit"], .btn_basic .input_wrap input[type="button"] {
    font-size: calc((20/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .btn_basic a span, .btn_basic a input[type="submit"], .btn_basic a input[type="button"], .btn_basic .input_wrap span, .btn_basic .input_wrap input[type="submit"], .btn_basic .input_wrap input[type="button"] {
    font-size: calc((18/376)*100vw);
  }
}
.btn_basic a span:before, .btn_basic a input[type="submit"]:before, .btn_basic a input[type="button"]:before, .btn_basic .input_wrap span:before, .btn_basic .input_wrap input[type="submit"]:before, .btn_basic .input_wrap input[type="button"]:before {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  content: '';
  width: 20px;
  height: 16px;
  background: url("../images/common/btn_basic_arrow.png") top 50% center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1600px) {
  .btn_basic a span:before, .btn_basic a input[type="submit"]:before, .btn_basic a input[type="button"]:before, .btn_basic .input_wrap span:before, .btn_basic .input_wrap input[type="submit"]:before, .btn_basic .input_wrap input[type="button"]:before {
    left: calc((30/1600)*100vw);
    width: calc((20/1600)*100vw);
    height: calc((16/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .btn_basic a span:before, .btn_basic a input[type="submit"]:before, .btn_basic a input[type="button"]:before, .btn_basic .input_wrap span:before, .btn_basic .input_wrap input[type="submit"]:before, .btn_basic .input_wrap input[type="button"]:before {
    left: calc((30/1300)*100vw);
    width: calc((20/1300)*100vw);
    height: calc((16/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .btn_basic a span:before, .btn_basic a input[type="submit"]:before, .btn_basic a input[type="button"]:before, .btn_basic .input_wrap span:before, .btn_basic .input_wrap input[type="submit"]:before, .btn_basic .input_wrap input[type="button"]:before {
    left: calc((30/376)*100vw);
    width: calc((19/376)*100vw);
    height: calc((15/376)*100vw);
  }
}

.page_ttl {
  position: relative;
  margin-top: 7.4rem;
}
@media only screen and (max-width: 1600px) {
  .page_ttl {
    margin-top: calc((74/1600)*100vw);
  }
}
.page_ttl:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '';
  width: 12px;
  height: 165px;
  background: #4396CD;
}
@media only screen and (max-width: 1600px) {
  .page_ttl:before {
    width: calc((12/1600)*100vw);
    height: calc((165/1600)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl:before {
    width: calc((10/376)*100vw);
    height: calc((120/376)*100vw);
  }
}
.page_ttl .inner {
  position: relative;
  height: 20.0rem;
}
@media only screen and (max-width: 640px) {
  .page_ttl .inner {
    height: calc((150/376)*100vw);
  }
}
.page_ttl .ttl {
  position: absolute;
  top: 50%;
  left: 3.0rem;
  transform: translateY(-50%);
  width: 30.0rem;
}
@media only screen and (max-width: 1600px) {
  .page_ttl .ttl {
    width: calc((300/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .page_ttl .ttl {
    width: calc((300/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl {
    width: calc((170/376)*100vw);
    margin-left: calc((10/376)*100vw);
  }
}
.page_ttl .ttl .en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #4396CD;
  font-size: 7.2rem;
  line-height: 1.05;
  white-space: nowrap;
}
@media only screen and (max-width: 1600px) {
  .page_ttl .ttl .en {
    font-size: calc((72/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .page_ttl .ttl .en {
    font-size: calc((72/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl .en {
    font-size: calc((48/376)*100vw);
  }
}
.page_ttl .ttl .jp {
  position: relative;
  font-size: 3.2rem;
  font-weight: 300;
}
@media only screen and (max-width: 1600px) {
  .page_ttl .ttl .jp {
    font-size: calc((32/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .page_ttl .ttl .jp {
    font-size: calc((32/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl .jp {
    font-size: calc((24/376)*100vw);
  }
}
.page_ttl .ttl .jp span {
  position: relative;
  z-index: 11;
  padding-right: .5em;
}
.page_ttl .ttl .jp:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: '';
  width: 90px;
  height: 1px;
  background: #A7A7A7;
}
@media only screen and (max-width: 1600px) {
  .page_ttl .ttl .jp:after {
    width: calc((90/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .page_ttl .ttl .jp:after {
    width: calc((90/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .page_ttl .ttl .jp:after {
    width: calc((60/376)*100vw);
  }
}

.mttl_a {
  position: relative;
  margin: 3em 0 2em;
  border-bottom: 1px solid;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 1600px) {
  .mttl_a {
    font-size: calc((26/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .mttl_a {
    font-size: calc((26/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .mttl_a {
    margin-bottom: 1.5em;
    font-size: calc((20/376)*100vw);
  }
}
.mttl_a:first-letter {
  font-size: 4.8rem;
}
@media only screen and (max-width: 1600px) {
  .mttl_a:first-letter {
    font-size: calc((48/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .mttl_a:first-letter {
    font-size: calc((48/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .mttl_a:first-letter {
    font-size: calc((40/376)*100vw);
  }
}
.mttl_a:after {
  position: absolute;
  bottom: -1.5px;
  left: 0;
  content: '';
  width: 118px;
  height: 3px;
  background: #4396CD;
}
@media only screen and (max-width: 1600px) {
  .mttl_a:after {
    width: calc((118/1600)*100vw);
    height: calc((3/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .mttl_a:after {
    width: calc((118/1300)*100vw);
    height: calc((3/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .mttl_a:after {
    width: calc((118/376)*100vw);
    height: calc((3/376)*100vw);
  }
}

.page_top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  z-index: 888;
}
@media only screen and (max-width: 640px) {
  .page_top {
    bottom: calc((15/376)*100vw);
    right: calc((15/376)*100vw);
    width: calc((60/376)*100vw);
    height: calc((60/376)*100vw);
  }
}
.page_top a:hover {
  opacity: .6;
  transition: .5s;
}

/*---------------
   footer
---------------*/
.footer {
  background: #0080c0;
  color: #FFF;
}
.footer .footer_top {
  padding: 75px 0;
  background: url("../images/common/footer_top_bg.png") top center no-repeat;
  background-size: auto 100%;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_top {
    padding: calc((75/1600)*100vw) 0;
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_top {
    padding: calc((75/1300)*100vw) 0;
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_top {
    padding: calc((75/376)*100vw) 0;
    background: url("../images/common/footer_top_bg_sp.png") top center no-repeat;
    background-size: 100% auto;
  }
}
.footer .footer_top .inner {
  position: relative;
  z-index: 22;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding: 0 268px;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_top .inner {
    padding: 0 calc((268/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_top .inner {
    padding: 0 calc((268/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_top .inner {
    display: block;
    padding: 0 calc((15/376)*100vw);
  }
}
.footer .footer_top_ttl {
  width: 332px;
  padding: .6em 0;
  border-top: #FFF 1px solid;
  border-bottom: #FFF 1px solid;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-align: center;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_top_ttl {
    width: calc((332/1600)*100vw);
    font-size: calc((24/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_top_ttl {
    width: calc((332/1300)*100vw);
    font-size: calc((24/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_ttl {
    width: 100%;
    margin-bottom: calc((65/376)*100vw);
    padding: 1.2em 0;
    font-size: calc((18/376)*100vw);
  }
}
.footer .footer_top_tel {
  padding-left: 50px;
  background: url("../images/common/footer_tel.png") top 7px left no-repeat;
  background-size: 34px;
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_top_tel {
    padding-left: calc((50/1600)*100vw);
    background-size: calc((34/1600)*100vw);
    font-size: calc((12/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_top_tel {
    padding-left: calc((50/1300)*100vw);
    background-size: calc((34/1300)*100vw);
    font-size: calc((12/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_tel {
    padding-left: 0;
    background: none;
    border: #FFF 2px solid;
    font-size: calc((15/376)*100vw);
  }
}
.footer .footer_top_tel .num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.1;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_top_tel .num {
    font-size: calc((48/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_top_tel .num {
    font-size: calc((48/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_tel .num {
    font-size: calc((44/376)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_top_tel a {
    display: block;
    padding: calc((10/376)*100vw) calc((30/376)*100vw) calc((10/376)*100vw) calc((60/376)*100vw);
    background: url("../images/common/footer_tel.png") top calc((16/376)*100vw) left calc((15/376)*100vw) no-repeat, rgba(255, 255, 255, 0.25);
    background-size: calc((33/376)*100vw);
  }
}
.footer .footer_top_tel a:hover {
  opacity: .6;
  transition: .5s;
}
.footer .footer_bottom {
  position: relative;
  padding: 60px 0;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_bottom {
    padding: calc((60/1600)*100vw) 0;
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_bottom {
    padding: calc((60/1300)*100vw) 0;
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom {
    padding: calc((60/376)*100vw) 0 calc((115/376)*100vw);
  }
}
.footer .footer_bottom .inner {
  position: relative;
  z-index: 22;
  -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;
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom .inner {
    display: block;
  }
}
.footer .footer_bottom .inner:after {
  position: absolute;
  bottom: -60px;
  left: 0;
  content: '';
  width: 687px;
  height: 546px;
  background: url("../images/common/footer_bg.png") bottom left no-repeat;
  background-size: contain;
  z-index: 11;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_bottom .inner:after {
    width: calc((687/1600)*100vw);
    height: calc((546/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_bottom .inner:after {
    bottom: calc((-17/376)*100vw);
    width: calc((687/1300)*100vw);
    height: calc((546/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom .inner:after {
    bottom: calc((-115/376)*100vw);
    width: calc((375/376)*100vw);
    height: calc((298/376)*100vw);
  }
}
.footer .footer_bottom_left {
  position: relative;
  z-index: 22;
  width: 340px;
  padding-top: 60px;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_bottom_left {
    width: calc((340/1600)*100vw);
    padding-top: calc((60/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_bottom_left {
    width: calc((340/1300)*100vw);
    padding-top: calc((60/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_left {
    width: 100%;
    margin-bottom: calc((30/376)*100vw);
    padding-top: 0;
  }
}
.footer .footer_bottom_middle {
  position: relative;
  z-index: 22;
  width: 394px;
  padding-top: 60px;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_bottom_middle {
    width: calc((394/1600)*100vw);
    padding-top: calc((60/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_bottom_middle {
    width: calc((394/1300)*100vw);
    padding-top: calc((60/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_middle {
    width: 100%;
    margin-bottom: calc((60/376)*100vw);
    padding-top: 0;
  }
}
.footer .footer_bottom_middle a:hover {
  opacity: .6;
  transition: .5s;
}
.footer .footer_bottom_nav {
  position: relative;
  z-index: 22;
  width: 394px;
  font-size: 1.6rem;
  letter-spacing: .1em;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_bottom_nav {
    width: calc((394/1600)*100vw);
    font-size: calc((16/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_bottom_nav {
    width: calc((394/1300)*100vw);
    font-size: calc((16/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_nav {
    width: calc((394/376)*100vw);
    font-size: calc((16/376)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_nav {
    width: 100%;
    font-size: calc((16/376)*100vw);
  }
}
.footer .footer_bottom_nav ul {
  -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;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  max-height: 200px;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_bottom_nav ul {
    max-height: calc((200/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_bottom_nav ul {
    max-height: calc((200/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_bottom_nav ul {
    max-height: calc((200/376)*100vw);
  }
}
.footer .footer_bottom_nav li {
  margin-bottom: 1em;
  text-align: right;
}
.footer .footer_bottom_nav a:after {
  content: 'ー';
}
.footer .footer_bottom_nav a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 640px) {
  .footer .footer_logo {
    width: calc((274/376)*100vw);
    margin: 0 auto;
  }
}
.footer .footer_logo a:hover {
  opacity: .6;
  transition: .5s;
}
.footer .footer_address {
  margin-top: 1em;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.75;
  text-align: right;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_address {
    font-size: calc((12/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_address {
    font-size: calc((12/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_address {
    margin-top: calc((15/376)*100vw);
    font-size: calc((15/376)*100vw);
    text-align: center;
  }
}
.footer .footer_copy {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: .2em 1em;
  background: #444;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1600px) {
  .footer .footer_copy {
    font-size: calc((12/1600)*100vw);
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer_copy {
    font-size: calc((12/1300)*100vw);
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer_copy {
    font-size: calc((12/376)*100vw);
  }
}

/*---------------
   余白
---------------*/
.mt_0 {
  margin-top: 0 !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}
