/*! Luxeritas Child CSS */
/* Luxeritas WordPress Theme - free/libre wordpress platform
 *
 * @copyright Copyright (C) 2015 Thought is free.
 * @license http://www.gnu.org/licenses/gpl-2.0.html GPL v2 or later
 * @author LunaNuko
 * @link http://thk.kanzae.net/
 * @translators rakeem( http://rakeem.jp/ )
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 *   Theme Name: Luxeritas Child Theme
 *   Template: luxeritas
 *   Text Domain: luxech
 *   Theme URI: http://thk.kanzae.net/wp/
 *   Description: SEO optimized, Responsive layout, Super Fast, Multi Feature, Bootstrap
 *   Author: LunaNuko
 *   Author URI: http://thk.kanzae.net/
 *   License: GNU General Public License v2 or later
 *   License URI: http://www.gnu.org/licenses/gpl-2.0.html
 *   Tags: one-column, two-columns, three-columns, right-sidebar, left-sidebar, custom-header, custom-background, custom-colors, custom-menu, theme-options, featured-image-header, editor-style, sticky-post, threaded-comments, translation-ready
 *   Since: 20151206
 *   Modify: 20180517
 *   Version: 3.0.0
 *   Template Version: 3
 *
 * ここから上を消すと正しく動作しなくなることがあります。
 * ( Erasing the elements above here might cause system issues. )
*/
/* 以下、好みに応じて子テーマ用のスタイルをお書きください。
 * ( Below here, please write down your own styles for the child theme. )
*/
/*============================================
    Common
============================================*/
html {
    scroll-behavior: smooth;
}

/*
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
}
*/
@media (max-width: 768px) {
    body {
        max-width: 375px;
        margin: 0 auto;
    }
}

@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap; }

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-brands-400.woff2") format("woff2");
    font-display: swap; }

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-regular-400.woff2") format("woff2"), url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-solid-900.woff2") format("woff2");
    font-display: swap; }

a, a img {
    transition: 0.3 ease-in-out;
}

a:hover, a:hover img {
    opacity: 0.7;
}

ul,ol,dl {
    margin: 0;
    padding: 0;
    list-style: none;
}

.animated {
    opacity: 0;
}

/*============================================
    Layout
============================================*/
.container {
    max-width: 375px;
}

.home #main {
    margin-bottom: 0;
}

.home #main .row {
    margin-left: -15px;
    margin-right: -15px;
}

@media (min-width: 769px) {
    #header,#main>div,#main>section, .container,#footer {
        width: 1240px;
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1240px) {
    #header,#main>div,#main>section,#footer {
        width: 100%;
        max-width: 100%;
    }
}

/*============================================
    Bootstrap3
============================================*/
.home h1, .home h2, .home h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/*============================================
    Header
============================================*/
.container.header__container {
    width: 100%;
    max-width: 100%;
    height: 105px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.container.header__container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    width: 200px;
    background-color: #434343;
    z-index: 1;
}

#topbar {
    background-color: #fff;
    position: absolute;
    top: 15px;
    right: 26px;
    display: flex;
    align-items: center;
}

.topbar__time {
    background-color: #b1295b;
    color: #fff;
    width: 181px;
    height: 75px;
    padding: 10px 15px;
    font-size: 2rem;
    line-height: 1.2;
}

.topbar__time__range {
    font-size: 2.9rem;
}

.topbar__contact {
    width: 747px;
    height: 75px;
}

.topbar__desc {
    color: #b1295b;
    text-align: center;
    margin-bottom: 0;
    margin-top: -11px;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.topbar__contact-row {
    display: flex;
    height: 52px;
}

.topbar__phone {
    width: 52%;
}

.topbar__phone a {
    color: #b1295b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 4.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.topbar__phone .fas {
    transform: rotate(-45deg);
    margin-right: 5px;
}

.topbar__mail {
    background-color: #b1295b;
    width: 48%;
    border-radius: 3px;
}

.topbar__mail a {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}

@media (max-width: 768px) {
    #header {
        display:none;
    }
}

