@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: #053559;
}
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: 1080px;
  }
}
@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: 429px) {
  .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;
}

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


装飾


******************************************/
.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: #053559;
}
.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%, #053559));
  background: linear-gradient(transparent 65%, #053559 0%);
  display: inline;
  font-weight: bold;
}
.marker.thick {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #053559));
  background: linear-gradient(transparent 60%, #053559 0%);
  display: inline;
}
.marker.thin {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #053559));
  background: linear-gradient(transparent 80%, #053559 0%);
  display: inline;
}
.marker.gradation {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(60%, #053559));
  background: linear-gradient(transparent 0, #053559 60%);
}

/********************************************************************************リスト系 *****/
.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 {
  background: #053559;
  color: #FFF;
  padding: 10px 10px 15px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
}
.title01:before {
  content: "";
  width: 100%;
  background: #FFF;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 5px;
}
.title01 span {
  font-size: 36px;
}
.title01 + p {
  margin-top: 20px;
  margin-bottom: 30px;
}
.title01 + div {
  margin-top: -20px;
}
.title01 + .box_wrap {
  margin-top: -20px;
}

.title02 {
  color: #053559;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.title02 + p {
  margin-top: -15px;
  margin-bottom: 30px;
}

.title03 {
  border-left: 3px solid #053559;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.title {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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


共通部分


******************************************/
.mainff {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "ＭＳ Ｐ明朝", sans-serif;
}

body {
  background: #F4EFE4;
}

.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: 40px auto 0;
}
.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: 4px 0 10px;
  min-height: 50px;
  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;
}
@media screen and (min-width: 769px) {
  .header_area {
    padding: 8px 0 8px;
  }
}
.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 .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.header_area .logo_area {
  max-width: 80px;
}
@media screen and (min-width: 769px) {
  .header_area .logo_area {
    max-width: 220px;
  }
}
.header_area .logo_area a {
  display: block;
}
.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 .info_box a {
  min-height: 45px;
}

:is(.header_area, .nav_area) .info_box a {
  background: #053559;
  border-radius: 0;
  padding: 6px 15px 10px;
  color: #FFF;
  border-radius: 30px;
  position: relative;
}
:is(.header_area, .nav_area) .info_box a.mail {
  border: #053559;
  background: #053559;
}
@media screen and (min-width: 769px) {
  :is(.header_area, .nav_area) .info_box a.mail {
    padding: 4px 25px;
    height: 55px;
    font-size: 14px;
  }
}
:is(.header_area, .nav_area) .info_box a.mail:before {
  width: 20px;
}
:is(.header_area, .nav_area) .info_box a.mail:hover {
  opacity: 0.8;
}
:is(.header_area, .nav_area) .info_box a.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%3Cg%20transform%3D%22translate%28-231%20-1636%29%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%28226.86%201628.732%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%28233.356%201630.548%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%28226.974%201632.46%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%28226.86%201630.608%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
:is(.header_area, .nav_area) .info_box a.tel_btn02 {
  font-size: 26px;
  color: #053559;
  border: none;
  background: none;
}
:is(.header_area, .nav_area) .info_box a.tel_btn02:before {
  content: "";
  width: 45px;
  display: block;
  margin-right: 10px;
  background: url(../img/icon/tel02.svg) no-repeat center center/contain;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
:is(.header_area, .nav_area) .info_box a.tel_btn02:after {
  display: none;
}
:is(.header_area, .nav_area) .info_box a.tel_btn02 p span {
  font-size: 10px;
}

.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: 20px;
    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 {
  content: "";
  display: block;
  margin-right: 10px;
  width: 45px;
  background: url(../img/icon/tel.svg) no-repeat center center/contain;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.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);
}

.box02,
.edit,
.donw,
.fax,
.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: #053559;
  border: 1px solid #053559;
  padding: 10px 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 260px;
  min-height: 48px;
  line-height: 1.2;
}
.box02:hover,
.edit:hover,
.donw:hover,
.fax:hover,
.mail:hover {
  color: #053559;
  background: #FFF;
  text-decoration: none;
}

.mail {
  background: #F9B535;
  border: 1px solid #F9B535;
}
.mail:hover {
  color: #F9B535;
}
.mail:before {
  display: block;
  content: "";
  width: 34px;
  aspect-ratio: 36/28;
  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%3Cg%20transform%3D%22translate%28-231%20-1636%29%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%28226.86%201628.732%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%28233.356%201630.548%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%28226.974%201632.46%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%28226.86%201630.608%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.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%3Cg%20transform%3D%22translate%28-231%20-1636%29%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%28226.86%201628.732%29%22%20fill%3D%22%23F9B535%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%28233.356%201630.548%29%22%20fill%3D%22%23F9B535%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%28226.974%201632.46%29%22%20fill%3D%22%23F9B535%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%28226.86%201630.608%29%22%20fill%3D%22%23F9B535%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.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");
}
.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%23053559%22%2F%3E%3C%2Fsvg%3E");
}

.donw {
  background: #F9B535;
  border-color: #F9B535;
}
.donw:hover {
  color: #F9B535;
}
.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");
}
.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%23F9B535%22%2F%3E%3C%2Fsvg%3E");
}

