@charset "UTF-8";
/***********************共通設定************************/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/* アニメーション名を指定する */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/* footer */
/***********************共通設定************************/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/* アニメーション名を指定する */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
siteHead
----------------------------------------------------*/
#siteHead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgbs(255, 255, 255, 0.85);
  z-index: 99;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* -340 */
}
#siteHead.showNav {
  margin-top: 0;
}
#siteHead .innerBig {
  position: relative;
  height: 100%;
}
#siteHead .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: auto;
  margin: 13px 0 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}
#siteHead .logo a {
  display: block;
}
#siteHead .contact_btn_sp {
  display: block;
  position: absolute;
  top: 17px;
  right: 60px;
}
@media all and (min-width: 1181px) {
  #siteHead .contact_btn_sp {
    display: none;
  }
}
#siteHead .contact_btn_sp img {
  width: 24px;
  height: 16px;
}
#siteHead .menu {
  cursor: pointer;
  position: absolute;
  width: 44px;
  height: 44px;
  top: 0;
  right: 0;
  margin: 4px 11px 0 0;
  background: transparent;
  z-index: 99;
}
#siteHead .menu span {
  display: block;
  position: absolute;
  right: 10px;
  width: 20px;
  height: 1px;
  background: #366288;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#siteHead .menu span:nth-child(1) {
  top: 14px;
}
#siteHead .menu span:nth-child(2) {
  top: 20px;
}
#siteHead .menu span:nth-child(3) {
  top: 26px;
}
#siteHead .menu.open span {
  background: white;
}
#siteHead .menu.open span:nth-child(1) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: 9px;
  top: 20px;
  width: 26px;
}
#siteHead .menu.open span:nth-child(2) {
  right: 20px;
  top: 20px;
  width: 0;
}
#siteHead .menu.open span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  right: 9px;
  top: 20px;
  width: 26px;
}
@media all and (max-width: 340px) {
  #siteHead .logo {
    margin-left: 10px;
  }
}
@media all and (min-width: 1181px) {
  #siteHead .logo {
    margin: 16px 0 0 40px;
    width: 255px;
  }
  #siteHead .logo a img {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #siteHead .logo a:hover img {
    opacity: 0.8;
  }
}
@media all and (min-width: 1181px) {
  #siteHead {
    height: 64px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #siteHead.scr {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 94px;
    margin-top: 0;
  }
  #siteHead .menu {
    display: none;
  }
}

#pageHome #siteHead {
  position: absolute;
}
@media all and (min-width: 1181px) {
  #pageHome #siteHead .logo {
    margin: 16px 0 0 40px;
  }
}
@media all and (min-width: 1181px) {
  #pageHome #siteHead.scr {
    height: 64px;
  }
  #pageHome #siteHead.scr .logo {
    margin-top: 22px;
  }
}
#pageHome #siteHead .not_home {
  display: none;
}
#pageHome #siteHead .menu span {
  background: #EFEFEF;
}
#pageHome #siteHead .logo .color {
  display: none;
}
#pageHome #siteHead.nav_fixed {
  opacity: 0;
  position: fixed;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  background: white;
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#pageHome #siteHead.nav_fixed #gNav:not(.open) a {
  color: #3f3f3f;
}
#pageHome #siteHead.nav_fixed #gNav:not(.open) a span::before {
  background-color: #3f3f3f;
}
#pageHome #siteHead.nav_fixed .logo:not(.open) .white {
  display: none;
}
#pageHome #siteHead.nav_fixed .logo:not(.open) .color {
  display: block;
}
#pageHome #siteHead.nav_fixed .contact_btn_sp.p_home {
  display: none;
}
#pageHome #siteHead.nav_fixed .contact_btn_sp.not_home {
  display: block;
}
@media all and (min-width: 1181px) {
  #pageHome #siteHead.nav_fixed .contact_btn_sp.not_home {
    display: none;
  }
}
#pageHome #siteHead.nav_fixed .menu:not(.open) span {
  background: #366288;
}