@media (min-width: 769px) {
    #header {
        width: 1240px;
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    #header {
        width: 1400px;
        max-width: 1400px;
    }
}

/*============================================
    Helper
============================================*/
/* font family */
.rich-font {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* color */
.bg-silver {
    background-color: #eaeff3!important;
}

.bg-beige {
    background-color: #faf3ed!important;
}

.color--red {
    color: #f00!important;
}

.color--key {
    color: #b1295b!important;
}

/* font size */
.bigger {
    font-size: 120%;
}

.big {
    font-size: 150%;
}

/* heading */
.section-heading {
    text-align: center;
    font-size: 6rem;
    font-weight: bold;
    line-height: 1.3;
    color: #1b3448;
}

.section-heading--style2 {
    padding-left: 1.2em;
    text-align: left;
    border-bottom: 2px dotted #b1295b;
    background: url(images/ico-square.png) no-repeat left center;
    background-size: 45px;
    padding-bottom: 0.2em;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .section-heading--style2 {
        background-size: 30px;
        padding-left: 1.5em;
        font-size: 3rem;
    }
}

/* styled box */
.box-round {
    border: 6px solid #b1295b;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .box-round {
        border-width: 3px;
    }
}

/* spacer */
.spacer {
    border-top: none;
}

/* visibility */
.sp_only {
    display: none !important;
}

.pc_only {
    display: block !important;
}

@media (max-width: 768px) {
    .sp_only {
        display: block !important;
    }

    .pc_only {
        display: none !important;
    }
}

/*============================================
    Section1
============================================*/
#s1 {
    position: relative;
    height: 720px;
    background: url(images/bg-model1.jpg) no-repeat;
    background-position: right bottom;
    background-size: contain;
    padding-right: 490px;
}

#main .s1__section__heading {
    position: absolute;
    top: -20px;
    left: 80px;
    font-size: 3rem;
    margin: 0;
    line-height: 1.5;
}

.s1__section__heading .inner {
    color: #b1295b;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    z-index: 20;
    position: relative;
}

.s1__section__heading .sitename {
    font-size: 250%;
    text-align: right;
    padding-right: 0.6em;
    line-height: 1;
}

.s1__section__heading small {
    font-weight: inherit;
    color: inherit;
    line-height: 1.3;
    display: block;
}

.s1__section__heading::before,.s1__section__heading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-51%,-59%) rotate(34deg);
    content: '';
}

.s1__section__heading::before {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    z-index: 10;
    background-color: #fff;
}

.s1__section__heading::after {
    background-color: #b1295b;
    z-index: 0;
    transform: translate(-50%,-49%) rotate(34deg);
}

.s1__desc {
    padding-top: 280px;
    text-align: right;
    font-size: 5.6rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    color: #1b3448;
}

