@charset "UTF-8";
/*!
Theme Name: corellc
Description: ＣＯＲＥ合同会社
Theme URI: https://www.corellc.co.jp
Version: 1.0
License: corellc
License https://www.corellc.co.jp
*/
/****************************************

リセットCSSここから

*****************************************/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

共通変数

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

メディアクエリ/レスポンシブ用mixin

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

フォント

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

アニメーション系

*****************************************/
/* ホバー下線表示（左から） */
/* ホバー下線表示（左から,複数行） */
/* ホバー下線消える（左から,複数行） */
/* ホバー下線消える（左から） */
/****************************************

body設定(主に書式)

*****************************************/
body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku gothic ProN", "ＭＳ Ｐゴシック", "MS Pmincho", sans-serif;
  color: #333;
  background: #fff;
  line-height: 2;
  letter-spacing: 0.05em;
  min-width: 1240px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  float: none;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}
/****************************************
フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.6rem;
}

h1 {
  font-weight: bold;
  font-size: 2.7rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.4em;
  font-weight: bold;
}

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

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.6rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link, a:visited {
  font-weight: normal;
  color: #333;
  text-decoration: underline;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover, a:active {
  font-weight: normal;
  color: #B78E00;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover img.img_opacity {
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a img.img_opacity {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover img.img_up {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
a img.img_up {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

a.tellink {
  text-decoration: none;
}

a.linkline {
  color: #333;
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(51, 51, 51, 0.5)), to(rgba(51, 51, 51, 0.5)));
  background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5)); /* 線の色 */
  background-repeat: no-repeat;
  background-position: right bottom; /* 線の起点を左・下に設定 */
  background-size: 100% 1px; /* 線の横幅を100%にする */
  -webkit-transition: background-size 0.9s;
  transition: background-size 0.9s; /* 線を伸ばすアニメーション実行時間を指定（0.9秒かけて線の横幅を0から100%にする） */
  padding-bottom: 0.1em;
}
a.linkline:hover {
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
}

a.linkline_white {
  color: #FFF;
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5)));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)); /* 線の色 */
  background-repeat: no-repeat;
  background-position: right bottom; /* 線の起点を左・下に設定 */
  background-size: 100% 1px; /* 線の横幅を100%にする */
  -webkit-transition: background-size 0.9s;
  transition: background-size 0.9s; /* 線を伸ばすアニメーション実行時間を指定（0.9秒かけて線の横幅を0から100%にする） */
  padding-bottom: 0.1em;
}
a.linkline_white:hover {
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
}

/* PCのの場合は電話番号のリンク無効 */
@media screen and (min-width: 768px) {
  a.tellink {
    pointer-events: none;
  }
}
/****************************************

pcヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_navi {
    display: none;
  }
  header {
    position: relative;
    margin: 0 auto 0;
    background: linear-gradient(to bottom, transparent 200px, #123061 200px, #123061) no-repeat;
    background-size: 89.6% 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  header.page_header {
    background-size: 99% 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .header_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_top .logo {
    margin: 10px 2.6% 0px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .header_top .logo {
    margin: 10px 1.5% 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .header_top .logo a {
    display: block;
  }
  .header_top .logo img {
    width: 100%;
    height: auto;
  }
  .header_top .header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header_top .header_info {
    width: 7.29%;
    min-width: 125px;
    z-index: 99;
    background: -webkit-gradient(linear, left top, left bottom, from(#1F53A9), color-stop(50%, #123061), color-stop(70%, #1F53A9), to(#123061));
    background: linear-gradient(to bottom, #1F53A9 0%, #123061 50%, #1F53A9 70%, #123061 100%);
    background-position: 50% 0%;
    background-size: auto 200%;
    /* 2つ目 */
  }
  .header_top .header_info.form_head {
    background: -webkit-gradient(linear, left top, left bottom, from(#D9A800), color-stop(50%, #B78F00), color-stop(70%, #D9A800), to(#B78F00));
    background: linear-gradient(to bottom, #D9A800 0%, #B78F00 50%, #D9A800 70%, #B78F00 100%);
    background-position: 50% 0%;
    background-size: auto 200%;
  }
  .header_top .header_info.form_head a.contact_btn_head:before {
    background: url(images/icon_form.png) no-repeat;
    width: 25px;
    height: 28px;
    margin-bottom: 10px;
  }
  .header_top .header_info:hover {
    background-position: 50% 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  a.contact_btn_head {
    text-decoration: none;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.56;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    word-break: keep-all;
    height: 140px;
    width: 100%;
  }
  a.contact_btn_head:before {
    content: "";
    background: url(images/icon_mail.png) no-repeat;
    width: 28px;
    height: 20px;
    margin-bottom: 12px;
  }
  .header_txt {
    margin-right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_txt p {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-right: 20px;
  }
  .header_txt a.contact_tel {
    line-height: 1;
  }
  a.contact_tel {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding-left: 30px;
    background: url(images/icon_header_tel.png) center left no-repeat;
    background-size: 21px 23px;
    word-break: keep-all;
    font-family: "Barlow", sans-serif;
  }
}
@media print, screen and (min-width: 768px) {
  /* スクロール */
  .scroll a {
    display: inline-block;
    position: absolute;
    left: 2.3%;
    bottom: 0;
    z-index: 2;
    padding: 0px 5px 115px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: normal;
    font-family: "Barlow", sans-serif;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .scroll a:after {
    position: absolute;
    content: "";
    left: 50%;
    width: 1px;
    height: 100px;
    background: #FFF;
    margin-top: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: scroll-sign 1.9s cubic-bezier(0.3, 1, 0.57, 1) infinite both;
            animation: scroll-sign 1.9s cubic-bezier(0.3, 1, 0.57, 1) infinite both;
  }
  @-webkit-keyframes scroll-sign {
    0% {
      -webkit-transform: scale(1, 0);
              transform: scale(1, 0);
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0;
    }
    50% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0;
    }
    50.1% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: 0 100%;
              transform-origin: 0 100%;
    }
    100% {
      -webkit-transform: scale(1, 0);
              transform: scale(1, 0);
      -webkit-transform-origin: 0 100%;
              transform-origin: 0 100%;
    }
  }
  @keyframes scroll-sign {
    0% {
      -webkit-transform: scale(1, 0);
              transform: scale(1, 0);
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0;
    }
    50% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0;
    }
    50.1% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
      -webkit-transform-origin: 0 100%;
              transform-origin: 0 100%;
    }
    100% {
      -webkit-transform: scale(1, 0);
              transform: scale(1, 0);
      -webkit-transform-origin: 0 100%;
              transform-origin: 0 100%;
    }
  }
  .scroll a:hover {
    color: #B78E00;
  }
  .scroll a:hover:after {
    background: #B78E00;
  }
}
/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
  img {
    width: 100%;
    height: auto;
  }
  header {
    position: relative;
    background: linear-gradient(to bottom, #FFF 200px, #123061 200px) no-repeat;
  }
  .header_top {
    min-height: 70px;
    padding: 10px 15px 15px;
    width: 100%;
  }
  .logo a {
    display: block;
    z-index: 9;
    width: 75%;
    max-width: 254px;
  }
  .header_right {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    display: none;
  }
  .header_info {
    display: none;
    margin: 15px 10px 15px;
    width: 100%;
    text-align: center;
  }
  .header_txt {
    display: none;
  }
  a.contact_tel {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-decoration: none;
    padding-left: 25px;
    background: url(images/icon_tel.png) center left no-repeat;
    background-size: 20px;
    font-family: "Barlow", sans-serif;
  }
  #toggle {
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    position: fixed;
    right: 10px;
    top: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#1F53A9), color-stop(50%, #123061), color-stop(70%, #1F53A9), to(#123061));
    background: linear-gradient(to bottom, #1F53A9 0%, #123061 50%, #1F53A9 70%, #123061 100%);
    background-position: 50% 0%;
    background-size: auto 200%;
  }
  #toggle:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-position: 50% 100%;
  }
  #toggle:after {
    position: absolute;
    content: "MENU";
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    bottom: 5px;
    left: 0;
    width: 100%;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggle div に対して*/
    width: 26px;
    height: 2px;
    background: #fff;
    right: 12px;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 11px;
  }
  #toggle span:nth-child(2) {
    top: 18px;
  }
  #toggle span:nth-child(3) {
    top: 25px;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateY(7px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translateY(-7px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background-color: rgba(0, 114, 186, 0.9); /*spナビ背景*/
    z-index: 999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .open_navi #sp_navi {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding-top: 80px;
    text-align: center;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border: rgba(255, 255, 255, 0.5) 1px solid; /*spナビ線*/
    cursor: pointer;
    color: #fff; /*spナビ文字色*/
    margin: 0 auto;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #sp_navi .menu > .menu-item:not(:last-child) {
    border-bottom: none;
  }
  #sp_navi .menu-item a {
    display: block;
    padding: 11px 0 10px;
    font-weight: 600;
  }
  #sp_navi .menu-item span {
    display: block;
    padding: 0px 8px;
    font-size: 1rem;
  }
  #sp_navi .menu-item a:link, #sp_navi .menu-item a:visited, #sp_navi .menu-item a:hover, #sp_navi .menu-item a:active {
    color: #fff; /*spナビ文字色-カテゴリ*/
    text-decoration: none;
    font-weight: 600;
  }
  #sp_navi .sub-menu li a:link, #sp_navi .sub-menu li a:visited, #sp_navi .sub-menu li a:hover, #sp_navi .sub-menu li a:active {
    color: #0072BA; /*オルガン文字色★1*/
    text-decoration: none;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 11px 0 10px;
    font-weight: 600;
    letter-spacing: 0em;
    background: rgba(255, 255, 255, 0.9); /*オルガン背景*/
  }
  #sp_navi .sub-menu li a:hover {
    color: #fff;
    background: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: center;
    border-top: #DDD 1px solid; /*オルガン上線*/
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: solid 3px #DDD; /*カテゴリ矢印*/
    border-right: solid 3px #DDD; /*カテゴリ矢印*/
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    top: 22px;
  }
}
/****************************************

pc用 横ナビ

*****************************************/
#g_navi {
  width: auto;
  margin-right: 20px;
}
#g_navi .menu {
  *zoom: 1;
  width: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#g_navi .menu li {
  position: relative;
  width: auto;
  text-align: center;
  line-height: 0;
}
#g_navi .menu li a {
  display: block;
  height: 85px;
  padding: 0 20px;
  margin: 0;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  word-break: keep-all;
}
#g_navi .menu li a span {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding-top: 5px;
  color: #0072B9;
  font-family: "Barlow", sans-serif;
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  #g_navi .menu li a {
    font-size: 1.6rem;
    padding: 0 15px;
  }
}
#g_navi .menu li a:hover {
  color: #0072BA;
  translate: 0.4s linear;
}
#g_navi .menu li a:hover span {
  color: #0072BA;
}
#g_navi .menu li ul {
  width: 100%;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  margin: 0;
  padding: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* サブメニュー：横幅固定 */
  width: 160px;
}
#g_navi .menu li ul li {
  width: 100%;
  height: auto;
}
#g_navi .menu li ul li a {
  width: 100%;
  height: auto;
  padding: 12px 5px 15px;
  border-top: 1px solid #ccc;
  font-size: 1.3rem;
  background: rgba(0, 114, 186, 0.95);
  color: #fff;
  text-align: center;
  opacity: 0.95;
  text-shadow: none;
  font-weight: 600;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#g_navi .menu li ul li a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #0072BA;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