/* 下層ページの処理 */
body:not(#pageHome) #siteHead {
  background: white;
}
body:not(#pageHome) #siteHead .logo .white {
  display: none;
}
body:not(#pageHome) #siteHead .logo.open a::before {
  left: 0;
  top: 0;
  content: "";
  position: absolute;
  background: url("../images/fuso_logo_top.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------
gNav
----------------------------------------------------*/
#gNav {
  color: #FFFFFF;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  /* 751- */
}
#gNav a {
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 1180px) {
  #gNav {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100vh;
    background: #000000;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    padding-bottom: 50px;
  }
  #gNav.open {
    visibility: visible;
    opacity: 1;
  }
  #gNav .sub {
    display: none;
  }
  #gNav .navi {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  #gNav .navi > li > a span {
    position: relative;
  }
  #gNav .navi > li > a span::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: white;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    /* マウスが離れた時に右に戻る */
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  }
  #gNav .navi > li > a:hover {
    text-decoration: none;
  }
  #gNav .navi > li > a:hover span::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    /* マウスが乗った時は左から出る */
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  #gNav .navi > li > a.current {
    cursor: default;
  }
}
@media all and (min-width: 1181px) {
  #gNav:not(.open) .navi {
    text-align: right;
    margin: 4px 40px 0 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #gNav:not(.open) .navi > li {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
  }
  #gNav:not(.open) .navi > li.information {
    display: none;
  }
  #gNav:not(.open) .navi > li > a {
    position: relative;
    display: block;
    padding: 20px 14px 24px;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0em;
    /* 1297- */
    font-weight: 400;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
@media all and (min-width: 1181px) and (min-width: 1297px) {
  #gNav:not(.open) .navi > li > a {
    letter-spacing: 0.08em;
  }
}
@media all and (min-width: 1181px) {
  #gNav:not(.open) .navi > li > a.current span::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #gNav:not(.open) .navi > li > a.current {
    pointer-events: none;
  }
  #gNav.open {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
#gNav.open {
  display: block;
  overflow-y: auto;
  text-align: center;
}
#gNav.open .navi {
  display: inline-block;
  padding: 100px 20px 40px 20px;
}
#gNav.open .navi > li {
  text-align: left;
}
#gNav.open .navi > li > a {
  position: relative;
  display: block;
  padding: 20px 0;
  text-align: center;
}
#gNav.open .navi > li > a:hover {
  text-decoration: none;
}
#gNav.open .navi > li span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.12em;
  font-weight: 400;
  line-height: 1.2;
}

@media all and (min-width: 1181px) {
  #pageHome #gNav:not(.open) .navi > li > a.current, #pageHome #gNav:not(.open) .navi > li > a:hover {
    color: #FFFFFF;
    opacity: 0.8;
  }
}

body:not(#pageHome) #gNav {
  /* 751- */
}
@media all and (min-width: 751px) {
  body:not(#pageHome) #gNav:not(.open) a {
    color: #3f3f3f;
  }
  body:not(#pageHome) #gNav:not(.open) a span::before {
    background-color: #3f3f3f;
  }
}