.s1__keywords {
    margin: 0;
    /* padding-left: 75px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.s1__keywords__item {
    color: #fff;
    background-color: #b1295b;
    width: calc((100% - 70px) / 5);
    margin-bottom: 15px;
    text-align: center;
    font-size: 2.3rem;
    padding: 18px 0;
}

@media (min-width: 769px) {
    #s1 {
        display: flex;
        flex-direction: column;
        padding-left: 75px;
        justify-content: center;
    }

    .s1__desc {
        padding-top: 0;
        font-size: 4.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    #s1 {
        width: 100%;
        height: auto;
        padding: 0;
        background-position: center 258px;
        background: none;
    }

    #main .s1__section__heading {
        position: static;
        font-size: 1.6rem;
        border: 2px solid #b1295b;
        background-color: #fff;
    }

    .s1__section__heading::before {
        display: none;
    }

    .s1__section__heading::after {
        display: none;
    }

    .s1__section__heading .inner {
        padding: 10px 15px;
        align-items: center;
    }

    .s1__section__heading .sitename {
        padding-right: 0;
    }

    .s1__section__heading small {
        display: inline-block;
        margin-left: -0.4em;
    }

    .s1__desc {
        font-size: 2.5rem;
        text-align: center;
        padding: 30px 15px 15px;
        margin-bottom: 0;
    }

    .s1__keywords {
        padding: 15px;
    }

    .s1__keywords__item {
        width: calc((100% - 10px) / 3);
        font-size: 1.4rem;
        margin-bottom: 5px;
        padding: 5px 0;
    }
}

@media (max-width: 360px) {
    .s1__desc {
        font-size: 2.2rem;
    }

    .s1__keywords__item {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .header__container::after {
        display:none;
    }

    #main .s1__section__heading {
        top: -98px;
        left: 6px;
        font-size: 1.6rem;
        border: 2px solid #b1295b;
        padding: 10px 20px;
        background-color: #fff;
    }

    .s1__section__heading::before, .s1__section__heading::after {
        display: none;
    }

    .s1__section__heading .inner {
        align-items: center;
    }

    .s1__section__heading .sitename {
        padding-right: 0;
    }

    .s1__section__heading .sitename br {
        display: none;
    }

    .s1__section__heading small {
        display: inline;
    }

    .s1__keywords__item {
        font-size: 1.5rem;
    }
}

@media (min-width: 1240px) {
    #main .s1__section__heading {
        left: calc((100vw - 1240px) / 2);
    }
}

@media (min-width: 1400px) {
    #main .s1__section__heading {
        left: calc((100vw - 1400px) / 2);
    }
}

/*============================================
    Section2
============================================*/
#s2 {
    background: url(images/bg-model2.jpg) no-repeat;
    background-position: right bottom;
    background-size: 540px;
}

#s2 .container {
    padding-top: 15px;
    padding-bottom: 75px;
    position: relative;
}

#s2 .container::after {
    background: url(images/shape-triangle-down2.png) no-repeat;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 310px;
    height: 100px;
    background-size: contain;
}

.board {
    background: url(images/bg-board.png) no-repeat;
    background-size: contain;
    margin-top: 43px;
    width: 790px;
    height: 605px;
}

.board__list {
    width: 100%;
    height: 100%;
    padding: 63px 45px;
}

.board__item {
    height: 82px;
    line-height: 82px;
    padding-left: 45px;
    color: #b1295b;
    border-bottom: 2px dotted #b1295b;
    background: url(images/ico-check.png) no-repeat;
    background-position: left center;
    background-size: 40px 32px;
    font-size: 3.3rem;
}

.board__item:last-child {
    border-bottom: none;
}

.board__item--small {
    font-size: 2.7rem;
}

@media (max-width: 768px) {
    #s2 {
        background-size: 50%;
    }

    #s2 .container {
        padding-bottom: 231px;
    }

    #s2 .container::after {
        width: 78px;
        height: 25px;
    }

    .board {
        margin-top: 30px;
        width: 100%;
        height: auto;
        background-size: 100% 267px;
    }

    .board__list {
        padding: 30px 15px;
    }

    .board__item {
        background-size: 20px 16px;
        background-position: left 10px;
        font-size: 1.5rem;
        height: auto;
        line-height: 1.6;
        padding: 5px 0px 5px 30px;
    }

    .board__item--small {
        font-size: 1.1rem;
        background-position: left 5px;
    }
}

@media (max-width: 600px) {
    #s2 .container {
        padding-bottom: 64vw;
    }
}

@media (max-width: 360px) {
    #s2 .container {
        padding-bottom: 58vw;
    }

    .board {
        background-size: 100% 63vw;
    }

    .board__item {
        font-size: 1.1rem;
        background-position: left 6px;
        padding-left: 26px;
    }

    .board__item--small {
        font-size: 0.9rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

@media (max-width: 320px) {
    .board {
        background-size: 100% 70vw;
    }
}

/*============================================
    Section3
============================================*/
#s3 .container {
    padding-top: 35px;
    padding-bottom: 35px;
}

#s3 .section-heading {
    font-size: 5rem;
    margin-bottom: 35px;
}

#s3 .response-device {
    margin: 0;
}

@media (max-width: 768px) {
    #s3 .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 360px) {
    #s3 .section-heading {
        font-size: 1.8rem;
    }
}

