/* all style */
body {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
}
h1 {
    font-size: 33px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
    text-align: center;
    margin: 0;
}
h2 {
    font-size: 28px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
}
h2::after,
h2::before {
    content: '';
    display: block;
    width: 100px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: cover;
}
h2::before {
    background-image: url('../img/ttl_left_icon.png');
    margin-right: 25px;
}
h2::after {
    background-image: url('../img/ttl_right_icon.png');
    margin-left: 25px;
}
section {
    background-image: url('../img/bg_01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.section_inner {
    max-width: 700px;
    width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sp {
    display: none;
}
.img_wrap.sp,
.reason_list.sp {
    display: none;
}
/* all style mobile */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 23px;
    }
    h2::after,
    h2::before {
        width: 50px;
        height: 9px;
    }
    h2::before {
        margin-right: 20px;
    }
    h2::after {
        margin-left: 20px;
    }
    section {
        background-image: url('../img/bg_01.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }
    .section_inner {
        max-width: 450px;
        width: 95%;
    }
    .sp {
        display: flex;
    }
    .img_wrap.sp,
    .reason_list.sp {
        display: flex;
    }
    .pc {
        display: none;
    }
    .img_wrap.pc,
    .reason_list.pc {
        display: none;
    }
}

/* メインビジュアル スタイル  */
.kv {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.left_img {
    width: 35%;
    height: auto;
}
.slider {
    width: 65%;
    margin-inline: auto;
    overflow: hidden;
}
.slider  img {
    display: block;
    width: 100%;
}
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15); /* 拡大率 */
    }
}
.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}
/* メインビジュアル スタイル mobile */
@media screen and (max-width: 768px) {
    .kv {
        flex-direction: column-reverse;
        align-items: center;
    }
    .left_img {
        width: 100%;
    }
    .slider {
        width: 100%;
    }
}

