@charset "utf-8";
/* --------------------------------------------------
kokomoney common css
-------------------------------------------------- */
:root {
  --color-red: #e70012;
  --color-pink: #fc5c65;
  --color-light-pink: #fedee0;
  --color-transparent-pink: rgba(252, 92, 101, 0.1);
  --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

*,*::before,*::after {
  box-sizing: border-box;
}
body {
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 14px;
  }
}

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

/* ------------------------------
inner
------------------------------ */
.inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 0 60px;
}
@media screen and (max-width: 599px) {
  .inner {
    padding: 40px 0 50px;
  }
}

/* ------------------------------
display
------------------------------ */
.pc {
  display: inherit;
}
.tab {
  display: none;
}
.sp {
  display: none;
}
.sp_tab {
  display: none;
}
@media screen and (min-width: 600px) {
  .tab_pc {
    display: inherit;
  }
}
@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
  .tab {
    display: inherit;
  }
  .sp {
    display: none;
  }
  .sp_tab {
    display: inherit;
  }
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
  .tab {
    display: none ;
  }
  .sp {
    display: inherit;
  }
  .tab_pc {
    display: none;
  }
}

/* ------------------------------
text
------------------------------ */
.txt_red {
  color: var(--color-red);
}
.txt_white {
  color: #fff;
}
.txt_bold {
  font-weight: bold;
}

/* ------------------------------
background
------------------------------ */
.bg_gray {
  background-color: #f4f5f7;
}
.bg_pink {
  background-color: var(--color-pink);
}
.bg_white {
  background-color: #fff;
}

/* ------------------------------
button
------------------------------ */
/* btn_01 */
.btn_01 {
  display: block;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0.9em 45px 0.9em 1em;
  background: #fff;
  border: 3px solid var(--color-red);
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-red);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.btn_01::before {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: var(--color-red);
  border-radius: 50%;
  content: '';
}
.btn_01::after {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
.btn_01:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  .btn_01 {
    font-size: 16px;
  }
  .btn_01::before {
    width: 30px;
    height: 30px;
  }
  .btn_01::after {
    right: 26px;
    width: 10px;
    height: 10px;
  }
}

/* btn_colorful */
.btn_colorful {
  display: block;
  width: 100%;
  max-width: 455px;
  margin: 0 auto;
  padding: 8px;
  background: linear-gradient(135deg, rgba(240,252,92,1) 0%,rgba(144,247,236,1) 100%);
  border-radius: 9999px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s;
}
.btn_colorful .btn_inner {
  display: block;
  position: relative;
  padding: 0.4em 30px 0.4em 1em;
  background: #fff;
  border-radius: 9999px;
  color: #000;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.btn_colorful .btn_inner::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: '';
}
.btn_colorful:hover {
  color: #000;
}
.btn_colorful .ico_material {
  padding-left: 50px;
}
.btn_colorful .ico_material img {
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 102px;
}
@media screen and (max-width: 599px) {
  .btn_colorful {
    padding: 6px;
  }
  .btn_colorful .btn_inner {
    padding: 0.5em 25px 0.5em 1em;
    font-size: 16px;
  }
  .btn_colorful .btn_inner::after {
    width: 12px;
    height: 12px;
  }
  .btn_colorful .ico_material {
    padding-left: 40px;
  }
  .btn_colorful .ico_material img {
    width: 72px;
    left: -8px;
  }
}