/*============================================
    Response Device
============================================*/
.container>.response-device {
    margin-top: 130px;
    margin-bottom: 130px;
}

.response-device {
    border: 6px solid #b1295b;
    border-radius: 15px;
    background-color: #fff;
    padding: 30px 60px;
}

.response-device__desc {
    margin: 0;
    color: #1b3448;
    font-size: 4rem;
    font-weight: bold;
    padding: 20px 0;
}

.response-device__phone {
    margin-bottom: 10px;
}

.response-device__phone a {
    color: #b1295b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.response-device__phone .fas {
    transform: rotate(-45deg);
    margin-right: 5px;
}

.response-device__mail {
}

.response-device__mail a {
    background-color: #b1295b;
    border-radius: 6px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: bold;
    text-decoration: none;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.response-device__mail a::after {
    content: '';
    background-color: #c4567d;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
}

.response-device__mail a span {
    z-index: 1;
}

@media (max-width: 768px) {
    .container>.response-device {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .response-device {
        border-width: 3px;
        padding: 15px;
    }

    .response-device__desc {
        font-size: 1.5rem;
        padding: 0;
        margin-bottom: 10px;
    }

    .response-device__phone a {
        font-size: 3.5rem;
    }

    .response-device__mail a {
        font-size: 2.3rem;
    }
}

@media (max-width: 360px) {
    .response-device__phone a {
        font-size: 3rem;
    }
}

/*============================================
    Section4
============================================*/
#s4 .section-heading {
    margin-bottom: 30px;
}

.balloon {
    position: relative;
    background: url(images/bg-model4.png) no-repeat;
    background-position: 57% 54%;
    background-size: 30%;
    overflow: hidden;
}

.balloon__list {
    height: 1040px;
}

.balloon__item {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.4rem;
    text-align: center;
    line-height: 1.6;
    width: 520px;
    height: 310px;
}

.balloon__item--1 {
    background-image: url(images/shape-balloon1.png);
    top: 0%;
    left: 3%;
}

.balloon__item--2 {
    background-image: url(images/shape-balloon2.png);
    top: 3%;
    right: 0;
    width: 540px;
    height: 324px;
}

.balloon__item--3 {
    background-image: url(images/shape-balloon3.png);
    top: 34%;
    left: -1%;
}

.balloon__item--4 {
    background-image: url(images/shape-balloon4.png);
    top: 35%;
    right: 0%;
}

.balloon__item--5 {
    background-image: url(images/shape-balloon5.png);
    top: 63%;
    left: 5%;
}

.balloon__item--6 {
    background-image: url(images/shape-balloon6.png);
    top: 63%;
    right: 2%;
}

@media (max-width: 768px) {
    .balloon__list {
        height: 322px;
    }

    .balloon__item {
        font-size: 1rem;
        width: 43%;
        height: 46%;
        background-position: center;
    }
}

@media (max-width: 767px) {
    .balloon__list {
        height: 89vw;
    }
}

@media (max-width: 360px) {
    .balloon__item {
        font-size: 0.9rem;
    }
}

/*============================================
    Section5
============================================*/
#s5 {
    counter-reset: count;
}

#main .s5__section-heading {
    color: #fff;
    background-color: #b1295b;
    font-size: 4.26rem;
    padding: 30px 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.s5__desc {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 35px;
}

#main .s5__heading {
    background-color: #fff;
    color: #b1295b;
    border: 3px solid #b1295b;
    border-radius: 10px;
    padding: 45px 15px;
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    margin: 0 auto 35px;
}

.feature {
    position: relative;
    margin-bottom: 60px;
    counter-increment: count;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.feature::before {
    content: '特徴' counter(count);
    position: absolute;
    top: 6%;
    left: -10%;
    color: #fff;
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 0.4em 3em;
    line-height: 1;
    transform: rotate(-45deg);
}

.feature__inner {
    padding: 45px 60px 120px 120px;
}

.feature__point {
    color: #646055;
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
}

.feature__point .p {
    transform: rotate(-45deg) translate(-5%, -58%);
    display: block;
    font-size: 2.3rem;
}

.feature__point .n {
    color: #fff;
    background-color: #646055;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-weight: bold;
}

#main .feature__heading {
    color: #646055;
    text-align: center;
    font-size: 5rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 80px;
}

