@charset "UTF-8";
/* ----------------------------------------------------------------
	reset
---------------------------------------------------------------- */
*, ::before, ::after {
	-webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
  font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
main {
  display: block;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dd {
  margin-left: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted inherit;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
  border-color: inherit;
}
td, th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}
svg, img, embed, object, iframe {
  vertical-align: bottom;
}
img {
	max-width: 100%;
  height: auto;
	vertical-align: bottom;
	font-size: 0;
	line-height: 0;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	   -moz-user-drag: none;
	    -ms-user-drag: none;
}
img[src$=".svg"] {
	width: 100%;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
  color: #080404;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
body {
  font-family: 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-optical-sizing: auto;
  background: #e8f7f9;
	font-size: 16px;
  font-weight: 400;
  font-style: normal;
	line-height: 2;
	color: #080404;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" !important;
          font-feature-settings: "palt" !important;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
  word-wrap: break-word;
  outline: none;
  width: 100%;
}
.en {
  font-family: "Barlow", sans-serif;
  font-style: normal;
}
.object-fit {
  object-fit: cover;
	font-family: 'object-fit: cover;';
}
.pc {display: block;}
.sp {display: none;}


/* Smartphone
----------------------------------------------- */
@media screen and (max-width: 999px) {
  body {
    min-width: inherit;
    width: 100%;
  }
  .pc {display: none;}
  .sp {display: block;}
  a:hover {
    opacity: 1;
  }
}/* Smartphone End */


/* ----------------------------------------------------------------
	animation
---------------------------------------------------------------- */

/* --- fadeUp --------------------------- */
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUpAnime {
  opacity: 0;
}
.fadeUpAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeUpAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeUpAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeUpAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeUpAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeUpAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeUp {
  -webkit-animation: fadeUp 0.35s linear forwards;
  animation: fadeUp 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeIn --------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInAnime {
  opacity: 0;
}
.fadeInAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeInAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeInAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeInAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeInAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeInAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeIn {
  -webkit-animation: fadeIn 0.35s linear forwards;
  animation: fadeIn 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeDown --------------------------- */
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeDownAnime {
  opacity: 0;
}
.fadeDown.aniDelay01 {animation-delay: 0.3s;}
.fadeDown.aniDelay02 {animation-delay: 0.45s;}
.fadeDown.aniDelay03 {animation-delay: 0.6s;}
.fadeDown.aniDelay04 {animation-delay: 0.75s;}
.fadeDown.aniDelay05 {animation-delay: 0.9s;}
.fadeDown.aniDelay06 {animation-delay: 1.05s;}
.fadeDown {
  -webkit-animation: fadeDown 0.35s linear forwards;
  animation: fadeDown 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeInLeft --------------------------- */
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftAnime {
  opacity: 0;
}
.fadeInLeftAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeInLeftAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeInLeftAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeInLeftAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeInLeftAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeInLeftAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeInLeft {
  -webkit-animation: fadeInLeft 0.35s linear forwards;
  animation: fadeInLeft 0.35s linear forwards;
  animation-delay: 0.1s;
}

/* --- fadeInRight --------------------------- */
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight2 {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightAnime {
  opacity: 0;
}
.fadeInRightAnime2 {
  opacity: 0;
}
.fadeInRightAnime.aniDelay01 {animation-delay: 0.3s;}
.fadeInRightAnime.aniDelay02 {animation-delay: 0.45s;}
.fadeInRightAnime.aniDelay03 {animation-delay: 0.6s;}
.fadeInRightAnime.aniDelay04 {animation-delay: 0.75s;}
.fadeInRightAnime.aniDelay05 {animation-delay: 0.9s;}
.fadeInRightAnime.aniDelay06 {animation-delay: 1.05s;}
.fadeInRight {
  -webkit-animation: fadeInRight 0.35s linear forwards;
  animation: fadeInRight 0.35s linear forwards;
  animation-delay: 0.1s;
}
.fadeInRight2 {
  -webkit-animation: fadeInRight2 0.35s linear forwards;
  animation: fadeInRight2 0.35s linear forwards;
  animation-delay: 0.1s;
}


/* ----------------------------------------------------------------
	header
---------------------------------------------------------------- */
header {
  width: 100%;
  height: 88px;
  position: fixed;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content:space-between;
  align-items:center;
}
header.invert {
  background: #fff;
  transition: 0.5s;
}
header h1 {
  width: 241px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  margin-left: 70px;
}
header h1 a img {
  width: 100%;
}
header h1 a:hover {
  opacity: 1 !important;
}
nav {
  margin-right: 70px;
  position: relative;
  z-index: 1003;
}
.nav-button p {
  display: none;
}
.globalnav {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	flex-wrap: wrap;
  align-items: center;
	width: 100%;
	margin: 0 0 0 0;
}
.globalnav li {
  margin-left: 60px;
}
.globalnav li:first-child {
  margin-left: 0;
}
.globalnav li:first-child,
.globalnav li:last-child {
  display: none;
}
.globalnav li a {
  position: relative;
  display: inline-block;
  color: #080404;
  font-size:15px;
  font-weight: 500;
  line-height: 1;
  width: 100%;
  text-decoration: none;
}
.globalnav li a.btnBar::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #080404;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.globalnav li a.btnBar:hover::after {
  bottom: -12px;
  opacity: 1;
  visibility: visible;
}
.globalnav a:hover {
  opacity: 1;
}
.globalnav .nav-button-wrap,
.globalnav .open {
    display:block;
  }
.globalnav .close {
  display:block;
}
.globalnav a.btnO {
  width: 180px;
  height: 48px;
  border-radius: 24px;
  background: #0d62aa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.08em;
  color: #fff;
}
.globalnav a.btnO:hover {
  color: #fff;
  opacity: 0.7;
}

/* Smartphone
------------------------------------- */
@media print,screen and (max-width: 999px) {
  body.open {
    height: 100vh;
    overflow: hidden;
  }
  header {
    height: 60px;
  }
  header h1 {
    width: 165px;
    margin-left: 10.13vw;
    transition: 0.5s;
  }
  header.invert h1 {
    margin-left: 5.06vw;
  }
  header h1 a {
    height: 22px;
  }
  header h1 a img {
    vertical-align: top;
  }
  nav {
    margin-right: 0;
    width: 60px;
    height: 60px;
    background: #fff;
  }
  .nav-button-wrap {
    display: block;
    right:0;
    top:0;
    z-index:9999;
    cursor: pointer;
    height: 60px;
    width: 60px;
    background: #fff;
  }
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.3s;
  }
  .nav-button {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 9995;
    background: #fff;
    text-align: center;
    padding-top: 33px;
  }
  .nav-button p {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
  .nav-button span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 1px;
    background-color: #080404;
    border-radius: 1px;
  }
  .nav-button span:nth-of-type(1) {
    top: 20px;
  }
  .nav-button span:nth-of-type(2) {
    top: 18px;
    display: none;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 30px;
  }
  .globalnav {
    display:none;
  }
  .globalnav .close {
    display:none;
  }
  .globalnav-wrap.open .globalnav {
    display:block;
    padding: 140px 20px 0;
    position: fixed;
    left: 0;
    top: 0;
    background: #e8f7f9;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .globalnav-wrap.open .globalnav li {
    display: block;
  }
  .globalnav-wrap.open .globalnav li:hover {
    background: transparent;
  }
  .active .nav-button span:nth-of-type(1) {
    transform: translateY(10px) rotate(210deg);
  }
  .active .nav-button span:nth-of-type(2) {
    opacity: 0;
  }
  .active .nav-button span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-210deg);
  }
  .globalnav li {
    margin-left: 0;
  }
  .globalnav li:first-child {
    position: absolute;
    left: 15px;
    top: 80px;
    width: 175px !important;
    border-bottom: none;
  }
  .globalnav li:first-child a {
    width: 175px !important;
    padding: 0;
  }
  .globalnav li:last-child {
    display: block;
  }
  .globalnav li {
    border-bottom: 1px solid #a6aeaf;
  }
  .globalnav li:nth-child(2) {
    border-top: 1px solid #a6aeaf;
  }
  .globalnav li a {
    display: block;
    font-size: 16px;
    padding: 24px 10px;
    position: relative;
  }
  .globalnav li a.btnBar::after {
    bottom: inherit;
    left: inherit;
    content: inherit;
    width: 0;
    height: 0;
    background: none;
  }
  .globalnav li:nth-child(n+2) a::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background: url("../images/common/listmark.png") left top / contain;
    margin-right: 12px;
    margin-bottom: 1px;
  }
  .globalnav li a.btnBar:hover::after {
    bottom: inherit;
    opacity: 0;
    visibility: hidden;
  }
  .active .nav-button span:nth-of-type(1) {
    transform: translateY(3px) rotate(210deg);
  }
  .active .nav-button span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-210deg);
  }
}/* Smartphone End */