#g_navi .menu li ul {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.95;
}
#g_navi .menu li ul li a {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .menu > li > a::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    width: 0;
    height: 3px;
    background: rgba(0, 114, 186, 0.85);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .menu > li > a:hover::after {
    width: 100%;
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  .menu-item-has-children > a {
    cursor: pointer;
  }
}
/****************************************

ティーザー

*****************************************/
@media print, screen and (min-width: 768px) {
  #top_mv {
    position: relative;
    width: 100%;
    text-align: right;
    padding-bottom: 60px;
  }
  #top_mv .top_mv_img {
    height: auto;
    width: 93.75%;
  }
}
.top_mv_txt {
  text-align: center;
  position: absolute;
  top: 50%;
  left: calc(50% + 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48.6%;
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  .top_mv_txt {
    top: calc(50% - 20px);
  }
}
.top_mv_txt .mv_txtimg {
  width: 100%;
  height: auto;
}

.mv {
  width: 100%;
  padding-left: 6.25%;
  position: relative;
  margin: 0px auto;
}
.mv .mv_bg {
  background: url(images/mv.jpg) top left no-repeat;
  height: 320px;
  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;
}
.mv .mv_txt {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .mv .mv_txt {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  #top_mv {
    overflow: hidden;
    position: relative;
    width: 95%;
    margin-left: auto;
    padding-bottom: 20px;
  }
  #top_mv .top_mv_img {
    width: 100%;
    height: auto;
    width: 105%;
    margin: 0 0 0 -2.5%;
  }
  .top_mv_txt {
    width: 90%;
    left: calc(50% + 5px);
    left: 50%;
  }
  .mv {
    padding-left: 5%;
  }
  .mv .mv_bg {
    height: 140px;
    background-size: cover;
  }
  .mv .mv_txt {
    padding-top: 15px;
  }
  .mv .mv_txt img {
    height: 80px;
  }
}
/****************************************

タイトル

*****************************************/
.headline {
  font-size: 6.4rem;
  font-weight: 900;
  color: #123061;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.headline span {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #B78E00;
  display: block;
  margin-top: 5px;
}
.headline:after {
  content: "";
  border-bottom: 3px solid #123061;
  width: 40px;
  margin-top: 26px;
}

#single_box .headline, #single_box02 .headline {
  font-size: 2.8rem;
}
#single_box .headline span, #single_box02 .headline span {
  font-size: inherit;
  margin: 0 0 10px;
}

/* 下線（2色） */
.subhead01 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #123061;
  letter-spacing: 0.06em;
  margin-bottom: 25px;
  padding: 0px 10px 15px;
  line-height: 1.3;
  background: linear-gradient(to right, #0072BA 150px, #CCC 150px) no-repeat;
  background-position: bottom left;
  background-size: 100% 2px;
}