.feature__desc {
    font-size: 3.2rem;
    line-height: 1.5;
}

.feature__desc img {
    width: 46%;
    margin-right: 30px;
}

.feature--1::before {
    background-color: #b1295b;
}

.feature--2 {
    background-color: #e8f2fe;
}

.feature--2::before {
    background-color: #2b58ad;
}

.feature--2 .feature__point {
    color: #5d86bc;
}

.feature--2 .feature__point .n {
    background-color: #5d86bc;
}

.feature--2 .feature__heading {
    color: #5d86bc;
}

.feature--3 {
}

.feature--3::before {
    background-color: #4c4c4c;
}

@media (max-width: 768px) {
    #main .s5__section-heading {
        margin-top: 60px;
        margin-bottom: 20px;
        padding: 15px;
        font-size: 1.6rem;
    }

    .s5__desc {
        font-size: 2rem;
    }

    #main .s5__heading {
        padding: 15px;
        font-size: 2rem;
        line-height: 1.5;
    }

    .feature {
        margin-bottom: 30px;
    }

    .feature::before {
        font-size: 2rem;
        top: 3%;
        left: -14%;
    }

    .feature__inner {
        padding: 15px 15px 25px;
    }

    .feature__point {
        margin-bottom: 15px;
    }

    .feature__point .p {
        font-size: 1rem;
        transform: rotate(-45deg) translate(-6%, -58%);
    }

    .feature__point .n {
        font-size: 2rem;
    }

    #main .feature__heading {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .feature__desc {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .feature__desc img {
        width: 70%;
        margin: 0 auto 10px;
        float: none!important;
        display: block;
    }
}

@media (max-width: 360px) {
    #main .s5__heading {
        font-size: 1.6rem;
    }

    #main .feature__heading {
        font-size: 1.4rem;
    }

    .feature::before {
        font-size: 1.6rem;
        top: 2%;
        left: -14%;
    }

    .feature__desc {
        font-size: 1.4rem;
    }
}

/*============================================
    Section6
============================================*/
#main .s6__section-heading {
    color: #b1295b;
    border-bottom: 2px solid;
    font-size: 4.7rem;
    padding-top: 15px;
    padding-bottom: 30px;
    width: calc(100% - 40px);
}

#s6 .box-round {
    background-color: #fff;
	 margin-bottom: 60px;
}

.s6__desc {
    padding: 60px;
    font-size: 3.3rem;
    line-height: 1.5;
}

.s6__desc p {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    #main .s6__section-heading {
        width: calc(100% - 20px);
        padding-top: 5px;
        padding-bottom: 15px;
        font-size: 2.2rem;
    }

    .s6__desc {
        padding: 15px;
        font-size: 1.6rem;
        text-align: left;
    }
    
    #s6 .box-round {
	     margin-bottom: 30px;
    }

}

@media (max-width: 360px) {
}

/*============================================
    Section7
============================================*/
#s7 .container {
    padding-top: 100px;
}

.price {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.price::before {
    content: '価格';
    position: absolute;
    top: 1.5%;
    left: -17%;
    color: #fff;
    background-color: #b1295b;
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 0.4em 5em;
    line-height: 1;
    transform: rotate(-45deg);
}

.price__inner {
    padding: 45px 100px 80px;
}

.price__point {
    color: #fff;
    background-color: #b1295b;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-weight: bold;
}

#main .price__heading {
    color: #b1295b;
    text-align: center;
    font-size: 5rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 80px;
}

.price__desc.row {
    font-size: 3rem;
    margin-bottom: 30px;
}

.price__table {
    margin-bottom: 10px;
}

.price__table>thead>tr>th,.price__table>tbody>tr>th,.price__table>tbody>tr>td {
    font-size: 3rem;
    border: 2px solid #000;
    padding: 10px 20px;
}

.price__table>thead>tr>th {
    color: #fff;
    background-color: #b1295b;
    border-top: 2px solid #000!important;
}

