@charset "UTF-8";
/*
Theme Name:April Investors
Theme URL:
Description: April Investorsオリジナルテーマ
Author: April Investors
Version: 20230728
*/

/*----------- common -----------*/
* {
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width:767px) {
    * {
        font-size: 14px;
    }
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    font-weight: 400;
    word-break: break-all;
}
.img {
    max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}
.bold {
    font-weight: 700;
}
.mb_0 {
    margin-bottom: 0!important;
}
.wrapper {
    width: 100%;
    max-width: 100%;
}
/* 1399px以下表示 */
.show_1399_under {
    display: none;
}
/* 1399px以下非表示 */
.hide_1399_under {
    display: block;
}
@media (max-width:1199px) {
    /* 1399px以下表示 */
    .show_1399_under {
        display: block;
    }
    /* 1399px以下非表示 */
    .hide_1399_under {
        display: none;
    }
}
/* 1199px以下表示 */
.show_1199_under {
    display: none;
}
/* 1199px以下非表示 */
.hide_1199_under {
    display: block;
}
@media (max-width:1199px) {
    /* 1199px以下表示 */
    .show_1199_under {
        display: block;
    }
    /* 1199px以下非表示 */
    .hide_1199_under {
        display: none;
    }
}
/* 767px以下表示 */
.show_767_under {
    display: none;
}
/* 767px以下非表示 */
.hide_767_under {
    display: block;
}
@media (max-width:767px) {
    /* 767px以下表示 */
    .show_767_under {
        display: block;
    }
    /* 767px以下非表示 */
    .hide_767_under {
        display: none;
    }
}
/* 768〜1199px表示 */
.show_768_1199 {
    display: none;
}
/* 768〜1199px表示 */
.hide_768_1199 {
    display: block;
}
@media (min-width: 768px) and (max-width:1199px) {
    /* 768〜1199px表示 */
    .show_768_1199 {
        display: block;
    }
    /* 768〜1199px表示 */
    .hide_768_1199 {
        display: none;
    }
}
/* 575px以下表示 */
.show_575_under {
    display: none;
}
/* 575px以下非表示 */
.hide_575_under {
    display: block;
}
@media (max-width:575px) {
    /* 575px以下表示 */
    .show_575_under {
        display: block;
    }
    /* 575px以下非表示 */
    .hide_575_under {
        display: none;
    }
}

/*----------- animation -----------*/
.fade_in {
    opacity : 0;
    visibility: hidden;
    transition: all 1s;
}
.fade_in_on {
    opacity: 1;
    visibility: visible;
}
.fade_up {
    opacity : 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(30px);
}
.fade_up_on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fade_down {
    opacity : 0;
    transform: translateY(-30px);
    transition: all 1s;
}
.fade_down_on {
    opacity : 1;
    transform: translateY(0);
}
.fade_up_delay>li>div {
    opacity : 0;
    transform: translateY(30px);
    transition: all 1s;
}
.fade_up_delay_on {
    opacity : 1!important;
    transform: translateY(0) !important;
}
.fade_down_delay>li>a {
    opacity : 0;
    transform: translateY(-30px);
    transition: all 1s;
}
.fade_down_delay_on {
    opacity : 1!important;
    transform: translateY(0) !important;
}

/*----------- header -----------*/
header {
    padding-top: 80px;
}
@media (max-width:991px) {
    header {
        padding-top: 60px;
    }
}

/*----------- header nav -----------*/
.hdr_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.hdr_nav_inner {
    position: relative;
    max-width: 100%;
}
.hdr_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100px;
    z-index: 101;
}
.hdr_logo h1 {
    display: inline-block;
    height: 100px;
}
.hdr_logo img {
    width: auto;
    height: 100px;
    max-width: 100%;
}
.hdr_menu {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #000;
    padding-left: 350px;
    padding-right: 20px;
    margin: 0;
    justify-content: end;
}
.hdr_menu_item {
    position: relative;
    display: flex;
    width: auto;
    align-items: center;
    transition: all .3s;
}
.hdr_menu_item>a {
    padding-right: 30px;
}
.hdr_menu_item span {
    position: relative;
    padding-right: 0;
}
.hdr_menu_item>a>span::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -15px;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}
.dropdown_menu {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 60px;
    left: -195px;
    width: 430px;
    background: #333;
    border-radius: 5px;
    box-shadow: #000 0 3px 6px;
    padding: 25px;
    margin: 0 auto 40px;
    text-align: center;
    justify-content: space-around;
    transition: all .3s;
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    z-index: 200;
}
.ftr_menu .dropdown_item {
    position: relative;
    width: auto;
    height: 20px;
    transition: all .3s;
}
.hdr_menu_item:hover .dropdown_menu {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
.dropdown_item {
    position: relative;
    width: auto;
    height: 20px;
    transition: all .3s;
}
.dropdown_item:not(:first-child)::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}
.dropdown_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
@media (max-width:1199px) {
    .hdr_menu_item>a {
        padding-right: 20px;
    }
    .hdr_menu_item span::after {
        right: -12px;
    }
}
.hdr_menu_btn {
    display: flex;
    width: auto;
    align-items: center;
}
.btn_real {
    background-color: #72BD43;
}
.btn_demo {
    background-color: #000;
    border: 1px solid #FE821D;
}
.btn_mypage {
    background-color: #000;
    border: 1px solid #f0f8ff;
}
.btn_real,
.btn_demo,
.btn_mypage {
    display: inline-block;
    width: 382px;
    height: 70px;
    padding: 0 20px 0 30px;
    text-align: center;
}
.hdr_menu_btn a {
    display: inline-block;
    width: 155px;
    height: 40px;
    padding: 0 20px 0 20px;
}
.hdr_menu_btn .btn_real {
    margin-right: 5px;
}
.hdr_menu_btn .btn_demo {
    margin-left: 5px;
	margin-right: 5px;
}
.hdr_menu_btn .btn_mypage {
    margin-left: 5px;
}
.btn_real span,
.btn_demo span,
.btn_mypage span {
    display: inline-block;
    position: relative;
    width: 100%;
    color: inherit;
    font-size: 1.25rem;/* 20px */
    font-weight: 700;
    line-height: 40px;
}
.btn_real span::after,
.btn_demo span::after,
.btn_mypage span::after {
    content: "";
    position: absolute;
    top: 17px;
    right: -10px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.hdr_menu_item span,
.hdr_menu_btn span {
    color: inherit;
    font-size: 0.875rem;/* 14px */
    font-weight: 700;
}

.selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  
  float: left;
  min-width: 100%;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
display: none;
}

.selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 23px;
  /*Adjust for position however you want*/
  
  top: 9px;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  max-width: 320px;
  height: 40px;
  float: right;
  padding: 0px 30px;
  font-size: 16px;
  line-height: 1.75;
  background-color: #000;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

@media (max-width:1199px) {
    .hdr_menu_item span,
    .hdr_menu_btn span {
        font-size: 0.8125rem;/* 13px */
        line-height: 19px;
    }
    .hdr_menu_btn a {
        width: 100px;
        padding: 0 10px 0 10px;
    }
	.selectdiv {
        width: 100px;
		min-width: 175px;
		margin: 0;
		text-align: center;
    }
    .btn_real span::after,
    .btn_demo span::after,
	.btn_mypage span::after {
        top: 14px;
        right: -4px;
    }
	.selectdiv label::after {
        top: 14px;
        right: -4px;
    }
	.selectdiv:after {
	  right: 5px;
	}
}
@media (max-width:767px) {
    .btn_real,
    .btn_demo,
	.btn_mypage {
        width: 100%;
        max-width: 340px;
        height: 70px;
    }
    .btn_real span,
    .btn_demo span,
	.btn_mypage span {
        font-size: 1.4285714285714rem;/* 20px */
    }
}