/* ----------------------------------------------------------------
	contact
---------------------------------------------------------------- */
.contact {
  width: 100%;
  padding: 6.06vw 0 6.06vw;
  background: #106ebe;
}
.contact .inr {
  width: 77.58vw;
  margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}
.contact .inr ul {
  padding: 1.21vw 0 1.21vw;
}
.contact .inr ul li {
  text-align: center;
  color:  #fff;
  font-size: max(0.97vw,16px);
  padding-bottom: 1.09vw;
}
.contact .inr ul li:last-child {
  padding-bottom: 0;
}
.contact .inr ul.form {
  width: 50%;
  border-right: 1px solid #92b6db;
}
.contact .inr ul.form li a {
  width: max(18.18vw,300px);
  height: max(3.88vw,64px);
  border-radius: max(1.94vw,32px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(1.09vw,18px);
  font-weight: 500;
  color: #106ebe;
  background: #fff;
  margin: 0 auto;
  border: 2px solid #fff;
}
.contact .inr ul.form li a:hover {
  background: #106ebe;
  font-size: max(1.15vw,19px);
  color: #fff;
  font-weight: 600;
  opacity: 1;
}
.contact .inr ul.tel {
  width: 50%;
}
.contact .inr ul.tel li:nth-child(2) {
  font-size: max(3.27vw,54px);
  line-height: 1.1;
  font-weight: 600;
}

/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 999px) {
  .contact {
    padding: 20.25vw 0 20.25vw;
  }
  .contact .inr {
    width: 100%;
  }
  .contact .inr ul {
    padding: 0 0 16.46vw;
  }
  .contact .inr ul:last-child {
    padding: 0 0 0;
  }
  .contact .inr ul li {
    font-size: 4.05vw;
    padding-bottom: 6.96vw;
  }
  .contact .inr ul li:last-child {
    padding-bottom: 0;
  }
  .contact .inr ul.form {
    width: 100%;
    border-right: none;
  }
  .contact .inr ul.form li a {
      width: 60.76vw;
      height: 15.19vw;
      border-radius: 7.59vw;
      font-size: 5.06vw;
      font-weight: 400;
  }
  .contact .inr ul.form li a:hover {
      background: #fff;
      color: #106ebe;
      font-size: 5.06vw;
      font-weight: 400;
  }
  .contact .inr ul.tel {
    width: 100%;
  }
  .contact .inr ul.tel li:nth-child(2) {
    font-size: 11.14vw;
    line-height: 1.1;
    font-weight: 600;
  }
}/* Smartphone End */