/*----------------------------------------------------
追従　お問い合わせボタンPC
----------------------------------------------------*/
.contact_btn_pc {
  display: none;
}
@media all and (min-width: 1181px) {
  .contact_btn_pc {
    z-index: 99;
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #4b82b2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 25px 40px;
    font-size: 16px;
    letter-spacing: 0.13em;
    line-height: 1.1;
  }
  .contact_btn_pc span {
    display: inline-block;
    position: relative;
    color: #FFFFFF;
    padding-left: 44px;
  }
  .contact_btn_pc span::before {
    content: "";
    position: absolute;
    background: url(../images/icon/mail.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    height: 20px;
  }
}
@media (min-width: 1181px) and (hover: hover) {
  .contact_btn_pc:hover {
    background: #eceff2;
  }
  .contact_btn_pc:hover span {
    color: #366288;
  }
  .contact_btn_pc:hover span::before {
    background: url(../images/icon/mail_hover.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/* footer */
/***********************共通設定************************/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/* アニメーション名を指定する */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
footer
----------------------------------------------------*/
#footer {
  position: relative;
  z-index: 2;
  /* 751- */
}
#footer .logo {
  width: 160px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .logo {
    width: 220px;
  }
}
#footer .contactAreas {
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .contactAreas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#footer .contactAreas > .area {
  text-align: left;
  padding: 40px 20px;
  border-bottom: 1px solid #dde2e8;
  /* 751- */
}
#footer .contactAreas > .area.mail {
  border-top: 1px solid #dde2e8;
}
@media all and (min-width: 751px) {
  #footer .contactAreas > .area {
    width: 50%;
    padding: 100px 60px;
    border-top: 1px solid #dde2e8;
  }
  #footer .contactAreas > .area.mail {
    border-right: 1px solid #dde2e8;
  }
}
#footer .contactAreas > .area h2 {
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1.6667;
  margin-bottom: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .contactAreas > .area h2 {
    font-size: 23px;
    letter-spacing: 0.12em;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}
#footer .contactAreas > .area h2 .en {
  color: #3e88c8;
  display: block;
  font-family: "Noto sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 13px;
  padding-bottom: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .contactAreas > .area h2 .en {
    font-size: 15px;
  }
}
#footer .contactAreas > .area .link a {
  text-decoration: none;
  position: relative;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #footer .contactAreas > .area .link a {
    border-bottom: 1px solid #3f3f3f;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}
@media all and (min-width: 751px) {
  #footer .contactAreas > .area .link a {
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  #footer .contactAreas > .area .link a::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #3f3f3f;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    /* マウスが離れた時に右に戻る */
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  }
  #footer .contactAreas > .area .link a:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    /* マウスが乗った時は左から出る */
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}
#footer .contactAreas .area.mail .mail_address {
  display: block;
  margin-top: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .contactAreas .area.mail .mail_address {
    margin-top: 30px;
  }
}
#footer .contactAreas .area.mail .mail_address span img {
  width: 171px;
  height: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .contactAreas .area.mail .mail_address span img {
    width: 202px;
    height: 19px;
  }
}
@media (hover: hover) {
  #footer .contactAreas .area.mail .mail_address:hover span::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    /* マウスが乗った時は左から出る */
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}
#footer .contactAreas .area.phone {
  /* 751- */
}
#footer .contactAreas .area.phone .time {
  color: #969696;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 2;
}
@media all and (min-width: 751px) {
  #footer .contactAreas .area.phone .time {
    margin-top: 30px;
    font-size: 13px;
    letter-spacing: 0.12em;
    line-height: 1.8;
  }
}
#footer .copyrights {
  font-size: 10px;
  letter-spacing: 0;
  line-height: 2;
  color: #BFBFBF;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .copyrights {
    font-size: 11px;
    letter-spacing: 0;
    line-height: 2;
  }
}
#footer .main {
  text-align: left;
  padding: 60px 20px 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .main {
    padding: 150px 60px 80px;
  }
}
#footer .main .logo {
  margin: 0 0 16px 0;
}

/*----------------------------------------------------
nav(PCのみ)
----------------------------------------------------*/
nav {
  margin-bottom: 90px;
}
nav a:hover {
  text-decoration: none;
}
nav .lt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
  margin: 0 auto;
  /* 751- */
}
nav .lt a {
  position: relative;
}
nav .lt a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #272727;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /* マウスが離れた時に右に戻る */
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  nav .lt a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    /* マウスが乗った時は左から出る */
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
nav .lt li:first-child {
  padding-right: 30px;
}
nav .lt li:not(:first-child) {
  padding: 0 30px;
  border-left: 1px solid #C0C0C0;
}
@media all and (min-width: 751px) {
  nav .lt {
    max-width: 600px;
  }
}
@media screen and (min-width: 751px) and (max-width: 814px) {
  nav .lt {
    max-width: 800px;
  }
  nav .lt li:nth-of-type(4) {
    border-right: 1px solid #C0C0C0;
  }
}
@media screen and (min-width: 815px) and (max-width: 1269px) {
  nav .lt {
    max-width: 800px;
  }
  nav .lt li:nth-of-type(5) {
    border-right: 1px solid #C0C0C0;
  }
}
@media all and (min-width: 1270px) {
  nav .lt {
    max-width: initial;
  }
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  /* for iOS */
  -webkit-text-size-adjust: 100%;
}