/*----------- header nav SP -----------*/
.hdr_menu_sp {
    display: none;
}
@media (max-width:991px) {
    .hdr_logo {
        height: 65px;
        z-index: 101;
    }
    .hdr_logo h1 {
        height: 65px;
    }
    .hdr_logo img {
        height: 65px;
    }
    .hdr_menu {
        display: none;
    }
    .hdr_menu_sp {
        position: relative;
        display: block;
        background-color: #000;
        height: 60px;
    }
    .menu_btn {
        position: fixed;
        display: flex;
        top: 20px;
        right: 20px;
        height: 20px;
        width: 20px;
        justify-content: center;
        align-items: center;
        z-index: 500;
    }
    .menu_btn_icon {
        height: 20px;
        width: 20px;
        background-image: url("images/icon_menu.svg");
        background-repeat: no-repeat;
        background-position: top left;
        background-size: cover;
        z-index: 600;
    }
    #menu_btn_check:checked ~ .menu_btn .menu_btn_icon {
        height: 20px;
        width: 20px;
        background-image: url("images/icon_cross.svg");
        background-repeat: no-repeat;
        background-position: top left;
        background-size: cover;
    }
    #menu_btn_check {
        display: none;
    }
    #menu_btn_check:checked ~ .hdr_menu_content {
        top: 0;
        left: 0;
    }
    .hdr_menu_content {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: #000;
        padding: 120px 20px;
        transition: all 0.5s;/*アニメーション設定*/
        z-index: 80;
        overflow-y: scroll;
    }
    .hdr_menu_list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .hdr_menu_list>li {
        width: 50%;
        padding: 0 15px 50px;
    }
    .hdr_menu_list_item_name span {
        display: inline-block;
        width: 100%;
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .hdr_menu_list_item {
        padding-bottom: 20px;
    }
    .hdr_menu_list_btn {
        display: flex;
        flex-wrap: wrap;
        width: auto;
        align-items: center;
    }
    .hdr_menu_list_btn li {
        width: 100%;
    }
    .hdr_menu_list_btn a {
        display: inline-block;
        width: 175px;
        height: 40px;
        padding: 0 20px 0 20px;
    }
    .hdr_menu_list_btn span {
        font-size: 0.875rem;/* 14px */
    }
    .hdr_menu_list_btn .btn_real {
        margin-bottom: 20px;
    }
	.hdr_menu_list_btn .btn_demo {
        margin-bottom: 20px;
    }
	.hdr_menu_list_btn .btn_mypage {
        margin-bottom: 20px;
    }
}

/*----------- top mv -----------*/
.mv_area {

}
.mv_top {
    position: relative;
    background-color: #000;
}
.mv_top_inner {
    background: url("images/mv_top_bg.jpg") left 50% top 0 / cover no-repeat;
    width: 100%;
    min-height: 800px;
    padding-bottom: 57px;
    z-index: -1;
}
.mv_top_desc {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.4);
    width: 840px;
    padding: 60px 40px 60px 100px;
    margin: 90px auto 138px;
}
.mv_top_desc h2 {
    margin-bottom: 40px;
}
.mv_top_desc .sub_ttl {
    display: inline-block;
    font-size: 1.875rem;/* 30px */
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 40px;
}
.mv_top_desc .main_ttl {
    display: inline-block;
    font-size: 3.125rem;/* 50px */
    line-height: 1.5;
}
@media (max-width:1199px) {
    .mv_top_desc {
        width: 560px;
        padding: 60px 40px 60px 100px;
    }
    .mv_top_desc .sub_ttl {
        font-size: 1.25rem;/* 20px */
    }
    .mv_top_desc .main_ttl {
        font-size: 1.875rem;/* 30px */
    }
}
@media (max-width:767px) {
    .mv_top_inner {
        background: url("images/mv_top_bg.jpg") left 50% top 0 / 100% auto no-repeat;
        min-height: 340px;
        padding-bottom: 113px;
    }
    .mv_top_desc {
        width: 100%;
        max-width: 340px;
        background-color: transparent;
        padding: 0;
        margin: 160px 20px 80px;
    }
    .mv_top_desc h2 {
        margin-bottom: 15px;
    }
    .mv_top_desc .sub_ttl {
        font-size: 1rem;/* 14px */
        margin-bottom: 15px;
    }
    .mv_top_desc .main_ttl {
        font-size: 1.4285714285714rem;/* 20px */
    }
}
@media (max-width:375px) {
    .mv_top_desc {
        width: 100%;
        max-width: 100%;
        padding: 0 20px 0;
        margin: 160px auto 80px;
    }
}
.mv_top_btn {
    margin: 0;
    padding: 0;
}
.mv_top_btn_item {
    width: 100%;
}
.mv_top_btn_item a {
    display: flex;
    width: 382px;
    height: 70px;
    padding-left: 0;
    padding-right: 63px;
    justify-content: center;
}
.mv_top_btn_item .btn_real .btn_demo {
    position: relative;
    margin-bottom: 25px;
}
.mv_top_btn_item .btn_real::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 63px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.1);
}
.mv_top_btn_item .btn_demo .btn_mypage {
    background-color: transparent;
}
.mv_top_btn_item span {
    width: 100%;
    color: inherit;
    font-size: 1.25rem;/* 20px */
    line-height: 70px;
    padding-right: 0;
}
.mv_top_btn_item span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -41.5px;
    width: 20px;
    height: 20px;
}
.mv_top_btn_item .btn_real span::before {
    background-color: #fff;
    border-radius: 50%;
}
.mv_top_btn_item span::after {
    top: 31px;
    right: -34px;
    border-top: 2px solid #72BD43;
    border-right: 2px solid #72BD43;
}
.mv_top_btn_item .btn_demo .btn_mypage span::after {
    border-top: 2px solid #FE821D;
    border-right: 2px solid #FE821D;
}
@media (max-width:767px) {
    .mv_top_btn_item a {
        width: 100%;
        max-width: 340px;    }
}

/*----------- mv center -----------*/

.mv_center {
    position: relative;
    width: 100%;
    margin: -57px auto;
    z-index: 2;
}
.mv_center_list {
    display: flex;
    flex-wrap: wrap;
    width: 900px;
    background-color: rgba(0, 0, 0, 0.71);
    border: 1px solid rgba(74, 255, 99, 0.39);
    margin: 0 auto;
    padding: 0;
}
@media (max-width:1199px) {/* 992 ~ 1199px */
    .mv_center_list {
        width: 700px;
    }
}
@media (max-width:767px) {/* ~ 767px */
    .mv_center_list {
        width: 100%;
    }
}
.mv_center_list_item {
    display: flex;
    flex-wrap: wrap;
    width: 25%;
    height: 112px;
    text-align: center;
    align-items: center;
}
.mv_center_list_item:not(:last-child) {
    border-right: 1px solid rgba(74, 255, 99, 0.39);
}
.mv_center_list_item_top {
    width: 100%;
    font-family: 'Oswald', sans-serif;
    color: #3AA546;
    font-size: 1.875rem;/* 30px */
    font-weight: 700;
}
.mv_center_list_item_bottom {
    width: 100%;
    color: #fff;
    font-weight: 400;
}
@media (max-width:767px) {
    .mv_center {
        margin: -113px auto;
        padding: 0 20px;
    }
    .mv_center_list_item {
        width: 50%;
        height: 112px;
    }
    .mv_center_list_item:nth-child(2) {
        border-right: none;
    }
    .mv_center_list_item:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid rgba(74, 255, 99, 0.39);
    }
}

