@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/**/
/*==========================================
Common CSS
==========================================*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /*1rem = 10px*/
}
body {
  min-height: 100vh;
  position: relative;
  font-size: 1.6rem; /*16px*/
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #000;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, sans-serif;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  body {
    font-size: 1.4rem; /*14px*/
  }
}
img {
  width: 100%;
  vertical-align: middle;
}
body {
  animation: fadein 1s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------
color
---------------*/ :root {
  --pink: #f72e80;
  --blue: #007daf;
}
.pink {
  color: #f72e80;
}
.blue {
  color: #007daf;
}
/*-------------
font-size
---------------*/ :root {
  --fs40: 4rem;
  --fs33: 3.3rem;
  --fs30: 3rem;
  --fs24: 2.4rem;
  --fs20: 2rem;
  --fs18: 1.8rem;
  --fs16: 1.6rem;
}
@media screen and (max-width:768px) {
  :root {
    --fs40: 2.5rem;
    --fs33: 1.8rem;
    --fs30: 1.8rem;
    --fs24: 1.8rem;
    --fs20: 1.6rem;
    --fs18: 1.6rem;
    --fs16: 1.4rem;
  }
}
/*-------------
見出し
---------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
h1.headline {
  font-size: var(--fs30);
  border-top: 5px solid var(--blue);
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: var(--blue);
  text-align: center;
}
@media screen and (max-width:768px) {
  h1.headline {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/*-------------
column
---------------*/
.wrap1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.wrap1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .wrap1200, .wrap1000 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*-------------
表示・非表示
---------------*/
@media screen and (min-width:769px) { /*PC*のみで表示*/
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width:768px) { /*スマホのみで表示*/
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*-------------
link
---------------*/
a {
  text-decoration: none;
}
a:link {

  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  transition: .3s;
  opacity: .8;
}
a:active {
  text-decoration: none;
}
/*-------------
電話番号
---------------*/
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }
  a[href^="tel:"]:hover {
    text-decoration: underline;
  }
}
/*-------------
リンクボタン
---------------*/
.link-button {
  display: block;
  max-width: 300px;
  border-radius: 999px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 700;
}
/*よかもーる　リンクボタン*/
.yokamall-area__button {
  background: #ffff00;
  color: #000;
  position: relative;
  margin-top: 20px;
  padding-right: 20px;
}
.yokamall-area__button::before {
  content: "";
  display: block;
  background: url("images/arrow-black.svg") no-repeat;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width:768px) {
  .yokamall-area__button {
    margin-right: auto;
    margin-left: auto;
  }
}
/*WEBで口座開設　ボタン*/
.account-web-button {
  background: #804f21;
  color: #fff;
  position: relative;
  margin-top: 20px;
}
.account-web-button::before {
  content: "";
  display: block;
  background: url("images/arrow-white.svg") no-repeat;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
/*肥後銀行投資信託口座ログオン　ボタン*/
.account-shintaku-button {
  background: #007daf;
  color: #fff;
  position: relative;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
.account-shintaku-button::before {
  content: "";
  display: block;
  background: url("images/arrow-white.svg") no-repeat;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
/*九州FG証券口座ログオン　ボタン*/
.account-fg-button {
  background: #9bc819;
  color: #fff;
  position: relative;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
.account-fg-button::before {
  content: "";
  display: block;
  background: url("images/arrow-white.svg") no-repeat;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
/*==========================================
header
==========================================*/
header {
  display: flex;
  background: #fff;
  padding: 0 0 15px 12px;
}
header .higo {
  max-width: 190px;
}
header .code {
  font-size: 10px;
  margin: 12px 0 0 25px;
  text-align: center;
}
header .flex {
  width: 509px;
  display: flex;
  flex-direction: column;
  margin: 12px 0 0 25px;
}
header .flex .flex_top {
  display: flex;
}
header .kfg {
  max-width: 182.72px;
}
header .kagoshima {
  max-width: 127.5px;
}
header .flex .flex_bottom {
  display: flex;
  margin-top: 5px;
}
header .kfgs {
  max-width: 105px;
}
header .kyu_ds {
  max-width: 190.91px;
}
header .creation {
  max-width: 154px;
}
header .flex .flex_top div, header .flex .flex_bottom div {
  margin-right: 30px;
}
@media screen and (max-width:768px) {
  header {
    padding: 0 0 5px 5px;
  }
  header .higo {
    width: 98px;
  }
  header .flex {
    margin-left: 5px;
  }
  header .kfg {
    max-width: 27px;
    margin-left: 0px;
  }
}
/*----------------------------------------------------
main
------------------------------------------------------*/
@media screen and (min-width:769px) {
  main {
    min-width: 1300px;
  }
}
/*----------------------------------------------------
fv-area
------------------------------------------------------*/
/*----------------------------------------------------
present-area
------------------------------------------------------*/
.present-area {
  background: url("images/present-bg.png"), #ebf4f7;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.present-content {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 10rem;
}
@media screen and (max-width:768px) {
  .present-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .present-content {
    padding: 2rem 1.5rem;
  }
}
.present-content__txt {
  text-align: center;
  font-weight: 700;
  font-size: var(--fs33);
}
@media screen and (max-width:768px) {
  .present-content__txt {
    text-align: left;
  }
}
.present-content__txt .small {
  font-size: var(--fs16);
  display: block;
}
.present-item {
  text-align: center;
  padding: 4rem 0;
}
@media screen and (max-width:768px) {
  .present-item {
    padding: 2rem 0;
  }
}
.present-item + .present-item {
  border-top: 2px solid #eaceac;
}
.present-item__flex {
  display: flex;
}
.present-item__a {
  width: 50%;
}
.present-item__b {
  width: 50%;
  border-left: 2px solid #eaceac;
}
.present-item__a-img {
  max-width: 425px;
}
.present-item__b-img {
  max-width: 427px;
}
@media screen and (max-width:768px) {
  .present-item__flex {
    flex-direction: column;
  }
  .present-item__a {
    width: 100%;
    border-top: 2px solid #eaceac;
    padding-top: 2rem;
  }
  .present-item__b {
    width: 100%;
    border-left: none;
	padding-top: 2rem
  }
}
.chance-1 {
  max-width: 620px;
  margin: 0 auto;
}
.chance-2 {
  max-width: 589px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .chance-1 {
    max-width: 400px;
  }
  .chance-2 {
    max-width: 400px;
  }
}
/*----------------------------------------------------
yokamall-area
------------------------------------------------------*/
.yokamall-area {
  background: url("images/yokamall-bg.jpg") no-repeat;
  background-size: cover;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width:768px) {
  .yokamall-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.yokamall-area__content {
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  line-height: 2;
}
.yokamall-area__flex {
  display: flex;
  justify-content: space-between;
}
.yokamall-area__item {
  width: 50%;
}
.yokamall-area__headline {
  font-size: var(--fs40);
  margin-bottom: 10px;
}
.yokamall-area__img {
  max-width: 447px;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .yokamall-area__flex {
    flex-direction: column;
  }
  .yokamall-area__item {
    width: 100%;
  }
  .yokamall-area__headline {
    text-align: center;
  }
  .yokamall-area__img {
    margin-right: auto;
    margin-left: auto;
  }
}
/*----------------------------------------------------
overview-area
------------------------------------------------------*/
.overview-area {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width:768px) {
  .overview-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.overview-area__content {
  max-width: 1200px;
  margin: 0 auto;
}
.overview-area__table {
  width: 100%;
}
.overview-area__table tr {
  border-top: 1px solid #000;
}
.overview-area__table .border {
  border-bottom: 1px solid #000;
}
.overview-area__table th {
  border-right: 1px solid #000;
  background: #e0f0f8;
  width: 150px;
  padding: 20px;
	font-size: var(--fs18);
}
.overview-area__table .large{
	font-size: var(--fs20);
	font-weight: 700;
}
.overview-area__table th.half {
  width: 525px;
}
.overview-area__table th .overview-area__space{
  display: inline-block;
  width: 1em;
}
.overview-area__table th .blre {
	color: var(--blue);
}
.overview-area__table th + th {
  border-right: none;
}
.overview-area__table td {
  padding: 20px;
}
.overview-area__table td + td {
  border-left: 1px solid #000;
}
.overview-area__table td.half {
  width: 525px;
}
.overview-area__table ul + ul {
  margin-top: 1em;
}
.overview-area__img {
  max-width: 374px;
}
.overview-area__caution {
  font-size: 1.4rem;
  text-indent: -2.8em;
  padding-left: 2.8em;
}
@media screen and (max-width:768px) {
  .overview-area__table th {
    width: 50px;
  }
  .overview-area__table th.half, .overview-area__table td.half {
    width: 100%;
    display: block;
    border-right: none;
  }
}
/*----------------------------------------------------
account-web-area
------------------------------------------------------*/
.account-web-area {
  background: #efe3c3;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width:768px) {
  .account-web-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.account-web-area__content {
  max-width: 1000px;
  margin: 0 auto;
}
.account-web-area__flex {
  display: flex;
}
.account-web-area__left {
  width: 50%;
  position: relative;
}
.account-web-area__left::before {
  content: "";
  display: block;
  background: url("images/account-web-area-img.png") no-repeat;
  width: 168px;
  height: 166px;
  position: absolute;
  right: 20px;
  top: 80px;
}
.account-web-area__right {
  width: 50%;
  padding-left: 40px;
  margin-top: 40px;
}
.account-web-area__headline {
  font-size: var(--fs40);
  color: #804f21;
}
.account-web-area__headline span {
  display: block;
  font-size: 1.6rem;
}
.account-web-button {
  margin-top: 40px;
}
.account-web-area__list dt {
  color: #804f21;
  font-size: var(--fs24);
  font-weight: 700;
  margin-bottom: .5em;
  margin-left: 10px;
}
.account-web-area__list dd {
  border-top: 1px solid #000;
  padding: 10px;
  font-weight: 700;
  font-size: var(--fs20);
}
.account-web-area__list dd + dd {
  border-bottom: 1px solid #000;
}
.account-web-area__txt {
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .account-web-area__flex {
    flex-direction: column;
  }
  .account-web-area__left {
    width: 100%;
  }
  .account-web-area__headline {
    text-align: center;
  }
  .account-web-button {
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
  .account-web-area__right {
    width: 100%;
    padding-left: 0;
  }
  .account-web-area__left::before {
    background: none;
  }
}
/*----------------------------------------------------
account-logon-area
------------------------------------------------------*/
.account-logon-area {
  background: #f7f6dc;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width:768px) {
  .account-logon-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.account-logon-area__content {
  max-width: 1000px;
  margin: 0 auto;
}
.account-logon-area__flex {
  display: flex;
  justify-content: space-between;
}
.account-logon-area__left {
  width: calc(50% - 40px);
  text-align: center;
}
.account-logon-area__right {
  width: calc(50% - 40px);
  text-align: center;
}
.account-logon-area__headline {
  font-size: var(--fs24);
  border-bottom: 1px solid #000;
  padding-bottom: .5em;
}
.account-logon-area__link {
  font-weight: 700px;
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .account-logon-area__flex {
    flex-direction: column;
  }
  .account-logon-area__left {
    width: 100%;
    padding-bottom: 20px;
  }
  .account-logon-area__right {
    width: 100%;
    border-top: 1px solid #000;
    padding-top: 20px;
  }
  .account-logon-area__headline {
    border: none;
  }
  .account-logon-area__link {
    margin-top: 5px;
  }
}
/*----------------------------------------------------
cautoin-area
------------------------------------------------------*/
.caution-area {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  font-feature-settings: "palt";
}
@media screen and (max-width:768px) {
  .caution-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.caution-area__content {
  max-width: 1000px;
  margin: 0 auto;
}
.caution-area__content dl + dl {
  margin-top: 20px;
}
.caution-area__content dt {
  font-weight: 700;
}
.caution-area__headline {
  color: var(--blue);
  font-weight: 700;
}
/*----------------------------------------------------
cta-area
------------------------------------------------------*/
.cta-area {
  display: flex;
  z-index: 9999;
  background: #fff;
}
.cta-area__left {
  width: 50%;
  text-align: center;
  border-top: 1px solid #000;
  padding: 15px 10px;
}
.cta-area__left img {
  max-width: 572px;
  margin: 0 auto;
}
.cta-area__right {
  width: 50%;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs30);
  background: var(--blue);
  color: #fff;
padding: 15px 10px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.cta-area__right a{
	color: #fff;
	display: block;
	width: 100%;
}

.cta-area__arrow{
	width: 12px;
	margin-left: .5em;
	display: inline-block;
	vertical-align: baseline;
}

@media screen and (max-width:768px) {
  .cta-area {
    height: 70px;
  }
  .cta-area__left {
    width: 60%;
	   padding: 10px 10px;

  }
	.cta-area__left img {
		max-width: 200px;
	}
  .cta-area__right {
    width: 40%;
    font-size: 1.4rem;
  }
	.cta-area__arrow{
		display: none;
	}

}
/*スクロールで固定*/
.add {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  animation-name: addAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
@keyframes addAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.add .flex .sw::after, .add .flex .op::after {
  border-style: none;
}
/*----------------------------------------------------
footer
------------------------------------------------------*/
footer .txt-area {
  background: #3c4950;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .txt-area img.logo-higobank {
  max-width: 364px;
}
footer .txt-area p.privacy {
  text-decoration: underline;
  font-size: 1.4rem;
  margin-top: 30px;
}
footer .txt-area p.privacy a {
  color: #fff;
}
footer .txt-area p.bankcode {
  font-size: 1.4rem;
  margin-top: 10px;
}
footer .txt-area p.copyright {
  font-size: 1.2rem;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  footer .txt-area img.logo-higobank {
    width: 90%;
  }
}