/* ----------------------------------------------------------------
	footer
---------------------------------------------------------------- */
footer {
  background: url("../images/common/footer_bg.png") right top / contain no-repeat #080404;
  padding: 7.27vw 0 3.64vw;
}
footer .inr {
  width: 77.58vw;
  margin: 0 auto;
  position: relative;
  padding-bottom: 7.52vw;
}
footer .inr .footerCont01 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
}
footer .inr .footerCont01 ul {
  color: #fff;
  font-size: max(0.91vw,15px);
  line-height: 1.6;
}
footer .inr .footerCont01 ul li {
  margin-bottom: 0.97vw;
}
footer .inr .footerCont01 ul li a {
  color: #fff;
  padding: 0.73vw 0;
  font-size: max(0.91vw,15px);
}
footer .inr .footerCont01 ul:nth-child(1) {
  width: 48%;
}
footer .inr .footerCont01 ul:nth-child(2) {
  width: 15%;
}
footer .inr .footerCont01 ul:nth-child(3) {
  width: 37%;
}
footer .inr .footerCont01 ul:nth-child(1) h2 {
  width: 12.73vw;
  margin-bottom: 1.94vw;  
}
footer .inr .footerCont01 ul:nth-child(3)::after {
	content: "";
	display: block;
	clear: both;
}
footer .inr .footerCont01 ul:nth-child(3) li {
  width: 50%;
  float: left;
}
footer .inr .footerCont01 ul:nth-child(3) li:nth-child(1) {
  width: 100%;
}
footer .inr .footerCont02 {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin: 0 auto;
}
footer .inr .footerCont02 li a {
  color: #fff;
  font-size: max(0.91vw,15px);
  margin-left: 2em;
}
footer .inr small {
  width: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: max(0.67vw,11px);
  color: #fff;
}