/*----------- mv bottom -----------*/
.mv_bottom {
    background-color: #000;
}
.mv_bottom_inner {
    display: flex;
    flex-wrap: wrap;
    background: url("images/mv_bottom_bg.jpg") center / cover no-repeat;
    width: 100%;
    height: auto;
    padding-top: 177px;
    justify-content: center;
}
.mv_bottom_desc {
    width: 410px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: 0;
}
.mv_bottom_desc h2 {
    font-size: 2.5rem;/* 40px */
    margin-bottom: 50px;
}
.mv_bottom_desc p {
    font-size: 1.25rem;/* 20px */
    line-height: 2;
    margin-top: 0;
    margin-bottom: 40px;
}
@media (max-width:1199px) {
    .mv_bottom_desc {
        width: 700px;
        margin: 0 auto 100px;
    }
}
@media (max-width:767px) {
    .mv_bottom_inner {
        background: url("images/mv_bottom_bg.jpg") top 113px left 50% / 220% auto no-repeat;
        width: 100%;
        height: auto;
        padding: 193px 20px 0;
    }
    .mv_bottom_desc {
        width: 100%;
        margin: 0 auto 40px;
    }
    .mv_bottom_desc h2 {
        font-size: 1.4285714285714rem;/* 20px */
        margin-bottom: 25px;
    }
    .mv_bottom_desc p {
        font-size: 0.92857142857143rem;/* 13px */
        margin-bottom: 25px;
    }
}
.mv_bottom_btn a {
    position: relative;
    padding: 0 63px 0 0;
}
.mv_bottom_btn a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 63px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.1);
}
.mv_bottom_btn span {
    color: inherit;
    line-height: 70px;
    padding-right: 0;
}
.mv_bottom_btn .btn_real span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -41.5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
}
.mv_bottom_btn span::after {
    top: 31px;
    right: -34px;
    border-top: 2px solid #72BD43;
    border-right: 2px solid #72BD43;
}
.mv_bottom_list_area {
    width: 450px;
    margin-left: 40px;
    margin-right: auto;
    margin-bottom: 100px;
}
@media (max-width:1199px) {
    .mv_bottom_list_area {
        width: 700px;
        margin: 0 auto 100px;
    }
}
@media (max-width:767px) {
    .mv_bottom_list_area {
        width: 100%;
    }
}
.tab {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}
.tab li {
    width: 33.333%;
}
.tab a {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: 1px solid #72BD43;
    color: #72BD43;
    align-items: center;
    justify-content: center;
}
.tab .active a {
    height: 50px;
    background-color: rgba(114, 189, 67, 0.69);
    color: #fff;
}
.tab a span {
    font-size: 0.875rem;/* 14px */
}
.tab_cont  {
    display: none;
    height: auto;
    padding-top: 50px;
    margin-top: -50px;
}
.tab_cont.active {
    display: block;
}
.tab_cont_inner {
    height: auto;
    min-height: 300px;
    border: 1px solid rgba(114, 189, 67, 0.6);
}
.mv_bottom_list {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.44);
}
.mv_bottom_list li {
    width: 25%;
}
.mv_bottom_list_item_name {
    font-size: 0.875rem;/* 14px */
    text-align: center;
    padding: 30px 0;
}
.mv_bottom_list_symbol {
    border-bottom: 1px solid rgba(114, 189, 67, 0.07);
    font-weight: 700;
    padding: 15px 0 15px 40px;
}
.mv_bottom_list_num_gn {
    border-bottom: 1px solid rgba(114, 189, 67, 0.07);
    color: #3AA546;
    text-align: center;
    padding: 15px 40px 15px 40px;
}
.mv_bottom_list_num_rd {
    border-bottom: 1px solid rgba(114, 189, 67, 0.07);
    color: #FF4D4D;
    text-align: center;
    padding: 15px 40px 15px 40px;
}
.mv_bottom_list li:nth-child(4n) {
    text-align: center;
}
@media (max-width:767px) {
    .tab a span {
        font-size: 1rem;/* 14px */
    }
    .mv_bottom_list_symbol {
        padding: 15px 0 15px 10px;
    }
    .mv_bottom_list_num_gn,
    .mv_bottom_list_num_rd {
        padding: 15px 0;
    }
    .mv_bottom_list li:nth-child(4n):not(4) {
        padding: 15px 10px 15px 0;
    }
    .mv_bottom_list_symbol span {
        font-size: 1rem;/* 14px */
    }
    .mv_bottom_list_num_gn span {
        font-size: 1.1428571428571rem;/* 16px */
    }
    .mv_bottom_list_num_rd span {
        font-size: 1.1428571428571rem;/* 16px */
    }
    .mv_bottom_list li:nth-child(4n):not(4) span {
        font-size: 1rem;/* 14px */
    }
}

/*----------- top section common-----------*/
.top_sec {
    padding: 60px 0 80px;
}
.section_inner {
    max-width: 900px;
    margin: 0 auto;
}
.sec_ttl {
    position: relative;
    color: #333;
    font-size: 2.5rem;/* 40px */
    font-weight: 700;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 40px;
}
.sec_ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    height: 16px;
    background: url("images/icon_triangle.svg") center / cover no-repeat;
}
.sec_ttl span {
    color: #FE821D;
    font-size: inherit;
    font-weight: inherit;
}
.read_1,
.read_2 {
    color: #333;
    margin: 0 auto 50px;
}
@media (max-width:1199px) {
    .section_inner {
        max-width: 700px;
    }
}
@media (max-width:767px) {
    .top_sec {
        padding: 30px 0 40px;
    }
    .section_inner {
        max-width: 100%;
        padding: 0 20px;
    }
    .sec_ttl {
        font-size: 2.1428571428571rem;/* 30px */
        margin-bottom: 25px;
    }
    .read_1,
    .read_2 {
        margin: 0 auto 25px;
    }
}

/*----------- section(advantage) -----------*/
#advantage {
    background-color: #F4F4F4;
}
#advantage .read_1 {
    max-width: 900px;
}
.advantage_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 45px;
    gap: 10px;
}
.advantage_list li {
    width: calc(50% - 5px);
    height: auto;
}
.advantage_list>li>div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: 100%;
}
.advantage_list_icon {
    display: flex;
    flex-wrap: wrap;
    width: 25%;
    background-color: #000;
    justify-content: center;
    align-items: center;
}
.advantage_list_icon img {
    width: 80%;
    height: auto;
}
.advantage_list_desc {
    width: 75%;
    background-color: #333;
    padding: 40px 25px;
}
.advantage_list_desc h3 {
    color: #FE821D;
    font-size: 2.5rem;/* 40px */
    margin-bottom: 40px;
}
.advantage_list_desc p {
    line-height: 2;
}
@media (max-width:1199px) {
    .advantage_list_icon {
        width: 100%;
        height: 180px;
    }
    .advantage_list_icon img {
        width: 25%;
    }
    .advantage_list_desc {
        width: 100%;
        min-height: 405px;
    }
}
@media (max-width:767px) {
    .advantage_list {
        margin-bottom: 20px;
    }
    .advantage_list li {
        width: 100%;
        padding: 0 0 10px;
    }
    .advantage_list li:nth-child(2) {
        padding: 10px 0 0;
    }
    .advantage_list_icon {
        width: 100%;
        height: 70px;
        justify-content: left;
    }
    .advantage_list_icon img {
        width: 10%;
        height: 40px;
        margin: 15px 20px;
    }
    .advantage_list_desc {
        width: 100%;
        min-height: auto;
        padding: 25px 20px;
    }
    .advantage_list_icon h3 {
        color: #FE821D;
        font-size: 1.4285714285714rem;/* 20px */
        margin-bottom: 0;
    }
    .advantage_list_desc p {
        font-size: 0.85714285714286rem;/* 12px */
    }
}
#advantage .read_2 {
    max-width: 900px;
}
.sec_btn_1 {
    text-align: center;
}
.sec_btn_1 .btn_real {
    position: relative;
    line-height: 70px;
    padding: 0 63px 0 0;
    margin: 0 auto;
}
.sec_btn_1 .btn_demo {
    position: relative;
    line-height: 70px;
    padding: 0 63px 0 0;
    margin: 0 auto;
}
.sec_btn_1 .selectdiv {
    position: relative;
    line-height: 70px;
    padding: 0 63px 0 0;
    margin: 0 auto;
}
.sec_btn_1 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 63px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.1);
}
.sec_btn_1 span {
    display: inline-block;
    width: 100%;
    color: inherit;
    font-size: 1.25rem;/* 20px */
    font-weight: 700;
    line-height: 70px;
    padding-right: 0;
}
.sec_btn_1 span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -41.5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
}
.sec_btn_1 span::after {
    top: 31px;
    right: -34px;
    border-top: 2px solid #72BD43;
    border-right: 2px solid #72BD43;
}