.edit {
  background: #F9B535;
  border-color: #F9B535;
}
.edit:hover {
  color: #F9B535;
}
.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");
}
.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%23053559%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%23053559%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.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");
}
.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%23053559%22%2F%3E%3C%2Fsvg%3E");
}

.footer_area .footer_nav_area {
  background: #053559;
  color: #FFF;
  padding: 30px 0;
}
.footer_area .footer_nav_area .outline {
  gap: 35px 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_area .footer_nav_area .outline,
.footer_area .footer_nav_area .footer_nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 .outline,
  .footer_area .footer_nav_area .footer_nav_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer_area .footer_nav_area .footer_logo {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_logo {
    width: 250px;
  }
}
.footer_area .footer_nav_area .footer_logo .logo {
  display: block;
  width: 200px;
  margin-bottom: 15px;
}
.footer_area .footer_nav_area .footer_logo .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .footer_nav_wrap {
    width: calc(100% - 270px);
  }
}
.footer_area .footer_nav_area .title {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .footer_area .footer_nav_area .title {
    width: 150px;
    text-align: left;
    margin-bottom: 0;
  }
}
.footer_area .copy_area {
  padding: 30px 0;
  text-align: center;
}
.footer_area .sns_box {
  margin-top: 20px;
}
.footer_area .sns_box a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer_area .arrow_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer_area .arrow_lists {
    width: calc(100% - 150px);
  }
}
.footer_area .arrow_lists 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;
  width: 48%;
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 14px;
  color: #FFF;
}
@media screen and (min-width: 769px) {
  .footer_area .arrow_lists a {
    padding: 0;
    width: 170px;
  }
}
.footer_area .arrow_lists a:before {
  display: block;
  content: "●";
  margin-right: 10px;
  color: #FFF;
  font-size: 11px;
}
.footer_area .arrow_lists a:hover {
  color: #FFF;
  text-decoration: none;
}

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