.price__table>thead>tr>th:only-child {
    text-align: center;
}

.price__table>thead>tr>th:not(:only-child):not(:first-child) {
    text-align: center;
}

.price__table>tbody>tr>th {
    width: 9em;
}

.price__table>tbody>tr>td {
    text-align: center;
    font-weight: bold;
}

.price__table--discount>tbody>tr>td {
    text-align: left;
    font-weight: normal;
}

@media (max-width: 768px) {
    #s7 .container {
        padding-top: 30px;
    }

    .price::before {
        font-size: 2rem;
        top: 19px;
        left: -81px;
    }

    .price__inner {
        padding: 15px 15px 25px;
    }

    .price__point {
        font-size: 2rem;
    }

    #main .price__heading {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }

    .price__desc.row {
        font-size: 1.6rem;
    }

    .price__desc img {
        width: 50%;
        margin: 0 auto 15px;
    }

    .price__table>thead>tr>th,.price__table>tbody>tr>th,.price__table>tbody>tr>td {
        font-size: 1.6rem;
        padding: 8px 12px;
    }

    .price__table>thead>tr>th {
        font-size: 1.8rem;
        vertical-align: middle;
    }

    .price__table>tbody>tr>th {
        width: 4em;
        white-space: nowrap;
    }

    .price__table>tbody>tr>td {
        text-align: left;
    }
}

@media (max-width: 360px) {
    .price::before {
        font-size: 1.6rem;
        top: 16px;
        left: -64px;
    }

    #main .price__heading {
        font-size: 1.5rem;
    }
}

/*============================================
    Section8
============================================*/
#s8 .box-round {
    padding: 80px 60px;
    background-color: #fff;
}

.s8__desc {
    font-size: 3rem;
}

#main .s8__section-heading {
    color: #000;
    text-align: left;
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 30px;
}

.s8__desc .col-sm-8 {
    padding: 0 40px;
}

.s8__desc .col-sm-4 {
    padding: 0px 35px;
}

#main .s8__heading {
    font-size: 4rem;
    font-weight: bold;
}

.s8__list {
    font-weight: bold;
    list-style: disc;
    padding-left: 2em;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
}

.s8__list__item {
    padding-right: 2em;
    font-size: inherit;
}

@media (max-width: 768px) {
    #s8 .box-round {
        padding: 15px;
    }

    .s8__desc {
        font-size: 1.6rem;
    }

    .s8__desc .col-sm-4 {
        padding: 15px 15px;
    }

    .s8__desc .col-sm-8 {
        padding: 0 15px;
    }

    .s8__desc img {
        margin-bottom: 15px;
    }

    #main .s8__section-heading {
        text-align: center;
        margin-bottom: 15px;
        font-size: 2.4rem;
    }

    #main .s8__heading {
        font-size: 2rem;
    }

    .s8__list__item {
        padding-right: 0;
    }
}

/*============================================
    Section9
============================================*/
#s9 {
    counter-reset: flow-count;
}

#s9 .container {
    padding-top: 120px;
}

#s9 .section-heading {
    margin-bottom: 60px;
}

.flow {
    margin-bottom: 120px;
    background-color: #fff;
    padding: 30px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.flow:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,70%);
    background: url(images/shape-triangle-down.png) no-repeat;
    background-size: contain;
    width: 136px;
    height: 51px;
}

#main .flow__heading {
    color: #666;
    font-size: 4rem;
    font-weight: bold;
    position: relative;
    counter-increment: flow-count;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 35px;
}

.flow__heading::before {
    content: counter(flow-count);
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff;
    background-color: #b1295b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.4em;
    height: 1.4em;
    margin-right: 0.5em;
    border-radius: 8px;
}

.flow__desc {
    font-size: 3.2rem;
    font-weight: bold;
}

.flow__desc p {
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    #s9 .container {
        padding-top: 60px;
    }

    #s9 .section-heading {
        margin-bottom: 30px;
    }

    .flow {
        margin-bottom: 60px;
        padding: 15px;
    }

    #main .flow__heading {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .flow__desc {
        font-size: 1.6rem;
    }

    .flow:not(:last-child)::after {
        width: 68px;
        height: 25px;
    }
}