/*----------- section(reason) -----------*/
#reason {
    background-color: #fff;
}
.reason_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.reason_list li {
    width: 33.333%;
    height: auto;
    padding: 0 10px 20px;
}
.reason_list li:nth-last-child(3) {
    padding: 20px 10px 0;
}
.reason_list li:nth-last-child(-n+2) {
    padding: 20px 10px 0;
}
.reason_list_item {
    height: 100%;
    background-color: #F4F4F4;
    color: #333;
    padding: 20px 25px 30px;
    text-align: center;
}
.reason_list_item .sub_ttl,
.reason_list_item .sub_ttl_num {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}
.reason_list_item .sub_ttl {
    font-size: 0.75rem;/* 12px */
}
.reason_list_item .sub_ttl_num {
    font-size: 0.875rem;/* 14px */
    font-weight: 700;
}
.reason_list_item h3 {
    font-size: 1.875rem;/* 30px */
    min-height: 69px;
    margin-bottom: 50px;
}
.reason_list_item img {
    height: 70px;
    margin-bottom: 50px;
}
.reason_list_item p {
    text-align: left;
}
@media (max-width:1199px) {
    .reason_list li {
        width: 50%;
        padding: 0 5px 10px;
    }
    .reason_list li:nth-last-child(4) {
        padding: 5px;
    }
    .reason_list li:nth-last-child(3) {
        padding: 5px;
    }
    .reason_list li:nth-last-child(-n+2) {
        padding: 10px 5px 0;
    }
}
@media (max-width:767px) {
    .reason_list_item .sub_ttl {
        font-size: 0.71428571428571rem;/* 10px */
    }
    .reason_list_item .sub_ttl_num {
        font-size: 0.85714285714286rem;/* 12px */
    }
    .reason_list_item h3 {
        font-size: 1.1428571428571rem;/* 16px */
        min-height: 69px;
    }
    .reason_list_item {
        padding: 15px;
    }
    .reason_list_item img {
        height: 60px;
        margin-bottom: 35px;
    }
}
@media (max-width:344px) {
    .reason_list_item h3 {
        font-size: 1rem;/* 14px */
        min-height: 69px;
    }
}
/*----------- section(money_management) -----------*/
#money_management {
    background-color: #F4F4F4;
}
#money_management .read_1 {
    text-align: center;
}
.management_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 40px;
}
.management_list li {
    width: 33.333%;
    padding: 0 10px;
}
.management_list_item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    background-color: rgba(254, 130, 29, 0.9);
    color: #fff;
    text-align: center;
    justify-content: center;
}
.management_list_item img {
    height: 84px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.management_list_desc {
    background-color: rgba(254, 130, 29, 1);
    color: #fff;
    padding: 25px 20px;
}
.management_list_desc h3 {
    font-size: 1.5rem;/* 24px */
    margin-bottom: 15px;
}
.management_list_desc p {
    line-height: 2;
    text-align: left;
}
@media (max-width:1199px) {
    .management_list_desc {
        min-height: 249px;
    }
}
@media (max-width:767px) {
    .management_list li {
        width: 100%;
        padding: 0 0 20px;
    }
    .management_list_item {
        justify-content: left;
    }
    .management_list_item img {
        height: auto;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left: 30px;
    }
    .management_list_desc {
        width: 100%;
        min-height: auto;
    }
    .management_list_desc h3 {
        font-size: 1.4285714285714rem;/* 20px */
    }
    .management_list_desc p {
        font-size: 0.85714285714286rem;/* 12px */
    }
}
.btn_more {
    display: inline-block;
    width: 244px;
    height: 60px;
    padding: 0 20px 0 30px;
    text-align: center;
}
.sec_btn_2 {
    text-align: end;
}
.sec_btn_2 .btn_more {
    position: relative;
    line-height: 60px;
    border: 1px solid #FE821D;
    padding: 0;
    margin: 0 auto;
}
.sec_btn_2 span {
    display: inline-block;
    width: 100%;
    color: #FE821D;
    font-size: 1.25rem;/* 20px */
    font-weight: 700;
    line-height: 60px;
    padding-right: 0;
}
.sec_btn_2 span::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 20px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FE821D;
    border-right: 2px solid #FE821D;
    transform: rotate(45deg);
}
@media (max-width:767px) {
    .sec_btn_2 {
        text-align: center;
    }
    .sec_btn_2 span {
        font-size: 1.4285714285714rem;/* 20px */
    }
}
/*----------- section(platform) -----------*/
#platform {
    background-color: #fff;
}
#platform .read_1 {
    max-width: 500px;
}
.platform_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 40px;
}
.platform_list li {
    width: 33.333%;
    padding: 0 10px;
}
.platform_list_item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #fff;
    text-align: center;
    justify-content: center;
    padding: 0 30px;
}
.platform_list_item img {
    width: 100%;
    height: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}
@media (max-width:767px) {
    .platform_list_item {
        padding: 0 20px;
    }
    .platform_list_item img {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.show_345_under {
    display: none;
}
@media (max-width:345px) {
    .show_345_under {
        display: block;
    }
}

/*----------- section(account_type) -----------*/
#account_type {
    background-color: #333;
}
#account_type .sec_ttl {
    color: #fff;
}
.account_type_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 80px;
}
.account_type_list li {
    position: relative;
    width: 33.333%;
    padding: 0 10px;
}
.account_type_list li::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: #72BD43;
}
.account_type_list_item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    background-color: #000;
    color: #fff;
    padding: 40px 25px;
    text-align: center;
    justify-content: center;
}
.corner_gn,
.corner_or,
.corner_gr,
.corner_gr2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
}
.corner_gn {
    border-top: 15px solid #72BD43;
    border-left: 15px solid #72BD43;
    border-bottom: 15px solid transparent;
    border-right: 15px solid transparent;
}
.corner_or {
    border-top: 15px solid #FE821D;
    border-left: 15px solid #FE821D;
    border-bottom: 15px solid transparent;
    border-right: 15px solid transparent;
}
.corner_gr {
    border-top: 15px solid #ccc;
    border-left: 15px solid #ccc;
    border-bottom: 15px solid transparent;
    border-right: 15px solid transparent;
}
.corner_gr2 {
    border-top: 15px solid #b5b5b5;
    border-left: 15px solid #b5b5b5;
    border-bottom: 15px solid transparent;
    border-right: 15px solid transparent;
}
.account_type_list_item h3 {
    display: block;
    width: 100%;
    font-size: 1.875rem;/* 30px */
    border-bottom: 1px solid #fff;
    padding-bottom: 35px;
    margin-bottom: 40px;
}
.account_type_list_desc {
    width: 100%;
    min-height: 172px;
    border-bottom: 1px solid #fff;
    padding: 0 40px 50px;
    margin-bottom: 40px;
    text-align: left;
}
#platform.btn_more {
    width: 207px;
}
.sec_btn_3 {
    text-align: end;
}
.sec_btn_3 .btn_more {
    position: relative;
    line-height: 60px;
    border: 1px solid #fff;
    padding: 0;
    margin: 0 auto;
}
.sec_btn_3 span {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 1.25rem;/* 20px */
    font-weight: 700;
    line-height: 60px;
    padding-right: 0;
}
.sec_btn_3 span::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 22px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
@media (max-width:1199px) {
    .account_type_list_item {
        padding: 40px 20px;
    }
    .account_type_list_desc {
        padding: 0 20px 50px;
        min-height: 171px;
    }
    .sec_btn_3 .btn_more {
        width: 160px;
    }
}
@media (max-width:767px) {
    .account_type_list {
        margin-bottom: 0;
    }
    .account_type_list li {
        width: 100%;
        padding: 0 10px 20px;
    }
    .account_type_list_desc {
        min-height: auto;
    }
    .account_type_list_item h3 {
        font-size: 1.4285714285714rem;/* 20px */
        padding-bottom: 25px;
        margin-bottom: 20px;
    }
    .sec_btn_3 span {
        font-size: 1rem;/* 14px */
    }
}

