@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;700;900&family=Noto+Serif+JP:wght@200;300;400;600;700&display=swap');
.black {
  color: black;
}
.red {
  color: red;
}
.logo-blue {
  color: #065aa8;
}
.blue {
  color: #0068b7;
}
.lblue {
  color: #4d96cd;
}
.yellow {
  color: #ffbf35;
}
.lyellow {
  color: #ffeb68;
}
.orange {
  color: #e25f0d;
}
.vermilion {
  color: #ff5c31;
}
.green {
  color: #12a73b;
}
.gray {
  color: #acacac;
}
.lgray {
  color: #f8f8f8;
}
/* reset */
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;
}
/* HTML5 display-role reset for older browsers */
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:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* iOSでのデフォルトスタイルをリセット */
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type='submit'],
input[type='button'] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-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;
}
html {
  font-size: 62.5%;
  height: 100%;
}
body {
  position: relative;
  width: 100%;
  font-family: 'Meiryo UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', 'MS PGothic', sans-serif;
  letter-spacing: 1px;
  font-size: 1.6rem;
  font-weight: 400;
  color: black;
  line-height: 1.6;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
/*main.main{
	background:#ffce7a;
}*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
a:active,
a:focus {
  outline: none;
}
img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
}
strong {
  font-size: 120%;
}
small {
  font-size: 80%;
}
/**
 * hr
***************************/
hr {
  border-width: 1px 0 0 0;
  /* 太さ */
  border-color: #c5c5c5;
  /* 色 */
}
hr.dotted {
  border-style: dotted;
  /* 種類 */
}
hr.dashed {
  border-style: dashed;
  /* 種類 */
}
hr.double {
  border-style: double;
  /* 種類 */
}
hr.horizon {
  height: 1px;
  background-color: #0068b7;
  border: none;
  color: #0068b7;
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  hr.horizon {
    margin: 40px 0;
  }
}
/**
 * responsive
***************************/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
/**
 * header
***************************/
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 67px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 102;
    background-color: white;
  }
}
@media screen and (max-width: 768px) {
  .header-wrap {
    padding: 10px;
    border-bottom: 2px solid #f8f8f8;
    box-shadow: 0 2px 6px #acacac;
  }
}
.header-topArea {
  width: 95%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-topArea {
    width: 100%;
    padding-right: 55px;
  }
}
.header-title {
  width: 95%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  padding: 5px 0 10px;
}
@media screen and (max-width: 768px) {
  .header-title {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo {
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
}
@media screen and (max-width: 768px) {
  .header-logo {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo-img {
    display: block;
    width: 140px;
  }
}
.header-cat {
  -ms-flex: 0 1 10%;
  flex: 0 1 10%;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .header-cat {
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
    padding: 0;
  }
  .header-cat img {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .header-cat {
    display: none;
  }
}
.header_tel {
  min-width: 320px;
}
@media screen and (max-width: 1024px) {
  .header_tel {
    min-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .header_tel {
    min-width: unset;
  }
}
.header_tel-tt {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .header_tel-tt {
    display: none;
  }
}
.header_tel-fd {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0;
  color: #12a73b;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header_tel-fd {
    display: block;
    height: 60px;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    padding: 10px;
    border: 2px solid #12a73b;
    border-radius: 10px;
    background-image: url(../img/bg/bg_grn_bias.png);
    background-position: center;
    background-size: auto;
    background-repeat: repeat;
  }
}
@media screen and (max-width: 768px) {
  .header_tel-fd {
    width: 45px;
    height: 45px;
    padding: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .header_tel-fd-dial {
    display: none;
  }
}
.header_tel-tx {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .header_tel-tx {
    display: none;
  }
}
.header_tel-tx b {
  font-weight: bold;
}
.header_contact {
  min-width: 260px;
  position: relative;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
  padding: 20px 50px 20px 20px;
  background-image: url(../img/bg/bg_ylw_bias.png);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
  border: 2px solid #ffbf35;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .header_contact {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: unset;
    align-items: unset;
    min-width: 150px;
    height: 60px;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header_contact {
    -ms-flex: 1 0 45px;
    flex: 1 0 45px;
    width: 45px;
    min-width: unset;
    height: 45px;
    padding: 8px;
  }
}
.header_contact::after {
  content: '';
  display: block;
  width: 17px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 8px;
  background-image: url(../img/icon/icon_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .header_contact::after {
    display: none;
  }
}
.header_contact-tx {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: justify;
  margin-left: 20px;
  text-shadow: 1px 1px 0 #fff,
    -1px 1px 0 #fff,
    1px -1px 0 #fff,
    -1px -1px 0 #fff;
}
@media screen and (max-width: 1024px) {
  .header_contact-tx {
    display: none;
  }
}
.header-nav {
  position: relative;
  margin-top: 15px;
  background-color: #0068b7;
}
@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
    margin-top: 0;
  }
}
.header-nav::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #4d96cd;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .header-nav::after {
    display: none;
  }
}
/**
 * main
***************************/
@media screen and (max-width: 768px) {
  .main {
    padding-top: 67px;
  }
}

/**
 * section
***************************/
.section {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
/**
 * footer
***************************/
.footer-wrap {
  padding: 40px 0;
  color: white;
  background-color: #0068b7;
}
.footer-nav {
  width: 95%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    max-width: 80%;
  }
}
.footer-nav > ul {
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .footer-nav > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer-nav > ul > li {
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
}
@media screen and (max-width: 1024px) {
  .footer-nav > ul > li {
    -ms-flex: 0 1 33.3%;
    flex: 0 1 33.3%;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav > ul > li {
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav > ul > li {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav > ul > li:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav > ul > li:not(:first-child) {
    margin-top: 10px;
  }
}
.footer-nav > ul > li > a,
.footer-nav > ul > li > p {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}
.footer-nav > ul > li > ul > li a {
  font-size: 1.4rem;
  line-height: 1.2;
}
.footer-nav > ul > li > ul > li a::before {
  content: ':';
  display: inline-block;
  margin: 0 3px;
}
.footer-bottomArea {
  width: 95%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .footer-bottomArea {
    padding: 10px 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-bottomArea {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
.footer-logo {
  -ms-flex: 1 0 370px;
  flex: 1 0 370px;
}
@media screen and (max-width: 1024px) {
  .footer-logo {
    -ms-flex: 0 1 65%;
    flex: 0 1 65%;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer-logo {
    -ms-flex: 0 1 80%;
    flex: 0 1 80%;
  }
}
.footer-cat {
  -ms-flex: 0 1 21%;
  flex: 0 1 21%;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .footer-cat {
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
    text-align: center;
    margin-top: 30px;
  }
}
.footer_tel {
  -ms-flex: 1 0 490px;
  flex: 1 0 490px;
}
@media screen and (max-width: 1024px) {
  .footer_tel {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
    margin-top: 30px;
  }
}
.footer_tel-tt {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_tel-tt {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .footer_tel-tt {
    font-size: 1.6rem;
  }
}
.footer_tel-fd {
  display: inline-block;
  font-size: 5.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0;
  color: #12a73b;
}
@media screen and (max-width: 1024px) {
  .footer_tel-fd {
    margin: 5px 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer_tel-fd {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .footer_tel-fd {
    font-size: 2rem;
  }
}
.footer_tel-fd-img {
  position: relative;
  bottom: 3px;
}
.footer_tel-tx {
  font-size: 1.4rem;
  line-height: 1.4;
}
.footer_tel-tx b {
  font-weight: bold;
}
.footer .copy {
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
  padding: 10px 0 30px;
}
@media screen and (max-width: 768px) {
  .navigation {
    width: 100%;
    height: calc(100vh - 67px);
    position: absolute;
    top: 67px;
    left: 0;
    z-index: 100;
    overflow-y: scroll;
    border-bottom: 5px solid #4d96cd;
  }
}
.navigation_list {
  width: 1280px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .navigation_list {
    display: block;
  }
}
.navigation_list-item {
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.navigation_list-item.active > a {
  background-color: #4d96cd;
}
.navigation_list-item.active > a:hover {
  background-color: #4d96cd;
}
@media screen and (max-width: 768px) {
  .navigation_list-item.active > a:hover::after {
    background-color: #4d96cd;
  }
}
.navigation_list-item.active > a::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0068b7;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .navigation_list-item.active > a::after {
    background-color: #4d96cd;
  }
}
.navigation_list-item.active > p {
  background-color: #4d96cd;
}
.navigation_list-item.active > p::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0068b7;
  transition: all 0.3s ease;
}
.navigation_list-item p,
.navigation_list-item a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: white;
  padding: 15px 0;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .navigation_list-item p::after,
  .navigation_list-item a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #4d96cd;
    transition: all 0.3s ease;
  }
}
.navigation_list-item p:hover,
.navigation_list-item a:hover {
  background-color: #4d96cd;
  opacity: 1;
}
.navigation_list-item p:hover::after,
.navigation_list-item a:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0068b7;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .navigation_list-item p:hover::after,
  .navigation_list-item a:hover::after {
    background-color: #4d96cd;
  }
}
.navigation_list-item:last-child .js-dropdown_menu {
  left: auto;
  right: 0;
}
.drawer {
  display: none;
  padding: 0;
  background-color: #0068b7;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .drawer {
    display: block;
    width: 45px;
    height: 45px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101;
  }
}
.drawer-line {
  display: block;
  width: 28px;
  height: 2px;
  position: absolute;
  top: 10px;
  right: 8px;
  background-color: white;
  transition: all 0.3s ease;
}
.drawer-line::before,
.drawer-line::after {
  content: ' ';
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  background-color: white;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: all 0.3s ease;
}
.drawer-line::before {
  top: 11px;
  left: 0;
}
.drawer-line::after {
  top: 22px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header::before {
    content: ' ';
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 67px;
    right: 0;
    background-color: rgba(99, 99, 99, 0.94);
    transition: all 0.3s ease-in;
    opacity: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .header.is-open::before {
    opacity: 1;
    z-index: 99;
    display: block;
  }
}
.header.is-open .drawer-line {
  top: 21px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header.is-open .drawer-line::before,
.header.is-open .drawer-line::after {
  top: 0px;
}
.header.is-open .drawer-line::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.header.is-open .drawer-line::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.js-dropdown {
  position: relative;
}
@media screen and (max-width: 768px) {
  .js-dropdown {
    background: #daeaf7;
    color: #0068b7;
  }
  .js-dropdown a.index {
    background: #daeaf7;
    color: #0068b7;
  }
}
.js-dropdown_menu {
  display: none;
  width: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0068b7;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .js-dropdown_menu {
    display: block;
    position: static;
    width: 100%;
  }
}
.block {
  /**
  * columns
  **/
  /**
  * column
  **/
  /**
  * gallery
  **/
  /**
  * table
  **/
  /**
  * rows
  **/
  /**
  * list
  **/
  /**
  * point
  **/
  /**
  * card
  **/
  /**
  * tags
  **/
  /**
  * type
  **/
}
.block-columns {
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .block-columns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.block-columns.reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.block-column:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .block-column:not(:first-child) {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .block-column:not(:first-child) {
    margin-top: 15px;
  }
}
.block-column--tt {
  text-align: center;
  padding: 10px;
}
.block-column--tx {
  margin-top: 30px;
}
.block-column--f50 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .block-column--f50 {
    font-size: 6.9333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .block-column--f50 {
    font-size: 2.8rem;
  }
}
.block-column--f40 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .block-column--f40 {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 480px) {
  .block-column--f40 {
    font-size: 2.6rem;
  }
}
.block-column--f40 b {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .block-column--f40 b {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .block-column--f40 b {
    font-size: 2rem;
  }
}
.block-column--f26 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .block-column--f26 {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .block-column--f26 {
    font-size: 1.6rem;
  }
}
.block-column--links {
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .block-column--links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.block-column--link {
  -ms-flex: 0 1 245px;
  flex: 0 1 245px;
}
@media screen and (max-width: 768px) {
  .block-column--link {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
  }
}
.block-column--link:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .block-column--link:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}
.block-column--sub {
  font-weight: bold;
  padding: 15px 0;
}
.block-column-half {
  -ms-flex: 0 1 48%;
  flex: 0 1 48%;
}
@media screen and (max-width: 768px) {
  .block-column-half {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.block-column-half:nth-child(2n) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .block-column-half:nth-child(2n) {
    margin-left: 0;
  }
}
.block-column--head {
  -ms-flex: 1 0 180px;
  flex: 1 0 180px;
}
@media screen and (max-width: 768px) {
  .block-column--head {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.block-column--body {
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
@media screen and (max-width: 768px) {
  .block-column--body {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.block-column--image {
  text-align: center;
}
.block-gallery {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block-gallery.columns-2 {
  margin-top: -40px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-2 {
    margin-top: -20px;
  }
}
.block-gallery.columns-2 .block-gallery-column {
  -ms-flex: 0 1 calc(50% - 20px);
  flex: 0 1 calc(50% - 20px);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-2 .block-gallery-column {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: 20px;
  }
}
.block-gallery.columns-3 {
  margin-top: -40px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-3 {
    margin-top: -20px;
  }
}
.block-gallery.columns-3 .block-gallery-column {
  -ms-flex: 0 1 calc(33.33% - 20px);
  flex: 0 1 calc(33.33% - 20px);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-3 .block-gallery-column {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: 20px;
  }
}
.block-gallery.columns-4 {
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-4 {
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-4 {
    margin-top: -20px;
  }
}
.block-gallery.columns-4::before,
.block-gallery.columns-4::after {
  content: '';
  display: block;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex: 0 1 calc(25% - 20px);
  flex: 0 1 calc(25% - 20px);
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-4::before,
  .block-gallery.columns-4::after {
    display: none;
  }
}
.block-gallery.columns-4 .block-gallery-column {
  -ms-flex: 0 1 calc(25% - 20px);
  flex: 0 1 calc(25% - 20px);
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-4 .block-gallery-column {
    -ms-flex: 0 1 calc(50% - 20px);
    flex: 0 1 calc(50% - 20px);
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .block-gallery.columns-4 .block-gallery-column {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: 20px;
  }
}
.block-gallery.columns-5 {
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-5 {
    margin-top: -40px;
  }
}
@media screen and (max-width: 480px) {
  .block-gallery.columns-5 {
    margin-top: -20px;
  }
}
.block-gallery.columns-5::before,
.block-gallery.columns-5::after {
  content: '';
  display: block;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex: 0 1 calc(20% - 20px);
  flex: 0 1 calc(20% - 20px);
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-5::before,
  .block-gallery.columns-5::after {
    display: none;
  }
}
.block-gallery.columns-5 .block-gallery-column {
  margin-top: 60px;
  -ms-flex: 0 1 calc(20% - 20px);
  flex: 0 1 calc(20% - 20px);
}
@media screen and (max-width: 768px) {
  .block-gallery.columns-5 .block-gallery-column {
    margin-top: 40px;
    -ms-flex: 0 1 calc(33.33% - 10px);
    flex: 0 1 calc(33.33% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .block-gallery.columns-5 .block-gallery-column {
    margin-top: 20px;
    -ms-flex: 0 1 calc(50% - 5px);
    flex: 0 1 calc(50% - 5px);
  }
}
.block-table {
  width: 100%;
  /**
  * dl
  **/
}
.block-table table {
  width: 100%;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 40px 0 80px;
  border: 2px solid #0068b7;
}
@media screen and (max-width: 768px) {
  .block-table table {
    margin: 20px 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .block-table table {
    font-size: 1.4rem;
  }
}
.block-table table tr:not(:last-of-type) {
  border-bottom: 1px solid #acacac;
}
.block-table table th {
  width: 45%;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
  padding: 15px 20px;
  border-right: 1px solid #acacac;
}
@media screen and (max-width: 480px) {
  .block-table table th {
    width: 35%;
    padding: 5px 10px;
  }
}
.block-table table td {
  padding: 15px 20px;
}
@media screen and (max-width: 480px) {
  .block-table table td {
    padding: 5px 10px;
  }
}
.block-table table td:first-of-type {
  color: #f8f8f8;
  border-right: 1px solid #acacac;
}
.block-table table td:last-of-type {
  text-align: right;
}
.block-table table td:not(:last-of-type) {
  width: 30%;
  border-right: 1px solid #acacac;
}
@media screen and (max-width: 480px) {
  .block-table table td:not(:last-of-type) {
    width: 25%;
    font-size: 1.3rem;
  }
}
.block-table dl {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .block-table dl {
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.block-table dl:not(:first-child) {
  border-top: 1px dashed #acacac;
}
.block-table dl dt {
  -ms-flex: 1 0 110px;
  flex: 1 0 110px;
  font-weight: bold;
  color: #0068b7;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .block-table dl dt {
    -ms-flex: 1 0 90px;
    flex: 1 0 90px;
  }
}
.block-table dl dd {
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding: 20px 0;
}
.block-table.mixup dl:nth-child(odd) {
  background-color: #f2f2f1;
}
.block-table.mixup dl:not(:first-child) {
  border-top: none;
}
.block-table.mixup dl dt {
  color: #0068b7;
  background-color: transparent;
  border-right: none;
}
@media screen and (max-width: 480px) {
  .block-table.mixup dl dt {
    padding-bottom: 0;
  }
}
.block-table.mixup dl dd {
  background-color: transparent;
}
.block-rows {
  width: 100%;
}
.block-row {
  padding: 20px 0;
}
.block-row:nth-child(odd) {
  background-color: #f2f2f1;
}
.block-row .inner {
  width: 90%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.block-row span {
  display: inline-block;
}
.block-list {
  width: 100%;
}
.block-list ul li {
  padding: 20px 0;
}
.block-list ul li:not(:first-child) {
  border-top: 1px dashed #acacac;
}
.block-point {
  margin-top: 80px;
  border: 2px solid #0068b7;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .block-point {
    margin-top: 40px;
    padding: 20px;
  }
}
.block-point-count {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 10px;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 768px) {
  .block-point-count {
    font-size: 1.6rem;
  }
}
.block-point-count::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #e25f0d transparent transparent transparent;
  z-index: -1;
}
.block-point-count span {
  display: inline-block;
  position: relative;
  bottom: 5px;
  font-size: 4rem;
  font-weight: bold;
  color: #e25f0d;
  margin-left: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .block-point-count span {
    bottom: 2px;
    font-size: 3rem;
    margin-left: 10px;
  }
}
.block-point .h3-title {
  letter-spacing: 0;
}
.block-point-columns {
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .block-point-columns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
}
.block-point-column {
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}
.block-point-column:nth-child(2n + 0) {
  text-align: right;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .block-point-column:nth-child(2n + 0) {
    margin-left: 0;
    margin-top: 20px;
  }
}
.block-cards {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block-card {
  -ms-flex: 0 1 46.5%;
  flex: 0 1 46.5%;
  background-color: white;
}
@media screen and (max-width: 480px) {
  .block-card {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.block-card:not(:nth-child(2n-0)) {
  margin-right: 3.5%;
}
@media screen and (max-width: 480px) {
  .block-card:not(:nth-child(2n-0)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .block-card:not(:first-child) {
    margin-top: 30px;
  }
}
.block-card:nth-of-type(n + 3) {
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  .block-card:nth-of-type(n + 3) {
    margin-top: 30px;
  }
}
.block-card-title {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: white;
  padding: 20px 10px;
  background-color: #0068b7;
}
@media screen and (max-width: 1024px) {
  .block-card-title {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .block-card-title {
    font-size: 1.6rem;
    padding: 10px 5px;
  }
}
.block-card-caption {
  line-height: 1.8;
  padding: 20px 40px;
}
@media screen and (max-width: 480px) {
  .block-card-caption {
    padding: 10px 20px;
    line-height: 1.4;
  }
}
.block-tags ul {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}
.block-tags li {
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  text-align: center;
  padding: 15px 10px;
  background-color: #e25f0d;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .block-tags li {
    -ms-flex: 0 1 48%;
    flex: 0 1 48%;
  }
}
@media screen and (max-width: 480px) {
  .block-tags li {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.block-tags li:nth-of-type(n + 4) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .block-tags li:nth-of-type(n + 4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .block-tags li:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
.block-tags li:not(:nth-of-type(3n + 1)) {
  margin-left: 3.333%;
}
@media screen and (max-width: 768px) {
  .block-tags li:not(:nth-of-type(3n + 1)) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .block-tags li:not(:nth-of-type(2n + 1)) {
    margin-left: 3.333%;
  }
}
@media screen and (max-width: 480px) {
  .block-tags li:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}
.block-type {
  display: flex;
}
.block-type-head {
  -ms-flex: 0 1 180px;
  flex: 0 1 180px;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 768px) {
  .block-type-head {
    -ms-flex: 1 0 130px;
    flex: 1 0 130px;
  }
}
.block-type-body {
  -ms-flex: 0 1 320px;
  flex: 0 1 320px;
}
@media screen and (max-width: 768px) {
  .block-type-body {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
/**
  * flexItems
**/
.flexItems {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}
.flexItem {
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flexItem {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
}
.flexItem:not(:nth-child(3n + 1)) {
  margin-left: 5%;
}
@media screen and (max-width: 768px) {
  .flexItem:not(:nth-child(3n + 1)) {
    margin-left: 0;
  }
}
.flexItem-img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .flexItem-img {
    -ms-flex: 0 1 140px;
    flex: 0 1 140px;
    min-height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .flexItem-img img {
    height: 100%;
  }
}
.flexItem-img:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .flexItem-img:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}
.flexItem-img:not(:first-child)::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: black transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .flexItem-img:not(:first-child)::before {
    top: 50%;
    left: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent black;
  }
}
.flexItem-tt {
  letter-spacing: 0;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .flexItem-tt {
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    padding: 0 0 0 15px;
    text-align: left;
  }
}
.flexItem-tt-base {
  font-weight: bold;
}
.flexItem-tt-coat {
  color: #4e4e4e;
  font-weight: bold;
}
.diagnose-intro {
  background-color: #ffeb68;
}
.diagnose-intro-inner {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .diagnose-intro-inner {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0;
  }
}
.diagnose-intro-img {
  -ms-flex: 0 1 120px;
  flex: 0 1 120px;
}
@media screen and (max-width: 768px) {
  .diagnose-intro-img {
    -ms-flex: 0 1 90px;
    flex: 0 1 90px;
  }
}
.diagnose-intro-img:not(:first-child) {
  margin-left: 40px;
}
.diagnose-intro-tx {
  -ms-flex: 0 1 68%;
  flex: 0 1 68%;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  .diagnose-intro-tx {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: 15px;
    margin-left: 0;
    letter-spacing: 1px;
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .diagnose-intro-tx {
    font-size: 1.8rem;
  }
}
.diagnose-contact-inner {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 50px 0 0;
}
.diagnose-contact-inner .btn-dArrow--bgOrange {
  margin-top: 40px;
}
.schedule {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .schedule {
    padding: 40px 0;
  }
}
.schedule::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 25px 0 25px;
  border-color: white transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.schedule-wrap {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.schedule-inner {
  position: relative;
  margin-top: 20px;
  padding: 30px 40px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .schedule-inner {
    padding: 10px 15px;
  }
}
.schedule-inner .icon {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 36px;
  left: 40px;
  background-color: #0068b7;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .schedule-inner .icon {
    top: 16px;
    left: 15px;
  }
}
.schedule-block {
  padding-left: 40px;
}
.schedule-block:not(:last-child) .schedule-block-tx {
  margin-bottom: 30px;
  padding: 10px 0 40px;
  border-bottom: 1px solid #d5d5d5;
}
.schedule-block:not(:last-child) .schedule-block-tx::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 15px;
  left: -31px;
  background-color: #959595;
}
.schedule-block-tt {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  color: #0068b7;
}
.schedule-block-tt::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: -40px;
  background-color: white;
  border: 2px solid #0068b7;
  border-radius: 50%;
}
.schedule-block-tx {
  position: relative;
  font-size: 1.5rem;
}
.plan-layout {
  padding: 20px 0 40px;
}
@media screen and (max-width: 768px) {
  .plan-layout {
    padding: 0 0 20px;
  }
}
.plan-layout:not(:last-child) {
  margin-bottom: 40px;
  border-bottom: 2px dotted #dcdcdc;
}
@media screen and (max-width: 768px) {
  .plan-layout:not(:last-child) {
    margin-bottom: 20px;
  }
}
.plan-layout-inner {
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .plan-layout-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
.plan-layout-detail {
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}
@media screen and (max-width: 768px) {
  .plan-layout-detail {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.plan-layout-plan {
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0;
  color: #e25f0d;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .plan-layout-plan {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    font-size: 5.8666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-layout-plan {
    font-size: 2.4rem;
  }
}
.plan-layout-plan .sub {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .plan-layout-plan .sub {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-layout-plan .sub {
    font-size: 1.8rem;
  }
}
.plan-layout-plan .attr {
  display: block;
  font-size: 2.6rem;
  color: black;
}
@media screen and (max-width: 768px) {
  .plan-layout-plan .attr {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-layout-plan .attr {
    font-size: 1.8rem;
  }
}
.ba {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .ba .h3-title {
    text-align: center;
  }
}
.ba .h3-title .sub {
  display: innineboog;
  position: relative;
  bottom: 8px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  color: white;
  margin-left: 3%;
  padding: 5px 40px 8px;
  background-color: #0068b7;
}
@media screen and (max-width: 768px) {
  .ba .h3-title .sub {
    font-size: 3.2vw;
    display: block;
    margin-top: 5px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 480px) {
  .ba .h3-title .sub {
    font-size: 1.4rem;
  }
}
.ba hr.dotted {
  margin: 20px 0;
  border-width: 2px 0 0 0;
}
@media screen and (max-width: 480px) {
  .ba hr.dotted {
    font-size: 1.4rem;
  }
}
.ba .btn-wrap {
  margin: 100px 0 30px;
}
@media screen and (max-width: 768px) {
  .ba .btn-wrap {
    margin: 30px 0 10px;
  }
}
.ba-wrap {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.ba-inner {
  margin: 20px 0 40px;
  padding: 40px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .ba-inner {
    margin: 10px 0 15px;
    padding: 15px;
  }
}
.ba-inner:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .ba-inner:not(:last-child) {
    margin-bottom: 30px;
  }
}
.ba-layout {
  display: flex;
}
@media screen and (max-width: 768px) {
  .ba-layout {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.ba-layout-tt {
  font-weight: bold;
  color: #0068b7;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .ba-layout-tt {
    padding: 5px 0;
  }
}
.ba-layout.ptn01 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn01 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.ba-layout.ptn01 .ba-layout-before {
  -ms-flex: 0 1 320px;
  flex: 0 1 320px;
  position: relative;
}
.ba-layout.ptn01 .ba-layout-before::before {
  content: '';
  display: block;
  width: 36%;
  height: 4%;
  position: absolute;
  top: 3%;
  left: 6%;
  background-image: url(../img/icon/icon_before.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn01 .ba-layout-before::before {
    width: 80px;
    height: 18px;
    top: 10px;
    left: 10px;
  }
}
.ba-layout.ptn01 .ba-layout-after {
  -ms-flex: 0 1 730px;
  flex: 0 1 730px;
  position: relative;
  text-align: right;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn01 .ba-layout-after {
    margin-top: 15px;
    margin-left: 0;
  }
}
.ba-layout.ptn01 .ba-layout-after::before {
  content: '';
  display: block;
  width: 15%;
  height: 4.5%;
  position: absolute;
  top: 6%;
  left: 7%;
  background-image: url(../img/icon/icon_after.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn01 .ba-layout-after::before {
    width: 80px;
    height: 18px;
    top: 10px;
    left: 10px;
  }
}
.ba-layout.ptn02 .ba-layout-before {
  -ms-flex: 0 1 510px;
  flex: 0 1 510px;
  margin-left: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn02 .ba-layout-before {
    margin-top: 15px;
    margin-left: 0;
  }
}
.ba-layout.ptn02 .ba-layout-before::before {
  content: '';
  display: block;
  width: 115px;
  height: 23px;
  position: absolute;
  top: 5%;
  left: 4%;
  background-image: url(../img/icon/icon_before.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn02 .ba-layout-before::before {
    width: 80px;
    height: 18px;
    top: 10px;
    left: 10px;
  }
}
.ba-layout.ptn02 .ba-layout-after {
  -ms-flex: 0 1 510px;
  flex: 0 1 510px;
  position: relative;
}
.ba-layout.ptn02 .ba-layout-after::before {
  content: '';
  display: block;
  width: 115px;
  height: 23px;
  position: absolute;
  top: 5%;
  left: 5%;
  background-image: url(../img/icon/icon_after.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ba-layout.ptn02 .ba-layout-after::before {
    width: 80px;
    height: 18px;
    top: 10px;
    left: 10px;
  }
}
.h2-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #0068b7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .h2-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .h2-title {
    font-size: 1.8rem;
  }
}
.h3-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .h3-title {
    font-size: 5.8666666667vw;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 480px) {
  .h3-title {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
}
.h3-title-tri {
  background: #eaf6ff;
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  padding: 20px 0;
  line-height: 1;
  letter-spacing: 2px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .h3-title-tri {
    padding: 20px 30px;
    font-size: 5.8666666667vw;
    letter-spacing: 2px;
  }
}
.h3-title-tri::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 3px;
  left: 0;
  border-style: solid;
  border-width: 38px 38px 0 0;
  border-color: #0068b7 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .h3-title-tri::before {
    top: 6%;
    border-width: 5vw 5vw 0 0;
  }
}
.h3-title-red {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 5px;
  color: red;
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .h3-title-red {
    font-size: 5.8666666667vw;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 480px) {
  .h3-title-red {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
}
.h4-title {
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .h4-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .h4-title {
    font-size: 1.8rem;
  }
}
.h4-title-line {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  color: #0068b7;
  padding: 15px 0;
  border-top: 1px solid #acacac;
  border-bottom: 1px solid #acacac;
}
@media screen and (max-width: 768px) {
  .h4-title-line {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .h4-title-line {
    font-size: 1.8rem;
  }
}
.h4-title-bgb {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0;
  color: white;
  padding: 10px 40px;
  background-color: #0068b7;
}
@media screen and (max-width: 768px) {
  .h4-title-bgb {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .h4-title-bgb {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .h4-title-bgb {
    padding: 10px 20px;
  }
}
.h5-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0068b7;
  margin-top: 60px;
  padding: 10px 0;
  border-top: 1px dotted #c8c8c8;
  border-bottom: 1px dotted #c8c8c8;
}
@media screen and (max-width: 768px) {
  .h5-title {
    font-size: 3.7333333333vw;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .h5-title {
    font-size: 1.6rem;
  }
}
.h5-title-sub {
  font-size: 2rem;
  font-weight: bold;
  color: #0068b7;
  padding: 10px 0;
  margin-top: 0;
  padding-left: 15px;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .h5-title-sub {
    font-size: 3.7333333333vw;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .h5-title-sub {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .h5-title-sub {
    margin-top: 5px;
    padding: 0;
  }
}
.h6-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 768px) {
  .h6-title {
    font-size: 3.7333333333vw;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .h6-title {
    font-size: 1.6rem;
  }
}
.small {
  font-size: 80%;
  font-weight: 400;
}
.strong {
  font-size: 120%;
  font-weight: bold;
}
.bold {
  font-weight: bold;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.marker,
.marker-ylw {
  display: inline;
  line-height: 1.8;
  padding: 0 0 4px 0;
  background: linear-gradient(transparent 80%, #ffdcb8 0%);
}
@media screen and (max-width: 768px) {
  .marker,
  .marker-ylw {
    line-height: 1.6;
    padding: 0 0 3px 0;
  }
}
.marker-ylw {
  background: linear-gradient(transparent 80%, #fcff00 0%);
}
/**
 * iframe
***************************/
.iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
}
@media screen and (max-width: 768px) {
  .iframe {
    padding-top: 100%;
  }
}
.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 * toTop
***************************/
.toTop {
  display: none;
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .toTop {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
}
.toTop a {
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #ffbf35;
  padding-top: 24px;
  background-color: #0068b7;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .toTop a {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .toTop a span {
    display: none;
  }
}
.toTop a::before {
  content: '«';
  display: block;
  width: 20px;
  height: 36px;
  position: absolute;
  top: 4px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .toTop a::before {
    top: 2px;
  }
}
.btn-contact,
.btn-dArrow--bgOrange,
.btn-dArrow--bgBlue,
.btn-dArrow--120,
.btn-dArrow--245---o,
.btn-dArrow--245---w,
.btn-dArrow--245,
.btn-dArrow--255,
.btn-dArrow,
.btn-more,
.btn {
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  text-align: right;
}
.btn-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-more {
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
  color: #0068b7;
  padding: 15px 20px;
  border: 2px solid #acacac;
  border-radius: 30px;
}
.btn-dArrow--bgOrange,
.btn-dArrow--bgBlue,
.btn-dArrow--120,
.btn-dArrow--245---o,
.btn-dArrow--245---w,
.btn-dArrow--245,
.btn-dArrow--255,
.btn-dArrow {
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
  color: #0068b7;
  padding: 15px 20px;
  border: 2px solid #acacac;
  border-radius: 30px;
}
.btn-dArrow--bgOrange::after,
.btn-dArrow--bgBlue::after,
.btn-dArrow--120::after,
.btn-dArrow--245---o::after,
.btn-dArrow--245---w::after,
.btn-dArrow--245::after,
.btn-dArrow--255::after,
.btn-dArrow::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 15px;
  background-image: url(../img/icon/icon_dArrow-b.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.btn-dArrow--255 {
  width: 100%;
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
}
.btn-dArrow--245---o,
.btn-dArrow--245---w,
.btn-dArrow--245 {
  width: 100%;
  max-width: 245px;
  margin-left: auto;
  margin-right: auto;
}
.btn-dArrow--245---w {
  color: white;
  border: 2px solid white;
}
.btn-dArrow--245---w::after {
  background-image: url(../img/icon/icon_dArrow-w.png);
}
.btn-dArrow--245---o {
  color: #e25f0d;
  border: 2px solid #acacac;
}
.btn-dArrow--245---o::after {
  background-image: url(../img/icon/icon_dArrow-o.png);
}
.btn-dArrow--120 {
  width: 120px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.btn-dArrow--bgBlue {
  width: 380px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  color: white;
  padding: 30px;
  background-color: #0068b7;
  border: 2px solid #0068b7;
  border-radius: 30px;
}
.btn-dArrow--bgBlue::after {
  width: 13px;
  height: 11px;
  position: relative;
  bottom: 1px;
  margin-left: 15px;
  background-image: url(../img/icon/icon_dArrow-w.png);
}
@media screen and (max-width: 768px) {
  .btn-dArrow--bgBlue {
    font-size: 1.8rem;
    padding: 20px;
  }
}
.btn-dArrow--bgOrange {
  width: 380px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  color: white;
  padding: 30px;
  background-color: #e25f0d;
  border: 2px solid #e25f0d;
  border-radius: 25px;
}
.btn-dArrow--bgOrange::after {
  width: 13px;
  height: 11px;
  position: relative;
  bottom: 3px;
  margin-left: 15px;
  background-image: url(../img/icon/icon_dArrow-w.png);
}
@media screen and (max-width: 768px) {
  .btn-dArrow--bgOrange {
    font-size: 1.8rem;
    padding: 20px;
  }
}
.btn-contact {
  display: flex;
  width: 100%;
  max-width: 511px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  letter-spacing: 3px;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 15px 80px 15px 50px;
  background-image: url(../img/bg/bg_ylw_bias_c.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 2px solid #ffbf35;
  border-radius: 10px;
  text-shadow: 1px 1px 0px #ffffff,
    -1px 1px 0px #ffffff,
    1px -1px 0px #ffffff,
    -1px -1px 0px #ffffff,
    1px 0px 0px #ffffff,
    0px 1px 0px #ffffff,
    -1px 0px 0px #ffffff,
    0px -1px 0px #ffffff;
}
@media screen and (max-width: 768px) {
  .btn-contact {
    width: 100%;
    font-size: 1.6rem;
    padding: 15px 30px 15px 15px;
  }
}
.btn-contact::after {
  content: '';
  display: block;
  width: 17px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 35px;
  background-image: url(../img/icon/icon_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .btn-contact::after {
    width: 12px;
    height: 18px;
    right: 6px;
  }
}
.btn-contact-img {
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .btn-contact-img {
    width: 25px;
    margin-right: 10px;
  }
}
.body {
  padding-bottom: 155px;
}
@media screen and (max-width: 1024px) {
  .body {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .body {
    padding-bottom: 80px;
  }
}
.js-scroll_nav {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: #004d88;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .js-scroll_nav {
    padding: 5px;
    background-color: transparent;
  }
}
.scroll_nav {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: white;
}
.scroll_nav-cont01 {
  -ms-flex: 0 1 170px;
  flex: 0 1 170px;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.3333333333vw;
  font-weight: bold;
  line-height: 1.5;
  color: white;
  background-color: #2882c7;
}
@media screen and (min-width: 1280px) {
  .scroll_nav-cont01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .scroll_nav-cont01 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .scroll_nav-cont01 {
    display: none;
  }
}
.scroll_nav-cont02 {
  -ms-flex: 0 1 905px;
  flex: 0 1 905px;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  padding: 15px;
}
@media screen and (max-width: 1024px) {
  .scroll_nav-cont02 {
    font-size: 1.4rem;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .scroll_nav-cont02 {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
@media screen and (max-width: 1024px) {
  .scroll_nav-tel {
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
  }
}
.scroll_nav-fd {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.1333333333vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  color: #12a73b;
  margin-bottom: 5px;
}
@media screen and (min-width: 1280px) {
  .scroll_nav-fd {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .scroll_nav-fd {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
    border: 2px solid #12a73b;
    background-image: url(../img/bg/bg_grn_bias.png);
    background-position: center;
    background-size: auto;
    background-repeat: repeat;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .scroll_nav-fd {
    height: 40px;
  }
}
.scroll_nav-fd-img {
  position: relative;
  bottom: 2px;
}
@media screen and (max-width: 768px) {
  .scroll_nav-fd-img {
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .scroll_nav-fd-dial {
    display: none;
  }
}
.scroll_nav-fd-tx {
  font-size: 0.9333333333vw;
  white-space: nowrap;
}
@media screen and (min-width: 1280px) {
  .scroll_nav-fd-tx {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .scroll_nav-fd-tx {
    display: none;
  }
}
.scroll_nav-fd-tx b {
  font-weight: bold;
}
.scroll_nav-downloads {
  -ms-flex: 0 1 170px;
  flex: 0 1 170px;
  min-width: 150px;
  position: relative;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  margin-left: 10px;
  padding: 20px 50px 20px 10px;
  background-image: url(../img/bg/bg_blu_bias.png);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
  border: 2px solid #6baec6;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .scroll_nav-downloads {
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
    min-width: unset;
    text-align: center;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .scroll_nav-downloads {
    height: 40px;
  }
}
.scroll_nav-downloads::after {
  content: '';
  display: block;
  width: 17px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 8px;
  background-image: url(../img/icon/icon_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .scroll_nav-downloads::after {
    display: none;
  }
}
.scroll_nav-contact {
  -ms-flex: 0 1 270px;
  flex: 0 1 270px;
  min-width: 250px;
  position: relative;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
  padding: 20px 50px 20px 20px;
  background-image: url(../img/bg/bg_ylw_bias.png);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
  border: 2px solid #ffbf35;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .scroll_nav-contact {
    display: block;
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
    min-width: unset;
    text-align: center;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .scroll_nav-contact {
    height: 40px;
  }
}
.scroll_nav-contact::after {
  content: '';
  display: block;
  width: 17px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 8px;
  background-image: url(../img/icon/icon_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .scroll_nav-contact::after {
    display: none;
  }
}
.scroll_nav-cont03 {
  -ms-flex: 0 1 145px;
  flex: 0 1 145px;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eeeeee;
}
@media screen and (max-width: 1024px) {
  .scroll_nav-cont03 {
    -ms-flex: 1 0 90px;
    flex: 1 0 90px;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .scroll_nav-cont03 {
    -ms-flex: 1 0 50px;
    flex: 1 0 50px;
    padding: 15px;
  }
}
.scroll_nav-tt {
  font-size: 1.3333333333vw;
  font-weight: bold;
  line-height: 1.5;
  text-align: justify;
  white-space: nowrap;
  margin-left: 20px;
  text-shadow: 1px 1px 0 #fff,
    -1px 1px 0 #fff,
    1px -1px 0 #fff,
    -1px -1px 0 #fff;
}
@media screen and (min-width: 1280px) {
  .scroll_nav-tt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .scroll_nav-tt {
    display: none;
  }
}
.rss_wrap {
  margin-top: 40px;
}
.rss_list {
  font-weight: bold;
  letter-spacing: 0;
  color: #0068b7;
}
.rss_list > a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: black;
  margin-left: 30px;
}
.article {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 30%;
  flex: 0 1 30%;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 768px) {
  .article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
    flex: 0 1 48%;
  }
}
@media screen and (max-width: 480px) {
  .article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.article-comment {
  position: absolute;
  top: 55%;
  left: 0;
  margin: 0 10px;
  padding: 10px 15px;
  background: rgba(255,255,255,.8);
  transform: rotate(-3deg);
}
.article-comment::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #0068b7 0px, #0068b7 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
  background-size: 8px 8px;
}
@media screen and (max-width: 768px) {
  .article-comment {
    position: static;
    padding: 8px;
    margin: -20px 10px -10px;
  }
  .article-comment::after {
    height: 4px;
    background-size: 4px 4px;
  }
}
.article-title {
  padding: 20px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
  color: #0068b7;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .article-title {
    font-size: 1.6rem;
  }
}
.article-cats {
  margin-top: 15px;
  margin-left: -10px;
}
@media screen and (max-width: 768px) {
  .article-cats {
    margin-top: 10px;
  }
}
.article-cat {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-left: 10px;
  padding: 3px 10px;
  background-color: #ffbf35;
}
@media screen and (max-width: 768px) {
  .article-cat {
    font-size: 1.2rem;
  }
}
.article-thumbnail {
  text-align: center;
  padding-top: 67%;
  margin: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article_header-title {
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .article_header-title {
    font-size: 4.8vw;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 480px) {
  .article_header-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.article_header-cats {
  margin-top: 30px;
  margin-left: -10px;
}
@media screen and (max-width: 768px) {
  .article_header-cats {
    margin-top: 10px;
  }
}
.article_header-cat {
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 10px;
  padding: 3px 15px;
  background-color: #ffbf35;
}
@media screen and (max-width: 768px) {
  .article_header-cat {
    font-size: 1.2rem;
  }
}
.article_header-eyecatch {
  margin-top: 60px;
}
.article_content-comment {
  margin-top: 30px;
  padding: 30px 40px;
  background-color: #ffbf35;
}
.article_content-info {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 50px;
  padding: 50px;
  border: 2px solid #0068b7;
}
@media screen and (max-width: 768px) {
  .article_content-info {
    padding: 5px 15px 15px;
  }
}
.article_content-ba {
  margin-top: 60px;
}
.article_content-title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .article_content-title {
    font-size: 5.3333333333vw;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 480px) {
  .article_content-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
}
.article_info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 48%;
  flex: 0 1 48%;
  display: flex;
  letter-spacing: 0;
  padding: 15px 0;
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .article_info {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 480px) {
  .article_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
  }
}
.article_info dt {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 180px;
  flex: 1 0 180px;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 1024px) {
  .article_info dt {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 140px;
    flex: 1 0 140px;
  }
}
@media screen and (max-width: 480px) {
  .article_info dt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.article_info dd {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  flex: 0 1 100%;
}
@media screen and (max-width: 480px) {
  .article_info dd {
    margin-top: 5px;
  }
}
.article_info dd .maplink {
  text-align: right;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #0068b7;
}
.article_info dd .maplink a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0068b7;
}
.article_ba {
  letter-spacing: 0;
}
.article_ba.before .article__ba--ttl {
  color: #acacac;
  border-top: 1px solid #acacac;
  border-bottom: 1px solid #acacac;
}
.article_ba.after {
  margin-top: 60px;
}
.article_ba.after .article__ba--ttl {
  color: #0068b7;
  border-top: 1px solid #0068b7;
  border-bottom: 1px solid #0068b7;
}
.article_ba-ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 30px;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .article_ba-ttl {
    font-size: 1.8rem;
    padding: 10px 0;
  }
}
.article_ba-txt {
  font-size: 1.6rem;
  margin-top: 30px;
}
.article_ba-imgs {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 0 -2%;
}
.article_ba-imgs::after {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 29%;
  flex: 0 1 29%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  order: 1;
}
@media screen and (max-width: 768px) {
  .article_ba-imgs::after {
    display: none;
  }
}
.article_ba-img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 29%;
  flex: 0 1 29%;
  margin: 30px 0 0 2%;
}
/* mv */
.mv {
  margin: 40px auto 0;
  max-width: 1200px;
}


/* bnr */
.bnr {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bnr {
    margin: 30px auto 0;
    max-width: 60%;
  }
  .bnr.bnr-line {
    max-width: 90%;
  }
}
/* ranking */
.ranking {
  padding: 100px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ranking {
    padding: 40px 0 0;
  }
}
.ranking_tx-f26 {
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ranking_tx-f26 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .ranking_tx-f26 {
    font-size: 1.6rem;
  }
}
.ranking-block {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .ranking-block {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.ranking-notes {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  line-height: 1.8;
  padding-top: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .ranking-notes {
    font-size: 1.2rem;
    text-align: left;
  }
}
/* reason */
.styleH2 {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.styleH2 span {
  color: #1169ac;
}
.reason {
  margin: 40px 0 100px;
  padding: 100px 0;
  background: #eaf6ff;
}
.reason .container {
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.reason-wrap {
  margin-top: 60px;
  gap: 40px;
}
.reason-box {
  width: calc((100% - 80px) / 3);
}
.reason h3 {
  padding: 20px 0;
  color: #1169ac;
  font-size: 2.2rem;
  font-weight: 700;
}
.reason .cmt {
  align-items: flex-start;
  gap: 10px;
  padding: 10px 15px;
  background: #fff;
  border-radius: 15px;
}
.reason .cmt p {
  width: calc(100% - 104px);
  font-size: 1.5rem;
  line-height: 2;
}
.reason .cmt img {
  width: 94px;
}
@media screen and (max-width: 768px) {
  .styleH2 {
    font-size: 2.4rem;
  }
  .reason {
    margin: 20px 0 50px;
    padding: 50px 0;
  }
  .reason-wrap {
    margin-top: 30px;
    gap: 40px;
  }
  .reason-box {
    width: 100%;
  }
  .reason h3 {
    padding: 15px 0 10px;
    font-size: 1.8rem;
  }
  .reason .cmt p {
    width: calc(100% - 90px);
    font-size: 1.4rem;
  }
  .reason .cmt img {
    width: 80px;
  }
}
/* fee */
.fee {
  padding: 100px 0;
}
.fee .container {
  justify-content: space-between;
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.fee .txtarea {
  width: 48%;
}
.fee h2 {
  padding-bottom: 50px;
  text-align: left;
}
.fee p {
  line-height: 2;
}
.fee .btn-wrap {
  text-align: left;
}
.fee .btn-wrap .btn-dArrow {
  max-width: 250px;
}
.fee figure {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .fee {
    padding: 50px 0;
  }
  .fee .txtarea {
    width: 100%;
  }
  .fee h2 {
    padding-bottom: 30px;
    text-align: center;
  }
  .fee .btn-wrap {
    text-align: center;
  }
  .fee figure {
    padding-bottom: 10px;
    width: 100%;
    order: 1;
  }
}
/* subsidy */
.subsidy {
  padding: 100px 0;
  background: #eaf6ff;
}
.subsidy .container {
  justify-content: space-between;
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.subsidy .txtarea {
  width: 47%;
}
.subsidy h2 {
  padding-bottom: 50px;
  text-align: left;
}
.subsidy p {
  line-height: 2;
}
.subsidy .btn-wrap {
  text-align: left;
}
.subsidy .btn-wrap .btn-dArrow {
  max-width: 280px;
  background: #fff;
}
.subsidy figure {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .subsidy {
    padding: 50px 0;
  }
  .subsidy .txtarea {
    width: 100%;
  }
  .subsidy h2 {
    padding-bottom: 30px;
    text-align: center;
  }
  .subsidy .btn-wrap {
    text-align: center;
  }
  .subsidy figure {
    padding-bottom: 10px;
    width: 100%;
    order: 1;
  }
}
/* point */
.point {
  padding: 100px 0 200px;
}
.point .container {
  justify-content: space-between;
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.point .txtarea {
  width: 46%;
}
.point h2 {
  padding-bottom: 50px;
  text-align: left;
}
.point p {
  line-height: 2;
}
.point .btn-wrap {
  text-align: left;
}
.point .btn-wrap .btn-dArrow {
  max-width: 250px;
}
.point figure {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .point {
    padding: 50px 0 100px;
  }
  .point .txtarea {
    width: 100%;
  }
  .point h2 {
    padding-bottom: 30px;
    text-align: center;
  }
  .point .btn-wrap {
    text-align: center;
  }
  .point figure {
    padding-bottom: 10px;
    width: 100%;
    order: 1;
  }
}
/* works */
.works {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.works .entries {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .works .entries {
    margin: 0 0 50px;
  }
}
.works .entries .article {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 31%;
  flex: 0 1 31%;
  background: #eaf6ff;
}
@media screen and (max-width: 768px) {
  .works .entries .article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 49%;
    flex: 0 1 49%;
  }
}
.works .entries .article-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0068b7;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .works .entries .article-title {
    font-size: 1.5rem;
    padding-top: 5px;
  }
}
.works .entries .article-tags {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.works .entries .article-tag {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 8px;
  margin-right: 8px;
  padding: 8px 10px;
  background-color: #ffbf35;
}
@media screen and (max-width: 768px) {
  .works .entries .article-tag {
    font-size: 1.2rem;
    margin-top: 4px;
    margin-right: 4px;
    padding: 4px 6px;
  }
}
.works ul.price {
  display: flex;
  margin: 3em 0 0 0;
  justify-content: space-between;
}
.works ul.price li {
  width: 49%;
}
@media screen and (max-width: 480px) {
  .works ul.price {
    flex-direction: column;
  }
  .works ul.price li {
    width: 100%;
  }
}
/* review */
.review {
  margin: 80px 0 0;
  padding: 140px 0;
  background: #f8f8f8;
}
.review .container {
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.review .txt {
  padding: 50px 0 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .review {
    margin: 50px 0 0;
    padding: 60px 0;
  }
  .review .txt {
    padding: 30px 0 20px;
  }
}
/* plan */
.plan {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.plan .plan-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.plan .planbox {
  margin-bottom: 100px;
  width: 48%;
  background: #eaf6ff;
}
.plan .planbox h2 {
  position: relative;
  padding: 10px 140px 10px 15px;
  background: #0168b7;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.plan .planbox h2 span {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 120px;
  height: 38px;
  background: #fff;
  border-radius: 15px;
  color: #0168b7;
  font-size: 1.6rem;
  text-align: center;
  line-height: 38px;
}
.plan .planbox-inner {
  padding: 18px;
}
.plan .plan-content {
  background: #97b700;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.plan .plan-content dt {
  padding: 20px 20px 15px;
  font-size: 2rem;
}
.plan .plan-content ul {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px;
}
.plan .plan-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 23%;
  background: #fff;
  border-radius: 10px;
  color: #97b700;
  font-size: 1.6rem;
  line-height: 1.2;
}
.plan .txt-note {
  padding: 5px 0 30px;
  text-align: right;
  font-size: 1.2rem;
}
.plan .plan-ranking {
  position: relative;
  margin-bottom: 50px;
  background: #fff;
}
.plan .plan-ranking:last-child {
  margin-bottom: 0;
}
.plan .plan-ranking .no {
  position: absolute;
  top: -20px;
  left: 5px;
  z-index: 10;
}
.plan .plan-ranking figure {
  position: relative;
}
.plan .plan-ranking figcaption {
  position: absolute;
  right: 20px;
  bottom: 8%;
  width: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.plan .plan-ranking figcaption.line1 {
  bottom: 12%;
}
.plan .plan-ranking h3 {
  padding: 20px;
}
.plan .plan-ranking h3 span {
  background: linear-gradient(transparent 60%, #ffce49 60%);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.plan .plan-ranking p {
  padding: 0 20px;
}
.plan .plan-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
}
.plan .plan-detail .year {
  border: 1px solid #ec2c73;
  width: calc(44% - 50px);
  background: #ffe5ef;
  text-align: center;
  font-weight: 700;
}
.plan .plan-detail .year dt {
  background: #ec2c73;
  color: #fff;
}
.plan .plan-detail .warranty {
  padding: 7px 0;
  background: #e25f0d;
  color: #fff;
  width: 50px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
.plan .plan-detail .warranty.year5 {
  background: #67d04f;
}
.plan .plan-detail .warranty.year3 {
  background: #4fadd0;
}
.plan .plan-detail .fee {
  position: relative;
  padding: 0;
  width: 48%;
  text-align: right;
  color: #e41f1f;
  font-size: 3rem;
  font-weight: 700;
}
.plan .plan-detail .fee::before {
  position: absolute;
  right: -8px;
  bottom: 58%;
  content: "（税込）";
  font-size: 1.4rem;
  color: #000;
  line-height: 1;
}
.plan .plan-detail .fee strong {
  font-size: 4.4rem;
}
.plan .plan-detail .fee small {
  font-size: 2.2rem;
}
.plan .plan-detail .rating {
  margin-top: 10px;
  border: 1px solid #0168b7;
  width: 48%;
  background: #eaf6ff;
  text-align: center;
  font-weight: 700;
}
.plan .plan-detail .rating dt {
  background: #0168b7;
  color: #fff;
}
.plan .plan-detail .rating dd {
  color: #ffce49;
  font-size: 2.6rem;
  line-height: 1.4;
}
.plan .plan-detail .loan {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px 20px;
  width: 100%;
  background: #eaf6ff;
}
.plan .plan-detail .loan dl {
  width: 55%;
  line-height: 1.4;
}
.plan .plan-detail .loan dt {
  font-size: 1.8rem;
}
.plan .plan-detail .loan dd strong {
  color: #0168b7;
  font-size: 2.6rem;
  font-weight: 700;
}
.plan .plan-detail .loan dd small {
  font-size: 1.2rem;
}
.plan .plan-detail .loan ul {
  width: 40%;
}
.plan .plan-detail .loan li {
  position: relative;
  padding-left: 15px;
  font-size: 1.2rem;
}
.plan .plan-detail .loan li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
@media screen and (max-width: 1200px) {
  .plan .planbox h2 {
    padding: 15px 130px 15px 15px;
    font-size: 2.4rem;
  }
  .plan .planbox h2 span {
    width: 100px;
    font-size: 1.4rem;
  }
  .plan .plan-content li {
    font-size: 1.4rem;
  }
  .plan .plan-ranking figcaption {
    font-size: 1.6rem;
  }
  .plan .plan-detail .fee {
    position: relative;
    padding: 0;
    width: 48%;
    text-align: right;
    color: #e41f1f;
    font-size: 2.6rem;
    font-weight: 700;
  }
  .plan .plan-detail .fee::before {
    bottom: 60%;
    content: "（税込）";
    font-size: 1.2rem;
  }
  .plan .plan-detail .fee strong {
    font-size: 3.6rem;
  }
  .plan .plan-detail .fee small {
    font-size: 2rem;
  }
}
@media screen and (max-width: 980px) {
  .plan .planbox {
    margin: 0 auto 50px;
    width: 100%;
    max-width: 510px;
  }
  .plan .planbox h2 {
    padding: 15px 130px 15px 15px;
    font-size: 2rem;
  }
  .plan .planbox h2 span {
    width: 110px;
    font-size: 1.4rem;
  }
  .plan .planbox-inner {
    padding: 8px;
  }
  .plan .plan-content dt {
    padding: 20px 20px 15px;
    font-size: 1.6rem;
  }
  .plan .plan-content ul {
    padding: 0 10px 10px;
  }
  .plan .plan-content li {
    font-size: 1.4rem;
  }
  .plan .txt-note {
    font-size: 1rem;
  }
  .plan .plan-ranking {
    margin-bottom: 40px;
  }
  .plan .plan-ranking figcaption {
    right: 5px;
    bottom: 9%;
    width: 55%;
    font-size: 1.6rem;
  }
  .plan .plan-ranking h3 {
    padding: 10px;
  }
  .plan .plan-ranking h3 span {
    font-size: 2.2rem;
  }
  .plan .plan-ranking p {
    padding: 0 10px;
  }
  .plan .plan-detail {
    padding: 10px;
  }
  .plan .plan-detail .year {
    width: calc(44% - 50px);
  }
}
@media screen and (max-width: 480px) {
  .plan .planbox {
    margin: 0 auto 30px;
  }
  .plan .planbox h2 {
    padding: 15px 100px 15px 15px;
    font-size: 1.8rem;
  }
  .plan .planbox h2 span {
    width: 90px;
    font-size: 1.2rem;
  }
  .plan .plan-content dt {
    padding: 10px 10px 5px;
    font-size: 1.5rem;
  }
  .plan .plan-content li {
    font-size: 1.2rem;
  }
  .plan .plan-ranking figcaption {
    bottom: 8%;
    font-size: 1.3rem;
  }
  .plan .plan-ranking h3 span {
    font-size: 1.8rem;
  }
  .plan .plan-detail .year {
    width: calc(44% - 45px);
  }
  .plan .plan-detail .warranty {
    padding: 7px 0;
    width: 45px;
  }
  .plan .plan-detail .fee {
    width: 48%;
    font-size: 2rem;
  }
  .plan .plan-detail .fee::before {
    right: -5px;
    font-size: 1rem;
  }
  .plan .plan-detail .fee strong {
    font-size: 3rem;
  }
  .plan .plan-detail .fee small {
    font-size: 1.6rem;
  }
  .plan .plan-detail .rating dd {
    font-size: 1.8rem;
  }
  .plan .plan-detail .loan {
    margin-top: 10px;
    padding: 10px 15px;
  }
  .plan .plan-detail .loan dl {
    width: 60%;
  }
  .plan .plan-detail .loan dt {
    font-size: 1.4rem;
  }
  .plan .plan-detail .loan dd strong {
    font-size: 2.2rem;
  }
  .plan .plan-detail .loan dd small {
    font-size: 1rem;
  }
  .plan .plan-detail .loan ul {
    margin-top: 5px;
    width: 40%;
  }
  .plan .plan-detail .loan li {
    font-size: 1rem;
  }
}
/* message */
.message {
  padding: 140px 0;
  background: #eaf6ff;
}
.message .container {
  margin: auto;
  width: 90%;
  max-width: 1140px;
  background: #fff;
}
.message h2 {
  padding: 20px;
  background: #1169ac;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.message .message-wrap {
  padding: 40px 40px 0;
  gap: 40px
}
.message .message-wrap figure {
  width: 39.3%;
}
.message .message-wrap .txt {
  width: calc(60.7% - 40px);
  line-height: 2;
}
.message .btn-dArrow--bgBlue {
  margin-bottom: 60px;
  width: 420px;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 60px 0;
  }
  .message h2 {
    padding: 15px;
    font-size: 2.2rem;
  }
  .message .message-wrap {
    padding: 20px 20px 0;
    gap: 20px
  }
  .message .message-wrap figure {
    width: 100%;
  }
  .message .message-wrap .txt {
    width: 100%;
  }
  .message .btn-dArrow--bgBlue {
    margin-bottom: 30px;
    width: 90%;
    font-size: 1.4rem;
  }
}
/* staff */
.staff {
  padding: 100px 0;
}
.staff .container {
  justify-content: space-between;
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.staff .txtarea {
  width: 47%;
}
.staff h2 {
  padding-bottom: 50px;
  text-align: left;
}
.staff p {
  line-height: 2;
  color: #1169ac;
}
.staff .btn-wrap {
  text-align: left;
}
.staff .btn-wrap .btn-dArrow {
  max-width: 250px;
}
.staff figure {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .staff {
    padding: 50px 0;
  }
  .staff .txtarea {
    width: 100%;
  }
  .staff h2 {
    padding-bottom: 30px;
    text-align: center;
  }
  .staff .btn-wrap {
    text-align: center;
  }
  .staff figure {
    padding-bottom: 10px;
    width: 100%;
    order: 1;
  }
}
/* company */
.company {
  padding: 100px 0;
}
.company .container {
  margin: auto;
  gap: 40px;
  width: 90%;
  max-width: 1140px;
}
.company h2 {
  width: 100%;
}
.company figure {
  width: 46.5%;
}
.company dl {
  width: calc(53.5% - 40px);
  font-size: 1.5rem;
}
.company dt {
  padding: 10px 0;
  border-bottom: 1px solid #000;
  width: 100px;
}
.company dd {
  padding: 10px 0;
  border-bottom: 1px solid #000;
  width: calc(100% - 100px);
}
.company .map iframe {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 50px 0;
  }
  .company .container {
    gap: 20px;
  }
  .company figure {
    width: 100%;
  }
  .company dl {
    width: 100%;
    font-size: 1.4rem;
  }
  .company dt {
    width: 80px;
  }
  .company dd {
    width: calc(100% - 80px);
  }
  .company .map iframe {
    height: 250px;
  }
}
/* faq */
.faq {
  padding: 100px 0;
  background: #f8f8f8;
}
.faq .container {
  margin: auto;
  width: 90%;
  max-width: 1140px;
}
.faq h2 {
  margin-bottom: 50px;
}
.faq dl {
  margin-bottom: 30px;
  padding: 35px 50px 35px 35px;
  background: #fff;
}
.faq dt {
  position: relative;
  color: #1169ac;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}
.faq dt::after {
  position: absolute;
  top: 0;
  right: -20px;
  content: "＋";
}
.faq dt.is-open::after {
  content: "ー";
}
.faq dd {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
  .faq h2 {
    margin-bottom: 50px;
  }
  .faq dl {
    margin-bottom: 20px;
    padding: 20px 30px 20px 20px;
  }
  .faq dt {
    font-size: 1.5rem;
  }
}
/* sns */
.sns {
  width: 90%;
  margin: 100px auto 50px;
  max-width: 1140px;
}
.sns h2 {
  margin-bottom: 30px;
  text-align: center;
}
.sns .block-column {
  margin-bottom: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 530px;
  flex: 0 1 530px;
  text-align: center;
}
.sns .block-column--links {
  justify-content: center;
}
.sns iframe {
  width: 100%;
}
.sns  .fb-bnr {
  margin: 30px auto 0;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .sns {
    margin: 50px auto 0;
  }
  .sns .block-column {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-bottom: 20px;
  }
  .sns iframe {
    height: 200px;
  }
}

/**
 * mv
***************************/
.mv {
  background-color: #f8f8f8;
}
.mv .h2-title {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .mv .h2-title {
    padding: 30px 0;
  }
}
.mv-img {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 280px;
  background-image: url(../img/bg/mv_01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
}
.mv-img-inner {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
}
.mv-tt {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 5px;
  color: #0068b7;
  margin-top: 10px;
  text-shadow: 2px 2px 0px white,
    -2px -2px 0px white,
    -2px 2px 0px white,
    2px -2px 0px white,
    2px 0px 0px white,
    -2px 0px 0px white,
    0px 2px 0px white,
    0px -2px 0px white;
}
@media screen and (max-width: 768px) {
  .mv-tt {
    font-size: 5.3333333333vw;
    letter-spacing: 3px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .mv-tt {
    font-size: 2rem;
    margin-top: 30px;
  }
}
.mv-tx {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  font-weight: bold;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .mv-tx {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .mv-tx {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}


/* article */
.content {
  margin: 100px 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .content {
    margin: 60px 0;
  }
}
.content-wrap {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .content-wrap {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
}
.content-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 530px;
          flex: 0 1 530px;
}
@media screen and (max-width: 1024px) {
  .content-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.content-item:not(:first-child) {
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1024px) {
  .content-item:not(:first-child) {
    margin: 40px 0 0 0;
  }
}
.content-item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 40px;
}
.content-item-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.content-item-line-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
}
.content-item-line-qr {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 150px;
          flex: 1 0 150px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 768px) {
  .content-item-line-qr {
		display: none;
/*    -webkit-box-flex: 1;
    -webkit-flex: 1 0 75px;
            flex: 1 0 75px;*/
  }
}
.content-item-line-qr img {
  width: 150px;
  height: 150px;
}
/*@media screen and (max-width: 768px) {
  .content-item-line-qr img {
    width: 75px;
    height: 75px;
  }
}*/
.content-item-line-qr_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .content-item-line-qr_sp {
		display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 90px;
            flex: 1 0 90px;
  }
  .content-item-line-qr_sp img {
    width: 90px;
    height: 90px;
  }
}
.content-item-line-title {
  font-weight: bold;
  letter-spacing: 0;
  color: #0068b7;
  margin: 15px 0 0 0;
}
.content-item-line-text {
  margin: 5px 0 0 0;
}
.content .entries {
  margin-top: 40px;
}
.content .entries .article {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .content .entries .article {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}
.content .entries .article:not(:first-child) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #c4c4c4;
}
.content .entries .article-date {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 165px;
          flex: 1 0 165px;
  font-weight: bold;
  letter-spacing: 0;
  color: #0068b7;
}
.content .entries .article-date::after {
  content: ":";
  display: inline-block;
  margin: 0 20px;
}
@media screen and (max-width: 1024px) {
  .content .entries .article-title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.infoList {
	width: 100%;
}
.infoList li {
	display: flex;
	flex-wrap: wrap;
}
.infoList li:not(:first-of-type) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dotted #bababa;
}
.infoList li span {
	width: 70px;
  font-weight: bold;
  letter-spacing: 0;
  color: #0068b7;
}
.infoList li a {
  display: inline-block;
	width: calc(100% - 80px);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: black;
}