img {
  /* for Chrome */
  -webkit-backface-visibility: hidden;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3f3f3f;
  font-size: 13px;
  line-height: 1.923;
  text-align: center;
  background: #f7f9fc;
  padding-top: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    font-size: 15px;
    line-height: 2;
  }
}

.sans {
  font-family: "Noto sans", sans-serif;
  font-weight: 400;
}

body.fixed {
  overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

section, picture {
  display: block;
}

a {
  color: #3f3f3f;
  outline: none;
  text-decoration: none;
}

a:link {
  color: #3f3f3f;
  text-decoration: none;
}

a:visited {
  color: #3f3f3f;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

a img {
  border: none;
}

ul, li {
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

.disp_non {
  display: none;
}

/* -750 */
@media all and (max-width: 750px) {
  html,
  body {
    height: auto;
  }
  .forPC,
  .forPC_il {
    display: none;
  }
  .forSP {
    display: block;
  }
}
/* 751- */
@media all and (min-width: 751px) {
  html,
  body {
    height: 100%;
  }
  body {
    min-height: 100%;
    height: auto !important;
  }
  .forPC {
    display: block;
  }
  .forPC_il {
    display: inline;
  }
  .forSP {
    display: none;
  }
}
.nowrap {
  white-space: nowrap;
}

em {
  font-style: normal;
}

strong {
  font-weight: bold;
}

/* scr_m */
.scr_m {
  /* 751- */
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.48, 0.31, 0.09, 0.97);
          transition-timing-function: cubic-bezier(0.48, 0.31, 0.09, 0.97);
  opacity: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .scr_m.del {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .scr_m.del2 {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .scr_m.del3 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .scr_m.del4 {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .scr_m.del5 {
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
}
.scr_m.slideTop {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
}
.scr_m.slideBottom, .scr_m.slideBottomMin {
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
}
.scr_m.slideRight {
  -webkit-transform: translateX(35px);
          transform: translateX(35px);
}
.scr_m.slideLeft {
  -webkit-transform: translateX(-35px);
          transform: translateX(-35px);
}
.scr_m.go {
  opacity: 1;
}
.scr_m.go.slideTop, .scr_m.go.slideBottom, .scr_m.go.slideBottomMin {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.scr_m.go.slideRight, .scr_m.go.slideLeft {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
@media all and (min-width: 751px) {
  .scr_m.slideTop {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  .scr_m.slideBottom {
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
  .scr_m.slideBottomMin {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .scr_m.slideRight {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  .scr_m.slideLeft {
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
}

/* move */
.move {
  opacity: 0;
  -webkit-transition: opacity 1.4s, -webkit-transform 1.4s;
  transition: opacity 1.4s, -webkit-transform 1.4s;
  transition: transform 1.4s, opacity 1.4s;
  transition: transform 1.4s, opacity 1.4s, -webkit-transform 1.4s;
  -webkit-transition-timing-function: cubic-bezier(0.48, 0.31, 0.09, 0.97);
          transition-timing-function: cubic-bezier(0.48, 0.31, 0.09, 0.97);
}
.move.slideTop {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
}
.move.slideBottom {
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
}
.move.slideRight {
  -webkit-transform: translateX(35px);
          transform: translateX(35px);
}
.move.slideLeft {
  -webkit-transform: translateX(-35px);
          transform: translateX(-35px);
}
.move.del {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.move.del2 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.move.del3 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.move.del4 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.move.del5 {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.move.del6 {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.move.go {
  opacity: 1;
}
.move.go.slideTop, .move.go.slideBottom {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.move.go.slideRight, .move.go.slideLeft {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

/*----------------------------------------------------
改行 表示非表示
----------------------------------------------------*/
.hide {
  display: none;
}

.opacity {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.brsp {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .brsp {
    display: none;
  }
}

.brpc {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .brpc {
    display: block;
  }
}

/*----------------------------------------------------
pageWrapper
----------------------------------------------------*/
#pageWrapper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  transition: opacity 1.2s;
}

#pageWrapper.view {
  opacity: 1;
}

/*----------------------------------------------------
loader
----------------------------------------------------*/
#loaderBg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFFFFF;
  z-index: 10000;
}

/*----------------------------------------------------
inner
----------------------------------------------------*/
.inner,
.innerSP {
  width: calc(100% - 60px);
  margin: 0 30px;
}

/* 751- */
@media all and (min-width: 751px) {
  .inner,
  .innerPC {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
  .innerSP {
    margin: 0;
  }
}
/* 1297- */
@media all and (min-width: 1297px) {
  .inner,
  .innerPC {
    width: 1200px;
    margin: 0 auto;
  }
}
.innerMax {
  width: 100%;
  margin: 0 auto;
  /* 1367- */
}
@media all and (min-width: 1367px) {
  .innerMax {
    width: 1366px;
  }
}

/*----------------------------------------------------
imgHov
----------------------------------------------------*/
/* 751- */
@media all and (min-width: 751px) {
  .imgHov .image,
  .imgHov a {
    cursor: pointer;
    overflow: hidden;
  }
  .imgHov .image img,
  .imgHov a img {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .imgHov:hover .image img,
  .imgHov:hover a img {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
/*----------------------------------------------------
main>.section
----------------------------------------------------*/
main > .section {
  padding: 70px 0 90px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main > .section {
    padding: 140px 0 160px;
  }
}

/*----------------------------------------------------
sectionTitle　トップページ
----------------------------------------------------*/
#pageHome .sectionTitle {
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.15em;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  #pageHome .sectionTitle {
    font-size: 40px;
    letter-spacing: 0.15em;
    line-height: 1;
  }
}
#pageHome .sectionTitle .en {
  display: inline-block;
  position: relative;
  min-height: 12px;
  margin: 22px 0;
  color: #3e88c8;
  font-family: "Noto sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  #pageHome .sectionTitle .en {
    margin: 60px 0 30px;
    font-size: 17px;
    letter-spacing: 0.15em;
    line-height: 1;
  }
}
#pageHome .sectionTitle .en::before {
  content: "";
  position: absolute;
  background: url(../images/common/section_title_icon_gray.png);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -22px;
  left: 50%;
  width: 14px;
  height: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #pageHome .sectionTitle .en::before {
    top: -60px;
    width: 31px;
    height: 24px;
  }
}
#pageHome .sectionTitle.center {
  text-align: center;
}
#pageHome .sectionTitle.white {
  text-align: left;
  color: #FFFFFF;
}
#pageHome .sectionTitle.white .en {
  margin: 0 0 22px;
  padding-left: 25px;
  color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  #pageHome .sectionTitle.white .en {
    margin: 0 0 30px;
    padding-left: 52px;
  }
}
#pageHome .sectionTitle.white .en::before {
  background-image: url(../images/common/section_title_icon_blue.png);
  top: 0;
  left: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #pageHome .sectionTitle.white .en::before {
    left: 21px;
  }
}

/*----------------------------------------------------
sectionTitle　下層ページ
----------------------------------------------------*/
.sectionTitle {
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.15em;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sectionTitle {
    font-size: 34px;
    letter-spacing: 0.15em;
    line-height: 1;
  }
}
.sectionTitle .en {
  display: inline-block;
  position: relative;
  margin: 17px 0 22px;
  font-family: "Noto sans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sectionTitle .en {
    margin: 33px 0 30px;
    font-size: 15px;
    letter-spacing: 0.15em;
    line-height: 1;
  }
}
.sectionTitle .en::before {
  content: "";
  position: absolute;
  background: url(../images/common/section_title_icon_gray.png);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -17px;
  left: 50%;
  width: 14px;
  height: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sectionTitle .en::before {
    top: -33px;
    width: 23px;
    height: 18px;
  }
}
.sectionTitle.white {
  text-align: left;
  color: #FFFFFF;
}
.sectionTitle.white .en {
  margin: 0 0 14px;
  padding-left: 25px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sectionTitle.white .en {
    margin: 0 0 30px;
    padding-left: 40px;
  }
}
.sectionTitle.white .en::before {
  background-image: url(../images/common/section_title_icon_blue.png);
  top: 0;
  left: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sectionTitle.white .en::before {
    left: 17px;
  }
}

/*----------------------------------------------------
js スクロール時の動き
----------------------------------------------------*/
.boxOpacity {
  opacity: 0;
}

/* 下からフワッと出てくる */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInTitleTrigger {
  opacity: 0;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}

.slideInTitle {
  -webkit-animation: fadeLeftAnime 0.6s forwards;
          animation: fadeLeftAnime 0.6s forwards;
}
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/*----------------------------------------------------
詳細へ飛ぶボタン
----------------------------------------------------*/
.goDetail a {
  text-decoration: none;
  position: relative;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1;
  /* 751- */
}
.goDetail a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: -75%;
  bottom: -15px;
  width: 250%;
  height: 1px;
  background-color: #182E41;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /* マウスが離れた時に右に戻る */
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .goDetail a:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    /* マウスが乗った時は左から出る */
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}
@media all and (min-width: 751px) {
  .goDetail a {
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}
.goDetail.white a {
  color: white;
}
.goDetail.white a::before {
  background-color: white;
}

/*----------------------------------------------------
ページナビ
----------------------------------------------------*/
.wp-pagenavi {
  margin-top: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 751- */
}
.wp-pagenavi .pages {
  /* 総ページ数の非表示 例：「1/3」みたいなやつ */
  display: none;
}
.wp-pagenavi .next, .wp-pagenavi .prev, .wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi .extend {
  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;
  border: 1px solid #EFEFEF;
  border-radius: 50%;
  margin-right: 20px;
  width: 34px;
  height: 34px;
  color: #989898;
  background-color: #EFEFEF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1;
}
.wp-pagenavi .page, .wp-pagenavi .current {
  background-color: #EFEFEF;
  color: #366288;
}
.wp-pagenavi span.current {
  border-color: #366288 !important;
}
@media all and (min-width: 751px) {
  .wp-pagenavi {
    margin-top: 110px;
  }
  .wp-pagenavi .next:hover, .wp-pagenavi .prev:hover, .wp-pagenavi .page:hover, .wp-pagenavi .first:hover, .wp-pagenavi .last:hover {
    background-color: #EFEFEF;
    color: #366288;
    border-color: #366288;
  }
}

/*----------------------------------------------------
パンくずリスト
----------------------------------------------------*/
#breadcrumb {
  margin-top: 70px;
  text-align: initial;
  /* 751- */
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#breadcrumb li {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
}
#breadcrumb li:not(:last-child) {
  margin-right: 30px;
}
#breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: solid 1px #272727;
  border-right: solid 1px #272727;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 2px);
  right: -15px;
}
#breadcrumb li:last-child {
  pointer-events: none;
}
@media all and (min-width: 751px) {
  #breadcrumb {
    margin-top: 115px;
  }
  #breadcrumb li {
    font-size: 13px;
  }
  #breadcrumb li:not(:last-child)::after {
    top: calc(50% - 2px);
    width: 6px;
    height: 6px;
  }
  #breadcrumb li.singleTitle {
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #breadcrumb li a {
    /* 751- */
  }
  #breadcrumb li a span {
    position: relative;
    color: #3f3f3f;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  #breadcrumb li a span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3f3f3f;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  #breadcrumb li a:hover span {
    opacity: 0.7;
  }
  #breadcrumb li a:hover span::after {
    width: 100%; /*横幅を伸ばす*/
    opacity: 1; /*不透明に*/
  }
}