/*----------- footer -----------*/
footer {
    background-color: #000;
    padding: 120px 0;
}
.ftr_inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.ftr_logo {
    width: 30%;
    margin-right: 70%;
}
.ftr_logo img {
    width: 100%;
    height: auto;
}
.ftr_menu {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    margin: 0 0  50px 30%;
    padding: 0;
    justify-content: end;
}
.ftr_menu_item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    align-items: center;
    transition: all .3s;
    padding-right: 30px;
}
.ftr_menu_item a {
}
.ftr_menu_item span {
    position: relative;
    color: inherit;
    font-size: 0.875rem;/* 14px */
    font-weight: 700;
}
.ftr_menu_item>a>span::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -17px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: #fff 1px solid;
    border-right: #fff 1px solid;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
}
.ftr_menu .dropdown_menu {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 60px;
    left: auto;
    right: 0;
    width: 430px;
    background: #333;
    border-radius: 5px;
    box-shadow: #000 0 3px 6px;
    padding: 25px;
    margin: 0 auto 40px;
    text-align: center;
    justify-content: space-around;
    transition: all .3s;
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    z-index: 200;
}
.ftr_menu .dropdown_menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #333;
    border-top: 0;
    margin-left: -10px;
    margin-top: -10px;
}
.ftr_menu_item:hover .dropdown_menu {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
.ftr_menu .dropdown_item {
    position: relative;
    width: auto;
    height: 20px;
    transition: all .3s;
}
.ftr_menu .dropdown_item:not(:first-child)::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}
.ftr_menu .dropdown_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.ftr_note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;/* 14px */
    font-weight: 300;
    margin-bottom: 40px;
}
@media (max-width:1199px) {
    .ftr_inner {
        max-width: 700px;
    }
    .ftr_logo {
        width: 25%;
    }
    .ftr_menu {
        width: 75%;
        margin-left: 25%;
    }
    .ftr_menu .dropdown_menu {
        top: 34px;
        left: auto;
        right: 0;
        width: 220px;
        padding: 25px;
        margin: 0 auto 40px;
    }
    .ftr_menu .dropdown_item {
        width: 100%;
        height: 20px;
        margin-bottom: 10px;
        transition: all .3s;
    }
    .ftr_menu .dropdown_item:last-child {
        margin-bottom: 0;
    }
}
@media (max-width:767px) {
    footer {
        padding: 20px 0;
    }
    .ftr_inner {
        max-width: 100%;
        padding: 0 20px;
    }
    .ftr_logo {
        width: 100%;
    }
    .ftr_logo img {
        width: 280px;
    }
    .ftr_menu {
        width: 100%;
        margin: 30px 0 20px;
    }
    .ftr_menu_item {
        display: inline-block;
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .ftr_menu_item:last-child {
        padding-bottom: 0;
    }
    .ftr_menu_item span {
        font-size: 1rem;/* 14px */
    }
    .ftr_menu input {
        display: none;
    }
    .ftr_menu label {
        position: relative;
        cursor :pointer;
        display: inline-block;
        color: #fff;
        text-decoration: none;
        line-height: 1;
        padding: 0 30px 0 0;
    }
    .ftr_menu label:after{
        content:"";
        position:absolute;
        display:block;
        top: 5px;
        right: 10px;
        width:8px;
        height:8px;
        border-top: #fff 1px solid;
        border-right: #fff 1px solid;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        margin: auto;
    }
    .ftr_menu input[type=checkbox]:checked + label:after {
        content: "";
        position: absolute;
        display: block;
        top: 8px;
        right: 10px;
        width: 8px;
        height: 8px;
        border-top: #fff 2px solid;
        border-right: #fff 2px solid;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin: auto;
    }
    .drawer_menu {
        position: relative;
        width: 300px;
        max-width: 100%;
        background-color: #333;
        border-radius: 5px;
        box-shadow: #000 0 3px 6px;
        padding-left: 10px;
        z-index: 200;
    }
    .ftr_menu input[type=checkbox]:checked ~ .drawer_menu {
        padding: 10px;
        margin-top: 10px;
    }
    .ftr_menu input[type=checkbox]:checked ~ .drawer_menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20px;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-bottom-color: #333;
        border-top: 0;
        margin-left: -10px;
        margin-top: -10px;
    }
    .ftr_menu .dropdown_item {
        position: relative;
        width: auto;
        height: 20px;
        transition: all .3s;
    }
    .drawer_menu li {
        position: relative;
        height: 0;
        overflow-y: hidden;
        transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
        -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
        -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
        -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
        -o-transition: padding-bottom 0.5s, padding-top 0.5s;
    }
    .drawer_menu li::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 0.5em;
        height: 1px;
        transform: translateY(-50%);
        background-color: #fff;
    }
    #ftr_menu_01:checked ~ #drawer_menu_01 li,
    #ftr_menu_02:checked ~ #drawer_menu_02 li,
    #ftr_menu_03:checked ~ #drawer_menu_03 li,
    #ftr_menu_05:checked ~ #drawer_menu_05 li {
        height: auto;
        opacity: 1;
        padding: 5px 0 5px 20px;
        margin-bottom: 10px;
    }
    .ftr_menu input[type=checkbox]:checked ~ .drawer_menu li:last-child {
        margin-bottom: 0!important;
    }
    .ftr_menu_item>a {
        margin-bottom: 20px;
    }

    .ftr_note {
        font-size: 0.85714285714286rem;/* 12px */
        margin-bottom: 30px;
    }
    .copyright {
        font-size: 1.1428571428571rem;/* 16px */
    }
}

