@charset "utf-8";

* {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #333;
	font-family: "新丸ゴ R", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 16px;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}
body.fix {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
body {
	font-size: 14px;
}
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	font-size: 100%;
	font-weight: normal;
	line-height: 1.5;
}
sup {
	line-height: 1;
}
p {
	margin: 0;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0 0 0 16px;
}
dl,dt,dd {
	margin: 0;
	padding: 0;
}
a,
.a {
	color: #ff0f6c;
	text-decoration: none;
    transition: .4s cubic-bezier(0.19, 1, 0.22, 1);
	cursor: pointer;
}
a:hover,
.a:hover {
	opacity: 0.6;
}
a img {
	border: none;
}
img {
	width: auto\9;
	height: auto;
	max-width: 100%;
	border: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}
table {
	border-collapse: collapse;
}



/* ---------------- layout */
.layout {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 767px) {
.layout {
	padding: 0 16px;
}
}



/* ---------------- general */
.mobile {
    display: none;
}
.bold {
    font-family: "新丸ゴ M", "新丸ゴ R", sans-serif;
}
.js-effect {
    opacity: 0;
    transform: translateY(32px);
    transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.js-effect.on {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 767px) {
.mobile {
	display: block;
}
}



/* ---------------- header */
header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px;
    max-width: none;
    padding: 0 64px;
}
header .logoGroup {
    display: flex;
    align-items: center;
}
header .logoGroup .logo {
    width: 170px;
    margin-right: 16px;
}
header .logoGroup .copy {
    margin-right: 16px;
    font-size: 14px;
}
header .logoGroup .btnHome a {
    display: block;
    padding: 0 12px;
    background: #ff8080;
    border-radius: 16px;
    color: #fff;
    font-size: 13px;
    line-height: 32px;
    white-space: nowrap;
}
header .logoGroup .btnHome .ico {
    display: inline-block;
    position: relative;
    top: -2px;
    width: 16px;
    margin-right: 6px;
}
header .ministry {
    width: 148px;
}
@media (max-width: 1023px) {
header .layout {
    padding: 0 32px;
}
header .logoGroup .copy {
    display: none;
}
}
@media (max-width: 767px) {
header .layout {
    height: 44px;
    padding: 0 12px;
}
header .logoGroup .logo {
    width: 100px;
    margin-right: 12px;
}
header .logoGroup .btnHome a {
    padding: 0 10px;
    font-size: 12px;
    line-height: 20px;
}
header .topGroup .btnHome .ico {
    width: 13px;
}
header .ministry {
    width: 80px;
}
}


/* ---------------- footer */
footer .topGroup {
    background: #fafafa;
}
footer .topGroup .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}
footer .logoGroup {
    display: flex;
    align-items: center;
}
footer .logoGroup .logo {
    width: 107px;
    margin-right: 10px;
}
footer .logoGroup .copy {
    font-size: 12px;
}
footer .ministry {
    width: 112px;
}
footer .copyright {
    padding: 0 32px;
    font-size: 11px;
    text-align: center;
    line-height: 44px;
}
@media (max-width: 767px) {
footer .logoGroup .logo {
    width: 70px;
}
footer .logoGroup .copy {
    display: none;
}
footer .ministry {
    width: 57px;
}
footer .copyright {
    padding: 16px;
    font-size: 10px;
    line-height: 1.8;
}
}



/* ---------------- hero */
.hero {
    margin-bottom: 70px;
    padding: 48px 0 60px;
    background: #faf7ed;
}
.hero h1 {
    margin-bottom: 48px;
    text-align: center;
}
.hero h1 img {
    max-width: 566px;
}
.hero .nav {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}
.hero .nav li {
    width: 31.42%;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
    transition: .9s cubic-bezier(0.19, 1, 0.22, 1);
}
.hero .nav li:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}
.hero .nav .a {
    opacity: 1 !important;
    display: block;
    position: relative;
    color: #333;
    padding: 20px 16px 48px;
}
.hero .nav .a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 13px;
    height: 13px;
    border-right: 3px solid #fe3883;
    border-bottom: 3px solid #fe3883;
    transform: translateX(-50%) rotate(45deg);
}
.hero .nav .img {
    margin-bottom: 20px;
}
.hero .nav .img img {
    width: 120px;
}
@media (max-width: 767px) {
.hero {
    margin-bottom: 42px;
    padding: 32px 0 20px;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero .nav {
    display: block;
}
.hero .nav li {
    width: auto;
    margin-bottom: 12px;
    font-size: 15px;
    text-align: left;
}
.hero .nav .a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 90px;
    padding: 10px 32px 10px 0;
}
.hero .nav .a::after {
    top: 50%;
    left: auto;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    transform: translateY(-50%) rotate(45deg);
}
.hero .nav .img {
    width: 106px;
    margin: 0;
    text-align: center;
}
.hero .nav .img img {
    width: 68px;
}
}