/* いづもとは　スタイル */
.about {
    padding: 25px 0;
}
.about_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about_content::before {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background-image: url('../img/about_before_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 20px 0;
}
.about_content .main_massage {
    font-size: 18px;
    line-height: 20px;
    border-bottom: 1px solid #951C5B;
}
.sub_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sub_text > p {
    text-align: center;
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 15px 0;
}
.sub_text > p:last-child {
    margin: 0 0 30px 0;
}
.about_img-wrapper {
    width: 445px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about_img-wrapper > img {
    display: block;
    width: calc((100% - 5px) / 2);
    height: auto;
}
.about_img-wrapper > img:nth-child(-n+2) {
    margin-bottom: 5px;
}
.last_message {
    text-align: center;
    font-size: 14px;
    line-height: 23px;
    margin: 30px 0 0 0;
}
/* いづもとは スタイル mobile */
@media screen and (max-width: 768px) {
    .about_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about_content::before {
        width: 100%;
        height: 10px;
        margin: 15px 0;
    }
    .about_content .main_massage {
        font-size: 12px;
        text-align: center;
    }
    .about_content .main_massage span {
        display: block;
        border-bottom: 1px solid #951C5B;
    }
    .sub_text > p {
        font-size: 12px;
        margin: 0 0 10px 0;
    }
    .sub_text > p:last-child {
        margin: 0 0 20px 0;
    }
    .about_img-wrapper {
        width: 100%;
    }
    .last_message {
        text-align: center;
        font-size: 12px;
        margin: 20px 0 0 0;
    }
}


/* 選ばれる理由　スタイル */
.reason {
    padding: 25px 0 50px;
}
.reason h2 span {
    font-size: 21px;
    margin-right: 5px;
    align-self: flex-end;
}
.reason_list {
    width: 80%;
    margin: 30px auto 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
}
.reason_list li {
    width: calc((100% - 15px) / 2);
    height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/point_01.png');
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 0 15px;
}
.reason_list li:nth-child(n+2){
    margin-bottom: 10px;
}
.reason_list li:nth-child(2){
    background-image: url('../img/point_02.png');
}
.reason_list li:nth-child(3){
    background-image: url('../img/point_03.png');
}
.reason_list li:nth-child(4){
    background-image: url('../img/point_04.png');
}
.reason_list li:nth-child(5){
    background-image: url('../img/point_05.png');
}
.reason_list li:nth-child(6){
    background-image: url('../img/point_06.png');
}
.reason_list li h3 {
    line-height: 36px;
    color: #951C5B;
    font-weight: bold;
    margin: 0;
}
.reason_list li:first-child h3 {
    font-size: 29px;
    line-height: 31px;
}
.reason_list li:nth-child(2) h3 {
    font-size: 31px;
}
.reason_list li:nth-child(2) h3 span {
    font-size: 37px;
}
.reason_list li:nth-child(3) h3 {
    font-size: 31px;
}
.reason_list li:nth-child(3) h3 span {
    font-size: 36px;
    display: block;
}
.reason_list li:nth-child(4) h3 {
    font-size: 35px;
}
.reason_list li:nth-child(5) h3 {
    font-size: 35px;
}
.reason_list li:nth-child(6) h3 {
    font-size: 27px;
}
.reason_list li p {
    font-size: 12px;
    margin: 10px 0 0;
}
.reason_list li:nth-child(5) p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 7px;
}
.reason_list li:nth-child(5) p span {
    font-size: 12px;
    margin-bottom: 5px;
}
/* 選ばれる理由 スタイル mobile */
@media screen and (max-width: 768px) {
    .reason {
        padding: 25px 0 50px;
    }
    .reason h2 {
        font-size: 22px;
    }
    .reason h2 span {
        display: block;
        font-size: 18px;
        margin-right: 5px;
        flex-direction: column;
    }
    .reason_list {
        width: 334px;
        flex-direction: row;
        align-items: center;
    }
    .reason-sub_list {
        width: 334px;
        flex-direction: column;
    }
    .reason-sub_list li {
        width: 100%;
        height: 322px;
    }
    .reason_list li.slick-slide {
        display: flex;
        width: 100%;
        height: 322px;
        padding: 15px 30px;
    }
    .reason_list li:nth-child(n+1){
        margin-bottom: 25px;
    }
    .reason_list li h3 {
        line-height: 20px;
        margin-bottom: 5px;
    }
    .reason_list li:first-child h3 {
        font-size: 33px;
        line-height: 38px;
    }
    .reason_list li:nth-child(2) h3 {
        font-size: 33px;
    }
    .reason_list li:nth-child(2) h3 span {
        font-size: 40px;
        margin: 0 5px;
    }
    .reason_list li:nth-child(3) h3 {
        font-size: 33px;
        line-height: 38px;
    }
    .reason_list li:nth-child(3) h3 span {
        font-size: 40px;
        display: block;
    }
    .reason_list li:nth-child(4) h3 {
        font-size: 33px;
        line-height: 28px;
    }
    .reason_list li:nth-child(5) h3 {
        font-size: 33px;
    }
    .reason_list li:nth-child(6) h3 {
        font-size: 33px;
        line-height: 38px;
    }
    .reason_list li p {
        font-size: 14px;
        margin: 15px 0 0;
    }
    .reason_list li:nth-child(5) p {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
    }
    .reason_list li:nth-child(5) p span {
        font-size: 14px;
        margin-bottom: 5px;
    }
}


/* 実績　スタイル */
.achievements {
    padding: 25px 0 50px;
}
.achievements_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.achievements_inner > h3 {
    width: 100%;
    font-size: 18px;
    color: #951C5B;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.achievements_inner > h3::before,
.achievements_inner > h3::after {
    content: '';
    display: block;
    width: 40%;
    height: 2px;
    background-color: #951C5B;
}
.achievements_inner > h3::before {
    margin-right: 25px;
}
.achievements_inner > h3::after {
    margin-left: 25px;
}
.img_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.achievements_inner > img {
    width: 85%;
}
.img_wrap > img {
    display: block;
    width: calc((100% - 10px) / 2);
}
/* 実績 スタイル mobile */
@media screen and (max-width: 768px) {
    .achievements {
        padding: 25px 0 50px;
    }
    .achievements_inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .achievements_inner > h3 {
        font-size: 16px;
    }
    .achievements_inner > h3::before,
    .achievements_inner > h3::after {
        width: 40%;
    }
    .achievements_inner > h3::before {
        margin-right: 20px;
    }
    .achievements_inner > h3::after {
        margin-left: 20px;
    }
    .img_wrap {
        width: 100%;
        flex-direction: column;
    }
    .achievements_inner > img {
        width: 100%;
    }
    .img_wrap > div {
        width: 100%;
        position: relative;
    }
    /* スライド矢印のスタイル */
    .slide-arrow,
    .slide_arrow {
        z-index: 1;
        position: absolute;
        background-color: transparent;
        bottom: 0;
        height: 0;
        margin: auto;
        position: absolute;
        top: 0;
        width: 0;
    }
    .prev-arrow {
        border-bottom: 20px solid transparent;
        border-left: 0;
        border-right: 20px solid #fff;
        border-top: 20px solid transparent;
        left: 10px;
    }
    .prev_arrow {
        border-bottom: 20px solid transparent;
        border-left: 0;
        border-right: 20px solid #951C5B;
        border-top: 20px solid transparent;
        left: -25px;
    }
    .next-arrow {
        border-bottom: 20px solid transparent;
        border-left: 20px solid #fff;
        border-right: 0;
        border-top: 20px solid transparent;
        right: 10px;
    }
    .next_arrow {
        border-bottom: 20px solid transparent;
        border-left: 20px solid #951C5B;
        border-right: 0;
        border-top: 20px solid transparent;
        right: -25px;
    }
    button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding: 0;
    }
    /* スライダードットのカスタマイズ */
    .slick-dots {
    position: relative;
    z-index: 3;
    margin: -20px auto;
    text-align: center;
    }
    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }
    button {
        padding: 0;
        color: transparent;
        outline: none;
        width: 40px;
        border: unset;
        height: 4px;
        display: block;
        background: #fff;
        cursor: pointer;
    }
    .slick-active button {
        background: red;
    }
}