/*============================================
    Section10
============================================*/
#s10 .container {
    padding-top: 40px;
}

#s10 .section-heading {
    margin-bottom: 50px;
}

.s10__panel {
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 100px;
    border-radius: 0;
    border: 2px solid #999;
}

.s10__panel .panel-heading {
    text-align: center;
    color: #000;
    font-weight: bold;
    border-radius: 0;
    border-bottom: 2px solid #999;
    padding: 15px 15px;
}

.s10__panel .panel-title {
    font-size: 3.5rem;
    font-weight: bold;
}

.s10__panel .panel-body {
    padding: 0;
}

.s10__panel .panel-footer {
    padding: 25px;
    font-size: 3rem;
    border-radius: 0;
}

.bf__list {
    font-weight: bold;
    list-style: disc;
    padding-left: 2em;
    line-height: 1.6;
}

.bf__item {
    padding-right: 2em;
    font-size: inherit;
}

@media (max-width: 768px) {
    #s10 .container {
        padding-top: 10px;
    }

    #s10 .section-heading {
        margin-bottom: 25px;
    }

    .s10__panel {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .s10__panel .panel-heading {
        padding: 10px 15px;
    }

    .s10__panel .panel-title {
        font-size: 2rem;
    }

    .s10__panel .panel-footer {
        padding: 15px;
        font-size: 2rem;
    }

    .bf__list {
        padding-left: 1.4em;
    }

    .bf__item {
        padding-right: 0;
    }
}

@media (max-width: 360px) {
    .s10__panel .panel-title {
        font-size: 1.6rem;
    }

    .s10__panel .panel-footer {
        font-size: 1.6rem;
    }
}

/*============================================
    Section11
============================================*/
#main .s11__section-heading {
    color: #fff;
    background-color: #b1295b;
    font-size: 6rem;
    padding: 15px 30px;
    line-height: 1.5;
    border-radius: 12px;
    margin-bottom: 60px;
}

#main .s11__heading {
    border: 2px solid #da608d;
    background-color: #f3eaec;
    color: #47403c;
    margin-bottom: 20px;
    text-align: center;
    font-size: 5.2rem;
    padding: 15px 30px;
    line-height: 1.3;
    position: relative;
}

.s11__heading::after {
    content: '';
    background-color: #b1295b;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.media__block {
    margin-bottom: 80px;
}

.media__desc {
    margin: 15px 0;
    font-size: 2.9rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    #main .s11__section-heading {
        font-size: 3rem;
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    #main .s11__heading {
        font-size: 1.8rem;
        padding: 12px 10px;
    }

    .media__block {
        margin-bottom: 40px;
    }

    .media__desc {
        font-size: 1.6rem;
    }
}

@media (max-width: 360px) {
    #main .s11__heading {
        font-size: 1.8rem;
    }
}

/*============================================
    Section12
============================================*/
#main .s12__section-heading {
    color: #000;
    border-bottom: 2px solid #333;
    padding-bottom: 0.2em;
    margin-bottom: 30px;
}

.s12__section-heading span {
    font-family: arial;
}

.s12__desc {
    font-size: 3.3rem;
    font-weight: bold;
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 60px;
}

.s12__desc span {
    position: absolute;
    left: 1em;
}

.s12__message {
    color: #fff;
    background-color: #b1295b;
    font-size: 5rem;
    font-weight: bold;
    padding: 1em;
    line-height: 1.4;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 120px;
}

.tr__list {
    background-color: #f4ebec;
    padding: 50px;
    margin-bottom: 50px;
}

