@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css';
@charset 'UTF-8';

/* ------------------------------------------
  Reset
------------------------------------------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

* {
  outline: none;
}

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

a img {
  border: none;
}

input, button, select, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

/* ------------------------------------------
  Utility Class
------------------------------------------ */
/* clearfix */
.clearfix:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}

/* ------------------------------------------
  Common
------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  height: 100%;
}

body {
  color: #111;
  font-family: YakuHanJPs, -apple-system, BlinkMacSystemFont, 'Open Sans', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  font-size: 14px;
  /* font-family: YakuHanJPs, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Open Sans", 游ゴシック体, YuGothic, "YuGothic M", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; */
  line-height: 1.7;
  -webkit-text-size-adjust: none;
}

a, a img {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, background .3s ease, opacity .3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: inherit;
}







.bg-white{
    background-color: #fff;
}







.only_sp {
  display: none !important;
}

.container {
  margin: 0 auto;
  width: 980px;
}

.section {
  margin: 80px 0;
}

.section:last-child {
  margin-bottom: 0;
}

.sec_tit {
  border: #d0d0d0 1px solid;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 20px 30px;
  position: relative;
}

.sec_tit::before {
  border: #666 1px solid;
  border-right: none;
  content: '';
  height: 100%;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 18px;
}

.sec_tit::after {
  border: #666 1px solid;
  border-left: none;
  content: '';
  height: 100%;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 18px;
}

@media screen and (max-width: 767px) {
  html {
    font-size: auto;
  }

  body {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    min-width: inherit;
    -webkit-text-size-adjust: none;
  }

  .only_pc {
    display: none !important;
  }

  .only_sp {
    display: block !important;
  }

  .container {
    margin: 0 20px;
    width: auto;
  }

  .section {
    margin: 60px 0;
  }

  .sec_tit {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 10px 20px;
  }
}

/* ------------------------------------------
  animation
------------------------------------------ */
.passing_bar {
  display: inline-block;
  position: relative;
  transform: translate3d(0, 0, 0);
}

.passing_bar::before {
  animation: passing_bar 1s ease 1s forwards;
  background-color: rgba(255,255,255,.6);
  content: '';
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
}

.passing_bar::after {
  animation: passing_bar_after 1s ease 1s forwards;
  background-image: url(../img/top/bg_img_txt.png);
  content: '';
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 0;
}

.passing_txt {
  animation: passing_txt .5s ease 1.5s forwards;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

@keyframes passing_bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes passing_bar_after {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 0;
  }
  51% {
    left: 0;
    width: 0;
  }
  100% {
    left: 0;
    width: 100%;
  }
}

@keyframes passing_txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ------------------------------------------
  breadcrumb
------------------------------------------ */
.breadcrumb {
  margin: 20px 0 0;
  padding: 0;
}

.breadcrumb ul {
  font-size: 0;
}

.breadcrumb li {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    height: auto;
    margin: 0;
  }

  .breadcrumb ul {
    border-bottom: #eee 1px solid;
    overflow: hidden;
  }

  .breadcrumb li {
    font-size: 1.1rem;
  }

  .breadcrumb li a {
    display: inline-block;
  }

  .breadcrumb li::after {
    content: '\f105';
    font-family: FontAwesome;
    margin-left: .8em;
    margin-right: .8em;
  }

  .breadcrumb li:last-child::after {
    content: none;
  }

  .breadcrumb li span {
    display: block;
    padding: 15px 0;
  }
}

/* ------------------------------------------
  header
------------------------------------------ */
header {
  margin-top: 1em;
}

.header_top {
  display: flex;
  font-size: 1.2rem;
  margin: 0 0 0 1em;
}

.header_top .support {
  display: flex;
  font-size: 1.1rem;
  margin: -1.4em 0 0 auto;
}

.header_top .support li {
  margin-right: 2px;
}