/*----------------------------------------------------
下層ファーストビュー
----------------------------------------------------*/
.fv1 {
  margin-top: 65px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv1 {
    margin-top: 78px;
  }
}

/*----------------------------------------------------
下層ファーストビュー パターン2
----------------------------------------------------*/
.fv2 {
  text-align: initial;
  padding-top: 65px;
  /* 751- */
  /* -750 */
  /* 751- */
}
@media all and (min-width: 751px) {
  .fv2 {
    padding-top: 70px;
  }
}
.fv2 .pageTitle {
  margin-bottom: 49px;
}
@media all and (max-width: 750px) {
  .fv2 .image {
    position: relative;
    margin-bottom: 40px;
    right: -30px;
  }
}
.fv2 .anchor {
  /* 751- */
}
.fv2 .anchor ul li:not(:last-child) {
  margin-bottom: 15px;
}
.fv2 .anchor a {
  display: inline-block;
  position: relative;
  margin-left: 36px;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.6667;
}
.fv2 .anchor a::before, .fv2 .anchor a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 36px;
  background-color: #D0D0D0;
  left: -46px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fv2 .anchor a::after {
  opacity: 0;
  width: 0px;
}
@media all and (min-width: 751px) {
  .fv2 .anchor ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .fv2 .anchor a {
    font-size: 16px;
    margin-left: 48px;
  }
  .fv2 .anchor a::before, .fv2 .anchor a::after {
    width: 48px;
    left: -55px;
  }
  .fv2 .anchor a::after {
    opacity: 1;
    width: 0px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .fv2 .anchor a:hover::after {
    width: 48px;
    background: #3f3f3f;
  }
}
@media all and (min-width: 751px) {
  .fv2 .wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .fv2 .pageTitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .fv2 .image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .fv2 .anchor {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-top: auto;
  }
}

/*----------------------------------------------------
下層ページタイトル
----------------------------------------------------*/
.pageTitle {
  text-align: initial;
  /* 751- */
}
.pageTitle span {
  display: block;
}
.pageTitle .jp {
  font-size: 13px;
  letter-spacing: 0.15em;
  line-height: 1.428;
  margin-bottom: 15px;
}
.pageTitle .en {
  font-family: "Noto sans", sans-serif;
  font-size: 26px;
  letter-spacing: 0.15em;
  line-height: 1.3;
  font-weight: 300;
}
@media all and (min-width: 751px) {
  .pageTitle .jp {
    font-size: 20px;
    padding-top: 8px;
  }
  .pageTitle .en {
    font-size: 54px;
  }
}

/*----------------------------------------------------
お知らせ(記事一覧表示)
----------------------------------------------------*/
#information .lt {
  text-align: initial;
  /* 751- */
}
#information .lt li {
  border-top: 1px solid #DEDEDE;
}
#information .lt li:last-child {
  border-bottom: 1px solid #DEDEDE;
}
#information .lt li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 26px 30px 26px 0;
}
#information .lt .info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  #information .lt .info {
    margin-bottom: 10px;
  }
}
#information .lt .info .date {
  font-size: 11px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-right: 16px;
}
#information .lt .info .category {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #3e88c8;
  position: relative;
}
#information .lt .title {
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.166;
  font-weight: 400;
  position: relative;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#information .lt .title span {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(#414141), to(#414141));
  background-image: linear-gradient(90deg, #414141, #414141); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #information .lt li a {
    padding: 51px 84px 54px 0;
    -webkit-column-gap: 47px;
       -moz-column-gap: 47px;
            column-gap: 47px;
  }
  #information .lt li a:hover .title span {
    background-size: 100% 1px; /* 線の横幅を100%にする */
  }
  #information .lt li a:hover .arrow {
    right: 0px;
  }
  #information .lt .info {
    margin-bottom: 15px;
  }
  #information .lt .info .date {
    font-size: 14px;
    margin-right: 46px;
  }
  #information .lt .info .category {
    font-size: 14px;
  }
  #information .lt .title {
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 2.166;
  }
}
@media all and (min-width: 1000px) {
  #information .lt li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #information .lt li a .title {
    width: 67.8%;
  }
  #information .lt .info {
    margin-bottom: 0;
  }
}
#information .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50% s);
          transform: translateY(-50% s);
  right: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #eceff2;
  /* 751- */
}
#information .arrow::after {
  content: "";
  position: absolute;
  background: url("../images/top/information/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media all and (min-width: 751px) {
  #information .arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #information .arrow::after {
    content: "";
    position: absolute;
    background: url("../images/top/information/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 13px;
  }
}