/* ---------------- contents */
.contentsBlock {
    margin-bottom: 60px;
    padding: 120px 0 90px;
}
.contentsBlock .group {
    display: flex;
    flex-direction: row-reverse;
}
.contentsBlock .img {
    flex-basis: 45.72%;
    padding: 0 32px;
    text-align: center;
}
.contentsBlock .body {
    flex-basis: 54.28%;
}
.contentsBlock .head {
    position: relative;
    margin-bottom: 40px;
    padding: 32px 62px 40px;
}
.contentsBlock .head::before,
.contentsBlock .head::after,
.contentsBlock .head .inner::before,
.contentsBlock .head .inner::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: url("../img/bg_line_01.svg") no-repeat center center / contain;
}
.contentsBlock .head::before {
    top: 0;
    left: 0;
}
.contentsBlock .head::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}
.contentsBlock .head .inner::before {
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
}
.contentsBlock .head .inner::after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}
.contentsBlock .head h2 {
    margin-bottom: 24px;
    font-size: 36px;
}
.contentsBlock .banner {
    position: relative;
    padding: 67px 0 0 62px;
}
.contentsBlock .banner {
    position: relative;
    padding: 67px 0 0 62px;
}
.contentsBlock .banner .balloon {
    position: absolute;
    top: 0;
    left: 14px;
    width: 96px;
    background: #fc922a;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.contentsBlock .banner .balloon::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 18px;
    border: 8px solid transparent;
    border-top-color: #ea8521;
    border-right-color: #ea8521;
}
.contentsBlock .banner li {
    max-width: 534px;
    margin-bottom: 22px;
}
.contentsBlock .banner a {
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    transition: .9s cubic-bezier(0.19, 1, 0.22, 1);
}
.contentsBlock .banner a:hover {
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.contentsBlock .banner .thumb {
    width: 120px;
    height: 120px;
}
.contentsBlock .banner .txt {
    flex: 1;
    padding: 20px;
}
.contentsBlock .banner .min {
    display: block;
    font-size: 15px;
}
@media (max-width: 767px) {
.contentsBlock {
    min-height: 0 !important;
    margin-bottom: 45px;
    padding: 0;
}
.contentsBlock .group {
    display: block;
}
.contentsBlock .img {
    padding: 0;
}
.contentsBlock .img img {
    width: 140px;
}
.contentsBlock .head {
    margin-bottom: 16px;
    padding: 32px;
}
.contentsBlock .head::before,
.contentsBlock .head::after,
.contentsBlock .head .inner::before,
.contentsBlock .head .inner::after {
    width: 24px;
    height: 24px;
}
.contentsBlock .head h2 {
    margin-bottom: 16px;
    font-size: 24px;
    text-align: center;
}
.contentsBlock .banner {
    padding: 48px 24px 0;
}
.contentsBlock .banner .balloon {
    left: 24px;
    width: 72px;
    font-size: 12px;
    line-height: 30px;
}
.contentsBlock .banner .balloon::after {
    left: 12px;
    border-width: 6px;
}
.contentsBlock .banner li {
    margin-bottom: 12px;
}
.contentsBlock .banner a {
    align-items: center;
    padding: 10px;
    font-size: 14px;
}
.contentsBlock .banner .thumb {
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin-right: 14px;
    border-radius: 4px;
}
.contentsBlock .banner .txt {
    padding: 0;
}
.contentsBlock .banner .min {
    font-size: 11px;
}
}

/* sec01 */
.contentsBlock.sec01 {
    min-height: 669px;
    background: url("../img/bg_section_01.svg") no-repeat center top;
}

/* sec02 */
.contentsBlock.sec02 {
    min-height: 669px;
    background: url("../img/bg_section_02.svg") no-repeat center top;
}
.contentsBlock.sec02 .group {
    flex-direction: row;
}
.contentsBlock.sec02 .head::before,
.contentsBlock.sec02 .head::after,
.contentsBlock.sec02 .head .inner::before,
.contentsBlock.sec02 .head .inner::after {
    background-image: url("../img/bg_line_02.svg");
}
.contentsBlock.sec02 .banner .balloon {
    background: #b256ea;
}
.contentsBlock.sec02 .banner .balloon::after {
    border-top-color: #8c34c1;
    border-right-color: #8c34c1;
}
/* sec03 */
.contentsBlock.sec03 {
    min-height: 705px;
    background: url("../img/bg_section_03.svg") no-repeat center top;
}
.contentsBlock.sec03 .head::before,
.contentsBlock.sec03 .head::after,
.contentsBlock.sec03 .head .inner::before,
.contentsBlock.sec03 .head .inner::after {
    background-image: url("../img/bg_line_03.svg");
}
.contentsBlock.sec03 .banner .balloon {
    background: #46c0f2;
}
.contentsBlock.sec03 .banner .balloon::after {
    border-top-color: #25aae0;
    border-right-color: #25aae0;
}
@media (max-width: 767px) {
.contentsBlock.sec01 {
    background: url("../img/bg_section_01.svg") no-repeat center 81px / 630px;
}
.contentsBlock.sec02 {
    background: url("../img/bg_section_02.svg") no-repeat center 43px / 630px;
}
.contentsBlock.sec03 {
    background: url("../img/bg_section_03.svg") no-repeat center 50px / 620px;
}
}


/* ---------------- consultation */
.consultation {
    min-height: 526px;
    margin-bottom: 48px;
    padding: 104px 0 86px;
    background: url("../img/bg_consultation_01.svg") no-repeat center center;
}
.consultation .group {
    display: flex;
    max-width: 928px;
    margin: 0 auto 42px;
}
.consultation .img {
    width: 288px;
    padding-right: 32px;
    text-align: center;
}
.consultation .body {
    flex: 1;
}
.consultation .body h2 {
    margin-bottom: 16px;
    font-size: 32px;
}
.consultation .banner li {
    width: 100%;
    max-width: 448px;
    margin: 0 16px;
}
.consultation .banner ul {
    display: flex;
    justify-content: center;
}
.consultation .banner a {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    transition: .9s cubic-bezier(0.19, 1, 0.22, 1);
}
.consultation .banner a:hover {
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.consultation .banner .thumb {
    width: 120px;
    text-align: center;
}
.consultation .banner .txt {
    flex: 1;
    padding: 20px;
}
.consultation .banner .min {
    display: block;
    font-size: 15px;
}
@media (max-width: 767px) {
.consultation {
    margin-bottom: 32px;
    padding: 20px 24px 60px;
    background: url("../img/bg_consultation_01_sp.svg") no-repeat center center / contain;
}
.consultation .group {
    display: block;
    margin-bottom: 32px;
}
.consultation .img {
    width: auto;
    margin-bottom: 24px;
    padding: 0;
}
.consultation .img img {
    width: 96px;
}
.consultation .body h2 {
    font-size: 22px;
    text-align: center;
}
.consultation .banner ul {
    display: block;
}
.consultation .banner li {
    margin: 0 0 14px;
}
.consultation .banner a {
    padding: 10px;
    font-size: 14px;
}
.consultation .banner .thumb {
    width: 80px;
    margin-right: 14px;
}
.consultation .banner .txt {
    padding: 0;
}
.consultation .banner .min {
    font-size: 11px;
}
}



/* ---------------- shareBlock */
.shareBlock {
    margin-bottom: 46px;
}
.shareBlock .share {
    max-width: 928px;
    margin: 0 auto;
    padding: 24px 16px;
    border-radius: 24px;
    background: #faf7ed;
    text-align: center;
}
@media (max-width: 767px) {
.shareBlock .share {
    padding: 20px 16px;
}
}


/* ---------------- aboutBlock */
.aboutBlock {
    margin-bottom: 64px;
}
.aboutBlock .group {
    display: flex;
    max-width: 928px;
    margin: 0 auto;
    padding: 32px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
.aboutBlock .img {
    width: 217px;
    margin-right: 32px;
}
.aboutBlock .img img {
    border: 1px solid #e0e0e0;
}
.aboutBlock .body {
    flex: 1;
}
.aboutBlock .body h2 {
    margin-bottom: 16px;
    font-size: 22px;
}
.aboutBlock .body .link {
    padding-top: 8px;
}
.aboutBlock .body .link a {
    display: inline-block;
    position: relative;
    padding-left: 14px;
}
.aboutBlock .body .link a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    border: 4px solid transparent;
    border-left: 6px solid #ff0f6c;
}
@media (max-width: 767px) {
.aboutBlock {
    margin-bottom: 83px;
}
.aboutBlock .group {
    display: block;
    padding: 22px 24px;
}
.aboutBlock .img {
    width: auto;
    margin-bottom: 16px;
    text-align: center;
}
.aboutBlock .img img {
    width: 110px;
}
.aboutBlock .body h2 {
    font-size: 18px;
    text-align: center;
}
}



/*------------------------ rate */
.rateBlock {
    margin-bottom: 80px;
}
.rateArea .h {
margin-bottom: 8px;
font-size: 13px;
}
.rateArea .h .ico {
display: inline-block;
width: 20px;
margin-right: 4px;
}
.rateArea .btGroup {
overflow: hidden;
display: table;
width: 100%;
border-radius: 4px;
background: #f5f5f5;
}
.rateArea .btGroup .rateBtn {
display: table-cell;
width: 25%;
box-sizing: border-box;
border-left: 1px solid #e0e0e0;
color: #666;
font-size: 14px;
text-align: center;
line-height: 40px;
cursor: pointer;
transition: all 0.4s ease;
}
.rateArea .btGroup .rateBtn:first-child {
border-left: none;
}
.rateArea .btGroup .rateBtn:hover {
opacity: 0.6;
}
#rate {
position: relative;
}
#rate .popup {
display: none;
position: absolute;
bottom: 64px;
left: 12%;
width: 76%;
padding: 24px 32px 32px 32px;
box-sizing: border-box;
border-radius: 8px;
background: #f5f5f5;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
#rate .rate-head {
margin-bottom: 16px;
font-family: "新丸ゴ M", "新丸ゴ R", sans-serif;
font-size: 24px;
}
#rate .rate-head {
margin-bottom: 16px;
font-family: "新丸ゴ M", "新丸ゴ R", sans-serif;
font-size: 24px;
}
#rate textarea {
width: 100%;
height: 118px;
margin: 8px 0 24px 0;
padding: 8px;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #ccc;
}
#rate .bt {
text-align: center;
}
#rate .bt a {
display: inline-block;
width: 240px;
border-radius: 20px;
background: #ff8080;
color: #fff;
font-family: "新丸ゴ R", sans-serif;
font-size: 16px;
line-height: 40px;
}
#rate .close {
position: absolute;
top: 16px;
right: 16px;
}
#rate .close a {
display: block;
position: relative;
width: 34px;
height: 34px;
-webkit-transform: rotate(45deg);
-webkit-transform-origin: center;
transform: rotate(45deg);
transform-origin: center;
}
#rate .close a:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 2px;
height: 100%;
margin-left: -1px;
background: #ff8080;
}
#rate .close a:after {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 2px;
margin-top: -1px;
background: #ff8080;
}

@media (max-width: 767px) {
.rateArea .h {
font-size: 12px;
}
.rateArea .btGroup {
border: 1px solid #e0e0e0;
}
.rateArea .btGroup .rateBtn {
display: block;
width: auto;
border-left: none;
border-top: 1px solid #e0e0e0;
font-size: 13px;
line-height: 34px;
}
.rateArea .btGroup .rateBtn:first-child {
border: none;
}
#rate .popup {
bottom: 0;
left: 0;
width: 100%;
padding: 16px;
}
#rate .rate-head {
margin-bottom: 8px;
font-size: 16px;
}
#rate textarea {
height: 80px;
}
#rate .bt {
text-align: center;
}
#rate .bt a {
width: auto;
padding: 0 24px;
font-size: 14px;
}
#rate .close a {
width: 24px;
height: 24px;
}
}