.header_top .support a {
  background-color: #888;
  border-radius: 0 0 6px 6px;
  color: #fff;
  display: block;
  line-height: 30px;
  text-align: center;
  width: 160px;
}

.header_top .support a:hover {
  opacity: .75;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  header {
    margin: 0;
  }

  .header_top {
    height: 60px;
    margin: 0;
  }

  .corporatelogo {
    background-image: url(../img/common/header_logo_sp.png);
    background-size: cover;
    height: 20px;
    margin: 0 auto;
    margin-top: 20px;
    width: 145px;
  }

  .corporatelogo img {
    display: none;
  }

  .header_top .support {
    display: none;
  }
}

nav {
  border-bottom: #eee 1px solid;
}

.header_nav {
  display: table;
  margin: 10px auto 0;
}

.header_nav li {
  display: table-cell;
  font-size: 1.3rem;
  letter-spacing: .08em;
  height: 43px;
}

.header_nav a {
  display: block;
  padding: 10px 20px;
}

.header_nav a:hover {
  background-color: #f5f4f1;
  text-decoration: none;
  transition: none;
}

.header_nav a::after {
  color: #b6b6ab;
  content: '\f107';
  font-family: FontAwesome;
  margin-left: .5em;
}

.header_nav .menu_first {
  position: relative;  
}

.header_nav .menu_second {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
}

.header_nav .menu_second > li {
    display: block;
    height: auto;
}

.header_nav .menu_second > li a {
    font-size: 1rem;
    padding: 10px;
}

.header_nav .menu_second > li a::after {
    content: none;
}

.header_nav .menu_first:hover .menu_second {
    top: 43px;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}

.sp_nav_btn {
  display: none;
}

@media screen and (max-width: 767px) {
  nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    display: none;
    left: 0;
    margin: 0;
    padding: 0 5px;
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 100;
  }

  .sp_nav_btn {
    cursor: pointer;
    display: block;
    height: 35px;
    padding: 0 5px;
    position: absolute;
    right: 15px;
    top: 13px;
    width: 35px;
  }

  .sp_nav_btn span.icon {
    display: block;
    height: 17px;
    position: relative;
  }

  .sp_nav_btn span.arrow {
    background-color: #111;
    height: 1px;
    left: 0;
    position: absolute;
    transition: .3s;
    width: 100%;
  }

  .sp_nav_btn span.arrow:nth-of-type(1) {
    top: 0;
  }

  .sp_nav_btn span.arrow:nth-of-type(2) {
    top: 8px;
  }

  .sp_nav_btn span.arrow:nth-of-type(3) {
    bottom: 0;
  }

  .sp_nav_btn.active span.arrow:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }

  .sp_nav_btn.active span.arrow:nth-of-type(2) {
    opacity: 0;
  }

  .sp_nav_btn.active span.arrow:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }

  .sp_nav_btn span.txt {
    bottom: 0;
    display: block;
    font-size: 1rem;
    left: 50%;
    line-height: 1;
    margin-top: 5px;
    position: absolute;
    transform: translateX(-50%);
  }

  .header_nav {
    display: block;
    margin: 0;
  }

  .header_nav li {
    border-bottom: 1px solid #eee;
    display: block;
    font-size: 1.4rem;
    height: 45px;
    line-height: 45px;
  }

  .header_nav li:last-child {
    border: none;
  }

  .header_nav a {
    background: url(../img/common/ico_arrow_sp_header_nav.png) no-repeat right top;
    background-size: 22px auto;
    display: block;
    padding: 0 22px 0 5px;
    text-decoration: none;
  }

  .header_nav a::after {
    content: '';
  }
    
  .header_nav .acd_first {
     height: auto !important;
    }
    
  .header_nav .acd_second {
    display: none;
    height: 0;
    opacity: 0;
    padding: 10px;
    transition: .5s;
    visibility: hidden;
    padding: 0 22px 0 5px;
  }
    
  .header_nav .acd_second li {  
    border-bottom: 1px dotted #eee;
    display: block;
    height: 45px;
    line-height: 45px;
  }
    
  .header_nav .acd_second li a {
    background: url(../img/common/ico_arrow_sp_header_nav.png) no-repeat right top;
    background-size: 22px auto;
    font-size: 1.2rem;
    padding: 0 22px 0 15px;
  }
    
  .header_nav .acd-label {
    background: url(../img/common/ico_acd01_sp_header_nav.png) no-repeat right top;
    background-size: 22px auto;
    display: block;
    font-size: 1.4rem;
    height: 45px;
    line-height: 45px;
    padding: 0 22px 0 5px;
  }

  .header_nav .acd-check:checked + .acd-label{
    background: url(../img/common/ico_acd02_sp_header_nav.png) no-repeat right top;
    background-size: 22px auto;
    border-bottom: 1px solid #eee;
  }

  .header_nav .acd-check:checked + .acd-label + .acd_second{
    display: block;
    height: auto;
    opacity: 1;
    padding: 0 0 0 2rem;
    visibility: visible;
  }
    
}