/*----------- page common -----------*/
.pg_wrapper {
    color: #333;
}
.pg_head {
    position: relative;
    width: 100%;
    max-height: 480px;
    background-color: #000;
    margin-bottom: 120px;
}
.pg_head::before {
    content: "";
    display: block;
    padding-top: 16%;
}
.pg_head_bg {
    position: absolute;
    width: 82%;
    height: 100%;
    top: 0;
    right: 0;
}
.pg_head_bg img {
    width: 100%;
    height: 100%;
}
.pg_head_ttl {
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
}
.pg_head_ttl_inner {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.pg_head_ttl_inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -99px;
    background-color: #333;
}
.pg_head_ttl_inner::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    border-bottom: 480px solid transparent;
    border-left: 100px solid #333;
}
.pg_head_ttl h2 {
    color: #FE821D;
    font-size: 2.5714285714286rem;/* 36px */
    margin-right: 15%;
    z-index: 1;
}
.pg_cont_wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    max-width: 1300px;
    margin: 0 auto;
}
aside {
    position: fixed;
    width: 200px;
    padding-right: 20px;
}
.side_toc li {
    padding-bottom: 25px;
}
.side_toc_item {
    position: relative;
    padding-left: 2em;
}
.side_toc_item.current::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #FE821D;
    border-radius: 50%;
    transform: translateY(-50%);
}
.page {
    flex: 1;
    padding-left: 200px;
    padding-right: 200px;
}
.pg_top {
    margin-bottom: 120px;
}
.pg_read {
    margin-bottom: 50px;
}
.pg_read p {
    margin-bottom: 20px;
}
.pg_read p:last-child {
    margin-bottom: 0;
}
.pg_sec {
    padding-top: 80px;
    margin-top: -80px;
    margin-bottom: 120px;
}
.pg_sub_sec_btn {
    background-color: #F7F7F7;
    padding: 20px 20px 20px;
}
.pg_sub_sec_1 {
    background-color: #F7F7F7;
    padding: 20px 20px 20px;
}
.pg_sub_sec_btn,
.pg_sub_sec_1,
.pg_sub_sec_2,
.pg_sub_sec_3,
.pg_sub_sec_4 {
    margin-bottom: 50px;
}
.pg_sub_sec_1 .pg_read,
.pg_sub_sec_2 .pg_read,
.pg_sub_sec_3 .pg_read,
.pg_sub_sec_4 .pg_read {
    margin-bottom: 0!important;
}
.page h3 {
    color: #FE821D;
    font-size: 3.125rem;/* 50px */
    margin-bottom: 40px;
}
.page h4 {
    font-size: 1.875rem;/* 30px */
    margin-bottom: 40px;
}
.page h5 {
    font-size: 1.25rem;/* 20px */
    margin-bottom: 40px;
}
.page h6 {
    font-size: 1rem;/* 16px */
    margin-bottom: 40px;
}
.pg_cont_menu {
    margin-bottom: 40px;
}
.pg_cont_menu ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0 15px;
}
.pg_cont_menu li {
    width: calc(33.333% - 10px);
}
.pg_cont_menu_item {
    position: relative;
    height: 100%;
    background-color: #333;
    padding: 20px 80px 20px 20px;
}
.pg_cont_menu_item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background-color: #000;
}
.pg_cont_menu_item::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 27px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.pg_cont_menu h3 {
    color: #fff;
    font-size: 1.75rem;/* 28px */
    min-height: 84px;
    margin-bottom: 25px;
}
.pg_cont_menu p {
    color: #fff;
}
.pg_img_area {
    position: relative;
    margin-bottom: 40px;
}
.pg_img_area::before {
    content: "";
    display: block;
    padding-top: 66%;
}
.pg_img_area img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.pg_check_list,
.pg_dot_list {
    margin-bottom: 40px;
}
.pg_check_list_child {
    margin-top: 20px;
    margin-bottom: 20px;
}
.pg_check_list>li,
.pg_dot_list>li {
    position: relative;
    font-size: 0.875rem;/* 14px */
    padding-left: 1.5em;
    margin-bottom: 25px;
}
.pg_check_list_child>li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}
.pg_check_list>li:last-child,
.pg_dot_list>li:last-child,
.pg_check_list_child>li:last-child{
    margin-bottom: 0;
}
.pg_check_list>li::before,
.pg_dot_list>li::before,
.pg_check_list_child>li::before {
    content: "";
    position: absolute;
    left: 0;
}
.pg_check_list>li::before {
    top: 0.3em;
    background: url("images/icon_check.svg") center / cover no-repeat;
    width: 1em;
    height: 1em;
}
.pg_dot_list>li::before {
    top: 0.55em;
    width: 0.4em;
    height: 0.4em;
    background-color: #333;
    border-radius: 50%;
}
.pg_check_list_child>li::before {
    top: 0.75em;
    width: 0.4em;
    height: 1px;
    background-color: #333;
}
.pg_normal_list>li {
    margin-bottom: 20px;
}
.pg_table_1,
.pg_table_2 {
    margin-bottom: 40px;
}
.pg_table_1 dl,
.pg_table_2 dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    border: 1px solid #ccc;
    align-items: stretch;
}
.pg_table_1 dt,
.pg_table_1 dd,
.pg_table_2 dt,
.pg_table_2 dd {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    align-items: center;
}
.pg_table_1 dt,
.pg_table_2 dt {
    width: 20%;
    border-right: 1px solid #ccc;
    padding: 25px 20px;
}
.pg_table_1 dd {
    width: 40%;
    padding: 25px 20px;
}
.pg_table_2 dd {
    width: 26.6666667%;
    padding: 25px 20px;
}
.pg_tch {
    font-weight: 700;
}
.pg_table_1 dt:last-of-type,
.pg_table_1 dd:nth-last-of-type(-n+2),
.pg_table_2 dt:last-of-type,
.pg_table_2 dd:nth-last-of-type(-n+3) {
    border-bottom: none;
}
.pg_tch,
.pg_trh {
    background-color: #F4F4F4;
}
.pg_trh span {
    width: 100%;
    font-size: 0.75rem;/* 12px */
    font-weight: 400;
}
.pg_table_num {
    font-size: 1.25rem;/* 20px */
    margin-right: 0.5em;
}
.pg_table_unit {
    font-size: 0.75rem;/* 12px */
}
.pg_btn_1 {
    position: relative;
    display: block;
    width: 345px;
    height: 60px;
    background-color: #FE821D;
    line-height: 1;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.pg_btn_1 span {
    color: #fff;
    font-size: 1.25rem;/* 20px */
    font-weight: 700;
    line-height: 1;
}
.pg_btn_1::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.pg_double_btn_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    max-width: 460px;
}
.pg_double_btn_area div {
    width: calc(50% - 10px);
}
.pg_double_btn_area .pg_btn_1 {
    width: 100%;
    height: 80px;
    line-height: 25px;
}
.pg_double_btn_area .pg_btn_1::after {
    top: 35px;
}
.pg_note {
    text-align: end;
    margin-top: 20px;
}
.pg_note p {
    font-size: 0.75rem;/* 12px */
}
.pg_note_2 {
    display: inline;
    font-size: 0.75rem;/* 12px */
    padding-left: 1em;
}
@media (max-width:1399px) {
    .pg_cont_wrapper {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        max-width: 1100px;
        margin: 0 auto;
    }
    .pg_cont_menu_item {
        padding: 20px 20px 80px 20px;
    }
    .pg_cont_menu_item::before {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 60px;
    }
    .pg_cont_menu_item::after {
        top: auto;
        bottom: 30px;
        left: 50%;
        right: 50%;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
    }
    .pg_cont_menu h3 {
        font-size: 1.6875rem;/* 27px */
        min-height: 81px;
    }
}
@media (max-width:1199px) {
    .pg_cont_wrapper {
        max-width: 800px;
    }
    aside {
        display: none;
    }
    .page {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width:991px) {
    .pg_cont_wrapper {
        max-width: 700px;
    }
}
@media (max-width:767px) {
    .pg_head {
        max-height: none;
        margin-bottom: 40px;
    }
    .pg_head::before {
        padding-top: 90%;
    }
    .pg_head_bg {
        width: 100%;
    }
    .pg_cont_wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    .pg_head_ttl {
        width: 100%;
        height: 86px;
        top: 0;
        left: 0;
    }
    .pg_head_ttl_inner::before {
        height: 86px;
    }
    .pg_head_ttl_inner::after {
    }
    .pg_head_ttl h2 {
        font-size: 2.1428571428571rem;/* 30px */
        margin-right: 0;
    }
    .pg_top {
        margin-bottom: 80px;
    }
    .pg_cont_menu ul {
        gap: 20px;
    }
    .pg_cont_menu li {
        width: 100%;
    }
    .pg_cont_menu h3 {
        font-size: 1.4285714285714rem;/* 20px */
        min-height: auto;
        margin-bottom: 15px;
    }
    .pg_sec {
        padding-top: 60px;
        margin-top: -60px;
        margin-bottom: 80px;
    }
    .page .section_inner {
        padding: 0;
    }
    .pg_sub_sec_btn,
    .pg_sub_sec_1,
    .pg_sub_sec_2,
    .pg_sub_sec_3,
    .pg_sub_sec_4 {
        margin-bottom: 40px;
    }
    .pg_sub_sec_1,
    .pg_sub_sec_2 {
        background-color: #F7F7F7;
        padding: 20px 20px 20px;
    }

    .pg_sub_sec_3 {
        background-color: rgba(114, 189, 67, 0.1);
        padding: 20px 20px 20px;
    }
    .pg_sub_sec_4 {
        background-color: rgba(254, 130, 29, 0.1);
        padding: 20px 20px 20px;
    }
    .pg_sub_sec_1 .pg_check_list,
    .pg_sub_sec_2 .pg_check_list,
    .pg_sub_sec_3 .pg_check_list,
    .pg_sub_sec_4 .pg_check_list {
        border: none;
        padding: 0;
        margin-bottom: 0;
    }
    .page h3 {
        font-size: 2.1428571428571rem;/* 30px */
        margin-bottom: 20px;
    }
    .page h4 {
        font-size: 1.4285714285714rem;/* 20px */
        margin-bottom: 20px;
    }
    .page h5 {
        font-size: 1.4285714285714rem;/* 20px */
        margin-bottom: 20px;
    }
    .page h6 {
        font-size: 1.1428571428571rem;/* 16px */
        margin-bottom: 20px;
    }
    .pg_img_area {
        margin-bottom: 25px;
    }
    .pg_note p,
    .pg_note_2 {
        font-size: 0.71428571428571rem;/* 10px */
    }
    .pg_check_list {
        border: 1px solid #ccc;
        padding: 20px;
        margin-bottom: 25px;
    }
    .pg_check_list>li {
        font-size: 0.85714285714286rem;/* 12px */
    }
    .pg_table_1 dl,
    .pg_table_2 dl {
        font-size: 0.85714285714286rem;/* 12px */
    }
    .pg_table_1 dt {
        width: 33.333%;
        padding: 25px 10px;
    }
    .pg_table_1 dd {
        width: 33.333%;
        padding: 25px 10px;
    }
    .pg_table_2 dt {
        width: 25%;
        padding: 25px 10px;
    }
    .pg_table_2 dd {
        width: 25%;
        padding: 25px 10px;
    }
    .pg_btn_1 {
        width: 300px;
        margin: 0 auto 20px;
    }
    .pg_double_btn_area div {
        width: 100%;
    }
    .pg_double_btn_area .pg_btn_1 {
        max-width: 300px;
        line-height: 30px;
    }
}
@media (max-width:575px) {
    .pg_table_2 dt {
        width: 40%;
        padding: 25px 10px;
    }
    .pg_table_2 dd {
        width: 60%;
        padding: 25px 10px;
    }
    .pg_table_2 dd:nth-last-of-type(2),
    .pg_table_2 dd:nth-last-of-type(3) {
        border-bottom: 1px solid #ccc;
    }
    .pg_td_txt {
        width: 100%;
        margin-bottom: 10px;
    }
    .pg_td_txt:last-child {
        margin-bottom: 0;
    }
}
@media (max-width:375px) {
    .pg_btn_1 {
        width: 100%;
        line-height: 40px;
        padding: 10px;
    }
    .pg_btn_1 span {
        color: #fff;
        font-size: 1rem;/* 14px */
        font-weight: 700;
        line-height: 1;
    }
    .pg_btn_1::after {
        top: 25px;
        right: 15px;
    }
}

/*----------- pg-trading-instruments -----------*/
.product_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
}
.product_list li {
    width: calc(33.333% - 10px);
    height: auto;
}
.product_list_item {
    height: 100%;
    background-color: #F4F4F4;
    color: #333;
    padding: 20px;
    text-align: center;
}
.product_list_item .sub_ttl,
.product_list_item .sub_ttl_num {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}
.product_list_item .sub_ttl {
    font-size: 0.75rem;/* 12px */
}
.product_list_item .sub_ttl_num {
    font-size: 0.875rem;/* 14px */
    font-weight: 700;
}
.product_list_item h3 {
    color: #333;
    /*font-size: 1.875rem;*//* 30px */
    font-size: 1.625rem;/* 26px */
    min-height: 69px;
    margin-bottom: 50px;
}
.product_list_item img {
    height: 70px;
    margin-bottom: 50px;
}
.product_list_item p {
    text-align: left;
}
@media (max-width:1399px) {
    .product_list_item h3 {
        font-size: 1.4375rem;/* 22px */
    }
}
@media (max-width:767px) {
    .product_list {
        gap: 10px;
    }
    .product_list li {
        width: calc(50% - 5px);
    }
    .product_list_item .sub_ttl {
        font-size: 0.71428571428571rem;/* 10px */
    }
    .product_list_item .sub_ttl_num {
        font-size: 0.85714285714286rem;/* 12px */
    }
    .product_list_item h3 {
        font-size: 1.0714285714286rem;/* 15px */
    }
    .product_list_item img {
        height: 60px;
        margin-bottom: 35px;
    }
    #pg-fx .pg_sub_sec,
    #pg-trade-metals .pg_sub_sec,
    #pg-cfds .pg_sub_sec {
        position: relative;
        padding: 100px 20px 20px;
    }
    #pg-trade-metals .pg_sub_sec::after ,
    #pg-cfds .pg_sub_sec::after,
    #pg-fx .pg_sub_sec::after {
        content: "";
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
    }
    #pg-fx .pg_sub_sec::after {
        background: url("images/icon_fx.svg") center /100% no-repeat;
    }
    #pg-trade-metals .pg_sub_sec::after {
        background: url("images/icon_metals.svg") center /100% no-repeat;
    }
    #pg-cfds .pg_sub_sec::after {
        background: url("images/icon_cfds.svg") center /100% no-repeat;
    }
}