/*----------------------------------------------------
記事個別ページ 
----------------------------------------------------*/
#single {
  max-width: 1000px;
  margin: 0 auto;
}
#single .linkArea {
  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;
  margin: 60px auto 80px;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .linkArea {
    margin: 80px auto 130px;
  }
}
#single .linkArea .toPrev, #single .linkArea .toNext {
  position: relative;
  width: 30px;
  height: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .linkArea .toPrev, #single .linkArea .toNext {
    width: 50px;
    height: 50px;
  }
}
#single .linkArea .toPrev .arrow {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .linkArea .toPrev .arrow {
    left: 15px;
  }
  #single .linkArea .toPrev .arrow:hover {
    left: 0px;
  }
}
#single .linkArea .toNext .arrow {
  right: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .linkArea .toNext .arrow {
    right: 15px;
  }
  #single .linkArea .toNext .arrow:hover {
    right: 0;
  }
}
#single .linkArea .arrow {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #EFEFEF;
  /* 751- */
}
#single .linkArea .arrow::after {
  content: "";
  position: absolute;
  background: url("../images/top/information/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 7px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
#single .linkArea .arrow.nopage {
  opacity: 0.5;
  pointer-events: none;
}
@media all and (min-width: 751px) {
  #single .linkArea .arrow {
    top: 50%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #single .linkArea .arrow::after {
    content: "";
    position: absolute;
    background: url("../images/top/information/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
  }
}
#single .linkArea > span {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .linkArea > span:hover {
    opacity: 0.8;
  }
}
#single .linkArea > span.nopage {
  color: #aaa;
  text-decoration: none;
}