/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 999px) {
  footer {
    background: url("../images/common/footer_bg.png") right bottom / 89.87vw no-repeat #080404;
    padding: 20.25vw 0 20.25vw;
  }
  footer .inr {
    width: 84.81vw;
    padding-bottom: 0;
  }
  footer .inr .footerCont01 ul {
    font-size: 3.8vw;
    line-height: 2;
  }
  footer .inr .footerCont01 ul li {
    margin-bottom: 5.57vw;
  }
  footer .inr .footerCont01 ul li a {
    color: #fff;
    padding: 0.73vw 0;
    font-size: 3.8vw;
  }
  footer .inr .footerCont01 ul:nth-child(1) {
    width: 100%;
    margin-bottom: 15.19vw;
  }
  footer .inr .footerCont01 ul:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  footer .inr .footerCont01 ul:nth-child(2) li {
    width: 50%;
  }
  footer .inr .footerCont01 ul:nth-child(2) li a {
    font-weight: 700;
  }
  footer .inr .footerCont01 ul:nth-child(3) {
    width: 100%;
  }
  footer .inr .footerCont01 ul:nth-child(1) h2 {
    width: 57.47vw;
    margin-bottom: 9.11vw;
  }
  footer .inr .footerCont01 ul:nth-child(3) li:nth-child(1) {
    width: 100%;
  }
  footer .inr .footerCont01 ul:nth-child(3) li:nth-child(1) a {
    font-weight: 700;
  }
  footer .inr .footerCont01 ul:nth-child(3) li:nth-child(n+2) a {
    padding-left: 1em;
    position: relative;
  }
  footer .inr .footerCont01 ul:nth-child(3) li:nth-child(n+2) a::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 3.5vw;
  }
  footer .inr .footerCont02 {
    width: 100%;
    position: inherit;
    right: inherit;
    bottom: inherit;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto 20.25vw;
  }
  footer .inr .footerCont02 li {
    width: 50%;
  }
  footer .inr .footerCont02 li a {
    color: #fff;
    font-size: 3.8vw;
    margin-left: 0;
    font-weight: 700;
  }
  footer .inr small {
    width: 100%;
    position: inherit;
    right: inherit;
    bottom: inherit;
    font-size: 3.04vw;
  }
}/* Smartphone End */


