@media screen and (max-width: 480px) {}
/*tablet 768px以下*/
@media screen and (max-width: 767px) {}
/*pc 1000px以下*/
@media screen and (max-width: 1000px) {}
body {
    font-family: "Noto Sans", sans-serif;
}
a {
    text-decoration: none;
}
img {
    width: 100%;
}
main {
    overflow: hidden;
}
.header_contents {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 96px;
    margin: 0px auto;
    background-color: #fff;
}
.header_menu {
    max-width: 1070px;
    padding: 0px 35px;
    margin: 24px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu_text {
    font-size: 2.0rem;
    color: #000;
    font-weight: 600;
}
.menu_box a {
    font-size: 2.0rem;
    font-weight: 600;
    width: 212px;
    padding: 9px;
    text-align: center;
    border-radius: 30px;
}
.menu_box .white {
    font-size: 2.0rem;
    font-weight: 600;
    color: #C40000;
    border: 2px solid #C40000;
    margin-right: 20px;
}
.menu_box .red {
    font-size: 2.0rem;
    font-weight: 600;
    color: #fff;
    background-color: #C40000;
    border: 2px solid #C40000;
}
.hamburger {
    display: none; /* PC では非表示 */
    width: 32px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 10px;
}
.hamburger span:nth-child(3) {
    top: 20px;
}
.hamburger.is-open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}
.sp_menu {
    display: none;
    position: fixed;
    z-index: 9; /* ヘッダー(z-index:10)の下に配置 */
    top: 75px; /* ヘッダーの高さ分だけ下から開始 */
    left: 0;
    width: 100%;
    height: calc(100vh - 96px); /* ヘッダー以外を全て埋める */
    background-color: #fff;
    /* フレックスで中央寄せ */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
}
.sp_menu a {
    display: block;
    max-width: 300px;
    width: 80%;
    margin: 12px auto;
    font-size: 2.0rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    text-align: center;
}
.sp_menu .white {
    color: #C40000;
    border: 2px solid #C40000;
    background-color: #fff;
}
.sp_menu .red {
    color: #fff;
    background-color: #C40000;
    border: 2px solid #C40000;
}
.main_contents {
    position: relative;
    z-index: 3;
    padding-top: 96px;
    display: flex;
    background-image: url("../img/main_bg.jpg");
    background-size: cover;
    background-position: top 96px center;
    background-repeat: no-repeat;
    height: 690px;
}
.main_box {
    position: relative;
    z-index: 3;
    max-width: 1070px;
    width: 100%;
    margin: 0px auto;
    padding: 0px 35px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.main_box-left {
    width: 48%;
}
.main_achieve-img001 {
    width: 420px;
    margin-top: 15px;
}
.main_achieve-img002 {
    width: 389px;
}
.main_title {
    font-size: 5.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 30px;
}
.main_point {
    display: flex;
    margin: 30px 0px 30px;
}
.main_point img {
    width: 136px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    margin: 0px 6px;
}
.main_box-left .note{
	font-size: 1.1rem;
	letter-spacing: 0.04rem;
	line-height: 1.2;
	text-align: left;
	color: #000;
	margin: 0px 0px 15px;
}
.main_box-right {
    position: relative;
    width: 45%;
    display: flex;
}
.main_person {
    width: 380px;
    margin-left: -100px;
}
.main_circle-box {
    position: absolute;
    right: -210px;
    z-index: -1;
    width: 480px;
    height: 480px;
    background-color: #C40000;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
	align-items: center;
}
.circle-item {
	display: inline-block;
    width: 75%;
}

.fx_section_001 {
    position: relative;
    z-index: 2;
    background-color: #F2F2F2;
}
.fx_points_contents, .fx_lead_contents, .fx_deliver-list, .fx_profile-area, .activities-box {
    max-width: 1070px;
    width: 100%;
    margin: 0px auto;
    padding: 0px 35px;
}
.fx_points_contents {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 130px 35px;
}
.fx_points-head {
    line-height: 0.3;
    font-weight: 600;
    margin-bottom: 30px;
}
.fx_points-head .black {
    font-size: 2.8rem;
    color: #000;
}
.fx_points-head .blue {
    font-size: 6.2rem;
    color: #000C6C;
}
.fx_points-head .large-text {
    font-family: "Noto Serif JP", serif;
    font-size: 10.9rem;
    color: #C40000;
}
.fx_points-head .red {
    font-family: "Noto Serif JP", serif;
    font-size: 6.0rem;
    color: #C40000;
}
.points-list {
    padding-left: 30px;
    list-style-type: disc;
}
.points-list li {
    font-family: "Yuji Syuku", serif;
    font-size: 2.7rem;
    color: #000C6C;
    margin-bottom: 25px;
}
.points-list li .red {
    font-size: 2.7rem;
    color: #C40000;
}
.fx_section_002 {
    position: relative;
    z-index: 4;
    background-image: url("../img/lead_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0px 30px;
    text-align: center;
}
.fx_lead-head {
    display: inline-block;
    background-color: #C40000;
    padding: 10px 30px;
    font-size: 2.8rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
    margin-bottom: 60px;
}
.fx_lead-head.small {
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.fx_lead-head .yellow {
    font-size: 2.8rem;
    color: #EBDB5F;
}
.fx_lead_contents .lead-text {
    font-size: 1.8rem;
    color: #fff;
    text-align: left;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 40px;
}
.fx_section_003, .fx_section_005 {
    position: relative;
    z-index: 2;
    background-color: #F2F2F2;
}
.fx_head {
    padding-top: 65px;
    margin: 0px auto 45px;
    font-size: 3.3rem;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.fx_head .small {
    font-size: 2.0rem;
    font-weight: 600;
    color: #000;
    font-feature-settings: "palt";
}
.fx_subhead {
    font-size: 2.0rem;
    color: #C40000;
    font-weight: 600;
    text-align: center;
}
.fx_head + .fx_subhead {
    margin: -15px auto 45px;
}
.fx_deliver-list {
    display: flex;
    justify-content: space-between;
}
.fx_deliver-box {
    width: 48%;
    padding: 45px 35px 35px;
    background-color: #A30000;
}
.fx_deliver-box .headtext {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}
.fx_deliver-box .tag {
    font-size: 2.0rem;
    color: #fff;
    background-color: #E58617;
    border-radius: 30px;
    padding: 5px;
    width: 206px;
    margin: 0px auto 30px;
    text-align: center;
}
.content-list {
    padding: 20px;
    background-color: #fff;
    list-style-type: disc;
    color: #A30000;
    padding-left: 35px;
}
.content-list li {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.content-list p, .content-list span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    line-height: 1.8;
}
.fx_section_003 {
    padding-bottom: 80px;
    z-index: 3;
}
.fx_profile-box {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 40px 38px;
}
.profile-left {
    width: 30%;
}
.profile-left .btn {
    display: flex;
    justify-content: center;
    background-color: #000;
    padding: 13px;
    margin-top: 15px;
}
.profile-left .btn .icon {
    width: 42px;
    padding-right: 20px;
    border-right: 1px solid #fff;
}
.profile-left .text {
    font-size: 2.0rem;
    font-weight: 500;
    color: #fff;
    margin-left: 20px;
}
.profile-right {
    width: 65%;
}
.profile-right .sub {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}
.profile-right .headtext {
    font-size: 2.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}
.profile-right .profile-text {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 400;
}
.fx_service-box {
    max-width: 928px;
    width: 100%;
    padding: 0px 35px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.fx_service-box h3 {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C40000;
    font-size: 2.0rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 25px 0px;
}
.service-text {
    width: 65%;
}
.service-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 400;
}
.service-text span {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.fx_section_004 {
    position: relative;
    z-index: 2;
}
.fx_section_004 .note {
    max-width: 928px;
    width: 100%;
    padding: 0px 35px;
    margin: -30px auto 0px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
}
.price-wrap {
    overflow: auto;
    max-width: 1070px;
    margin: 0px auto;
    padding: 0px 35px;
}
.price-list {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px;
    text-align: center;
}
.price-list .w28 {
    width: 28%;
}
.price-list .w24 {
    width: 24%;
}
.price-list thead th {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 0.2rem;
    padding: 9px;
}
.price-list thead th:nth-child(1), .price-list thead th:nth-child(2) {
    background-color: #C40000;
    border-right: 2px solid #fff;
}
.price-list thead th:nth-child(3) {
    background-color: #CE570D;
    border-right: 2px solid #fff;
}
.price-list thead th:nth-child(4) {
    background-color: #E58617;
}
.price-list tbody th {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    letter-spacing: 0.2rem;
    vertical-align: middle;
    padding: 18px 5px;
    background-color: #E3E3E3;
    border-bottom: 2px solid #fff;
}
.price-list tbody th .small {
    font-size: 1.6rem;
    font-weight: 600;
    font-feature-settings: "palt";
}
.price-list tbody td {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    vertical-align: middle;
    padding: 18px 5px;
    background-color: #F5F5F5;
    border-bottom: 2px solid #fff;
}
.price-list tbody td .small {
    font-size: 2.0rem;
    font-weight: 600;
}
.price-list tbody .btnarea td {
    padding: 18px 15px;
    background-color: #fff;
}
.price-list tbody th, .price-list tbody td {
    border-right: 2px solid #fff;
}
.price-list tbody td:last-child {
    border-right: 0px solid #fff;
}
.btnarea a {
    font-size: 2.0rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    letter-spacing: 0.2rem;
    display: block;
    width: 100%;
    padding: 9px;
    border-radius: 30px;
}
.btnarea a.red {
    background-color: #C40000;
    border: 2px solid #C40000;
}
.btnarea a.orange {
    background-color: #CE570D;
    border: 2px solid #CE570D;
}
.btnarea a.yellow {
    background-color: #E58618;
    border: 2px solid #E58618;
}
.fx-btn {
    text-align: center;
    margin: 100px auto;
}
.fx-btn a {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2rem;
    display: block;
    max-width: 500px;
    padding: 35px 5px;
    border-radius: 50px;
    background-color: #A30000;
    border: 2px solid #A30000;
    margin: 0px auto;
}
.fx-btn.gray {
    margin: 100px auto 0px;
}
.fx-btn.gray a {
    background-color: #808080;
    border: 2px solid #808080;
}
.fx-btn + .fx-btn {
    margin: 55px auto 20px;
}
.koudoku_cp-area + .note-area {
    display: block;
    margin: 30px auto 0px;
    text-align: center;
}
.note-area .note {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    text-indent: -1.4rem;
    padding-left: 1.4rem;
}
.activities-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1070px;
    padding: 0px 35px 20px;
}
.activities-box li {
    width: 48%;
    background-color: #fff;
    margin-bottom: 55px;
}
.activities-box li h3 {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    color: #000;
    margin: 25px auto 35px;
}
.activities-box li .btn a {
    font-size: 2.0rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3rem;
    text-align: center;
    display: block;
    max-width: 220px;
    padding: 15px 5px;
    border-radius: 50px;
    background-color: #C40000;
    border: 2px solid #C40000;
    margin: 0px auto 35px;
}
.overview-box {
    max-width: 1070px;
    padding: 0px 35px 20px;
    margin: 75px auto 160px;
}
.overview-box .ov-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 45px;
}
.overview-box .ov-head {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 5px;
}
.overview-box dl{
	margin-bottom: 40px;
}
.overview-box dt, .overview-box dd {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
}
.overview-box dt {
    float: left;
}
.overview-box .ov-list li{
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
	margin-bottom: 20px;
}
.overview-box .ov-list ol{
	list-style: none;
  counter-reset: number;
}
.overview-box .ov-list ol li{
	position: relative;
  padding-left: 40px;
}
.overview-box .ov-list ol li::before {
  counter-increment: number;
  content: '（' counter(number) '）';
  position: absolute;
  left: 0;
}
/* 装飾 */
.decoimg {
    position: absolute;
    z-index: -1;
}
.decoimg.deco001 {
    width: 550px;
    right: -200px;
}
.decoimg.deco002 {
    width: 420px;
    top: -50px;
    left: -140px;
}
.decoimg.deco003 {
    width: 643px;
    left: -100px;
    bottom: -110px;
}
.decoimg.deco004 {
    width: 545px;
    right: -200px;
    bottom: 100px;
}
.decoimg.deco005 {
    width: 420px;
    top: -50px;
    left: -140px;
}
.decoimg.deco006 {
    width: 545px;
    right: -200px;
    bottom: 300px;
}
.decoimg.deco007 {
    width: 420px;
    top: -50px;
    left: -140px;
}
/*ボタンアニメーション*/
.menu_box .white:hover, .menu_box .red:hover, .fx-btn a:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: ripple 1.5s infinite;
    color: #fff;
}
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 #C40000;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);
    }
}
.menu_box .white:hover{
	    color: #C40000;
}
.fx-btn.gray a:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: ripple-sec 1.5s infinite;
    color: #fff;
}
@keyframes ripple-sec {
    0% {
        box-shadow: 0 0 0 0 #808080;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);
    }
}
.profile-left .btn {
    transition: all .3s;
}
.profile-left .btn:hover {
    background-color: #878787;
    color: #000;
    transition: all .3s;
}
.btnarea a {
    transition: all .3s;
}
.btnarea a.red:hover {
    background-color: #fff;
    color: #C40000;
    transition: all .3s;
}
.btnarea a.orange:hover {
    background-color: #fff;
    color: #CE570D;
    transition: all .3s;
}
.btnarea a.yellow:hover {
    background-color: #fff;
    color: #E58618;
    transition: all .3s;
}
.activities-box .btn a {
    transition: all .3s;
}
.activities-box .btn a:hover {
    background-color: #fff;
    color: #C40000;
    transition: all .3s;
}
.display_pc {
    display: block;
}
.display_sp {
    display: none;
}