/*----------- pg-trading-instruments -----------*/
.pg_account_type_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    text-align: center;
}
.pg_account_type_list>li {
    width: calc(33.333% - 10px)
}
.pg_account_type_list_item {
    position: relative;
    height: 100%;
    border: 1px solid #ccc;
    padding: 20px 20px 70px;
}
.pg_account_type_list_item h3 {
    width: 100%;
    color: #333;
    font-size: 1.875rem;/* 30px */
}
.pg_account_type_list .pg_check_list {
    text-align: left;
}
.pg_account_type_list_item p {
    width: 100%;
    font-size: 0.75rem;/* 12px */
    margin-bottom: 60px;
}
.pg_account_type_list_item .pg_more {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
}
.pg_account_type_list_item a {
    position: relative;
    display: inline-block;
    color: #FE821D;
    padding-right: 20px;
    margin: 0 auto;
    align-self: end;
}
.pg_account_type_list_item a::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #FE821D;
    border-right: 1px solid #FE821D;
    transform: rotate(45deg);
}
#pg-standard-account h3,
#pg-zero-account h3,
#pg-demo-account h3 {
    color: #333;
    padding-left: 20px;
}
#pg-standard-account h3 {
    border-left: 10px solid #3AA546;
}
#pg-zero-account h3 {
    border-left: 10px solid #FE821D;
}
#pg-demo-account h3 {
    border-left: 10px solid #b5b5b5;
}
.feature_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 60px;
}
.feature_list li {
    width: calc(33.333% - 10px);
    height: auto;
}
.feature_list_item {
    height: 100%;
    background-color: #F4F4F4;
    color: #333;
    padding: 20px;
    text-align: center;
}
.feature_list_item .sub_ttl,
.feature_list_item .sub_ttl_num {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}
.feature_list_item .sub_ttl {
    font-size: 0.75rem;/* 12px */
}
.feature_list_item .sub_ttl_num {
    font-size: 0.875rem;/* 14px */
    font-weight: 700;
}
.feature_list_item>h3 {
    border: none!important;
    color: #333!important;
    /*font-size: 1.875rem;*//* 30px */
    font-size: 1.625rem!important;/* 26px */
    min-height: 69px;
    padding-left: 0!important;
    margin-bottom: 50px;
}
.feature_list_item img {
    display: block;
    height: 70px;
    margin: 50px auto;
}
@media (max-width:1399px) {
    .feature_list_item>h3 {
        font-size: 1.4375rem!important;/* 22px */
    }
}
@media (max-width:767px) {
    .pg_account_type_list>li {
        width: 100%
    }
    .pg_account_type_list_item h3 {
        font-size: 2.1428571428571rem;/* 30px */
    }
    .pg_account_type_list_item .pg_check_list {
        border: none;
        padding: 0;
    }
    .pg_account_type_list_item p {
        font-size: 0.85714285714286rem;/* 12px */
    }
    .feature_list {
        gap: 10px;
    }
    .feature_list li {
        width: calc(50% - 5px);
    }
    .feature_list_item .sub_ttl {
        font-size: 0.71428571428571rem; /* 10px */
    }
    .feature_list_item .sub_ttl_num {
        font-size: 0.85714285714286rem; /* 12px */
    }
    .feature_list_item>h3 {
        font-size: 1.0714285714286rem!important; /* 15px */
    }
    .feature_list_item img {
        height: 60px;
        margin-bottom: 35px;
    }
    #pg-demo-account .pg_check_list {
        border: none;
        padding: 0;
    }
}