/* ------------------------------
heading
------------------------------ */
.heading_01 {
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.heading_01 .strong {
  color: var(--color-red);
  font-size: 45px;
  line-height: 1.4;
}
.heading_01 .sub {
  color: var(--color-red);
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .heading_01 {
    font-size: 20px;
  }
  .heading_01 .strong {
    font-size: 30px;
  }
  .heading_01 .sub {
    font-size: 16px;
  }
}

/* ------------------------------
lead
------------------------------ */
.lead_01 {
  margin-bottom: 2.5em;
  font-size: 20px;
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 599px) {
  .lead_01 {
    font-size: 14px;
    line-height: 2.2;
  }
  .sp_left {
    text-align: left
  }
}

/* ------------------------------
box
------------------------------ */
.box_01 {
  padding: 50px 5%;
  border-radius: 20px;
}
.box_01.shadow {
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 600px) {
  .box_01.pd_few_pc {
    padding: 30px 3% 20px;
  }
}
@media screen and (max-width: 599px) {
  .box_01 {
    padding: 30px 5%;
  }
}

/* ------------------------------
header
------------------------------ */
.page_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 502;
  width: 100%;
  height: 95px;
  background-color: var(--color-red);
  border-top: 3px solid var(--color-red);
  font-size: 14px;
  line-height: 1.6;
}
.page_header::before {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  padding-top: 7px;
  background-color: #fff;
  content: '';
}
.inner_page_header {
  width: 100%;
  height: calc(100% - 7px);
  padding: 0 25px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_header .logo img {
  width: 198px;
}
#space_header {
  margin-top: 95px;
}
.page_header .wrap_nav {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.page_header .gnav {
  font-size: 14px;
}
.page_header .gnav li a {
  color: #fff;
}
.page_header .gnav li a.encircle {
  margin-left: 10px;
  padding: 5px 12px;
  border: 2px solid #fff;
  border-radius: 9999px;
}
.page_header .gnav li a.encircle:hover {
  background-color: #fff;
  color: var(--color-red);
}
@media screen and (min-width: 1000px) {
  .page_header .wrap_sp_menu {
    display: none;
  }
  .page_header .wrap_nav {
    justify-content: end;
    width: calc(100% - 200px);
    margin-bottom: 0;
  }
  .page_header .gnav {
    display: flex;
    margin-right: 1vw;
  }
  .page_header .gnav li {
    text-align: center;
  }
  .page_header .gnav li a {
    display: inline-block;
    padding: 6px 15px;
    border-bottom: 2px solid transparent;
    transition: all .2s;
  }
  .page_header .gnav li a:hover {
    text-decoration: none;
    border-bottom-color: #fff;
    color: #fff;
  }
  .page_header .gnav li > ul {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .page_header {
    height: 65px;
    border-top: 2px solid var(--color-red);
  }
  .page_header::before {
    padding-top: 4px;
    background-color: #fff;
    content: '';
  }
  .inner_page_header {
    height: calc(100% - 4px);
  }
  .inner_page_header {
    padding: 0 15px;
  }
  #space_header {
    margin-top: 65px;
  }
  .page_header .wrap_sp_menu {
    display: flex;
    align-items: center;
  }
  .page_header .btn_nav {
    border: 0;
    background: none;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 30px;
    height: 48px;
    position: relative;
  }
  .page_header .btn_nav > span:not([class]) {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    background-color: #fff;
  }
  .page_header .btn_nav > span:not([class]):nth-of-type(1) {
    top: 13px;
  }
  .page_header .btn_nav > span:not([class]):nth-of-type(2) {
    top: 22px;
  }
  .page_header .btn_nav > span:not([class]):nth-of-type(3) {
    bottom: 15px;
  }
  .page_header .btn_nav.active > span:not([class]):nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .page_header .btn_nav.active > span:not([class]):nth-of-type(2) {
    opacity: 0;
  }
  .page_header .btn_nav.active > span:not([class]):nth-of-type(3) {
    bottom: 16px;
    transform: translateY(-8px) rotate(45deg);
  }
  .page_header .wrap_nav {
    display: block;
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 502;
    width: 100%;
    max-height: calc(100vh - 70px);
    height: -webkit-fill-available;
    padding: 15px 8% 70px;
    background: rgba(236, 61, 74, 0.93);
    overflow-y: auto;
  }
  .page_header .wrap_nav.sp_hide {
    display: none;
  }
  .page_header .gnav {
    width: 100%;
    text-align: left;
  }
  .page_header .gnav li {
    border-bottom: 1px solid #fff;
  }
  .page_header .gnav li:last-child {
    border-bottom: none;
  }
  .page_header .gnav li > ul {
    border-top: 1px solid;
    padding-left: 35px;
  }
  .page_header .gnav li > ul li:last-child {
    border-bottom: 0;
  }
  .page_header .gnav li a {
    display: block;
    padding: 15px 5px;
  }
  .page_header .gnav li a.encircle {
    margin-top: 25px;
    padding: 10px 5px;
    text-align: center;
  }
}

/* spメニュー表示時のページスクロール防止 */
.header_blocker {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 501;
  overflow: hidden;
}

/* ------------------------------
information
------------------------------ */
.wrap_information .txt_fw {
  opacity: 0.22;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-pink);
  font-size: 100px;
  font-weight: bold;
  text-align: right;
  line-height: 1;
}
.information {
  position: relative;
  margin-top: -7px;
  border-top: 3px solid var(--color-red);
  border-bottom: 3px solid var(--color-red);
}
.information::before,
.information::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  background: #fff;
  content: '';
}
.information::before {
  top: 0;
}
.information::after {
  bottom: 0;
}
.information .img {
  text-align: center;
}
.information .img img {
  width: 100%;
  max-width: 344px;
}
.information .box_information .txt {
  line-height: 2.2;
}
@media screen and (min-width: 800px) {
  .information .box_information {
    display: grid;
    grid-template-columns: 39% 58%;
    column-gap: 3%;
  }
  .information .box_information .img {
    grid-column: 1/2;
    grid-row: 1/3;
    justify-self: right;
  }
  .information .box_information .txt {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .information .box_information .btn {
    grid-column: 2/3;
    grid-row: 2/3;
    align-content: end;
    margin-top: 20px;
  }
}
@media screen and (max-width: 999px) {
  .wrap_information .txt_fw {
    font-size: 10vw;
  }
  .information {
    margin-top: -0.7vw;
    border-width: 2px;
  }
  .information::before,
  .information::after {
    height: 4px;
  }
}
@media screen and (max-width:799px) {
  .information .txt {
    margin-top: 1.5em;
  }
  .information .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wrap_information .txt_fw {
    font-size: 11vw;
  }
  .information {
    margin-top: -0.6vw;
  }
}