.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 93px;
  height: 93px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease;
}

/* スクロールしたら表示 */
.page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

.page-top__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Hiragino Kaku Gothic ProN", "YuGothic", "Meiryo", sans-serif;
}

/* △アイコン */
.page-top__icon {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 26px solid #fff;
  margin-bottom: 5px;
}

/* テキスト */
.page-top__text {
  font-size: 13px;
}

/* ホバー時に少し拡大 */
.page-top:hover {
  transform: scale(1.05);
}


.koudoku_cp-area{
	max-width: 1070px;
  margin: 35px auto 0px;
  padding: 0px 35px;
}
.koudoku_cp-box{
	position: relative;
	border: 4px solid #E58617;
	background-color: #fff;
}
.koudoku_cp-box::before,.koudoku_cp-box::after{
	content: "";
	background-image: url("../img/cp_deco.png");
	background-size: contain;
	background-repeat: no-repeat;
		display: block;
	width: 126px;
	height: 60px;
}
.koudoku_cp-box::before{
	position: absolute;
	top: 15px;
	left: 12px;
	transform: scale(-1, 1);
}
.koudoku_cp-box::after{
	position: absolute;
	top: 15px;
	right: 12px;
}
.koudoku_cp-box + .fx-btn{
	margin: 30px auto 100px;
}
.koudoku_cp-img{
	max-width: 700px;
	padding: 0px 30px;
	margin: 20px auto;
}
.koudoku_cp-img .cp-note{
	font-size: 1.4rem;
	line-height: 1.2;
	margin-top: 20px;
}