/* ----------------------------------------------------------------
	btn
---------------------------------------------------------------- */
a.btn {
  width: max(14.55vw,240px);
  height: max(3.64vw,60px);
  border-radius: max(1.82vw,30px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(0.91vw,15px);
}
a.btn.btn_w {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 400;
}
a.btn.btn_w:hover {
  background: #fff;
  opacity: 1;
  color: #0d62aa;
  font-size: max(0.97vw,16px);
  font-weight: 500;
}
a.btn.btn_b {
  border: 2px solid #080404;
  color: #080404;
  font-weight: 400;
}
a.btn.btn_b:hover {
  background: #080404;
  opacity: 1;
  color: #fff;
  font-size: max(0.97vw,16px);
  font-weight: 500;
}
a.btn.btn_w02 {
  border: 2px solid #fff;
  color: #106ebe;
  font-weight: 400;
  background: #fff;
}
a.btn.btn_w02:hover {
  background: #106ebe;
  opacity: 1;
  color: #fff;
  font-size: max(0.97vw,16px);
  font-weight: 500;
}

/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 999px) {
  a.btn {
    width: 60.76vw;
    height: 15.19vw;
    border-radius: 7.59vw;
    font-size: 5.06vw;
  }
  a.btn.btn_w:hover {
    background: none;
    opacity: 1;
    color: #fff;
    font-size: 5.06vw;
    font-weight: 400;
  }
  a.btn.btn_b:hover {
    background: #fff;
    color: #080404;
    font-size: 5.06vw;
    font-weight: 400;
  }
  a.btn.btn_w02 {
    color: #106ebe;
    font-size: 4.56vw;
    font-weight: 400;
    background: #fff;
  }
  a.btn.btn_w02:hover {
    background: #fff;
    color: #106ebe;
    font-size: 4.56vw;
    font-weight: 400;
  }
}/* Smartphone End */


/* ----------------------------------------------------------------
	#lower
---------------------------------------------------------------- */
body#lower {
  background: #fff;
  position: relative;
}
body#lower::after {
  content: "";
  display: block;
  width: 100%;
  height: 34.42vw;
  background: #e8f7f9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
body#lower::before {
  content: "";
  display: block;
  width: 47.45vw;
  height: 52.61vw;
  background: url("../images/common/lower_bg.png") right top / contain no-repeat;
  position: absolute;
  right: 0;
  top: 7.76vw;
  z-index: 2;
}

/* Smartphone
----------------------------------------------- */
@media screen and (max-width: 767px) {
  body#lower::after {
    height: 88.61vw;
  }
  body#lower::before {
    width: 69.62vw;
    height: 51.89vw;
    top: 22.03vw;
  }
  body#lower header h1 {
    margin-left: 5.06vw;
  }
}/* Smartphone End */


/* 	main-image
---------------------------------------------------------------- */
body#lower #main {
  width: 100%;
  padding-top: 11.52vw;
}
body#lower #main .inr {
  width: 77.58vw;
  margin: 0 auto 14.55vw;
  position: relative;
  z-index: 5;
}
body#lower #main .inr h2 {
  font-size: max(1.33vw,22px);
  font-weight: 500;
  letter-spacing: 0.24em;
  padding-bottom: 4.36vw;
}
body#lower #main .inr h2 span {
  display: block;
  font-size: max(4.85vw,80px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
body#lower #main .inr p {
  width: 63.03vw;
  margin: 0 auto;
}

/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 999px) {
  body#lower #main {
    padding-top: 27.85vw;
  }
  body#lower #main .inr {
    width: 100%;
    margin: 0 auto 20.25vw;
  }
  body#lower #main .inr h2 {
    font-size: 4.05vw;
    padding-bottom: 8.86vw;
    padding-left: 7.59vw;
    padding-right: 7.59vw;
  }
  body#lower #main .inr h2 span {
    font-size: 11.14vw;
  }
  body#lower #main .inr p {
    width: 100%;
  }
  body#lower #main .inr p img {
    width: 100%;
  }
}/* Smartphone End */