/*----------- pg-trading-conditions -----------*/
@media (max-width:767px) {
    #pg-spread .pg_check_list,
    #pg-swap .pg_check_list {
        border: none;
        padding: 0;
    }
}
/*----------- pg-trading-platforms -----------*/
#pg-mobile .pg_sub_sec_btn {
    position: relative;
    padding: 40px;
}
#pg-mobile .pg_sub_sec_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 40px;
    background: url("images/icon_pc.svg") center / cover no-repeat;
    width: 70px;
    min-height: 45px;
    transform: translateY(-50%);
}
#pg-mobile .pg_read {
    margin-left: 110px;
}
#pg-mobile .pg_btn_1 {
    margin-left: 110px;
    margin-bottom: 0;
}
#pg-download h5 {
    color: #FE821D;
}
#pg-download .pg_note {
    margin-bottom: 40px;
    text-align: left;
}
.pg_double_btn_area .btn_win,
.pg_double_btn_area .btn_mac {
    position: relative;
}
.pg_double_btn_area .btn_win::before,
.pg_double_btn_area .btn_mac::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
}
.pg_double_btn_area .btn_win::before {
    background: url("images/icon_win.svg") center / cover no-repeat;
}
.pg_double_btn_area .btn_mac::before {
    background: url("images/icon_mac.svg") center / cover no-repeat;
}
@media (max-width:767px) {
    #pg-mt5 .pg_sub_sec_2 h4,
    #pg-mobile .pg_sub_sec_2 h4 {
        margin-bottom: 0;
    }
    #pg-mt5 .pg_check_list,
    #pg-webtrader .pg_check_list,
    #pg-mobile .pg_check_list {
        border: none;
        padding: 0;
    }
    #pg-mobile .pg_sub_sec_btn {
        position: relative;
        padding: 20px;
    }
    #pg-mobile .pg_sub_sec_btn::after {
        top: 20%;
        left: 20px;
        transform: translateY(-20%);
    }
    #pg-mobile .pg_sub_sec_btn .pg_read {
        margin-left: 90px;
        margin-bottom: 25px;
    }
    #pg-mobile .pg_btn_1 {
        margin-left: 0;
    }
    #pg-download .pg_btn_1 {
        margin-left: 0;
        margin-right: auto;
    }
}

/*----------- pg-trading-aprilinbestors-ecn -----------*/
#pg-aprilInvestors-ecn .pg_check_list {
    border: none;
    padding: 0;
}
#pg-aprilInvestors-ecn .pg_check_list>li {
    font-size: 1.25rem;/* 20px */
    font-weight: 700;
}
.pg_check_list_child>li,
.list_read {
    font-size: 0.875rem;/* 14px */
    font-weight: 400;
}
@media (max-width:767px) {
    #pg-aprilInvestors-ecn .pg_check_list>li {
        font-size: 1.1428571428571rem;/* 16px */
    }
    .pg_check_list_child>li,
    .list_read {
        font-size: 1rem;/* 14px */
    }
}

/*----------- pg-funding-withdrawal -----------*/
.pg_flex_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 50px;
}
.pg_flex_area>div {
    width: calc(50% - 20px);
    border: 1px solid #ccc;
    padding: 20px;
}
.pg_flex_area>div:nth-child(3) {
    width: 100%;
}
.pg_flex_area .pg_img_area {
    width: 200px;
    margin-bottom: 25px;
}
.pg_flex_area .pg_check_list {
    margin-bottom: 0;
}
#pg-withdrawal .pg_img_area {
    width: 200px;
    margin-bottom: 20px;
}
.pg_dl_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 40px;
}
.pg_dl_list dt {
    width: 30%;
    margin-bottom: 25px;
}
.pg_dl_list dd {
    width: 70%;
    margin-bottom: 25px;
}
@media (max-width:767px) {
    #pg-funding .pg_sub_sec_2 h4 {
        margin-bottom: 0;
    }
    .pg_flex_area {
        gap: 20px;
        margin-bottom: 40px;
    }
    .pg_flex_area>div {
        width: 100%;
    }
    .pg_flex_area>div .pg_check_list {
        border: none;
        padding: 0;
    }
}
/*----------- pg-introducing-brokers -----------*/
.pg_3point_list {
    margin-bottom: 40px;
}
.pg_3point_list ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0 15px;
}
.pg_3point_list li {
    width: calc(33.333% - 10px);
}
.pg_3point_list_item {
    position: relative;
    height: 100%;
    background-color: #333;
    padding: 60px 20px 20px;
}
.pg_3point_list_item::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: url("images/icon_check_2.svg") center / cover no-repeat;
    top: 20px;
    left: 20px;
    width: 20px;
    height: 20px;
}
.pg_3point_list h3 {
    color: #fff;
    font-size: 1.75rem;/* 28px */
    min-height: 84px;
    margin-bottom: 25px;
}
.pg_3point_list p {
    color: #fff;
}
.pg_flex_area_2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 50px;
    align-items: center;
}
.pg_flex_area_2>div {
    width: 50%;
}
.pg_flex_area_2 .pg_read {
    padding-right: 60px;
    margin-bottom: 0;
}
.pg_flex_area_2 .pg_btn_1 {
    margin-bottom: 0;
}
.pg_flex_area_2 .pg_img_area {
    margin-bottom: 0;
}
@media (max-width:1399px) {
    .pg_3point_list h3 {
        font-size: 1.6875rem;/* 27px */
        min-height: 81px;
    }
}
@media (max-width:767px) {
    .pg_3point_list li {
        width: 100%;
    }
    .pg_3point_list ul {
        gap: 20px;
    }
    .pg_3point_list_item {
        background-color: #F7F7F7;
    }

    .pg_3point_list h3 {
        font-size: 1.4285714285714rem;/* 20px */
        color: #333;
        min-height: auto;
        margin-bottom: 15px;
    }
    .pg_3point_list p {
        color: #333;
    }
    .pg_flex_area_2 {
       gap: 20px;
    }
    .pg_flex_area_2>div {
        width: 100%;
    }
}
/*----------- pg-contact -----------*/
.mail_address {
    margin-bottom: 40px;
}
.mail_address img {
    width: 1em;
    height: 1em;
}
.pg_contact .pg_flex_area_2>div:nth-child(1) .pg_btn_1 {
    background-color: #333;
    color: #fff;
}
.contact_form_area form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}
.contact_form_area form>div {
    position: relative;
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    padding-top: 14px;
}
.contact_form_area form>div:nth-child(-n+2) {
    width: calc(50% - 10px);
}
.contact_form_area form>div:nth-child(4) {
    height: 142px;
}
.contact_form_area form>div:last-child {
    height: 60px;
    border: none;
    padding-top: 0;
    margin-top: 20px;
}
.contact_form_area input,
.contact_form_area textarea,
.contact_form_area button {
    -moz-appearance: none;
    border: none;
    outline: none;
}
.contact_form_area input,
.contact_form_area textarea {
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    color: #666;
    font-size: 0.875rem;/* 14px */
}
.contact_form_area textarea {
    height: 123px;
}
.contact_form_area label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.75rem;/* 12px */
    line-height: 1;
}
.error {
    position: absolute;
    top: -21px;
    left: 0;
    height: 20px;
    line-height: 1;
}
.error span {
    color: #FE821D;
    font-size: 0.75rem;/* 12px */
    line-height: 1;
}
.contact_form_area .pg_btn_1 {
    margin-bottom: 0;
}
.pg_contact .pg_flex_area_2 {
    gap: 40px;
    align-items: start;
}
.pg_contact .pg_flex_area_2>div {
    width: calc(50% - 20px);
}
.pg_contact .pg_flex_area_2 .pg_read {
    padding-right: 0;
    margin-bottom: 40px;
}
@media (max-width:767px) {
    .pg_contact .pg_flex_area_2>div {
        width: 100%;
    }
}

/*----------- pg-compliance -----------*/
@media (max-width:767px) {
    .pg_compliance .pg_check_list {
        border: none;
        padding: 0;
    }
    .contact_form_area label {
        font-size: 0.625rem;/* 10px */
    }
    .contact_form_area input,
    .contact_form_area textarea {
        top: 20px;
        font-size: 0.85714285714286rem;/* 12px */
    }
    .contact_form_area textarea {
        height: 120px;
    }
    .error span {
        font-size: 0.71428571428571rem;/* 10px */
    }
}

//言語切り替え表示のデフォルトスタイル
a[data-stt-changelang] {
margin:0 7px;
}
//アクティブなテキストのスタイル
a[data-stt-active] {
text-decoration:none;
font-weight:bold;
}