.tr__item {
    padding-left: 2.5em;
    line-height: 1.6;
    background: url(images/ico-check2.png) no-repeat;
    background-position: left center;
    background-size: 71px 63px;
    margin-bottom: 0.3em;
    font-size: 4.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    #main .s12__section-heading {
        margin-bottom: 15px;
        font-size: 2.6rem;
        text-align: left;
        padding-left: 1.5em;
        position: relative;
    }

    .s12__desc {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .s12__section-heading span {
        position: absolute;
        left: 6px;
    }

    .s12__message {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .tr__list {
        padding: 15px;
        margin-bottom: 25px;
    }

    .tr__item {
        font-size: 1.6rem;
        background-size: 35px 31px;
        background-position: left center;
        min-height: 2em;
        padding-top: 0.3em;
    }
}

/*============================================
    Section13
============================================*/
#s13 {
    counter-reset: root-count;
}

#s13 .section-heading {
    margin-top: 40px;
    margin-bottom: 60px;
}

.s13__well {
    background-color: #f4ebec;
    font-size: 3.5rem;
    font-weight: bold;
    border-radius: 0;
    border: none;
    padding: 30px 50px;
    margin-bottom: 50px;
}

.s13__well dl {
    border-bottom: 2px solid #da608d;
    padding: 0.6em 0;
    display: flex;
}

.s13__well dl:last-child {
    border-bottom: none;
}

.s13__well dt {
    padding-right: 1em;
    flex: 0 1 6em;
}

.s13__well dd {
    flex: 0 1 calc(100% - 6em);
}

#main .s13__heading {
    color: #b1295b;
    font-weight: bold;
    font-size: 4rem;
    padding: 0 0.5em;
    margin-bottom: 60px;
}

.s13__desc {
    padding: 0 30px;
    font-size: 3.3rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 50px;
}

.s13__map {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 100px;
}

.access-root {
    margin-bottom: 80px;
    counter-increment: root-count;
}

.access-root:last-child {
    margin-bottom: 0;
}

.access-root__desc {
    font-size: 3.1rem;
    font-weight: bold;
    padding-left: 1.5em;
    position: relative;
}

.access-root__desc::before {
    content: counter(root-count) '.';
    position: absolute;
    left: 0;
    color: #b1295b;
    font-weight: bold;
    font-size: 110%;
    font-family: arial;
}

@media (max-width: 768px) {
    #s13 .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    #s13 .section-heading {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .s13__well {
        font-size: 1.8rem;
        padding: 15px;
        margin-bottom: 25px;
    }

    #main .s13__heading {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .s13__desc {
        padding: 0 15px;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    .s13__map {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .access-root {
        position: relative;
    }

    .access-root::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%,70%);
        background: url(images/shape-triangle-down.png) no-repeat;
        background-size: contain;
        width: 68px;
        height: 25px;
    }

    .access-root:last-child::after {
        display: none;
    }

    .access-root img {
        margin: 0 auto 15px;
    }

    .access-root__desc {
        font-size: 1.6rem;
        padding-left: 2.8em;
    }

    .access-root__desc::before {
        font-size: 200%;
        line-height: 1;
    }
}

@media (max-width: 360px) {
    .s13__well {
        font-size: 1.4rem;
    }

    #main .s13__heading {
        font-size: 1.6rem;
    }

    .s13__desc {
        font-size: 1.4rem;
    }

    .access-root__desc {
        font-size: 1.4rem;
    }
}

/*============================================
    Footer
============================================*/
#copyright {
}

#copyright .copy {
    margin: 0;
    font-size: 1.4rem;
}

#copyright #thk {
    margin: 0;
}

@media (max-width: 768px) {
    #copyright {
    }

    #copyright .copy {
    }

    #copyright #thk {
    }
}

/*============================================
    CTA
============================================*/
.cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(100%);
    z-index: 100;
    background-color: #fff;
}

.cta--visible {
    transform: translateY(0);
    opacity: 1;
}

.cta .container {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 768px) {
    .cta a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background-color: #b1295b;
        color: #fff;
        margin: 0 -15px;
        font-size: 2rem;
    }

    .cta .fas {
        margin-right: 5px;
        font-size: 120%;
    }

    .cta_phone a {
        background-color: #b1295b;
    }

    .cta_phone .fas {
        transform: rotate(-45deg);
    }

    .cta_mail a {
        background-color: #c4567d;
    }
}