/* ********** SNSアイコン（画面左端固定） ********** */
.sns_fixed {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  left: 0;
  line-height: 1;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}

.sns_fixed img {
  width: 34.3px;
}

.sns_fixed ul {
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.sns_fixed li {
  flex: auto;
}

.sns_fixed a {
  background-color: #fff;
  display: block;
}

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

/* ------------------------------------------
  footer
------------------------------------------ */
.contract_footer {
  background-color: #f4f4f4;
  margin-top: 110px;
  padding: 80px 0;
}

.contract_footer .contact_tit {
  font-size: 2.2rem;
  text-align: center;
}

.contract_footer .contact_tit span {
  display: inline-block;
  padding: 10px 55px;
  position: relative;
}

.contract_footer .contact_tit span::before {
  border: #666 1px solid;
  border-right: none;
  content: '';
  height: 100%;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 18px;
}

.contract_footer .contact_tit span::after {
  border: #666 1px solid;
  border-left: none;
  content: '';
  height: 100%;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 18px;
}

@media screen and (max-width: 767px) {
  .contract_footer {
    margin-top: 50px;
    padding: 50px 0;
  }

  .contract_footer .contact_tit {
    font-size: 1.8rem;
  }

  .contract_footer .contact_tit span {
    padding: 10px 20px;
  }
}

.contact_list {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.contact_list li {
  background-color: #fff;
  padding: 30px 30px 145px;
  position: relative;
  width: 320px;
}

.contact_list .contact_name {
  background-image: url(../img/common/bg_contact_name.png);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: auto 1px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.contact_list .contact_name_small {
  font-weight: bold;
}

.contact_list .data_list {
  display: table;
  width: 100%;
}

.contact_list .data_list + .data_list {
  margin-top: 10px;
}

.contact_list .contact_name_small + .data_list {
  margin-top: 10px;
}

.contact_list .data_list dt {
  display: table-cell;
  font-weight: bold;
  width: 6em;
}

.contact_list .data_list dd {
  display: table-cell;
}

.contact_list .btn_contact {
  bottom: 30px;
  left: 0;
  position: absolute;
  width: 100%;
}

.contact_list .btn_contact a {
  background-color: #fff;
  border: solid 1px #1e73be;
  color: #1e73be;
  background-image: url(../img/common/ico_mail01.png);
  background-position: center 18px;
  background-repeat: no-repeat;
  background-size: 36px auto;
  display: block;
  margin: 0 30px;
  padding: 56px 0 11px;
  text-align: center;
}

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

  .contact_list li {
    padding: 20px;
    width: auto;
  }

  .contact_list li + li {
    margin-top: 20px;
  }

  .contact_list .contact_name {
    font-size: 1.4rem;
  }

  .contact_list .data_list {
    font-size: 1.2rem;
  }

  .contact_list .btn_contact {
    margin-top: 20px;
    position: static;
  }

  .contact_list .btn_contact a {
    margin: 0;
  }
}

.link_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.link_list li {
  border: #ccc 1px solid;
  font-size: 1.6rem;
  text-align: center;
  width: 324px;
}

.link_list li:nth-child(3n - 1) {
  margin: 0 4px;
}

.link_list a {
  background-image: url(../img/common/ico_arrow04.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px auto;
  display: block;
  font-weight: bold;
  padding: 35px 0;
}

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

  .link_list li {
    font-size: 1.4rem;
    width: auto;
  }

  .link_list li:nth-child(3n-1) {
    margin: 10px 0 0;
  }

  .link_list li + li {
    margin-top: 10px;
  }

  .link_list a {
    padding: 20px 0;
  }
}

/* for pc */
#footer {
  margin-top: 0;
}


/****2022.06.08　font-size: 1.3rem;追加****/
#footer * {
  box-sizing: content-box;
  font-size: 1.3rem;
}