@media screen and (min-width: 769px) {
  .nav_area {
    display: none !important;
    background: #053559;
    font-size: 0.875rem;
  }
  .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: #fff;
    display: block;
    padding: 15px 5px;
  }
  .nav_area .globalnav a.logo {
    display: none;
  }
  .nav_area .globalnav a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  .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 .btn_area {
    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;
    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;
  }
  .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: #053559;
  }
  .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;
    margin-right: 8px;
    font-weight: bold;
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 20/32;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2231.235%22%20viewBox%3D%220%200%2020%2031.235%22%3E%3Cg%20transform%3D%22translate%28-92.084%29%22%3E%3Cpath%20d%3D%22M96.466%2C0%2C92.084%2C4.382%2C103.32%2C15.618%2C92.084%2C26.854l4.382%2C4.382%2C15.618-15.618Z%22%20transform%3D%22translate%280%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .globalnav > a:hover,
  .globalnav .dropdown a:hover,
  .globalnav .close:hover {
    color: #FFF;
    text-decoration: none;
  }
  .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: "";
    display: block;
    width: 8px;
    aspect-ratio: 20/32;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2231.235%22%20viewBox%3D%220%200%2020%2031.235%22%3E%3Cg%20transform%3D%22translate%28-92.084%29%22%3E%3Cpath%20d%3D%22M96.466%2C0%2C92.084%2C4.382%2C103.32%2C15.618%2C92.084%2C26.854l4.382%2C4.382%2C15.618-15.618Z%22%20transform%3D%22translate%280%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .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: #053559;
  }
  .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: "";
    display: block;
    width: 8px;
    aspect-ratio: 20/32;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2231.235%22%20viewBox%3D%220%200%2020%2031.235%22%3E%3Cg%20transform%3D%22translate%28-92.084%29%22%3E%3Cpath%20d%3D%22M96.466%2C0%2C92.084%2C4.382%2C103.32%2C15.618%2C92.084%2C26.854l4.382%2C4.382%2C15.618-15.618Z%22%20transform%3D%22translate%280%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .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%;
  }
  .hamburger_box {
    width: 100%;
    padding: 30px 0;
  }
  .hamburger_box .sns_box {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hamburger_box .sns_box a {
    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;
    width: 48px;
    height: 48px;
  }
  .hamburger_box .sns_box a img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .hamburger_box .info_box {
    padding: 20px 15px;
    background: #FFF;
    margin-top: 50px;
    width: 100%;
  }
  .hamburger_box .info_box a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 60px;
    width: 96%;
    max-width: 100%;
  }
}
.nav_btn {
  background: #053559;
  color: #FFF;
  position: fixed;
  right: 0;
  top: 0;
  padding: 10px;
  width: 50px;
  height: 50px;
  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: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.nav_btn span {
  position: absolute;
  height: 3px; /*線の太さ*/
  max-width: 30px; /*長さ*/
  width: 100%;
  background: #FFF;
  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: #053559;
  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 #053559;
  color: #053559;
  background: #FFF;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .btn {
    font-size: 16px;
  }
}
.btn:hover {
  color: #FFF;
  background: #053559;
  text-decoration: none;
}
.btn.radius {
  border-radius: 50px;
}
.btn.arrow {
  position: relative;
}
.btn.arrow:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  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%23053559%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.blue, .btn.blue_light {
  color: #FFF;
}
.btn.blue:after, .btn.blue_light: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.blue:hover, .btn.blue_light:hover {
  background: #FFF;
}
.btn.blue {
  border: 3px solid #053559;
  background: #053559;
}
.btn.blue:hover {
  color: #053559;
}
.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%23053559%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.btn.blue_light {
  border: 3px solid #053559;
  background: #053559;
}
.btn.blue_light:hover {
  color: #053559;
}
.btn.blue_light: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%2329abe2%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}

.text_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;
}
@media screen and (min-width: 769px) {
  .text_box {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.text_box .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .text_box .text {
    width: calc(100% - 50%);
  }
}
@media screen and (max-width: 768px) {
  .text_box .text {
    margin-bottom: 40px;
  }
}
.text_box .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .text_box .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 769px) {
  .text_box .img {
    width: calc(50% - 40px);
  }
}
.text_box .img img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
}
.text_box .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.text_box .title span {
  color: #053559;
}
@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;
  }
}