/* 下線(TOP-loopSlide,02pg,05整備・車検～07買取実績) */
.subhead02 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #123061;
  margin-bottom: 15px;
  line-height: 1.2;
  padding: 0px 20px 10px;
  border-bottom: 2px solid #123061;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .subhead02.big_22 {
    padding-bottom: 10px;
  }
}

/* 左線 */
.subhead03 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #123061;
  margin-bottom: 30px;
  line-height: 1.3;
  padding: 5px 15px 6px;
  border-left: 5px solid #0072BA;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .headline {
    font-size: 3.6rem;
    margin-bottom: 35px;
    background: url(images/headline_bg01.png) top right no-repeat, url(images/headline_bg02.png) bottom left no-repeat;
  }
  .headline span {
    font-size: 1.4rem;
    margin-top: 10px;
  }
  .headline:after {
    margin-top: 20px;
  }
  #single_box .headline, #single_box02 .headline {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-top: 15px;
  }
  .subhead01 {
    font-size: 2rem;
    /* xxx */
  }
  .subhead01.mb25 {
    margin-bottom: 15px;
  }
  .subhead02 {
    font-size: 1.6rem;
    padding: 0px 10px 8px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .subhead03 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
/****************************************

content 共通設定

*****************************************/
main#top_main {
  width: 100%;
}

main#page_main {
  padding: 90px calc((100% - 1200px) / 2) 40px;
  background: url(images/bg.png) top left no-repeat, url(images/bg02.png) top -220px right no-repeat;
}
@media print, screen and (min-width: 768px) {
  main#page_main {
    margin-top: -40px;
  }
}

