@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;
	--fs14: 1.4rem;
}
@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;
	 --fs14: 1.2rem;
  }
}
/*-------------
見出し
---------------*/
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
------------------------------------------------------*/
.fv-area{
	position: relative;
}


.fv-area__content{
	position: absolute;
	top:calc((60 / 1920 )* 100%);
	left: 50%;
	transform: translateX(-50%);
}

.fv-area__title{
	width: calc((1032 / 1920) * 100vw);
	min-width: 706px;
	margin: 0 auto;
	margin-top:calc((40 / 1920) * 100%);
	}

.fv-area__txt{
	width: calc((1160 / 1920) * 100vw);
	min-width: 847px;
	margin-right:  auto;
	margin-left: auto;
	margin-top: calc((20 / 1920) * 100%);
}

.fv-area__grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	grid-gap:10px; 
    margin-top:calc((40 / 1920) * 100%);
}


/*.fv-area__safety,
.fv-area__fv-area__nisa,
.fv-area__green,
.fv-area__webfree,
.fv-area__corporat{ 
	width: calc((233 / 1920) * 100vw);
	min-width: 161px;
}*/


.fv-area__back{
	width: calc((494 / 1920) * 100vw);
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-top: calc((60 / 1920) * 100%);
	min-width: 339px;
}

@media screen and (max-width:768px) {
	.fv-area__title{
	width: 90vw;
	min-width: auto;
	}
	
	.fv-area__txt{
	width: 90vw;
	min-width: auto;
	}
	
	.fv-area__grid{
		margin-top: 20px;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;	
	}
	
	/*.fv-area__safety,
.fv-area__fv-area__nisa,
.fv-area__green,
.fv-area__webfree,
.fv-area__corporat{ 
	min-width: auto;
}*/
	
	.fv-area__back{
	width: 90vw;
	min-width: auto;
}
}


/*----------------------------------------------------
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%;
  }
}