/* サポート　スタイル */
.support {
    padding: 25px 0 30px;
}
.support_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.support_list li {
    width: calc((100% - 20px) / 3);
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../img/support_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 2px 2px 8px #000;
}
.support_list li::before {
    content: '';
    display: block;
    width: 100%;
    height: 22px;
    background-image: url('../img/support_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.support_list li > h3 {
    font-size: 26px;
    font-weight: bold;
    color: #951C5B;
    margin: 5px 0 0;
}
.support_list li > p {
    font-size: 9px;
    line-height: 15px;
    font-weight: bolder;
    text-align: center;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    padding: 0 5px;
}
.support_list li:first-child img {
    width: 51px;
}
.support_list li:nth-child(2) img {
    width: 87px;
}
.support_list li:nth-child(3) img {
    width: 150px;
}
/* サポート スタイル mobile */
@media screen and (max-width: 768px) {
    .support {
        padding: 25px 0 30px;
    }
    .support_list {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .support_list li {
        width: 85%;
        height: 280px;
        box-shadow: 2px 2px 8px #000;
        box-sizing: border-box;
        padding: 15px;
    }
    .support_list li:not(:last-child) {
        margin-bottom: 20px;
    }
    .support_list li::before {
        width: 100%;
        height: 32px;
    }
    .support_list li > h3 {
        font-size: 28px;
        margin: 10px 0 0;
    }
    .support_list li > p {
        font-size: 11px;
        line-height: 18px;
    }
    .support_list li:first-child img {
        width: 51px;
    }
    .support_list li:nth-child(2) img {
        width: 87px;
    }
    .support_list li:nth-child(3) img {
        width: 150px;
    }
}


/* 他社FCとの比較 スタイル */
.comparison {
    padding: 25px 0 50px;
}
.comparison_table {
    border-collapse: collapse;
    border: 2px solid #951C5B;
}

.comparison_table {
    width: 55%;
    margin: 30px 0;
}
.comparison_table th {
    font-size: 14px;
    background-color: rgba(149,28,91,.44);
    color: #fff;
}
.comparison_table td {
    font-size: 11px;
    text-align: center;
    box-sizing: border-box;
    padding: 3px 5px;
}
.comparison_table td.f12 {
    font-size: 12px;
}
.comparison_table td.f13 {
    font-size: 13px;
}
.comparison_table td.f14 {
    font-size: 14px;
}
.comparison_table td.yl {
    background-color: rgba(241,215,0,.44);
}
.comparison img {
    display: block;
    width: 60%;
}
/* 他社FCとの比較 スタイル mobile */
@media screen and (max-width: 768px) {
    .comparison_table {
        width: 90%;
        margin: 30px 0;
    }
    .comparison img {
        width: 90%;
    }
}


/* 受賞歴 スタイル */
.awards {
    padding: 25px 0 30px;
}
.awards_img_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.awards_img_wrapper img {
    display: block;
    width: 100%;
}
.awards_img_wrapper li:not(:last-child) img {
    margin-bottom: 20px;
}
/* 受賞歴 スタイル mobile */
@media screen and (max-width: 768px) {
    .awards_img_wrapper {
        padding: 0;
    }
}


/* オープンまでの流れ スタイル */
.flow {
    padding: 25px 0 30px;
}
.flow img {
    display: block;
    width: 100%;
    margin: 30px auto;
}
.flow p {
    font-size: 18px;
    width: 100%;
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow p span {
    width: 100%;
    font-size: 26px;
    color: #951C5B;
    font-weight: bold;
    text-align: center;
}
.flow p span::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #951C5B;
}
.flow img.img_02 {
    margin: -30px auto;
}
/* オープンまでの流れ スタイル mobile */
@media screen and (max-width: 768px) {
    .flow img {
        margin: 20px auto;
    }
    .flow p {
        font-size: 16px;
    }
    .flow p span {
        font-size: 24px;
    }
    .flow img.img_02 {
        margin: -15px auto;
    }
}


/* お問い合わせ スタイル */
.contact .section_inner {
    background-color: #fff;
    box-sizing: border-box;
    padding: 30px 0;
    margin: 30px 0;
}
.section_inner form {
    width: 500px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
}
form .input_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
form .input_wrap:not(:last-child) {
    margin-bottom: 15px;
}
.input_wrap > label {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
}
.input_wrap > label > span {
    display: block;
    font-size: 9px;
    background-color: #951C5B;
    color: #fff;
    box-sizing: border-box;
    padding: 1px 3px;
    border-radius: 5px;
    margin-left: 10px;
}
.input_wrap > span {
    width: 100%;
}
.input_wrap input {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 10px;
    background-color: #f8f8f8;
    box-shadow: inset 2px 1px 5px rgba(149,28,91,.6);
}
.input_wrap select {
    width: 45%;
    height: 30px;
    border: 1px solid #951C5B;
}
.input_wrap textarea {
    width: 100%;
    height: 150px;
    resize: none;
    border: none;
    border-radius: 5px;
    background-color: #f8f8f8;
    box-shadow: inset 2px 1px 5px rgba(149,28,91,.6);
}
.submit_btn input[type=submit] {
    display: block;
    margin: 45px auto 0;
    width: 200px;
    height: 45px;
    font-size: 16px;
    border: none;
    background-color: #951C5B;
    color: #fff;
    border-radius: 50px;
    box-shadow: 1px 2px 3px rgba(0,0,0,.9);
    font-weight: bold;
}
/* フォーム独自 スタイル */
.post-code input {
    width: 30%;
}
/* お問い合わせ スタイル mobile */
@media screen and (max-width: 768px) {
    .contact .section_inner {
        padding: 25px 0;
        margin: 25px 0;
    }
    .section_inner form {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }
    .input_wrap > label {
        font-size: 14px;
    }
}