/*----------------------------------------------------
記事個別ページ 「the_contents()」で吐き出される内容を調整
----------------------------------------------------*/
#singleContents {
  padding-bottom: 45px;
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 60px;
  /* 751- */
}
#singleContents a {
  color: #AC9E75;
  text-decoration: underline;
}
#singleContents h1, #singleContents h2, #singleContents h3, #singleContents h4, #singleContents h5, #singleContents h6 {
  letter-spacing: 0.05em;
  font-weight: 500;
}
#singleContents h1, #singleContents h2, #singleContents h3 {
  line-height: 1.66;
}
#singleContents h1 {
  margin: 3rem 0 1rem;
  font-size: 24px;
}
#singleContents h2, #singleContents h3 {
  margin: 2.5rem 0 1rem;
}
#singleContents h2 {
  font-size: 22px;
}
#singleContents h3 {
  font-size: 18px;
}
#singleContents .wp-block-image {
  margin: 2rem 0;
}
#singleContents p {
  margin-bottom: 1rem;
  line-height: 2.285;
}
@media all and (min-width: 751px) {
  #singleContents {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
  #singleContents h1 {
    margin: 3rem 0 1rem;
    font-size: 26px;
  }
  #singleContents h2, #singleContents h3 {
    margin: 2.5rem 0 1rem;
  }
  #singleContents h2 {
    font-size: 1.8em;
  }
  #singleContents h3 {
    font-size: 1.6em;
  }
  #singleContents h4 {
    font-size: 1.4em;
  }
}
/*# sourceMappingURL=common.css.map */