#secprice{
  scroll-margin-top: 96px;
}
@media screen and (max-width: 900px){
  #secprice{
    scroll-margin-top: 75px;
  }
}
@media screen and (max-width: 1272px) {
	.main_circle-box{
		right: -140px;
		width: 450px;
  height: 450px
	}
	.circle-item {
  display: inline-block;
  width: 65%;
}
}
@media screen and (max-width: 1100px) {
    .main_box-left {
        width: 50%;
    }
    .main_achieve-img001 {
        width: 80%;
    }
    .main_achieve-img002 {
        width: 75%;
    }
    .main_title {
        font-size: 4.5rem;
    }
    .main_person {
        width: 85%;
    }
    .main_circle-box {
        width: 380px;
        height: 380px;
        right: -90px;
    }

    .decoimg.deco001 {
        width: 450px;
    }
    .decoimg.deco002 {
        width: 320px;
    }
    .decoimg.deco003 {
        width: 543px;
    }
    .decoimg.deco004 {
        width: 445px;
        right: -100px;
        bottom: 200px;
    }
    .decoimg.deco005 {
        width: 320px;
    }
    .decoimg.deco006 {
        width: 445px;
    }
    .decoimg.deco007 {
        width: 320px;
    }
	.circle-item {
  width: 70%;
}
}
@media screen and (max-width: 950px) {
    .main_contents {
        height: 590px;
    }
    .main_title {
        font-size: 3.5rem;
    }
    .main_point {
        margin: 20px 0px 20px;
    }
    .main_point img {
        width: 33%;
    }
}
@media screen and (max-width: 900px) {
    .header_contents {
        height: 75px;
    }
    .header_menu {
        max-width: 90%; /* ちょっと内側に */
        margin: 24px auto;
        padding: 0px 0px;
    }
    /* SP では通常メニューを消す */
    .menu_box {
        display: none;
    }
    /* SP ではハンバーガー表示 */
    .hamburger {
        display: block;
    }
    /* 開いた状態 */
    .sp_menu.is-open {
        display: flex;
    }
    .main_contents {
        padding-top: 75px;
        background-position: top 75px center;
    }
    .main_circle-box {
        top: -50px;
    }

}
@media screen and (max-width: 750px) {
    .main_contents {
        height: 840px;
        background-position: bottom 0px left -130px;
    }
    .main_box {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .main_box-left {
        width: 100%;
    }
    .main_achieve-img001 {
        width: 60%;
    }
    .main_achieve-img002 {
        width: 55%;
    }
    .main_point {
        flex-wrap: wrap;
		width: 50%;
    }
    .main_point img {
        width: 120px;
        margin-bottom: 20px;
    }
	.main_box-left .note{
		width: 40%;
	}
    .main_box-right {
        position: absolute;
        right: 50px;
        bottom: 0;
    }
    .main_person {
        width: 100%;
		margin-left: -50px;
    }
    .main_circle-box {
        top: -150px;
        width: 280px;
        height: 280px;
        align-items: center;
    }
	
    .circle-item {
        margin-top: 0px;
    }
	.circle-item .note {
  font-size: 0.8rem;
  margin: 10px auto 0px;
}
    .fx_points-head {
        width: fit-content;
        margin: 0px auto 50px;
    }
    .fx_points-head .black {
        font-size: 2.3rem;
    }
    .fx_points-head .blue {
        font-size: 5.0rem;
    }
    .fx_points-head .large-text {
        font-size: 8.9rem;
    }
    .fx_points-head .red {
        font-size: 5.0rem;
    }
    .points-list li {
        font-size: 2.3rem;
    }
    .decoimg.deco003 {
        left: -330px;
    }
    .fx_deliver-list {
        flex-wrap: wrap;
    }
    .fx_deliver-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .fx_profile-box {
        flex-wrap: wrap;
        justify-content: center;
    }
    .profile-left {
        width: 80%;
        margin-bottom: 50px;
    }
    .profile-right {
        width: 100%;
    }
    .fx_service-box {
        flex-wrap: wrap;
    }
    .fx_service-box h3 {
        width: auto;
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    .service-text {
        width: 100%;
    }
    .display_pc {
        display: none;
    }
    .display_sp {
        display: block;
    }
	.overview-box{
		margin: 145px auto 160px;
	}
	.koudoku_cp-box::before, .koudoku_cp-box::after{
		width: 86px;
		height: 50px;
	}
	.koudoku_cp-img {
    max-width: 400px;
    padding: 0px 30px;
    margin: 20px auto;
}
}
@media screen and (max-width: 650px) {
    .main_achieve-img001 {
        width: 280px;
    }
    .main_achieve-img002 {
        width: 260px;
    }
    .main_title {
        font-size: 3.2rem;
        margin-top: 20px;
    }
    .main_box-right {
        width: 55%;
    }
    .main_circle-box {
        top: -180px;
    }
		.circle-item {
  width: 80%;
}
	.circle-item .note{
		font-size: 0.8rem;
		margin: 5px auto 0px;
	}
    .fx_points_contents, .fx_lead_contents, .fx_deliver-list, .fx_profile-area, .activities-box {
        padding: 0px 20px;
    }
    .fx_points_contents {
        padding: 45px 20px;
    }
    .fx_points-head .black {
        font-size: 1.6rem;
    }
    .fx_points-head .blue {
        font-size: 3.2rem;
    }
    .fx_points-head .large-text {
        font-size: 6.0rem;
    }
    .fx_points-head .red {
        font-size: 3.2rem;
    }
    .points-list li {
        font-size: 1.6rem;
    }
    .points-list li .red {
        font-size: 1.6rem;
        color: #C40000;
    }
    .decoimg.deco001 {
        width: 350px;
        right: -150px;
    }
    .fx_lead-head.display_sp {
        display: inline-block;
    }
    .fx_lead-head {
        font-size: 1.6em;
        padding: 10px;
        margin-bottom: 15px;
    }
    .fx_lead-head.small {
        font-size: 1.6em;
        margin: 0px 30px 15px;
    }
    .fx_lead-head .yellow {
        font-size: 1.8rem;
    }
    .fx_lead_contents .lead-text {
        font-size: 1.5em;
        margin-top: 30px;
    }
    .fx_head {
        padding-top: 45px;
        font-size: 2.6rem;
    }
    .fx_deliver-box {
        padding: 35px 30px;
    }
    .fx_deliver-box .headtext {
        font-size: 2.0rem;
        margin-bottom: 15px;
    }
    .fx_deliver-box .tag {
        font-size: 1.4rem;
        width: 157px;
        margin: 0px auto 30px;
    }
    .content-list {
        padding: 15px;
        background-color: #fff;
        list-style-type: disc;
        color: #A30000;
        padding-left: 35px;
    }
    .content-list p {
        font-size: 1.5rem;
    }
    .content-list span {
        font-size: 1.2rem;
    }
    .profile-left {
        width: 100%;
    }
    .profile-right .sub {
        font-size: 1.6rem;
    }
    .profile-right .headtext {
        font-size: 2.6rem;
    }
    .profile-right .profile-text {
        font-size: 1.5rem;
    }
    .decoimg.deco004 {
        width: 370px;
        right: -150px;
        bottom: 0px;
    }
    .decoimg.deco007 {
        width: 220px;
        top: -30px;
        left: -50px;
    }
	.fx_service-box{
		padding: 0px 20px;
	}
	
    .fx_service-box h3 {
        font-size: 1.6rem;
        padding: 10px;
    }
    .service-text p {
        font-size: 1.4rem;
    }
	.fx_section_004 .note{
		    padding: 0px 20px;
	}
	.price-wrap{
		    padding: 0px 20px;
	}
    .fx_head + .fx_subhead {
        padding: 0px 20px;
        line-height: 1.4;
    }
    .fx-btn a {
        font-size: 1.8rem;
        max-width: 320px;
        padding: 25px 5px;
    }
    .activities-box li {
        width: 100%;
    }
    .fx-btn.gray {
        margin: 50px auto 0px;
    }
    .fx-btn + .fx-btn {
        margin: 35px auto 20px;
    }
    .koudoku_cp-area + .note-area {
        padding: 0px 20px;
    }
    .note-area .note {
        font-size: 1.0rem;
        text-indent: -1.0rem;
        padding-left: 1.0rem;
    }
    .overview-box {
        padding: 0px 20px 20px;
        margin: 140px auto 75px;
    }
    .overview-box .ov-text {
        font-size: 1.4rem;
    }
    .overview-box .ov-head {
        font-size: 1.8rem;
    }
    .overview-box .ov-head + .ov-text {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
	.page-top{
		right: 24px;
  bottom: 24px;
  width: 73px;
  height: 73px;
	}
	.page-top__text{
		width: 50px;
		line-height: 1;
	}
	.koudoku_cp-area{
		    padding: 0px 20px;
	}
	.koudoku_cp-img .cp-note{
	font-size: 1.2rem;
	line-height: 1.2;
	margin-top: 20px;
}
}
@media screen and (max-width: 600px) {
	.menu_text{
		font-size: 1.8rem;
	}
	.main_box{
		padding: 0px 20px;
	}
	.main_point {
    display: block;
  }
	 .main_point img {
    width: 110px;
    margin-bottom: 10px;
  }
	.main_box-left .note{
		width: 30%;
		font-size: 0.8rem;
	}
	 .main_box-right {
    width: 250px;
		 right: 10px;
  }
	.main_circle-box{
		right: -30px;
		width: 240px;
    height: 240px;
	}
	.decoimg.deco001 {
    width: 250px;
    right: -110px;
		bottom: 0;
  }
	 .decoimg.deco002 {
    width: 220px;
		 top: -20px;
		 left: -110px;
  }
	 .decoimg.deco003 {
    width: 343px;
		 left: -230px;
		 bottom: -50px;
  }
	.koudoku_cp-box::before, .koudoku_cp-box::after {
        width: 66px;
        height: 50px;
    }
	.koudoku_cp-box::before {
    top: 10px;
}
	.koudoku_cp-box::after {
    top: 10px;
}
		.koudoku_cp-img {
    max-width: 500px;
    padding: 38px 13px 0px;
    margin: 20px auto;
}
}
@media screen and (max-width: 450px) {
	.main_person{
		margin-left: 0px;
	}
}
body.is-menu-open {
    overflow: hidden;
}