.breadcrumb_area {
  text-align: right;
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb_area .breadcrumb {
  padding: 10px 0px 10px;
  line-height: 1.5;
}
.breadcrumb_area .breadcrumb p {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #FFF;
}
.breadcrumb_area .breadcrumb a {
  position: relative;
  text-decoration: none;
  padding-bottom: 0.08em;
  color: #FFF;
}
.breadcrumb_area .breadcrumb a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background: #FFF;
  -webkit-transition: -webkit-transform 0.9s;
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
  transition: transform 0.9s, -webkit-transform 0.9s;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.breadcrumb_area .breadcrumb a:hover::after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.breadcrumb_area .breadcrumb a:hover {
  color: #B78E00;
}

.none {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb_area {
    width: 100%;
  }
  .breadcrumb_area .breadcrumb {
    position: relative;
    padding: 10px 10px 30px;
    left: auto;
    bottom: auto;
  }
  .breadcrumb_area .breadcrumb p {
    font-size: 1.2rem;
  }
  main#top_main {
    width: 100%;
    padding: 0px 10px;
    margin: 0 auto 0px;
  }
  main#page_main {
    width: 100%;
    padding: 30px 10px 60px;
    margin: 0;
    background-size: contain;
  }
  .sp_none {
    display: none;
  }
}
/****************************************

ボタン

*****************************************/
/* 単色（＋矢印―>） */
.btn01 {
  width: 280px;
  background: #FFF;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  border: 2px solid #123061;
}
.btn01 a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 12px 25px;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #123061;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  /* 標準(>) */
}
.btn01 a:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 40%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #123061;
  border-right: 2px solid #123061;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.btn01:hover {
  background: #123061;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.btn01:hover a {
  color: #FFF;
}
.btn01:hover a:after {
  right: 15px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

/* 白枠（＋矢印―>） */
.btn02 {
  width: 280px;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  border: 2px solid #FFF;
}
.btn02 a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 12px 25px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  /* 標準(>) */
}
.btn02 a:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 40%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.btn02:hover {
  background: rgba(18, 48, 97, 0.85);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.btn02:hover a {
  color: #FFF;
}
.btn02:hover a:after {
  right: 15px;
}

/* 画像付(aside) */
.contact_btn {
  width: 380px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(#1F53A9), color-stop(50%, #123061), color-stop(70%, #1F53A9), to(#123061));
  background: linear-gradient(to bottom, #1F53A9 0%, #123061 50%, #1F53A9 70%, #123061 100%);
  background-position: 50% 0%;
  background-size: auto 200%;
}
.contact_btn a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #FFF;
  padding: 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_btn a:before {
  content: "";
  background: url(images/icon_mail.png) no-repeat;
  width: 28px;
  height: 20px;
  margin-right: 15px;
}
.contact_btn.form {
  background: -webkit-gradient(linear, left top, left bottom, from(#D9A800), color-stop(50%, #B78F00), color-stop(70%, #D9A800), to(#B78F00));
  background: linear-gradient(to bottom, #D9A800 0%, #B78F00 50%, #D9A800 70%, #B78F00 100%);
  background-position: 50% 0%;
  background-size: auto 200%;
}
.contact_btn.form a:before {
  background: url(images/icon_form.png) no-repeat;
  width: 25px;
  height: 28px;
  margin-right: 20px;
}
.contact_btn:hover {
  background-position: 50% 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.btn_center p {
  margin: 0 auto;
}

.btn_right p {
  margin-left: auto;
}

/* トップページ複数並び */
.multi_column_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .multi_column_btn {
    /* 画像btnの場合 */
  }
  .multi_column_btn a:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .btn01, .btn02 {
    margin: 10px auto;
  }
  .btn01 a, .btn02 a {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
  .contact_btn {
    width: 80%;
  }
  .contact_btn a {
    font-size: 1.6rem;
    word-break: break-word;
    word-break: auto-phrase;
  }
  .contact_btn a:before {
    background-size: contain;
  }
  .multi_column_btn {
    padding: 0 10px;
    /* 画像btnの場合 */
  }
  .multi_column_btn a {
    margin-bottom: 15px;
  }
  .multi_column_btn a img {
    width: 100%;
  }
}
/****************************************

contentトップ用

*****************************************/
.top_box01 {
  padding: 70px calc((100% - 1200px) / 2) 110px;
}
@media print, screen and (min-width: 768px) {
  .top_box01 .top_box01_txt {
    max-width: 680px;
    margin-top: 20px;
  }
}

.top_box_bg01 {
  background: url(images/top_box_bg01.png) top 60px left no-repeat, url(images/top_box_bg02.png) top -160px right no-repeat;
}
@media print, screen and (min-width: 768px) {
  .top_box_bg01 {
    margin-top: -60px;
    padding-top: 60px;
  }
}

.top_box02 {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.top_box02 .top_box_tit {
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .top_box02 .top_box02_inner {
    width: 660px;
    position: absolute;
    top: 80px;
    left: 18.75%;
    z-index: 2;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .top_box02 .top_box02_inner {
    left: 3%;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box02 .top_box02_txt {
    padding: 40px 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
            box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
  }
}

.top_box_tit {
  font-size: 8.4rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 800;
  color: #123061;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: #FFF 3px 0px, #FFF -3px 0px, #FFF 0px -3px, #FFF 0px 3px, #FFF 3px 3px, #FFF -3px 3px, #FFF 3px -3px, #FFF -3px -3px, #FFF 1px 3px, #FFF -1px 3px, #FFF 1px -3px, #FFF -1px -3px, #FFF 3px 1px, #FFF -3px 1px, #FFF 3px -1px, #FFF -3px -1px;
  font-family: "Barlow", sans-serif;
}
.top_box_tit span {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #B78E00;
  display: block;
  line-height: 1.5;
  margin-top: 15px;
  text-shadow: none;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.top_box_tit {
  /* 中見出し */
}
@media print, screen and (min-width: 768px) {
  .top_box_tit.subtit span {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}
.top_box_tit {
  /* 棒線付（小見出し） */
}
.top_box_tit.tit_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .top_box_tit.tit_line {
    font-size: 6.4rem;
    margin-bottom: 45px;
  }
}
.top_box_tit.tit_line:after {
  content: "";
  border-bottom: 3px solid #123061;
  width: 40px;
  margin-top: 26px;
}
.top_box_tit {
  /* 白タイトル（小見出し） */
}
.top_box_tit.white_tit {
  color: #FFF;
  text-shadow: none;
}
.top_box_tit.white_tit span {
  color: #FFF;
}
.top_box_tit.white_tit.tit_line:after {
  border-bottom: 3px solid #FFF;
}

.top_box03 {
  padding: 310px calc((100% - 1780px) / 2) 130px;
  background: url(images/top_box03_bg.jpg) top center no-repeat;
}
@media print, screen and (min-width: 768px) {
  .top_box03 {
    margin-top: -140px;
  }
}

/* ループスライダー*/
#loopSlide {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.simply-scroll-container {
  position: relative;
}

.simply-scroll-clip {
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 290px;
}
.simply-scroll-list li {
  display: block;
  float: left;
  width: auto;
  height: 290px;
  margin-right: 20px;
  overflow: hidden;
}
.simply-scroll-list li img {
  display: block;
  width: 340px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  margin-bottom: 15px;
}

.top_box04 {
  position: relative;
  z-index: 1;
}
.top_box04 .top_box_tit {
  text-align: right;
}
@media print, screen and (min-width: 768px) {
  .top_box04 .top_box04_inner {
    width: 660px;
    position: absolute;
    top: 80px;
    right: 18.75%;
    z-index: 2;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .top_box04 .top_box04_inner {
    right: 3%;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box04 .top_box04_txt {
    padding: 40px 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
            box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
  }
}

.top_box_bg02 {
  background: url(images/top_box_bg03.png) bottom 100px right no-repeat;
}

.top_box05 {
  background: url(images/top_box05_bg.jpg) top center no-repeat;
  padding: 225px calc((100% - 1200px) / 2) 100px;
}
@media print, screen and (min-width: 768px) {
  .top_box05 {
    margin-top: -100px;
  }
}
.top_box05 .top_box05_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .top_box05 .top_box05_flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top_box05 .top_box05_flex .top_box05_part {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .top_box05 .top_box05_flex .top_box05_part:last-child {
    border: none;
    padding-right: 0;
  }
  .top_box05 .top_box05_flex .top_box05_part {
    min-height: 350px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box05 .top_box05_flex .top_box05_part .top_box05_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .top_box05 .top_box05_flex .top_box05_part .top_box05_txt p {
    width: 340px;
    color: #FFF;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box05 .top_box05_flex .top_box05_part .top_box05_txt div img {
    margin: auto;
  }
  .top_box05 .top_box05_flex .top_box05_part h3 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    color: #FFF;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .top_box05 .top_box05_flex .top_box05_part:last-child:after {
    content: none;
  }
}

.top_box06 {
  padding: 95px 0 110px;
  max-width: 1780px;
  margin: 0 auto;
}

.top_box07 {
  padding: 0px calc((100% - 1200px) / 2) 105px;
}
@media print, screen and (min-width: 768px) {
  .top_box07 .top_box_tit {
    font-size: 5.8rem;
    margin-top: 20px;
    text-align: left;
  }
  .top_box07 #news_top {
    width: 950px;
  }
}

@media screen and (max-width: 767px) {
  .top_box01 {
    padding: 25px 0px 50px;
    position: relative;
  }
  .top_box01 .top_box01_tit {
    width: 80%;
    margin: 0 auto 15px;
  }
  .top_box_bg01 {
    background: url(images/top_box_bg01.png) top left no-repeat, url(images/top_box_bg02.png) bottom right/100% auto no-repeat;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
    padding: 0px 10px;
  }
  .top_box02 {
    padding: 0px 10px 30px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .top_box02 .top_box02_tit {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .top_box02 .top_box02_inner {
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
            box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
    padding: 20px 15px 25px;
  }
  .top_box02 .top_box02_inner .mb35 {
    margin-bottom: 20px;
  }
  .top_box_tit {
    font-size: 4.2rem;
    margin-bottom: 15px;
    background-size: contain;
  }
  .top_box_tit span {
    font-size: 1.8rem;
    margin-top: 5px;
  }
  .top_box_tit {
    /* 中見出し */
  }
  .top_box_tit.subtit {
    font-size: 3.8rem;
    margin-bottom: 35px;
  }
  .top_box_tit.subtit span {
    font-size: 1.4rem;
  }
  .top_box_tit.tit_line:after {
    margin-top: 15px;
  }
  .top_box03 {
    padding: 45px 10px 60px;
    width: calc(100% + 20px);
    margin: 0 0 0px -10px;
    background-size: 100% auto;
    background-size: auto 250px;
  }
  #loopSlide {
    margin-bottom: 25px;
  }
  .simply-scroll-list {
    height: 230px;
    max-height: 230px;
  }
  .simply-scroll-list li {
    height: 230px;
  }
  .simply-scroll-list li img {
    width: 240px;
    min-width: 240px;
    height: 180px;
    margin-bottom: 10px;
  }
  .top_box04 {
    padding: 0px 20px 50px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .top_box04 .top_box_tit {
    text-align: left;
  }
  .top_box04 .top_box04_inner {
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
            box-shadow: 0px 0px 15px rgba(10, 24, 50, 0.15);
    padding: 20px 15px 25px;
  }
  .top_box04 .top_box04_inner .mb35 {
    margin-bottom: 20px;
  }
  .top_box_bg02 {
    background-position: bottom right;
    background-size: 100% auto;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
    padding: 0px 10px;
  }
  .top_box05 {
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
    padding: 50px 10px 60px;
    background-size: cover;
  }
  .top_box05 .top_box05_flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top_box05 .top_box05_flex .top_box05_part {
    margin-bottom: 35px;
  }
  .top_box05 .top_box05_flex .top_box05_part:last-child {
    border: none;
    margin-bottom: 0;
  }
  .top_box05 .top_box05_flex .top_box05_part h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #FFF;
  }
  .top_box05 .top_box05_flex .top_box05_part p {
    color: #FFF;
  }
  .top_box05 .top_box05_flex .top_box05_part img {
    margin-bottom: 15px;
  }
  .top_box06 {
    padding: 40px 10px 60px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .top_box06 .top_box06_flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top_box06 .top_box06_flex img {
    width: 50%;
    height: auto;
  }
  .top_box07 {
    padding: 0px 10px 60px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .top_box07 .top_box_tit {
    margin-bottom: 20px;
  }
}
/****************************************

content下層用（共通パーツ）

*****************************************/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.img_wauto {
  width: auto;
  max-width: 100%;
}

.img_radius {
  overflow: hidden;
  border-radius: 8px;
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pt_txt {
  padding-top: 10px;
}

.f14_txt p, .f14_txt li {
  font-size: 1.4rem;
}

.txt580 {
  width: 580px;
}

.txt720 {
  width: 720px;
}

.w1000 {
  width: 1000px;
  margin: 0 auto;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.blue_bg {
  padding: 35px 30px 35px;
  background-color: #FAFBFC;
  border: 3px solid #0072BA;
  line-height: 1.8;
}
.blue_bg dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #B78E00;
}
.blue_bg dd {
  font-size: 1.4rem;
}

.border_box {
  border: 3px solid #0072BA;
  padding: 35px 18px 30px;
  background: #FDFEFF;
}

@media screen and (max-width: 767px) {
  .flex,
  .flex_r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .radius_img {
    width: 100%;
  }
  .pt_txt {
    padding-top: 0;
  }
  .txt580, .txt720, .txt800, .txt860, .w1000, .w1200 {
    width: 100%;
  }
  .f14_txt p, .f14_txt li {
    font-size: 1.3rem;
  }
  .blue_bg {
    padding: 20px 20px 25px;
  }
  .blue_bg dt {
    font-size: 1.6rem;
  }
  .blue_bg dd {
    font-size: 1.3rem;
  }
  .mb20_sp {
    margin-bottom: 20px;
  }
  figcaption {
    font-size: 1.4rem;
  }
}
/****************************************

content下層用

*****************************************/
/* 04中古車販売 */
@media print, screen and (min-width: 768px) {
  .usedcar_box figure {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .flow_wrap {
    min-width: 890px;
    gap: 70px;
  }
}
.flow_box {
  position: relative;
  padding: 25px 21px;
  background: #FAFBFC;
  border: 4px solid #0072BA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #123061;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media print, screen and (min-width: 768px) {
  .flow_box {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.flow_box {
  /* 画像 */
}
.flow_box:after {
  content: "";
  background: url(images/arrow.png) no-repeat;
  width: 48px;
  height: 30px;
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  .flow_box:after {
    top: 50%;
    right: -60px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.flow_box:last-of-type:before, .flow_box:last-of-type:after {
  content: none;
}

@media screen and (max-width: 767px) {
  /* 04中古車販売 */
  .usedcar_box figure {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .flow_box {
    margin-bottom: 60px;
    padding: 10px 15px;
    font-size: 1.8rem;
    /* 画像 */
  }
  .flow_box:after {
    bottom: -50px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
/****************************************

content下層用（共通レイアウト）

*****************************************/
/* お問い合わせ */
#mail_form {
  padding: 0 calc((100% - 1200px) / 2);
}
@media print, screen and (min-width: 768px) {
  #mail_form {
    margin: 0 auto 60px;
    text-align: center;
  }
}

/* 3列flex(txt) */
.three_column_flex {
  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;
}
.three_column_flex .three_column_parts {
  width: 380px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .three_column_flex .three_column_parts:not(:nth-child(3n)) {
    margin-right: 30px;
  }
}
.three_column_flex .three_column_parts img {
  margin-bottom: 20px;
}
.three_column_flex .three_column_parts h3 {
  font-size: 2.2rem;
  padding-bottom: 15px;
}

/* 3列flex(img) */
.three_column_flex_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.three_column_flex_img .three_column_parts, .three_column_flex_img li {
  width: 380px;
}
@media print, screen and (min-width: 768px) {
  .three_column_flex_img .three_column_parts img, .three_column_flex_img li img {
    width: 100%;
    height: auto;
  }
}

/* リスト共通（画像付きマーカー） */
@media screen and (max-width: 767px) {
  .three_column_flex .three_column_parts {
    width: 100%;
    margin-bottom: 20px;
  }
  .three_column_flex .three_column_parts h3 {
    font-size: 1.8rem;
    padding-bottom: 10px;
  }
  .three_column_flex_img {
    width: 100%;
    gap: 2%;
  }
  .three_column_flex_img .three_column_parts, .three_column_flex_img li {
    width: 48%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .three_column_flex_img .three_column_parts img, .three_column_flex_img li img {
    width: 100%;
  }
}
/****************************************

sidebar/aside（テキスト）

*****************************************/
.bottom_box {
  padding: 95px calc((100% - 1160px) / 2) 85px;
  background: url(images/bottom_box_bg.jpg) bottom center no-repeat;
  background-size: cover;
  text-align: center;
}

.bottom_box_tit {
  margin-bottom: 50px;
  text-align: center;
}

.bottom_box_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .bottom_box_btn {
    width: 1160px;
    margin: 0 auto;
    min-height: 80px;
  }
  .bottom_box_btn .contact_btn {
    margin-left: 30px;
  }
}

a.bottom_box_tel {
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: #FFF 3px 0px, #FFF -3px 0px, #FFF 0px -3px, #FFF 0px 3px, #FFF 3px 3px, #FFF -3px 3px, #FFF 3px -3px, #FFF -3px -3px, #FFF 1px 3px, #FFF -1px 3px, #FFF 1px -3px, #FFF -1px -3px, #FFF 3px 1px, #FFF -3px 1px, #FFF 3px -1px, #FFF -3px -1px;
  font-family: "Barlow", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
a.bottom_box_tel:before {
  content: "";
  background: url(images/icon_tel.png) no-repeat;
  background-size: contain;
  width: 37px;
  height: 41px;
  margin-right: 5px;
}
@media print, screen and (min-width: 768px) {
  a.bottom_box_tel {
    word-break: keep-all;
    min-width: 345px;
  }
}

@media screen and (max-width: 767px) {
  .bottom_box {
    padding: 60px 15px 50px;
  }
  .bottom_box_tit {
    margin-bottom: 25px;
  }
  .bottom_box_tit:after {
    margin-top: 15px;
  }
  .bottom_box_txt {
    margin-bottom: 40px;
  }
  .bottom_box_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom_box_btn .bottom_box_tel, .bottom_box_btn .contact_btn {
    margin-bottom: 10px;
  }
  .bottom_box_btn a.bottom_box_tel {
    font-size: 3.6rem;
    margin: 0 auto 10px;
  }
}
/****************************************

テーブル

*****************************************/
table {
  line-height: 1.7;
}

td p {
  font-size: 100%;
}

/* 表2列(上/左見出し) */
.price_table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.8;
}
.price_table th {
  width: 16.666%;
  padding: 14px 0px;
  letter-spacing: 0.02em;
  border: 1px solid #3F8EBE;
  vertical-align: middle;
  background: #0072BA;
  color: #FFF;
}
.price_table thead th {
  width: 13.333%;
  line-height: 1.5;
}
.price_table tbody tr th:not(:first-of-type), .price_table tbody tr th.bg_l-blue {
  color: #123061;
  background: #F1F3F5;
  padding: 11px 10px;
}
.price_table tbody tr:last-of-type th {
  background: #B78E00;
  padding: 11px 10px;
}
.price_table tbody tr:last-of-type td {
  background: #F5EFD9;
}
.price_table td {
  width: 13.333%;
  padding: 10px;
  border: 1px solid #3F8EBE;
  vertical-align: middle;
  background: #FFF;
  text-align: center;
}
.price_table td a {
  word-break: break-all;
}

/* 表2列(標準) */
.overview_table {
  width: 100%;
  border-collapse: collapse;
  line-height: 2;
}
.overview_table th {
  width: 26.5%;
  padding: 13px 20px;
  font-weight: bold;
  text-align: left;
  background: #F1F3F5;
  border: 1px solid #0072BA;
  color: #123060;
}
.overview_table td {
  width: 73.5%;
  padding: 13px 20px;
  border: 1px solid #0072BA;
  background: #FFF;
}

@media screen and (max-width: 767px) {
  /* 1列（標準） */
  .overview_table th {
    display: block;
    width: 100%;
    padding: 10px 13px;
    border-bottom: none;
  }
  .overview_table td {
    display: block;
    width: 100%;
    padding: 10px 13px;
  }
  .overview_table tr:not(:last-child) td {
    margin-bottom: 15px;
  }
  /* 2列のまま(上/左見出し) */
  /* 複数列(横スクロール) */
  .table-scroll {
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid #0072BA;
  }
  .price_table {
    background: none;
    line-height: 1.6;
  }
  .price_table th {
    padding: 15px 5px;
    font-size: 1.3rem;
    border: none;
    width: 90px;
  }
  .price_table thead th {
    padding: 5px 0px;
  }
  .price_table thead th:not(:first-of-type) {
    min-width: 130px;
  }
  .price_table thead th:first-of-type {
    position: sticky;
    top: 0;
    left: 0px;
  }
  .price_table tbody tr th {
    position: sticky;
    left: 0px;
    min-width: 25px;
  }
  .price_table tbody tr th.bg_l-blue {
    padding: 10px 5px;
    left: 24px;
    min-width: 80px;
    border-left: 1px solid #3F8EBE;
    border-right: 1px solid #3F8EBE;
    border-bottom: 1px solid #3F8EBE;
  }
  .price_table tbody tr:last-of-type th {
    padding: 10px 5px;
  }
  .price_table td {
    padding: 10px 5px;
    border: none;
  }
  .price_table thead th {
    border-bottom: 1px solid #3F8EBE;
  }
  .price_table thead th:not(:last-child) {
    border-right: 1px solid #3F8EBE;
  }
  .price_table tbody th:not(:last-child),
  .price_table tbody td:not(:last-child) {
    border-right: 1px solid #3F8EBE;
  }
  .price_table tbody tr:not(:last-child) th,
  .price_table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #3F8EBE;
  }
}
/****************************************

共通div

*****************************************/
.mb110 {
  margin-bottom: 110px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt40 {
  margin-top: 40px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

.mt10 {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mb110,
  .mb100,
  .mb95,
  .mb90,
  .mb85,
  .mb80,
  .mb75,
  .mb70,
  .mb65,
  .mb60,
  .mb55 {
    margin-bottom: 50px;
  }
  .mb50 {
    margin-bottom: 40px;
  }
  .mb45,
  .mb40,
  .mb35 {
    margin-bottom: 30px;
  }
}
/****************************************

P

*****************************************/
/* 改行 */
.line_break {
  padding-top: 30px;
}

/* 配置 */
.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

@media print, screen and (min-width: 768px) {
  .txt_center_pc {
    text-align: center;
  }
}
/* 赤文字*/
.red {
  color: #FF0000;
}

/* 強調*/
.bold {
  font-weight: bold;
}

.navy {
  color: #123061;
}

.yellow {
  color: #B78E00;
}

.gray {
  color: #CCC;
}

.big {
  font-size: 1.8rem;
}

.big_20 {
  font-size: 2rem;
}

.big_22 {
  font-size: 2.2rem;
}

/* 小文字*/
.small {
  font-size: 1.2rem;
}

.small_14 {
  font-size: 1.4rem;
}

.small_15 {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .big {
    font-size: 1.6rem;
  }
  .big_20 {
    font-size: 1.8rem;
  }
  .big_22 {
    font-size: 2rem;
  }
}
/****************************************

blog トップ用（投稿毎aタグ一括）

*****************************************/
#news_top {
  width: 100%;
  height: auto;
  overflow-y: scroll;
  height: 270px;
  padding: 0px 25px 0px 0;
}

.news_top_parts {
  font-weight: normal;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
.news_top_parts time {
  margin-right: 70px;
  font-size: 1.6rem;
  font-weight: 600;
  word-break: keep-all;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #969EAD;
  font-family: "Barlow", sans-serif;
}
.news_top_parts .news_top_tit {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: 0.08em;
}
.news_top_parts a {
  text-decoration: none;
  font-size: 1.8rem;
  width: 100%;
  padding: 29px 50px 29px 20px;
  color: #123061;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  font-size: inherit;
  background: -webkit-gradient(linear, left top, right top, color-stop(16.5%, #0072BA), color-stop(16.5%, #CCC)) left bottom/100% 1px no-repeat;
  background: linear-gradient(to right, #0072BA 16.5%, #CCC 16.5%) left bottom/100% 1px no-repeat;
}
.news_top_parts a:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(16.5%, #0072BA), color-stop(16.5%, #CCC)) left bottom/100% 1px no-repeat, rgba(250, 251, 252, 0.95);
  background: linear-gradient(to right, #0072BA 16.5%, #CCC 16.5%) left bottom/100% 1px no-repeat, rgba(250, 251, 252, 0.95);
}
.news_top_parts {
  /* 右矢印(◢) */
}
.news_top_parts:before {
  position: absolute;
  content: "";
  top: calc(50% - 6px);
  right: 20px;
  border: 3px solid transparent;
  border-left: 3px solid #0072BA;
  border-bottom: 3px solid #0072BA;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news_top_parts {
  /* 右矢印(―) */
}
.news_top_parts:after {
  content: "";
  vertical-align: middle;
  line-height: 1;
  width: 26px;
  height: 1px;
  background: #0072BA;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news_top_parts:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news_top_parts:hover a {
  color: #0072BA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news_top_parts:hover:before {
  right: 15px;
}
.news_top_parts:hover:after {
  right: 15px;
}

@media screen and (max-width: 767px) {
  #news_top {
    width: 100%;
    padding: 0px 10px 0px 0;
  }
  #news_top .news_top_parts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
  }
  #news_top .news_top_parts time {
    font-size: 1.4rem;
    margin-right: 15px;
  }
  #news_top .news_top_parts .news_top_tit {
    font-size: 1.4rem;
    margin-top: 5px;
  }
  #news_top .news_top_parts a {
    padding: 20px 40px 20px 10px;
    font-size: 1.6rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #news_top .news_top_parts:before {
    right: 9px;
  }
  #news_top .news_top_parts:after {
    right: 10px;
  }
  #news_top .news_top_parts:hover:before {
    right: 4px;
  }
  #news_top .news_top_parts:hover:after {
    right: 5px;
  }
}
/****************************************

投稿 下層用（1行）

*****************************************/
/* デフォルト投稿 */
.post_banner p {
  margin-top: auto;
  margin-left: auto;
}

@media print, screen and (min-width: 768px) {
  .blog_post_parts .flex {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .blog_post_parts figure {
    width: 440px;
    height: 310px;
    margin-right: 40px;
  }
  .blog_post_parts figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .blog_post_parts img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .blog_post_parts {
    padding: 20px 20px;
    border: 2px solid #0072BA;
    border-radius: 6px;
  }
  .blog_post_parts figure {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
  }
  .blog_post_parts figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .blog_post_parts .subhead01 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
/****************************************

投稿 下層用2（複数列）

*****************************************/
/* 3列投稿 */
.three_column_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.three_column_post .three_column_parts {
  width: 380px;
  height: auto;
  margin: 0 30px 50px 0;
  /* ボタンある場合 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.three_column_post .three_column_parts .three_column_btn {
  margin-top: auto;
}
.three_column_post .three_column_parts .btn01 {
  margin: 12px auto 0px;
}
@media print, screen and (min-width: 768px) {
  .three_column_post .three_column_parts .btn01 {
    width: 240px;
  }
  .three_column_post .three_column_parts .btn01 a {
    padding: 7px 25px;
  }
  .three_column_post .three_column_parts .btn01 a:after {
    right: 15px;
  }
  .three_column_post .three_column_parts .btn01:hover a:after {
    right: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .three_column_post .three_column_parts .subhead02 {
    padding-bottom: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .three_column_post .three_column_parts:nth-child(3n) {
    margin-right: 0;
  }
}
.three_column_post .three_column_parts .three_column_img {
  margin-bottom: 25px;
}
.three_column_post .three_column_parts .three_column_img figure {
  width: 100%;
  height: 285px;
  overflow: hidden;
}
.three_column_post .three_column_parts .three_column_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.three_column_post .three_column_parts .three_column_txt img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  /* 3列投稿 sp*/
  .three_column_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .three_column_post .three_column_parts {
    width: 49%;
    margin: 0 2% 30px 0;
  }
  .three_column_post .three_column_parts:nth-child(2n) {
    margin-right: 0;
  }
  .three_column_post .three_column_parts .three_column_img {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
  }
  .three_column_post .three_column_parts .three_column_img figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .three_column_post .three_column_parts .three_column_img figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .three_column_post .three_column_parts .btn01 {
    width: 95%;
  }
  .three_column_post .three_column_parts .btn01 a {
    font-size: 1.3rem;
  }
  .three_column_post .three_column_parts .btn01 a:after {
    right: 10px;
  }
}
/****************************************

single.php

*****************************************/
#single_box {
  padding: 0 calc((100% - 1000px) / 2);
}
#single_box img {
  max-width: 1000px;
  padding: 10px 0;
  height: auto;
}
#single_box figure {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}
#single_box figure img {
  max-width: 100%;
  height: auto;
}
#single_box .nav-below {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0 80px;
  font-size: 100%;
  text-align: center;
}
#single_box .nav-below a {
  padding: 0 10px;
  color: #B78E00;
}
#single_box .nav-below a:hover {
  color: rgba(183, 142, 0, 0.75);
}

@media screen and (max-width: 767px) {
  #single_box img {
    max-width: 100%;
    padding: 10px 0;
  }
}
/****************************************

投稿　pager設定

*****************************************/
.pager {
  clear: both;
  text-align: center;
  padding: 0;
  margin: 0 0 50px;
}

a.page-numbers {
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: rgba(0, 114, 186, 0.1);
  background: #FFF;
  border: solid 1px rgba(0, 114, 186, 0.5);
}
a.page-numbers:hover {
  color: #0072ba;
}

.pager .current {
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  color: rgb(255, 255, 255);
  background: #0072ba;
  border: solid 1px #0072ba;
}

@media screen and (max-width: 767px) {
  .single_box {
    width: 100%;
  }
  .pager {
    padding: 0px 0 30px;
  }
}
/****************************************

sp_footer

*****************************************/
@media screen and (max-width: 767px) {
  #pc_footer {
    display: none;
  }
  #sp_footer {
    padding: 0px 0 60px;
    background: #123061;
  }
  .sp_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    z-index: 4;
  }
  .sp_bnr div {
    position: relative;
    width: 25%;
    border-top: 1px solid #FFF;
    background: -webkit-gradient(linear, left top, left bottom, from(#D9A800), color-stop(50%, #B78F00), color-stop(70%, #D9A800), to(#B78F00));
    background: linear-gradient(to bottom, #D9A800 0%, #B78F00 50%, #D9A800 70%, #B78F00 100%);
    background-position: 50% 0%;
    background-size: auto 200%;
  }
  .sp_bnr div:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-position: 50% 100%;
  }
  .sp_bnr div:not(:last-child) {
    border-right: 1px solid #FFF;
  }
  .sp_bnr div img {
    width: auto;
    margin-bottom: 7px;
    height: 22px;
  }
  .sp_bnr div p {
    color: #FFF;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    word-break: keep-all;
    font-weight: 500;
  }
  .sp_bnr a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
  }
  .sp_footer_box {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 10px 70px;
    padding: 30px 6% 30px;
  }
  .sp_footer_box a {
    text-decoration: none;
    color: #FFF;
  }
  .sp_footer_box .footer_logo {
    text-align: center;
  }
  .sp_footer_box .footer_logo a {
    display: inline-block;
    width: 60%;
    max-width: 220px;
    margin: 0px auto 25px;
  }
  .sp_footer_box .footer_tit {
    font-size: 2.8rem;
    color: #123061;
    letter-spacing: 0.1em;
    line-height: 1.2;
    border-bottom: 1px solid #042F51;
    padding-bottom: 5px;
    padding-left: 5px;
    margin-bottom: 10px;
    font-family: "Barlow", sans-serif;
  }
  .sp_footer_box .footer_txt {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #FFF;
    margin-bottom: 15px;
  }
  .copyright {
    font-size: 1rem;
    text-align: center;
    background: #123061;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
}
/****************************************
pc_footer

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_footer {
    display: none;
  }
  .pagetop {
    position: fixed;
    z-index: 4;
    right: 30px;
    bottom: 30px;
    display: none;
  }
  #pc_footer {
    position: relative;
    text-align: center;
    background: #123061;
  }
  .footer_box {
    width: 100%;
    margin: 0 auto;
    padding: 80px calc((100% - 900px) / 2) 35px;
  }
  .footer_box a {
    text-decoration: none;
    color: #FFF;
  }
  .footer_box p {
    font-size: 1.5rem;
    color: #FFF;
  }
  .footer_box .footer_logo {
    margin-bottom: 35px;
  }
  .footer_box .footer_logo a {
    display: inline-block;
  }
  .footer_box .footer_txt {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
  /* 横並び（階層無　1行詰） */
  .footer_link {
    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;
  }
  .footer_link li {
    padding: 0px 7px;
    position: relative;
  }
  .footer_link li a {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .footer_link li a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #B78E00;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer_link li a:hover::after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .footer_link li a {
    color: #FFF;
  }
  .footer_link li a:hover {
    color: rgba(183, 142, 0, 0.85);
  }
  .footer_link li {
    /* ページリンク間の装飾 */
  }
  .footer_link li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    top: 56%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0px;
    background: #FFF;
  }
  .footer_link li:last-child:before {
    background: none;
  }
  .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 40px 0 60px;
  }
}
/****************************************

Contact Form7

*****************************************/
/* フォームカラー */
.wpcf7 {
  width: 100%;
  text-align: left;
}

.wpcf7-form textarea {
  width: 100%;
  /*本文*/
  max-width: 100%;
  padding: 3px 5px;
  border: 1px solid rgba(0, 114, 186, 0.5);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wpcf7-form select {
  width: auto;
  padding: 3px 5px;
  border: 1px solid rgba(0, 114, 186, 0.5);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wpcf7-form input {
  padding: 10px;
  border: 1px solid rgba(0, 114, 186, 0.5);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*ラジオボタン、チェックボタン*/
}

/* 送信ボタン */
.tc {
  text-align: center;
}

.wpcf7 .tc input[type=submit] {
  cursor: pointer;
  width: 410px;
  max-width: 100%;
  padding: 18px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px #B78E00 solid;
  border-radius: 0;
  background-color: #B78E00;
  color: #fff;
  font-size: 16px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 5px auto 0;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.wpcf7 .tc input[type=submit]:disabled {
  cursor: not-allowed;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  color: #929292 !important;
}
.wpcf7 .tc input[type=submit]:hover {
  -webkit-box-shadow: 0 0 1px 1px rgba(183, 142, 0, 0.3);
          box-shadow: 0 0 1px 1px rgba(183, 142, 0, 0.3);
  background-color: rgba(183, 142, 0, 0.3);
  color: #B78E00;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.wpcf7 .tc input[type=submit]:focus {
  outline: 0;
  border: 1px #123061 solid;
  -webkit-box-shadow: 0 0 2px 2px rgba(18, 48, 97, 0.5);
          box-shadow: 0 0 2px 2px rgba(18, 48, 97, 0.5);
}

.wpcf7-text {
  width: 100%;
}

/* 入力欄 */
.form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #ccc;
}

.form_label {
  width: 300px;
}
.form_label .required {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #cc0000;
  margin-right: 10px;
  border-radius: 3px;
}
.form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #d7d7d7;
  margin-right: 10px;
  border-radius: 3px;
}

.form_input {
  width: calc(100% - 300px);
}

.form_input_post {
  width: 180px;
}

.form_input_post_txt {
  color: #b20000;
  font-weight: normal;
  font-size: 1.3rem;
}

/* 住所 */
.form_row_post {
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #CCC;
}
.form_row_post .form_row_address_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.form_row_post .form_row_address_row .form_label {
  font-weight: normal;
}

.form_row.last_row {
  padding-bottom: 0;
  border-bottom: none;
}

.wpcf7 .form_input_post input[type=tel],
.wpcf7 .form_input input[type=email],
.wpcf7 .form_input input[type=tel],
.wpcf7 .form_input input[type=text],
.wpcf7 .form_input_post input[type=text],
.wpcf7 .form_input textarea {
  position: relative;
  border-left: 2px solid #123061;
}

.seireki input[type=text] {
  width: 130px;
  margin: 0 10px;
}

.month input[type=text] {
  width: 60px;
  margin: 0 10px;
}

.old {
  margin-left: 30px;
}
.old input[type=text] {
  width: 60px;
  margin: 0 10px;
}

/* フォームの装飾ここから */
/* チェックボックス */
.wpcf7 .form_input input[type=checkbox] {
  display: none;
}
.wpcf7 .form_input input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #123061;
  border-radius: 4px;
  background-color: #fefefe;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input input[type=checkbox] + span:after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #123061;
  border-right: 3px solid #123061;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span {
  color: #6c5d2f;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:before {
  opacity: 1;
  border: 1px solid #123061;
  -webkit-box-shadow: 0 0 2px 2px rgba(18, 48, 97, 0.5);
          box-shadow: 0 0 2px 2px rgba(18, 48, 97, 0.5);
  background-color: #123061;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.wpcf7 .form_input input[type=radio] {
  display: none;
}
.wpcf7 .form_input input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.9em;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #123061;
  border-radius: 50%;
  background-color: #fefefe;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio]:checked + span:before {
  -webkit-box-shadow: 0 0 2px 2px rgba(18, 48, 97, 0.5);
          box-shadow: 0 0 2px 2px rgba(18, 48, 97, 0.5);
}
.wpcf7 .form_input input[type=radio]:checked + span:after {
  opacity: 1;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #123061;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

/* セレクト */
.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #123061;
  border-right: 1px solid #123061;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:focus-within::after {
  border-bottom: 1px solid #123061;
  border-right: 1px solid #123061;
}

.wpcf7 .form_input select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 3.5em 0.5em 1em;
  border: 1px solid #123061;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fefefe;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(18, 48, 97, 0.7)), to(rgba(18, 48, 97, 0.7)));
  background-image: linear-gradient(90deg, rgba(18, 48, 97, 0.7), rgba(18, 48, 97, 0.7));
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease, outline 0.2s ease;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.wpcf7 .form_input select:-ms-expand {
  display: none;
}

.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 60%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .form_input input[type=text]:focus,
.wpcf7 .form_input input[type=tel]:focus,
.wpcf7 .form_input input[type=email]:focus,
.wpcf7 .form_input input[type=url]:focus,
.wpcf7 .form_input input[type=date]:focus,
.wpcf7 .form_input input[type=number]:focus,
.wpcf7 .form_input_post input[type=text]:focus,
.wpcf7 .form_input textarea:focus,
.wpcf7 .form_input_post input[type=tel]:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  -webkit-box-shadow: 0 0 1px 1px rgba(18, 48, 97, 0.3);
          box-shadow: 0 0 1px 1px rgba(18, 48, 97, 0.3);
}

.wpcf7 .form_input select:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  -webkit-box-shadow: 0 0 1px 1px rgba(18, 48, 97, 0.3);
          box-shadow: 0 0 1px 1px rgba(18, 48, 97, 0.3);
}

.wpcf7-response-output {
  font-size: 1.3em;
}

@media screen and (max-width: 767px) {
  .wpcf7-form textarea {
    width: 100% !important;
    /*本文*/
  }
  .wpcf7-form input {
    max-width: 100% !important;
    /*ラジオボタン、チェックボタン*/
  }
  .wpcf7-submit {
    width: 100%;
  }
  /* 入力欄 */
  .form_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 30px;
  }
  .form_label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form_input {
    width: 100%;
  }
  /* 住所 */
  .form_row_post {
    padding: 0 0 20px 0;
  }
  .form_row_post .form_row_address_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .seireki input[type=text] {
    width: 75px;
    margin: 0 5px;
  }
  .month input[type=text] {
    width: 45px;
    margin: 0 5px;
  }
  .old {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .old input[type=text] {
    width: 45px;
    margin: 0 10px;
  }
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
    display: block;
  }
  .ajax-loader {
    width: auto;
  }
}
/****************************************

clearfix

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

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */
/****************************************

追加

*****************************************/
.dn {
  display: none;
}

.pcn {
  display: none;
}

@media screen and (max-width: 767px) {
  .spn {
    display: none;
  }
  .pcn {
    display: block;
  }
}