#footer img {
  display: inline;
  //vertical-align: middle;
}

#footer #footer_nav .footer_nav_inner {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  /* for sp */
  footer {
    color: #000;
    font-size: 1.6rem;
  }

  #footer #footer_item {
    margin-top: 0;
  }
}

/* ------------------------------------------
  post
------------------------------------------ */
.post_list {
  display: flex;
  flex-wrap: wrap;
}

.post_list > li {
  width: 230px;
}

.post_list > li + li {
  margin-left: 20px;
}

.post_list a:hover img {
  opacity: .75;
}

.post_list .cat_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}

.post_list .cat_list li {
  margin: 4px 4px 0 0;
}

.post_list .cat_list li a {
  background-color: #f4f4f4;
  border: #d0d0d0 1px solid;
  display: block;
  font-size: 1.1rem;
  padding: 2px 15px;
}

.post_list .post_tit {
  font-size: 1.6rem;
  margin-top: 11px;
}

.post_list .post_tit a {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .post_list > li {
    width: calc(50% - 10px);
  }

  .post_list > li:nth-child(even) {
    margin-left: 20px;
  }

  .post_list > li + li {
    margin: 0;
  }

  .post_list > li:nth-child(n+2) + li {
    margin-top: 20px;
  }

  .post_list .cat_list li a {
    padding: 2px 5px;
  }

  .post_list .post_tit {
    font-size: 1.4rem;
  }

  .post_list .post_excerpt {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------
  button
------------------------------------------ */
.btn01 a {
  border: solid 1px #1e73be;
  color: #1e73be;
  background-image: url(../img/common/ico_arrow02.png);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 8px auto;
  display: block;
  font-weight: bold;
  margin: 0 auto;
  max-width: 280px;
  padding: 16px 0;
  text-align: center;
}

.btn02 a {
  background-image: url(../img/common/ico_arrow03.png);
  background-position: right 9px center;
  background-repeat: no-repeat;
  background-size: 6px auto;
  border: #d0d0d0 1px solid;
  display: block;
  font-size: 1.2rem;
  padding: 5px 24px 5px 9px;
}

.btn03 a {
  background-color: #111;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto;
  max-width: 400px;
  padding: 21px 0;
  text-align: center;
}

.btn03 a::after {
  background-image: url(../img/common/ico_arrow06.png);
  background-size: cover;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 26px;
  width: 18px;
}

@media screen and (max-width: 767px) {
  .btn03 a {
    background-image: url(../img/common/ico_arrow06_sp.png);
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 14px auto;
    font-size: 1.4rem;
    max-width: 280px;
    padding: 16px 0;
  }

  .btn03 a::after {
    content: none;
  }
}

@media screen and (min-width: 768px) {
    header {
        min-width: 980px;
    }
    .mv {
        min-width: 980px;
    }
    .contract_footer {
        min-width: 980px;
    }
    #footer #footer_nav {
        min-width: 980px;
    }
    #footer .footer_nav_bg {
        min-width: 980px;
    }
}