.items_lists {
  padding-left: 0;
  list-style: none;
  background: #053559;
  padding: 15px 15px 5px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .items_lists {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.items_lists > * {
  width: calc(33.3333333333% - 6.6666666667px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .items_lists > * {
    width: calc(50% - 6.6666666667px);
  }
}
@media screen and (min-width: 769px) {
  .items_lists::after {
    content: "";
    display: block;
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
.items_lists li {
  background: #FFF;
  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;
  font-weight: bold;
  font-size: 14px;
  padding: 5px;
}
@media screen and (min-width: 769px) {
  .items_lists li {
    font-size: 16px;
  }
}
.items_lists li figure {
  display: block;
  margin-right: 8px;
}

.works_lists {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .works_lists {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.works_lists > * {
  width: calc(33.3333333333% - 6.6666666667px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .works_lists > * {
    width: calc(50% - 6.6666666667px);
  }
}
@media screen and (min-width: 769px) {
  .works_lists::after {
    content: "";
    display: block;
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
.works_lists li {
  padding: 15px 0;
  background: #FFF;
  text-align: center;
}
.works_lists li div {
  padding: 15px 5px 0;
}
@media screen and (min-width: 769px) {
  .works_lists li div {
    padding: 15px 15px 0;
  }
}
.works_lists li div p {
  font-size: 14px;
}
.works_lists li div span {
  font-weight: bold;
  color: #F9B535;
}

.reason_lists {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .reason_lists {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.reason_lists > * {
  width: calc(50% - 5px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .reason_lists > * {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 428px) {
  .reason_lists > * {
    width: 100%;
  }
}
.reason_lists li {
  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;
  background: #053559;
}
.reason_lists li img {
  max-width: 108px;
}
.reason_lists li div {
  padding: 15px;
  color: #FFF;
}
.reason_lists li div span {
  font-size: 20px;
  font-weight: bold;
}

.cv_area {
  border: 2px solid #053559;
  background: #FFF;
  padding: 20px;
  margin-bottom: 40px;
  -webkit-box-shadow: 1px 1px 8px rgba(55, 55, 55, 0.1);
          box-shadow: 1px 1px 8px rgba(55, 55, 55, 0.1);
}
.cv_area .title {
  color: #053559;
  font-size: 20px;
  margin-bottom: 25px;
  text-align: center;
}
.cv_area .info_box > div {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .cv_area .info_box > div {
    width: 48%;
  }
}
.cv_area .info_box > div a {
  width: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 75px;
}
.cv_area .info_box .tel {
  border: 2px solid #053559;
}
.cv_area .info_box .mail {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
}
.cv_area .info_box .mail:after {
  display: block;
  content: "";
  width: 10px;
  height: 16px;
  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%23FFF%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
.cv_area .info_box .mail: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%23F9B535%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}

.sidebar {
  padding: 0 5%;
}
@media screen and (min-width: 769px) {
  .sidebar {
    padding: 0;
  }
}
.sidebar > div {
  margin-bottom: 30px;
}
.sidebar .title01 {
  border-radius: 0;
}
.sidebar .arrow_lists a {
  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;
  padding: 15px 10px;
  background: #FFF;
  color: #373737;
  border-bottom: 1px solid #EEE;
}
.sidebar .arrow_lists a:after {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  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%2217%22%20height%3D%2217%22%20viewBox%3D%220%200%2017%2017%22%3E%3Cg%20transform%3D%22translate%28-176%20-555%29%22%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%228.5%22%20r%3D%228.5%22%20transform%3D%22translate%28176%20555%29%22%20fill%3D%22%23053559%22%2F%3E%3Cpath%20d%3D%22M2653.374%2C43.149l-.659-.752%2C2.852-2.5-2.859-2.6a.5.5%2C0%2C1%2C1%2C.673-.74l3.687%2C3.354-.421.369Z%22%20transform%3D%22translate%28-2469.544%20523.651%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.sidebar .arrow_lists a:hover {
  color: #053559;
}
.sidebar .arrow_lists a:last-child {
  border-bottom: none;
}

.side_contact .title {
  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;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  background: #053559;
}
@media screen and (min-width: 769px) {
  .side_contact .title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.side_contact .title:before {
  display: block;
  content: "";
  width: 38px;
  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");
}
.side_contact .title span {
  font-size: 12px;
  display: block;
}
.side_contact .side_box {
  background: #FFF;
  padding: 15px;
}
.side_contact a {
  width: 100%;
  max-width: 100%;
  border-radius: 50px;
}
.side_contact a + a {
  margin-top: 8px;
}

.truck {
  border: 3px solid #053559;
  color: #053559;
}
.truck:before {
  width: 38px;
  height: 38px;
  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%2229.333%22%20viewBox%3D%220%200%2036%2029.333%22%3E%3Cpath%20d%3D%22M12%2C24a2.7%2C2.7%2C0%2C0%2C0-2.667-2.667%2C2.667%2C2.667%2C0%2C1%2C0%2C1.875%2C4.542A2.563%2C2.563%2C0%2C0%2C0%2C12%2C24ZM4%2C13.332h8V8H8.708a.621.621%2C0%2C0%2C0-.458.188L4.188%2C12.249A.623.623%2C0%2C0%2C0%2C4%2C12.707ZM30.665%2C24a2.7%2C2.7%2C0%2C1%2C0-.792%2C1.875A2.563%2C2.563%2C0%2C0%2C0%2C30.665%2C24ZM36%2C1.333V22.665a1.68%2C1.68%2C0%2C0%2C1-.083.552.787.787%2C0%2C0%2C1-.281.385q-.2.146-.344.24a1.142%2C1.142%2C0%2C0%2C1-.49.125l-.469.042q-.125.011-.531%2C0T33.331%2C24a5.333%2C5.333%2C0%2C0%2C1-9.1%2C3.771A5.139%2C5.139%2C0%2C0%2C1%2C22.664%2C24h-8A5.139%2C5.139%2C0%2C0%2C1%2C13.1%2C27.769a5.139%2C5.139%2C0%2C0%2C1-3.771%2C1.563%2C5.139%2C5.139%2C0%2C0%2C1-3.771-1.563A5.139%2C5.139%2C0%2C0%2C1%2C4%2C24H2.666l-.469.01q-.406.01-.531%2C0L1.2%2C23.967a1.162%2C1.162%2C0%2C0%2C1-.49-.125q-.146-.093-.344-.24a.788.788%2C0%2C0%2C1-.28-.384A1.7%2C1.7%2C0%2C0%2C1%2C0%2C22.666a1.282%2C1.282%2C0%2C0%2C1%2C.4-.938%2C1.282%2C1.282%2C0%2C0%2C1%2C.938-.4V14.666q0-.167-.01-.729t0-.792q.01-.23.052-.719a3.52%2C3.52%2C0%2C0%2C1%2C.135-.771A3.651%2C3.651%2C0%2C0%2C1%2C1.8%2C11.02a2.909%2C2.909%2C0%2C0%2C1%2C.469-.625L6.4%2C6.271A3.188%2C3.188%2C0%2C0%2C1%2C7.449%2C5.6a3.21%2C3.21%2C0%2C0%2C1%2C1.219-.271H12v-4a1.282%2C1.282%2C0%2C0%2C1%2C.4-.938%2C1.282%2C1.282%2C0%2C0%2C1%2C.938-.4H34.666a1.282%2C1.282%2C0%2C0%2C1%2C.938.4%2C1.282%2C1.282%2C0%2C0%2C1%2C.4.938Z%22%20transform%3D%22translate%280%200.001%29%22%20fill%3D%22%23053559%22%2F%3E%3C%2Fsvg%3E");
}
.truck:hover {
  background: #053559;
}
.truck: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%2229.333%22%20viewBox%3D%220%200%2036%2029.333%22%3E%3Cpath%20d%3D%22M12%2C24a2.7%2C2.7%2C0%2C0%2C0-2.667-2.667%2C2.667%2C2.667%2C0%2C1%2C0%2C1.875%2C4.542A2.563%2C2.563%2C0%2C0%2C0%2C12%2C24ZM4%2C13.332h8V8H8.708a.621.621%2C0%2C0%2C0-.458.188L4.188%2C12.249A.623.623%2C0%2C0%2C0%2C4%2C12.707ZM30.665%2C24a2.7%2C2.7%2C0%2C1%2C0-.792%2C1.875A2.563%2C2.563%2C0%2C0%2C0%2C30.665%2C24ZM36%2C1.333V22.665a1.68%2C1.68%2C0%2C0%2C1-.083.552.787.787%2C0%2C0%2C1-.281.385q-.2.146-.344.24a1.142%2C1.142%2C0%2C0%2C1-.49.125l-.469.042q-.125.011-.531%2C0T33.331%2C24a5.333%2C5.333%2C0%2C0%2C1-9.1%2C3.771A5.139%2C5.139%2C0%2C0%2C1%2C22.664%2C24h-8A5.139%2C5.139%2C0%2C0%2C1%2C13.1%2C27.769a5.139%2C5.139%2C0%2C0%2C1-3.771%2C1.563%2C5.139%2C5.139%2C0%2C0%2C1-3.771-1.563A5.139%2C5.139%2C0%2C0%2C1%2C4%2C24H2.666l-.469.01q-.406.01-.531%2C0L1.2%2C23.967a1.162%2C1.162%2C0%2C0%2C1-.49-.125q-.146-.093-.344-.24a.788.788%2C0%2C0%2C1-.28-.384A1.7%2C1.7%2C0%2C0%2C1%2C0%2C22.666a1.282%2C1.282%2C0%2C0%2C1%2C.4-.938%2C1.282%2C1.282%2C0%2C0%2C1%2C.938-.4V14.666q0-.167-.01-.729t0-.792q.01-.23.052-.719a3.52%2C3.52%2C0%2C0%2C1%2C.135-.771A3.651%2C3.651%2C0%2C0%2C1%2C1.8%2C11.02a2.909%2C2.909%2C0%2C0%2C1%2C.469-.625L6.4%2C6.271A3.188%2C3.188%2C0%2C0%2C1%2C7.449%2C5.6a3.21%2C3.21%2C0%2C0%2C1%2C1.219-.271H12v-4a1.282%2C1.282%2C0%2C0%2C1%2C.4-.938%2C1.282%2C1.282%2C0%2C0%2C1%2C.938-.4H34.666a1.282%2C1.282%2C0%2C0%2C1%2C.938.4%2C1.282%2C1.282%2C0%2C0%2C1%2C.4.938Z%22%20transform%3D%22translate%280%200.001%29%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E");
}

.search,
.box {
  border: 3px solid #053559;
  color: #053559;
}
.search:hover,
.box:hover {
  background: #053559;
}

.box:before {
  width: 30px;
  height: 35px;
  background-image: url(../img/icon/box02.svg);
}

.search:before {
  width: 26px;
  height: 35px;
  background-image: url(../img/icon/search.svg);
}

.side_btn a {
  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;
  padding: 10px 5px;
  border-radius: 5px;
  width: 100%;
  background: #FFF;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .side_btn a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.side_btn a span {
  font-size: 12px;
  display: block;
}
.side_btn a:hover {
  color: #FFF;
  text-decoration: none;
}
.side_btn a:before {
  display: block;
  content: "";
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.side_btn a + a {
  margin-top: 15px;
}
.side_btn a.delivery_btn, .side_btn a.trip_btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-size: contain;
  color: #F9B535;
  border: 1px solid #053559;
  padding-left: 70px;
  font-size: 18px;
  font-weight: bold;
  background-repeat: no-repeat;
}
.side_btn a.delivery_btn:before, .side_btn a.trip_btn:before {
  display: none;
}
.side_btn a.delivery_btn:hover, .side_btn a.trip_btn:hover {
  border: 1px solid #053559;
}
.side_btn a.delivery_btn {
  background-image: url(../img/common/side_btn01.png);
}
.side_btn a.trip_btn {
  background-image: url(../img/common/side_btn02.png);
}

.sub_main {
  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%;
  min-height: 80px;
  padding: 15px;
  margin-bottom: 30px;
  color: #FFF;
  position: relative;
  background-image: url(../img/guide_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 10px solid #053559;
}
@media screen and (min-width: 769px) {
  .sub_main {
    padding: 20px 20px;
  }
}
.sub_main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(55, 55, 55, 0.3);
  width: 100%;
  height: 100%;
}
.sub_main .title {
  font-size: 24px;
  text-shadow: 1px 1px 1px rgba(55, 55, 55, 0.4);
  position: relative;
  z-index: 2;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .sub_main .title {
    font-size: 28px;
  }
}

.point_lists {
  list-style: none;
  padding-left: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.point_lists li {
  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;
  color: #053559;
  font-weight: bold;
  font-size: 18px;
}
.point_lists li:before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  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%2219.432%22%20height%3D%2214.429%22%20viewBox%3D%220%200%2019.432%2014.429%22%3E%3Cpath%20d%3D%22M22.832-11.064a2.189%2C2.189%2C0%2C0%2C0-1.011-.625%2C2.343%2C2.343%2C0%2C0%2C0-1.172-.034%2C2.222%2C2.222%2C0%2C0%2C0-1.05.562L10.781-2.852%2C7.939-5.771a2.212%2C2.212%2C0%2C0%2C0-1.021-.605%2C2.323%2C2.323%2C0%2C0%2C0-1.167-.015%2C2.259%2C2.259%2C0%2C0%2C0-1.045.581A2.211%2C2.211%2C0%2C0%2C0%2C4.1-4.785a2.343%2C2.343%2C0%2C0%2C0-.015%2C1.172%2C2.2%2C2.2%2C0%2C0%2C0%2C.581%2C1.035l4.4%2C4.531a2.2%2C2.2%2C0%2C0%2C0%2C1.592.693%2C2.212%2C2.212%2C0%2C0%2C0%2C1.621-.625L22.734-7.832a2.188%2C2.188%2C0%2C0%2C0%2C.625-1.011%2C2.343%2C2.343%2C0%2C0%2C0%2C.034-1.172A2.222%2C2.222%2C0%2C0%2C0%2C22.832-11.064Z%22%20transform%3D%22translate%28-4.02%2011.782%29%22%20fill%3D%22%23785dc8%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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@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: 429px) and (max-width: 768px) {
  .three_columns > * {
    width: calc(50% - 2%);
  }
}
@media screen and (max-width: 428px) {
  .three_columns > * {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .three_columns::after {
    content: "";
    display: block;
    width: calc(33.3333333333% - 2%);
  }
}
.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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@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: 429px) and (max-width: 768px) {
  .two_columns > * {
    width: calc(50% - 3%);
  }
}
@media screen and (max-width: 428px) {
  .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: #053559;
  color: #FFF;
  padding: 15px;
}

.faq_box {
  background: #FFF;
  padding: 25px;
  border-bottom: 1px solid #EEE;
  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: #053559;
  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: #053559;
  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: #F9B535;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .faq_copy {
    font-size: 20px;
  }
}

.flow_lists {
  margin-top: -30px;
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  list-style: none;
}
.flow_lists li {
  background: #FFF;
  padding: 25px;
  border-bottom: 1px solid #EEE;
}
.flow_lists li .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;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .flow_lists li .title {
    font-size: 20px;
  }
}
.flow_lists li .title:before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-size: 35px;
  margin-right: 8px;
  color: #053559;
}
@media screen and (min-width: 769px) {
  .flow_lists li .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;
  }
}

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

.accent_box {
  background: #053559;
  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;
}
.note:before {
  content: "※";
}
.note.red {
  color: #B22019;
  font-weight: bold;
}

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

.howto_list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 3%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .howto_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.howto_list > * {
  width: calc(50% - 1.5%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .howto_list > * {
    width: calc(50% - 3%);
  }
}
@media screen and (max-width: 428px) {
  .howto_list > * {
    width: 100%;
  }
}
.howto_list > * {
  background: #FFF;
  overflow: hidden;
}
.howto_list > * .content {
  background: #FFF;
  padding: 15px;
}
.howto_list > * .title_wrap {
  margin-bottom: 15px;
  font-weight: bold;
}
.howto_list > * .title_wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: centerl;
      align-content: centerl;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 23px;
  margin-bottom: 8px;
  color: #053559;
}
.howto_list > * .title_wrap .title:before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-size: 50px;
  margin-right: 8px;
}
.howto_list > * .title_wrap p {
  font-size: 20px;
}
.howto_list > *:nth-last-of-type(1) {
  margin-bottom: 0;
}
.howto_list > *:nth-of-type(2) .title {
  color: #F9B535;
}
.howto_list > *:nth-of-type(2) .btn {
  background: #F9B535;
  border-color: #F9B535;
}
.howto_list > *:nth-of-type(2) .btn:hover {
  background: #FFF;
  color: #F9B535;
}
.howto_list > *:nth-of-type(2) .btn: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%23F9B535%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (min-width: 769px) {
  .howto_list > *:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}

.sns_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.sns_box a {
  display: block;
}/*# sourceMappingURL=common.css.map */