@charset "UTF-8";
/*********************

疑似クラス

*********************/
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

/*----------
  共通設定
----------*/
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;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ul, ol {
  padding-left: 2rem;
}

nav ul {
  list-style: none;
  padding-left: 0;
}

blockquote, q {
  quotes: none;
}

img {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a img {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #CCC;
  margin: 1em 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*================================================================================================
aタグの設定:::::::::::::::::::::::::::::::::::
================================================================================================*/
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

a:focus {
  outline: none;
}

/******************************************


基本系


******************************************/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

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

iframe, video {
  max-width: 100%;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #437AB2;
}
a:hover {
  color: inherit;
}

/******************************************


レイアウト系


******************************************/
.outline {
  max-width: 100%;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .outline {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 951px) {
  .outline {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 751px) {
  .outline.w_narrow {
    max-width: 750px;
  }
}
@media screen and (min-width: 951px) {
  .outline.w_wide {
    max-width: 1150px;
  }
}
@media screen and (min-width: 769px) {
  .outline.w_over {
    max-width: 100%;
  }
}

.l_center {
  margin-left: auto;
  margin-right: auto;
}

.l_left {
  margin-left: 0;
  margin-right: auto;
}

.l_right {
  margin-left: auto;
  margin-right: 0;
}

.l_sp_v {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .l_sp_v {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.l_sp_b {
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .l_sp_b {
    padding-bottom: 60px;
  }
}

.l_sp_t {
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .l_sp_t {
    padding-top: 60px;
  }
}

.l_sidebar { /* Safari */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Safari */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; /* Safari */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* Safari */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* Safari */
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* Safari */
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  max-width: 950px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.l_sidebar > .content_area,
.l_sidebar > article {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_sidebar > .content_area,
  .l_sidebar > article {
    width: calc(100% - (300px + 20px));
  }
}
.l_sidebar > .sidebar {
  width: 100%;
  padding: 0 5%;
}
@media screen and (min-width: 769px) {
  .l_sidebar > .sidebar {
    width: 300px;
    padding: 0;
  }
}

@media screen and (min-width: 431px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp_display {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_display {
    display: none !important;
  }
}
/******************************************


装飾


******************************************/
.overlay {
  position: relative;
  overflow: hidden;
}
.overlay img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}
.overlay:after {
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(47%, rgba(135, 135, 135, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(135, 135, 135, 0) 47%, rgba(0, 0, 0, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#b3000000",GradientType=0 );
  content: "";
  position: absolute;
  z-index: 1;
}

/*----------
  Clear
----------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.clear {
  clear: both;
}

/******************************************


装飾


******************************************/
.mb5 {
  margin-bottom: 5px;
}

.mt5 {
  margin-top: 5px;
}

.mtb5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt10 {
  margin-top: 10px;
}

.mtb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mt15 {
  margin-top: 15px;
}

.mtb15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt20 {
  margin-top: 20px;
}

.mtb20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mt25 {
  margin-top: 25px;
}

.mtb25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt30 {
  margin-top: 30px;
}

.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mt35 {
  margin-top: 35px;
}

.mtb35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt40 {
  margin-top: 40px;
}

.mtb40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mt45 {
  margin-top: 45px;
}

.mtb45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt50 {
  margin-top: 50px;
}

.mtb50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mt55 {
  margin-top: 55px;
}

.mtb55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt60 {
  margin-top: 60px;
}

.mtb60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mt65 {
  margin-top: 65px;
}

.mtb65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mt70 {
  margin-top: 70px;
}

.mtb70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mt75 {
  margin-top: 75px;
}

.mtb75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mt80 {
  margin-top: 80px;
}

.mtb80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mt85 {
  margin-top: 85px;
}

.mtb85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mt90 {
  margin-top: 90px;
}

.mtb90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mt95 {
  margin-top: 95px;
}

.mtb95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt100 {
  margin-top: 100px;
}

.mtb100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.fw_bold {
  font-weight: bold;
}

.fw_normal {
  font-weight: normal;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.message.caution {
  color: #B22019;
}
.message.info {
  color: #437AB2;
}
.message.border {
  padding: 0.2em;
  border: solid 2px #EEE;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(0%, #FFFF00));
  background: linear-gradient(transparent 65%, #FFFF00 0%);
  display: inline;
  font-weight: bold;
}
.marker.thick {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #437AB2));
  background: linear-gradient(transparent 60%, #437AB2 0%);
  display: inline;
}
.marker.thin {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #437AB2));
  background: linear-gradient(transparent 80%, #437AB2 0%);
  display: inline;
}
.marker.gradation {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(60%, #437AB2));
  background: linear-gradient(transparent 0, #437AB2 60%);
}

.mt30 {
  margin-top: 30px;
}

/********************************************************************************リスト系 *****/
.notlist {
  list-style: none;
  padding-left: 0;
}

dl.table_date { /* お知らせのような横並び  */ }
dl.table_date dt {
  float: left;
}
dl.table_date dd {
  margin-left: 80px;
}

/********************************************************************************リスト系 END */
/******************************************


ボタン


******************************************/
/******************************************


タイトル


******************************************/
.title01 {
  color: #FFF;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}
.title01 span {
  font-size: 36px;
}
.title01 + p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.title01 + div {
  margin-top: -30px;
}
.title01.primary {
  background: #437AB2;
}

.title01_a {
  color: #437AB2;
  padding: 15px;
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .title01_a {
    font-size: 26px;
  }
}
.title01_a span {
  display: inline-block;
  padding: 0 10px 10px;
  border-bottom: 5px dotted #437AB2;
}
.title01_a.mt {
  margin-bottom: 30px;
}
.title01_a + p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.title01_a.primary {
  background: #437AB2;
}

.title02 {
  color: #437AB2;
  font-size: 20px;
  margin-bottom: 30px;
}
.title02 + p {
  margin-top: -15px;
  margin-bottom: 30px;
}
.title02.center {
  text-align: center;
}

.title03 {
  border-left: 3px solid #437AB2;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .title03 {
    font-size: 20px;
  }
}

.title04 {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
.title04 span {
  display: inline-block;
  padding: 10px;
  border-bottom: 3px solid #437AB2;
}
.title04.mt {
  margin-top: 40px;
}

.bg_white {
  background: #FFF !important;
}

.bg_gray {
  background: #437AB2;
}

.side_bnr img {
  margin: auto;
  display: block;
}

/******************************************


共通部分


******************************************/
body {
  background: #FFF;
}

.content_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 950px;
  margin: auto;
}
.content_area .sidebar {
  width: 100%;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media screen and (min-width: 769px) {
  .content_area .sidebar {
    width: 215px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.content_area .contents {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content_area .contents {
    width: calc(100% - 245px);
  }
}

.header_area {
  padding: 0 0;
}
@media screen and (min-width: 769px) {
  .header_area {
    padding: 8px 0 4px;
  }
}
.header_area .outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_area .logo_area {
  max-width: 160px;
}
@media screen and (min-width: 769px) {
  .header_area .logo_area {
    max-width: 236px;
  }
}
.header_area .logo_area a {
  display: block;
  line-height: 0;
}
.header_area .info_box {
  display: none;
}
@media screen and (min-width: 769px) {
  .header_area .info_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header_area .tel:before {
  content: url(../img/icon/tel.svg);
}
.header_area .mail_box a {
  border: 3px solid #437AB2;
  background: #437AB2;
  color: #FFF;
}
.header_area .mail_box a:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.header_area .mail_box a:hover {
  background: #FFF;
  color: #437AB2;
}
.header_area .mail_box a:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23437AB2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}

.info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .info_box {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.info_box > div {
  width: 100%;
}
.info_box .tel_box {
  margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
  .info_box .tel_box {
    margin-right: 25px;
    margin-bottom: 0;
  }
}

.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #373737;
  white-space: nowrap;
}
.tel:before {
  display: block;
  margin-right: 10px;
  content: url(../img/icon/tel.svg);
}
.tel p {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.tel p span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
}
.tel.tel_fax:before {
  display: block;
  margin-right: 10px;
  content: url(../img/icon/fax_text.svg);
}

.btn.box02, .btn.edit, .btn.donw, .btn.fax, .btn.mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  background: #437AB2;
  border: 1px solid #437AB2;
  padding: 10px 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 260px;
  height: 65px;
}
.btn.box02:hover, .btn.edit:hover, .btn.donw:hover, .btn.fax:hover, .btn.mail:hover {
  color: #437AB2;
  background: #FFF;
  text-decoration: none;
}
.btn.mail:before {
  display: block;
  content: "";
  width: 36px;
  height: 28px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.818%22%20height%3D%2228.507%22%20viewBox%3D%220%200%2036.818%2028.507%22%3E%3Cpath%20d%3D%22M39.736%2C7.268H5.362A1.223%2C1.223%2C0%2C0%2C0%2C4.14%2C8.491v2.46a.418.418%2C0%2C0%2C0%2C.223.3l18.067%2C10.32a.306.306%2C0%2C0%2C0%2C.307%2C0L40.259%2C11.257c.1-.054.36-.2.458-.267.118-.081.24-.154.24-.3v-2.2a1.223%2C1.223%2C0%2C0%2C0-1.222-1.222Z%22%20transform%3D%22translate%28-4.14%20-7.268%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M34.309%2C12.843a.308.308%2C0%2C0%2C0-.308%2C0l-9.915%2C5.833a.3.3%2C0%2C0%2C0-.069.472L33.933%2C29.84a.305.305%2C0%2C0%2C0%2C.529-.209V13.107a.305.305%2C0%2C0%2C0-.153-.266Z%22%20transform%3D%22translate%282.356%20-5.452%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M27.61%2C18.725a.3.3%2C0%2C0%2C0-.379-.056l-3.974%2C2.339a1.55%2C1.55%2C0%2C0%2C1-1.534.011l-3.5-2a.305.305%2C0%2C0%2C0-.359.041L4.584%2C31.38a.305.305%2C0%2C0%2C0%2C.054.487%2C1.191%2C1.191%2C0%2C0%2C0%2C.608.179H39.269a.306.306%2C0%2C0%2C0%2C.224-.514Z%22%20transform%3D%22translate%28-4.026%20-3.54%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M15.058%2C19.455A.305.305%2C0%2C0%2C0%2C15%2C18.966L4.6%2C13.023a.305.305%2C0%2C0%2C0-.456.266v15.6a.3.3%2C0%2C0%2C0%2C.513.223l10.405-9.653Z%22%20transform%3D%22translate%28-4.14%20-5.392%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
.btn.mail:hover:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.818%22%20height%3D%2228.507%22%20viewBox%3D%220%200%2036.818%2028.507%22%3E%3Cpath%20d%3D%22M39.736%2C7.268H5.362A1.223%2C1.223%2C0%2C0%2C0%2C4.14%2C8.491v2.46a.418.418%2C0%2C0%2C0%2C.223.3l18.067%2C10.32a.306.306%2C0%2C0%2C0%2C.307%2C0L40.259%2C11.257c.1-.054.36-.2.458-.267.118-.081.24-.154.24-.3v-2.2a1.223%2C1.223%2C0%2C0%2C0-1.222-1.222Z%22%20transform%3D%22translate%28-4.14%20-7.268%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M34.309%2C12.843a.308.308%2C0%2C0%2C0-.308%2C0l-9.915%2C5.833a.3.3%2C0%2C0%2C0-.069.472L33.933%2C29.84a.305.305%2C0%2C0%2C0%2C.529-.209V13.107a.305.305%2C0%2C0%2C0-.153-.266Z%22%20transform%3D%22translate%282.356%20-5.452%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M27.61%2C18.725a.3.3%2C0%2C0%2C0-.379-.056l-3.974%2C2.339a1.55%2C1.55%2C0%2C0%2C1-1.534.011l-3.5-2a.305.305%2C0%2C0%2C0-.359.041L4.584%2C31.38a.305.305%2C0%2C0%2C0%2C.054.487%2C1.191%2C1.191%2C0%2C0%2C0%2C.608.179H39.269a.306.306%2C0%2C0%2C0%2C.224-.514Z%22%20transform%3D%22translate%28-4.026%20-3.54%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M15.058%2C19.455A.305.305%2C0%2C0%2C0%2C15%2C18.966L4.6%2C13.023a.305.305%2C0%2C0%2C0-.456.266v15.6a.3.3%2C0%2C0%2C0%2C.513.223l10.405-9.653Z%22%20transform%3D%22translate%28-4.14%20-5.392%29%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fsvg%3E");
}
.btn.fax:before {
  display: block;
  content: "";
  width: 36px;
  height: 28px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20d%3D%22M5.786%2C7.714a3.1%2C3.1%2C0%2C0%2C1%2C2.27.944A3.1%2C3.1%2C0%2C0%2C1%2C9%2C10.928V32.785a3.1%2C3.1%2C0%2C0%2C1-.944%2C2.27A3.1%2C3.1%2C0%2C0%2C1%2C5.786%2C36H3.214a3.1%2C3.1%2C0%2C0%2C1-2.27-.944A3.094%2C3.094%2C0%2C0%2C1%2C0%2C32.786V10.929a3.1%2C3.1%2C0%2C0%2C1%2C.944-2.27%2C3.1%2C3.1%2C0%2C0%2C1%2C2.27-.944H5.785Zm27.643%2C3.275A5.2%2C5.2%2C0%2C0%2C1%2C35.3%2C12.857a4.95%2C4.95%2C0%2C0%2C1%2C.7%2C2.571V30.857A5.145%2C5.145%2C0%2C0%2C1%2C30.857%2C36H13.5a3.223%2C3.223%2C0%2C0%2C1-3.214-3.214V1.929A1.858%2C1.858%2C0%2C0%2C1%2C10.849.563%2C1.865%2C1.865%2C0%2C0%2C1%2C12.215%2C0h13.5a4.634%2C4.634%2C0%2C0%2C1%2C1.768.4%2C4.688%2C4.688%2C0%2C0%2C1%2C1.527.964L32.064%2C4.42a4.666%2C4.666%2C0%2C0%2C1%2C.964%2C1.527%2C4.659%2C4.659%2C0%2C0%2C1%2C.4%2C1.768V10.99ZM18.643%2C30.857V28.286A.62.62%2C0%2C0%2C0%2C18%2C27.643H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143A.62.62%2C0%2C0%2C0%2C18%2C22.5H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18A.62.62%2C0%2C0%2C0%2C18%2C17.357H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm5.143%2C10.286V28.286a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm5.143%2C10.286V28.286a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm1.929-7.714V7.714H27.644a1.922%2C1.922%2C0%2C0%2C1-1.929-1.929V2.571H12.857V12.857h18Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
.btn.fax:hover:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20d%3D%22M5.786%2C7.714a3.1%2C3.1%2C0%2C0%2C1%2C2.27.944A3.1%2C3.1%2C0%2C0%2C1%2C9%2C10.928V32.785a3.1%2C3.1%2C0%2C0%2C1-.944%2C2.27A3.1%2C3.1%2C0%2C0%2C1%2C5.786%2C36H3.214a3.1%2C3.1%2C0%2C0%2C1-2.27-.944A3.094%2C3.094%2C0%2C0%2C1%2C0%2C32.786V10.929a3.1%2C3.1%2C0%2C0%2C1%2C.944-2.27%2C3.1%2C3.1%2C0%2C0%2C1%2C2.27-.944H5.785Zm27.643%2C3.275A5.2%2C5.2%2C0%2C0%2C1%2C35.3%2C12.857a4.95%2C4.95%2C0%2C0%2C1%2C.7%2C2.571V30.857A5.145%2C5.145%2C0%2C0%2C1%2C30.857%2C36H13.5a3.223%2C3.223%2C0%2C0%2C1-3.214-3.214V1.929A1.858%2C1.858%2C0%2C0%2C1%2C10.849.563%2C1.865%2C1.865%2C0%2C0%2C1%2C12.215%2C0h13.5a4.634%2C4.634%2C0%2C0%2C1%2C1.768.4%2C4.688%2C4.688%2C0%2C0%2C1%2C1.527.964L32.064%2C4.42a4.666%2C4.666%2C0%2C0%2C1%2C.964%2C1.527%2C4.659%2C4.659%2C0%2C0%2C1%2C.4%2C1.768V10.99ZM18.643%2C30.857V28.286A.62.62%2C0%2C0%2C0%2C18%2C27.643H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143A.62.62%2C0%2C0%2C0%2C18%2C22.5H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18A.62.62%2C0%2C0%2C0%2C18%2C17.357H15.429a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643H18a.62.62%2C0%2C0%2C0%2C.643-.643Zm5.143%2C10.286V28.286a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18a.62.62%2C0%2C0%2C0-.643-.643H20.572a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm5.143%2C10.286V28.286a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V23.143a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm0-5.143V18a.62.62%2C0%2C0%2C0-.643-.643H25.715a.62.62%2C0%2C0%2C0-.643.643v2.571a.62.62%2C0%2C0%2C0%2C.643.643h2.571a.62.62%2C0%2C0%2C0%2C.643-.643Zm1.929-7.714V7.714H27.644a1.922%2C1.922%2C0%2C0%2C1-1.929-1.929V2.571H12.857V12.857h18Z%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fsvg%3E");
}
.btn.donw:before {
  display: block;
  content: "";
  width: 36px;
  height: 37px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237%22%20height%3D%2237%22%20viewBox%3D%220%200%2037%2037%22%3E%3Cpath%20d%3D%22M18.5%2C0A18.5%2C18.5%2C0%2C1%2C0%2C37%2C18.5%2C18.5%2C18.5%2C0%2C0%2C0%2C18.5%2C0Zm0%2C32.978A14.478%2C14.478%2C0%2C1%2C1%2C32.978%2C18.5%2C14.478%2C14.478%2C0%2C0%2C1%2C18.5%2C32.978Zm3.62-22.221H14.88v8.224H10.356L18.5%2C26.644l8.144-7.661H22.12V10.759Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
.btn.donw:hover:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237%22%20height%3D%2237%22%20viewBox%3D%220%200%2037%2037%22%3E%3Cpath%20d%3D%22M18.5%2C0A18.5%2C18.5%2C0%2C1%2C0%2C37%2C18.5%2C18.5%2C18.5%2C0%2C0%2C0%2C18.5%2C0Zm0%2C32.978A14.478%2C14.478%2C0%2C1%2C1%2C32.978%2C18.5%2C14.478%2C14.478%2C0%2C0%2C1%2C18.5%2C32.978Zm3.62-22.221H14.88v8.224H10.356L18.5%2C26.644l8.144-7.661H22.12V10.759Z%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fsvg%3E");
}
.btn.edit:before {
  display: block;
  content: "";
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.081%22%20height%3D%2236.081%22%20viewBox%3D%220%200%2036.081%2036.081%22%3E%3Cg%20transform%3D%22translate%28-4%20-1.997%29%22%3E%3Cpath%20d%3D%22M32.861%2C34.861H6.405V8.405H22.3L24.708%2C6H6.405A2.4%2C2.4%2C0%2C0%2C0%2C4%2C8.405V34.861a2.4%2C2.4%2C0%2C0%2C0%2C2.405%2C2.405H32.861a2.4%2C2.4%2C0%2C0%2C0%2C2.405-2.405V16.823l-2.405%2C2.405Z%22%20transform%3D%22translate%280%200.811%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M37.683%2C6.618%2C33.63%2C2.566a1.936%2C1.936%2C0%2C0%2C0-2.742%2C0L14.4%2C19.149l-1.335%2C5.784a1.936%2C1.936%2C0%2C0%2C0%2C1.888%2C2.321%2C2.032%2C2.032%2C0%2C0%2C0%2C.445%2C0l5.832-1.287L37.683%2C9.36a1.936%2C1.936%2C0%2C0%2C0%2C0-2.742Zm-17.7%2C17.124-4.4.974L16.6%2C20.352%2C29.012%2C7.857%2C32.4%2C11.248ZM33.763%2C9.889%2C30.371%2C6.5l1.864-1.9%2C3.415%2C3.415Z%22%20transform%3D%22translate%281.829%200%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.btn.edit:hover:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.081%22%20height%3D%2236.081%22%20viewBox%3D%220%200%2036.081%2036.081%22%3E%3Cg%20transform%3D%22translate%28-4%20-1.997%29%22%3E%3Cpath%20d%3D%22M32.861%2C34.861H6.405V8.405H22.3L24.708%2C6H6.405A2.4%2C2.4%2C0%2C0%2C0%2C4%2C8.405V34.861a2.4%2C2.4%2C0%2C0%2C0%2C2.405%2C2.405H32.861a2.4%2C2.4%2C0%2C0%2C0%2C2.405-2.405V16.823l-2.405%2C2.405Z%22%20transform%3D%22translate%280%200.811%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M37.683%2C6.618%2C33.63%2C2.566a1.936%2C1.936%2C0%2C0%2C0-2.742%2C0L14.4%2C19.149l-1.335%2C5.784a1.936%2C1.936%2C0%2C0%2C0%2C1.888%2C2.321%2C2.032%2C2.032%2C0%2C0%2C0%2C.445%2C0l5.832-1.287L37.683%2C9.36a1.936%2C1.936%2C0%2C0%2C0%2C0-2.742Zm-17.7%2C17.124-4.4.974L16.6%2C20.352%2C29.012%2C7.857%2C32.4%2C11.248ZM33.763%2C9.889%2C30.371%2C6.5l1.864-1.9%2C3.415%2C3.415Z%22%20transform%3D%22translate%281.829%200%29%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.btn.box02:before {
  display: block;
  content: "";
  width: 36px;
  height: 38px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.486%22%20height%3D%2238%22%20viewBox%3D%220%200%2036.486%2038%22%3E%3Cpath%20d%3D%22M20.39%2C38l15.2-7.6L37.111%2C7.6%2C20.39%2C12.157V38ZM2.154%2C30.4l15.2%2C7.6V12.157L.633%2C7.6ZM18.876%2C0%2C.633%2C4.557%2C18.876%2C9.114%2C37.119%2C4.557Z%22%20transform%3D%22translate%28-0.633%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
.btn.box02:hover:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.486%22%20height%3D%2238%22%20viewBox%3D%220%200%2036.486%2038%22%3E%3Cpath%20d%3D%22M20.39%2C38l15.2-7.6L37.111%2C7.6%2C20.39%2C12.157V38ZM2.154%2C30.4l15.2%2C7.6V12.157L.633%2C7.6ZM18.876%2C0%2C.633%2C4.557%2C18.876%2C9.114%2C37.119%2C4.557Z%22%20transform%3D%22translate%28-0.633%29%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fsvg%3E");
}

.footer_area .footer_nav_area {
  background: #437AB2;
  padding: 30px 0;
  color: #FFF;
}
.footer_area .footer_nav_area .title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .title {
    text-align: left;
  }
}
.footer_area .footer_nav_area .footer_nav01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_area .footer_nav_area .footer_nav01 .arrow_box {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav01 .arrow_box {
    width: 30%;
  }
}
.footer_area .footer_nav_area .footer_nav02 {
  padding: 35px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav02 {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.footer_area .footer_nav_area .footer_nav02 a {
  width: 50%;
  margin-bottom: 5px;
  font-size: 14px;
  text-align: center;
  color: #FFF;
  border-left: 1px solid #FFF;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav02 a {
    width: 100%;
  }
}
.footer_area .footer_nav_area .footer_nav02 a:hover {
  color: #437AB2;
}
@media screen and (max-width: 768px) {
  .footer_area .footer_nav_area .footer_nav02 a:nth-child(2n) {
    border-right: 1px solid #FFF;
  }
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav02 a:last-child {
    border-right: 1px solid #FFF;
  }
}
.footer_area .footer_nav_area .arrow_box a {
  margin-bottom: 5px;
  font-size: 16px;
  color: #FFF;
}
.footer_area .footer_nav_area .arrow_box a:hover {
  color: #FFF;
  text-decoration: underline;
}
.footer_area .footer_nav_area .arrow_box > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding: 5px 0;
  font-size: 18px;
  color: #FFF;
}
.footer_area .footer_nav_area .arrow_box > a:before {
  display: block;
  content: "▶︎";
  margin-right: 10px;
  color: #FFF;
  font-size: 11px;
}
.footer_area .footer_nav_area .arrow_box > a:hover {
  color: #FFF;
  text-decoration: underline;
}
.footer_area .footer_nav_area .arrow_box > div {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .arrow_box > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer_area .footer_nav_area .arrow_box > div + a {
  margin-top: 15px;
}
.footer_area .copy_area {
  padding: 30px 0;
  text-align: center;
}

#overlay {
  display: none;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .nav_area {
    display: block !important;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .nav_area .globalnav {
    max-width: 950px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .nav_area .globalnav a {
    position: relative;
    color: #373737;
    display: block;
    padding: 25px 5px;
  }
  .nav_area .globalnav a.logo {
    display: none;
  }
  .nav_area .globalnav a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  .nav_area .globalnav > a,
  .nav_area .globalnav .dropdown {
    text-align: center;
    border-right: 1px solid #373737;
    width: 100%;
  }
  .nav_area .globalnav > a:first-child,
  .nav_area .globalnav .dropdown:first-child {
    border-left: 1px solid #373737;
  }
  .nav_area .globalnav > a,
  .nav_area .globalnav .dropdown > a {
    padding: 8px 5px;
  }
  .nav_area .globalnav > a:before,
  .nav_area .globalnav .dropdown > a:before {
    content: "";
    display: inline-block;
    border-bottom: 5px solid #FFF;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0); /* Safari用 */
    transform: translate(-50%, 0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
  }
  .nav_area .globalnav > a:hover,
  .nav_area .globalnav .dropdown > a:hover {
    text-decoration: none;
  }
  .nav_area .globalnav > a:hover:before,
  .nav_area .globalnav .dropdown > a:hover:before {
    width: 100%;
  }
  .nav_area .globalnav .info_box {
    display: none;
  }
  .nav_area .globalnav .dropdown > div {
    -webkit-box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    text-align: left;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    z-index: 10;
    opacity: 0;
    font-size: 1rem;
  }
  .nav_area .globalnav .dropdown > div p {
    width: 100%;
    font-weight: bold;
    color: #373737;
  }
  .nav_area .globalnav .dropdown > div a {
    font-size: 0.8em;
    color: #373737;
    display: inline-block;
    width: 200px;
    max-width: 100%;
    border-bottom: 1px solid #373737;
    padding-bottom: 5px;
    margin-right: 15px;
  }
  .nav_area .globalnav .dropdown > div a:hover {
    color: #437AB2;
  }
  .nav_area .globalnav .dropdown > div a + p {
    margin-top: 30px;
  }
  .nav_area .globalnav .dropdown:hover > div {
    display: block;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .nav_area {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    height: calc(100vh - 60px);
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 55px 0;
    max-width: 100%;
    opacity: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -webkit-touch-action: pan-y;
    -moz-touch-action: pan-y;
    -ms-touch-action: pan-y;
    -o-touch-action: pan-y;
    touch-action: pan-y;
  }
  .nav_area.scroll {
    overflow-y: scroll;
  }
  .globalnav {
    width: 92vw;
    min-height: 100%;
    height: 100%;
    max-width: 680px;
    margin: auto;
    position: relative;
  }
  .globalnav a {
    position: relative;
  }
  .globalnav > a,
  .globalnav .dropdown a,
  .globalnav .close {
    color: #FFF;
    width: 100%;
    max-width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    padding: 15px;
    border-bottom: 1px solid #EEE;
  }
  .globalnav > a:before,
  .globalnav .dropdown a:before,
  .globalnav .close:before {
    display: inline-block;
    content: ">";
    margin-right: 8px;
    font-weight: bold;
  }
  .globalnav > a:hover,
  .globalnav .dropdown a:hover,
  .globalnav .close:hover {
    color: #437AB2;
    text-decoration: none;
  }
  .globalnav > .info_box {
    padding: 20px 15px;
    background: #FFF;
    margin-top: 50px;
    width: 100%;
  }
  .globalnav > .info_box a {
    width: 96%;
    max-width: 100%;
  }
  .globalnav .close {
    position: fixed;
    top: 0;
    right: -100vw;
    margin-left: 0 !important;
    z-index: 99999;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
  }
  .globalnav .close:before {
    content: "<";
  }
  .globalnav .close:after {
    content: "戻る";
  }
  .globalnav.open {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .globalnav.open > * {
    margin-left: -110%;
  }
  .globalnav.open .on .close {
    right: 0 !important;
    margin-left: 0;
    background: #437ab2;
  }
  .globalnav .dropdown {
    max-width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
  }
  .globalnav .dropdown > a:before {
    content: ">";
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .globalnav .dropdown > div {
    margin-top: 30px;
    padding-bottom: 80px;
    -webkit-touch-action: pan-y;
    -moz-touch-action: pan-y;
    -ms-touch-action: pan-y;
    -o-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 0;
    right: -100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    z-index: 9999;
  }
  .globalnav .dropdown > div::-webkit-scrollbar {
    width: 4px;
  }
  .globalnav .dropdown > div::-webkit-scrollbar-thumb {
    background: #2cc2e4;
  }
  .globalnav .dropdown > div::-webkit-scrollbar-track-piece {
    background: #dddddd;
  }
  .globalnav .dropdown > div p {
    color: #FFF;
    margin: 0 0 10px;
    font-weight: bold;
    border-left: 5px solid #FFF;
    padding: 3px 8px;
  }
  .globalnav .dropdown > div a + p {
    margin-top: 40px;
  }
  .globalnav .dropdown.on > div {
    right: 0;
    width: 100%;
  }
}
.nav_btn {
  color: #373737;
  position: fixed;
  right: 0;
  top: 5px;
  padding: 10px;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .nav_btn {
    display: none;
  }
}
.nav_btn::before {
  display: block;
  content: "MENU";
  font-size: 9px;
  margin-top: 71%;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.nav_btn span {
  position: absolute;
  height: 3px; /*線の太さ*/
  max-width: 30px; /*長さ*/
  width: 100%;
  background: #373737;
  display: block;
  content: "";
  cursor: pointer;
  left: 50%;
  top: 45%;
  margin-top: -5px;
  z-index: 999;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.nav_btn span::before, .nav_btn span::after {
  position: absolute;
  height: 3px; /*線の太さ*/
  width: 30px; /*長さ*/
  border-radius: 5px;
  background: inherit;
  display: block;
  content: "";
  cursor: pointer;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(0deg);
  transform: translate(-50%, 0) rotate(0deg);
}
.nav_btn span::before {
  top: -7px;
}
.nav_btn span::after {
  top: 7px;
}
.nav_btn span::before, .nav_btn span::after {
  opacity: 1;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body {
  height: auto;
  -ms-touch-action: auto;
      touch-action: auto;
  width: 100%;
}
body.open_menu {
  overflow: hidden;
  height: 100vh;
  max-height: calc(100vh - (env(safe-area-inset-bottom) + 60px));
  -webkit-touch-action: none;
  -moz-touch-action: none;
  -ms-touch-action: none;
  -o-touch-action: none;
  touch-action: none;
}
body.noscroll {
  position: fixed;
}

.open_menu .nav_area {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .open_menu .nav_area {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.open_menu #overlay {
  display: block;
  content: "";
  background: #437ab2;
  width: 100%;
  height: 100vh;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.open_menu .nav_btn::before {
  content: "CLOSE";
  color: #FFF;
  font-size: 8px;
}
.open_menu .nav_btn > span {
  z-index: 999;
  height: 0;
  background: #FFF;
}
.open_menu .nav_btn > span::before, .open_menu .nav_btn > span::after {
  width: 28px;
  right: 2px;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.open_menu .nav_btn > span::before {
  top: 4px;
  -webkit-transform: translate(-50%, -7px) rotate(-90deg);
  transform: translate(-50%, -7px) rotate(-45deg);
}
.open_menu .nav_btn > span::after {
  top: -9px;
  -webkit-transform: translate(-50%, 7px) rotate(90deg);
  transform: translate(-50%, 7px) rotate(45deg);
}

.btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .btn_area {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.btn_area a {
  margin: 0 5px 10px;
}
.btn_area.center a {
  margin: 0 auto 10px;
}
.btn_area.mt {
  margin-top: 40px;
}
.btn_area.right a {
  margin: 0 auto 10px;
}
@media screen and (min-width: 769px) {
  .btn_area.right a {
    margin: 0 5px 10px auto;
  }
  .btn_area.right a:last-child {
    margin: 0 0 10px auto;
  }
}

.btn {
  display: block;
  max-width: 370px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: 3px solid #437AB2;
  color: #437AB2;
  background: #FFF;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 15px;
  line-height: 1.4;
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .btn {
    font-size: 18px;
  }
}
.btn span {
  display: block;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .btn span {
    font-size: 14px;
  }
}
.btn:hover {
  color: #FFF;
  background: #437AB2;
  text-decoration: none;
}
.btn.radius {
  border-radius: 50px;
}
.btn.double:before {
  display: block;
  border: 1px solid #437AB2;
  border-radius: 5px;
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: -6px;
  left: -6px;
  height: calc(100% + 12px);
  width: calc(100% + 12px);
}
.btn.double:hover:before {
  background: #437AB2;
}
.btn.arrow {
  position: relative;
  padding-right: 30px;
}
.btn.arrow:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  display: block;
  content: "";
  width: 10px;
  height: 18px;
  margin-left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23437AB2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.arrow:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.red, .btn.blue, .btn.accent, .btn.primary {
  color: #FFF;
}
.btn.red:after, .btn.blue:after, .btn.accent:after, .btn.primary:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.red:hover, .btn.blue:hover, .btn.accent:hover, .btn.primary:hover {
  background: #FFF;
}
.btn.red {
  border: 3px solid #B22019;
  background: #B22019;
}
.btn.red:hover {
  color: #B22019;
}
.btn.red:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23B22019%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.blue {
  border: 3px solid #437AB2;
  background: #437AB2;
}
.btn.blue:hover {
  color: #437AB2;
}
.btn.blue:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23437AB2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.accent {
  border: 3px solid #437AB2;
  background: #437AB2;
}
.btn.accent:hover {
  color: #437AB2;
}
.btn.accent:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23437AB2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.primary {
  border: 3px solid #437AB2;
  background: #437AB2;
}
.btn.primary:hover {
  color: #437AB2;
}
.btn.primary:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23437AB2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}

.text_box.type_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.text_box.type_a .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_a .text {
    width: calc(50% - 10px);
  }
}
.text_box.type_a .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_a .img {
    width: calc(50% - 10px);
  }
}
.text_box.type_a .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_a_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.text_box.type_a_b .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_a_b .text {
    width: calc(50% - 10px);
  }
}
.text_box.type_a_b .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .text_box.type_a_b .img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 769px) {
  .text_box.type_a_b .img {
    width: calc(50% - 10px);
  }
}
.text_box.type_a_b .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.text_box.type_b .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_b .text {
    width: calc(60% - 10px);
  }
}
.text_box.type_b .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_b .img {
    width: calc(40% - 10px);
  }
}
.text_box.type_b .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.text_box.type_c .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_c .text {
    width: calc(70% - 10px);
  }
}
.text_box.type_c .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_c .img {
    width: calc(30% - 10px);
  }
}
.text_box.type_c .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box.type_e {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.text_box.type_e .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_e .text {
    width: calc(40% - 10px);
  }
}
.text_box.type_e .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box.type_e .img {
    width: calc(60% - 10px);
  }
}
.text_box.type_e .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .text_box .title {
    font-size: 20px;
  }
}
.text_box .title span {
  color: #437AB2;
}
@media screen and (min-width: 769px) {
  .text_box .img.fit img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    min-width: 100%;
    min-height: 100%;
  }
}
.text_box .text {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .text_box .text {
    margin-bottom: 0;
  }
}
.text_box + .text_box {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .text_box + .text_box {
    margin-top: 40px;
  }
}

.cv_area {
  padding: 20px 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .cv_area {
    padding: 20px;
  }
}
.cv_area .title01_a {
  font-size: 22px;
  margin-bottom: 35px;
  text-align: center;
}
.cv_area .title01_a span {
  color: #437AB2;
}

.info_box02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .info_box02 {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.info_box02 .tel_box {
  margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
  .info_box02 .tel_box {
    margin-right: 25px;
    margin-bottom: 0;
  }
}
.info_box02 > div {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .info_box02 > div {
    width: 48%;
  }
}
.info_box02 > div a {
  width: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 75px;
}
.info_box02 > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  background: #437AB2;
  height: 100%;
  width: 80px;
  top: -6px;
  left: -6px;
  z-index: 1;
}
.info_box02 .tel:before {
  display: none;
}
.info_box02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: #FFF;
  border: 2px solid #437AB2;
  border-radius: 0;
  color: #373737;
  font-size: 18px;
  font-weight: bold;
}
.info_box02 a span {
  display: block;
  font-size: 12px;
}
.info_box02 a:after {
  display: block;
  border: 2px solid #437AB2;
  content: "";
  position: absolute;
  z-index: -1;
  top: -6px;
  bottom: initial;
  right: initial;
  left: -6px;
  height: 100%;
  width: calc(100% + 5px);
}

.sidebar {
  padding: 0 5%;
}
@media screen and (min-width: 769px) {
  .sidebar {
    padding: 0;
  }
}
.sidebar .title01 {
  background: #437AB2;
}
.sidebar > div {
  margin-bottom: 30px;
  background: #F7F7F7;
}
.sidebar .arrow_lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 10px;
  color: #373737;
  border-bottom: 1px solid #EEE;
}
.sidebar .arrow_lists a:before {
  display: block;
  content: "";
  width: 10px;
  height: 18px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.632%22%20height%3D%2215.563%22%20viewBox%3D%220%200%209.632%2015.563%22%3E%3Cpath%20d%3D%22M2653.044%2C36.926l5.432%2C5.765-5.432%2C5.557%22%20transform%3D%22translate%28-2650.923%20-34.805%29%22%20fill%3D%22none%22%20stroke%3D%22%23437AB2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.sidebar .arrow_lists a:hover {
  color: #437AB2;
}
.sidebar .arrow_lists a:last-child {
  border-bottom: none;
}
.sidebar .icon_lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 10px;
  color: #373737;
  border-bottom: 1px solid #EEE;
}
.sidebar .icon_lists a span {
  display: block;
  margin-right: 10px;
  width: 28px;
}
.sidebar .icon_lists a p {
  width: calc(100% - 38px);
}
.sidebar .icon_lists a:hover img {
  opacity: 0.6;
}
.sidebar .bnr_box a {
  display: block;
}
.sidebar .contact_box,
.sidebar .area_box {
  padding: 15px 8px;
}
.sidebar .area_box {
  text-align: center;
}
.sidebar .area_box p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.sidebar .area_box span {
  display: inline-block;
  margin: 0 auto 5px;
  font-size: 12px;
  padding: 0 5px;
  border-bottom: 3px solid #437AB2;
}
.sidebar .area_box img {
  display: block;
  margin: auto;
}
.sidebar .contact_box .tel {
  text-align: center;
  border-bottom: 1px solid #EEE;
  padding: 0 0 15px;
}
@media screen and (min-width: 769px) {
  .sidebar .contact_box .tel:before {
    display: none;
  }
  .sidebar .contact_box .tel p {
    font-size: 25px;
  }
}
.sidebar .contact_box .mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 260px;
  height: 65px;
}
.sidebar .contact_box .mail:before {
  display: block;
  content: "";
  width: 36px;
  height: 28px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.818%22%20height%3D%2228.507%22%20viewBox%3D%220%200%2036.818%2028.507%22%3E%3Cpath%20d%3D%22M39.736%2C7.268H5.362A1.223%2C1.223%2C0%2C0%2C0%2C4.14%2C8.491v2.46a.418.418%2C0%2C0%2C0%2C.223.3l18.067%2C10.32a.306.306%2C0%2C0%2C0%2C.307%2C0L40.259%2C11.257c.1-.054.36-.2.458-.267.118-.081.24-.154.24-.3v-2.2a1.223%2C1.223%2C0%2C0%2C0-1.222-1.222Z%22%20transform%3D%22translate%28-4.14%20-7.268%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M34.309%2C12.843a.308.308%2C0%2C0%2C0-.308%2C0l-9.915%2C5.833a.3.3%2C0%2C0%2C0-.069.472L33.933%2C29.84a.305.305%2C0%2C0%2C0%2C.529-.209V13.107a.305.305%2C0%2C0%2C0-.153-.266Z%22%20transform%3D%22translate%282.356%20-5.452%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M27.61%2C18.725a.3.3%2C0%2C0%2C0-.379-.056l-3.974%2C2.339a1.55%2C1.55%2C0%2C0%2C1-1.534.011l-3.5-2a.305.305%2C0%2C0%2C0-.359.041L4.584%2C31.38a.305.305%2C0%2C0%2C0%2C.054.487%2C1.191%2C1.191%2C0%2C0%2C0%2C.608.179H39.269a.306.306%2C0%2C0%2C0%2C.224-.514Z%22%20transform%3D%22translate%28-4.026%20-3.54%29%22%20fill%3D%22%23437AB2%22%2F%3E%3Cpath%20d%3D%22M15.058%2C19.455A.305.305%2C0%2C0%2C0%2C15%2C18.966L4.6%2C13.023a.305.305%2C0%2C0%2C0-.456.266v15.6a.3.3%2C0%2C0%2C0%2C.513.223l10.405-9.653Z%22%20transform%3D%22translate%28-4.14%20-5.392%29%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fsvg%3E");
}

.three_columns {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 3%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .three_columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.three_columns > * {
  width: calc(33.3333333333% - 2%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .three_columns > * {
    width: calc(50% - 1.5%);
  }
}
@media screen and (max-width: 600px) {
  .three_columns > * {
    width: 100%;
  }
}
.three_columns > *:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .three_columns > *:nth-last-of-type(2) {
    margin-bottom: 0;
  }
  .three_columns > *:nth-last-of-type(3) {
    margin-bottom: 0;
  }
}

.two_columns {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 3%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .two_columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.two_columns > * {
  width: calc(50% - 1.5%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .two_columns > * {
    width: calc(50% - 1.5%);
  }
}
@media screen and (max-width: 600px) {
  .two_columns > * {
    width: 100%;
  }
}
.two_columns > *:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .two_columns > *:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}

.bg_box {
  background: #437AB2;
  color: #FFF;
  padding: 15px;
}

.faq_box {
  background: #FFF;
  padding: 25px;
  border-bottom: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq_box:before {
  content: "Q.";
  color: #437AB2;
  font-weight: bold;
  line-height: 0.5;
  margin-right: 10px;
  font-size: 30px;
}
@media screen and (min-width: 769px) {
  .faq_box:before {
    font-size: 50px;
  }
}
.faq_box .title {
  font-size: 20px;
  color: #437AB2;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .faq_box .title {
    font-size: 20px;
  }
}
.faq_box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq_box .content:before {
  display: inline-block;
  content: "A.";
}

.faq_copy {
  padding: 25px;
  background: #FFF;
  color: #437AB2;
  text-decoration: underline;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .faq_copy {
    font-size: 20px;
  }
}

.border_box_wrap {
  border: 2px solid #437AB2;
  border-radius: 5px;
  position: relative;
}
.border_box_wrap:after {
  display: block;
  border: 2px solid #437AB2;
  border-radius: inherit;
  content: "";
  position: absolute;
  z-index: 0;
  top: -8px;
  left: -8px;
  height: 100%;
  width: calc(100% + 6px);
}
.border_box_wrap + .border_box_wrap {
  margin-top: 30px;
}

.border_box_inner {
  position: relative;
  z-index: 1;
  background: #FFF;
}

.flow_lists {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  list-style: none;
  padding: 20px;
}
.flow_lists .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.flow_lists .flex_box .text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .flow_lists .flex_box .text {
    width: calc(100% - 105px);
  }
}
.flow_lists .flex_box .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .flow_lists .flex_box .img {
    width: calc(100px - 5px);
  }
}
.flow_lists .flex_box .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.flow_lists .flex_box .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow_lists li {
  padding: 25px;
  border-bottom: 3px dotted #437AB2;
}
.flow_lists li:last-child {
  border-bottom: none;
}
.flow_lists li .text > .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .flow_lists li .text > .title {
    font-size: 20px;
  }
}
.flow_lists li .text > .title:before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-size: 35px;
  margin-right: 8px;
  color: transparent;
  -webkit-text-stroke: 1px #437AB2;
}
@media screen and (min-width: 769px) {
  .flow_lists li .text > .title:before {
    font-size: 50px;
  }
}
.flow_lists li .content {
  font-size: 14px;
}
.flow_lists .flow_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}
@media screen and (min-width: 769px) {
  .flow_lists .flow_info {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.flow_lists .flow_info a {
  max-width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .flow_lists .flow_info a {
    max-width: 260px;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .flow_lists .flow_info a:last-child {
    margin-right: 0;
  }
}
.flow_lists .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .flow_lists .flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.red {
  color: #B22019;
  font-weight: bold;
}

.gray_box {
  background: #F4F4F4;
  padding: 10px;
  margin: 10px 0 30px;
}

.accent_box {
  background: #437AB2;
  padding: 20px;
  color: #FFF;
}
.accent_box .copy {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFF;
}
.accent_box .donw {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .accent_box .donw {
    margin-top: 0;
  }
}

.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-bottom: 0;
}
.note:before {
  content: "※";
}
.note.red {
  color: #B22019;
  font-weight: bold;
}
.note + .note {
  margin-top: 5px;
}

table {
  width: 100%;
}
table tbody th,
table tbody td {
  border: 1px solid #EEE;
  padding: 10px 15px;
  font-size: 14px;
  text-align: left;
}
table tbody th {
  background: #F4F4F4;
  text-align: left;
}
table tbody th span {
  font-size: 12px;
  display: inline-block;
}
.plan_area {
  border: 3px solid #437AB2;
  position: relative;
  background: #F7F7F7;
  background-size: cover;
  border-radius: 5px;
  padding-top: 10px;
}

.plan_box {
  position: relative;
  padding: 10px 10px 0;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .plan_box {
    margin-top: 40px;
  }
}
.plan_box .plan_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.plan_box .plan_lists p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 49%;
  background: #FFF;
  padding: 15px 5px;
  font-weight: bold;
  margin-bottom: 10px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  .plan_box .plan_lists p {
    width: 32%;
  }
}
.plan_box .plan_lists p:last-child {
  font-size: 12px;
  color: #373737;
  background: none;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 769px) {
  .plan_box .plan_lists p:last-child {
    width: 32%;
  }
}
.plan_box .copy {
  background: #437AB2;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 0;
  color: #FFF;
  height: 30px;
  padding: 2px 15px;
}
.plan_box .copy:before {
  position: absolute;
  right: -20px;
  top: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 20px;
  border-color: transparent transparent transparent #437AB2;
}
.plan_box > .star {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 12px;
  height: 30px;
  width: calc(100% - 94px);
}
.plan_box .star:before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.519%22%20height%3D%2214.824%22%20viewBox%3D%220%200%2015.519%2014.824%22%3E%3Cpath%20d%3D%22M12.433%2C15.63l-4.75-3.483L2.842%2C15.5%2C4.686%2C9.907%2C0%2C6.34l5.89.026L7.835.806l1.8%2C5.61%2C5.889.132-4.78%2C3.441Z%22%20transform%3D%22translate%280%20-0.806%29%22%20fill%3D%22%23437AB2%22%2F%3E%3C%2Fsvg%3E");
}

#area .text_box .img {
  background: #F4F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}/*# sourceMappingURL=common.css.map */