@charset "utf-8";

body {
    font-family: Roboto,sans-serif;
    color: #404040;
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    text-align: left;
    width: 100%;
    background-color: #F5F6F8;
}

html{
    height:100%;
    width:100%;
}

html>body{
    height:auto;
}

img{
    vertical-align:top;
    image-rendering: -webkit-optimize-contrast;
}

h1 {
    font-size: 0.9em;
    text-align: left;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

/* ==================== リンク ==================== */
a	{
    color: #404040;
    text-decoration: none;
}

a:hover	{
    text-decoration: underline;
}

img {
    border-style: none;
}

a:hover img {
    opacity: 0.8;
}

/* ==================== ヘッダー ==================== */
#head {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

#head_in {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
}

.header_logo {
    width: 50%;
    float: left;
    margin-left: 10%;
    margin-top: 2px;
    overflow: hidden;
}

.header_logo img {
    width: 230px;
}

.header_logo a:hover img	{
    opacity: 1.0;
}

.header_logo p {
    float: left;
    margin: 0;
}

.header_logo p:nth-of-type(2) {
    font-size: .7em;
    font-weight: bold;
    color: #E40274;
    border: 2px #E40274 solid;
    padding: 5px;
    margin-top: 10px;
    margin-left: 20px;
}

.header_center {
    width: 300px;
    float: right;
    margin-right: 50px;
    overflow: hidden;
    box-sizing: border-box;
}

.header_center ul {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header_center li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header_center li a {
    display: flex;
    color: #fff;
    padding: 12px 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    background-color: #E40274;
}

.header_center li:nth-last-of-type(1) a {
    color: #404040;
    background-color: #FFFFFF;
    border: 1px #E40274 solid;
}

.header_center li a:hover {
    background-color: #FB027F;
    text-decoration: none;
}

.header_center li:nth-last-of-type(1)  a:hover{
    background-color: #F7F7F7;
}

.header_right {
    width: 20%;
    float: right;
}

.header_right a	{
    display: block;
    width: 100%;
    color: #FFFFFF;
    padding: 15px 0;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    background-color: #E40274;
    border-radius: 100vh;
}

.header_right a:hover {
    background-color: #C70465;
    text-decoration: none;
}

.sec-sns {
    width: 10%;
    margin: 0;
    text-align: right;
    float: right;
}

.list-sns {
    display: flex;
    display: -webkit-box; /*Android4.3*/
    display: -moz-box;    /*Firefox21*/
    display: -ms-flexbox; /*IE10*/
    display: -webkit-flex; /*PC-Safari,iOS8.4*/
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 20px;
}
.list-sns li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width:50%;
    text-align:center;
    list-style-type: none;
}
.list-sns li a {
    display:block;
    margin: 0;
}
.list-sns li.insta a:hover {
    text-decoration: none;
}
.list-sns li.fb    a:hover {
    text-decoration: none;
}

.list-sns li.fb a::before {
    font-family: "Font Awesome 5 Brands";
    content: " \f39e";
    color: #666666;
    font-size: 1.4em;
    padding: 8px 0;
    display: block;
}
.list-sns li.insta a::before {
    font-family: "Font Awesome 5 Brands";
    content:" \f16d";
    color: #666666;
    font-size: 1.4em;
    padding: 8px 0;
    display:block;
}

/* ---- Hamburger Menu ---- */

.hamburger-menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    float: right;
    margin-right: 10px;
}
.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
    top: 17px;
}
.hamburger-menu__bar:nth-child(2) {
    top: 25px;
}
.hamburger-menu__bar:last-child {
    top: 33px;
}
.hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
}

.navigation-menu {
    display: none;
    background-color: #fff;
    position: absolute;
    top: 94px;
    width: 100%;
    z-index: 9999;
}
.navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation__list-item {
    border-bottom: 1px solid #ccc;
}
.navigation__list-item:first-child {
    border-top: solid 1px #ccc;
}

.navigation__list-item a {
    display: block;
    padding: 20px 0;
    margin: 0;
    color: #404040;
    font-size: .9em;
    text-decoration: none;
}

.navigation__link {
    transition: .5s;
}

/* --- accordion --- */

ul.accordion_menu {
    width: 100%;
    margin: 0;
    padding: 0;
}

.accordion_menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.accordion_menu section h1 {
    width: 100%;
    font-size: 0.9em;
    margin: 0;
    padding: 10px 0;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    font-weight: normal;
    text-align: center;
}

.accordion_menu section h1:before {
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    background-color: #FFFFFF;
}

.accordion_menu section h1:after {
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 14px;
    width: 12px;
    height: 12px;
    margin-top: -13px;
    background-color: #F29562;
}

.accordion_menu section h1.active:before {
    margin-top: -1px;
}

.accordion_menu section h1.active:after {
    margin-top: 2px;
}

.accordion_menu section li {
    width: 100%;
    list-style:none;
    border-bottom: 1px solid #F4A67B;
}

.accordion_menu section li a {
    width: 100%;
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #EE7F41;
    margin: 0;
    padding: 10px 0;
}

.accordion_menu section li:nth-last-of-type(1) {
    border-bottom: none;
}


/* --- Menu accordion end --- */

/* ==================== コンテンツ ==================== */

/* ナビゲーション */

#navi {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.70);
}

#navi_in {
    margin-left: auto;
    margin-right: auto;
    width: 1100px;
    box-sizing: border-box;
}

ul.dropmenu{
    margin: 0;
    padding: 0;
    display: flex;
}

.dropmenu {
    *zoom: 1;
    list-style-type : none;
    background-repeat: repeat-x;
    margin: 0;
    width: 100%;

    border-left: 1px solid #EDEDED;
}
.dropmenu:before, .dropmenu:after{
    content: "";
    display: table;
}
.dropmenu:after{
    clear: both;
}

.dropmenu li {
    width: 100%;
    margin: 0px;
    box-sizing:border-box;
    border-right: 1px solid #EDEDED;
}

.dropmenu li a {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #404040;
    margin: 0px;
    box-sizing: border-box;
    font-weight: bold;
    text-align: center;
    font-size: 0.8em;
    text-decoration: none;
}

.dropmenu li a:hover {
    background-color: rgba(225,238,255,1.00);
    text-decoration: none;
}

.dropmenu li ul{
    list-style: none;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
}

.dropmenu li:last-child ul{
    left: 0%;
    width: 100%
}
.dropmenu li ul li{
    overflow: hidden;
    width: 100%;
    height: 0;
    color: #fff;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
    border: none;
}
.dropmenu li ul li a{
    display: block;
    width: 180%;
    padding-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: #FFF;
    text-align: center;
    font-size: 0.8em;
    font-weight: normal;
}
.dropmenu li:hover > a{
    background-color: #EBEBEB;
}
.dropmenu > li:hover > a{
    background-color: #ECF4FF;
    border-radius: 0 0 0 0;
    text-decoration: none;
}
.dropmenu li:hover ul li{
    overflow: visible;
    height: 61px;
    border: none;
}
.dropmenu li:hover ul li:first-child{
    border-top: 0;
}


#navi.fixed{
    position: fixed;
    top: 0px;
    z-index: 9999;
}
/* メイン */

#main {
    width: 100%;
    height: 80vh;
    margin: 0;
    padding: 0;
    background-color: #F5F6F8;
    position: relative;
}
#main_sp {
    display: none;
}

#main img {
    width: 100%;
}

.main_ph {
    width: 300px;
    position: absolute;
    top: 50px;
    left: 20%;
}

.main_ph_sp {
    display: none;
}

.main_txt {
    width: 450px;
    position: absolute;
    top: 100px;
    left: 48%;
    margin-left: auto;
    margin-right: auto;
}

.main_txt h4 {
    font-weight: normal;
    font-size: 1.6em;
    line-height: 1.5em;
    margin-bottom: 30px;
    text-align: center;
}

.main_txt h4 span {
    color: #E40274;
}

.main_txt h3 {
    font-weight: bold;
    font-size: 1.7em;
    line-height: 1.5em;
    margin-bottom: 30px;
    text-align: center;
}

.main_btn ul {
    margin: 0;
    padding: 0;
}

.main_btn ul li {
    width: 80%;
    list-style-type: none;
    background-color: #E40274;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 30px;
}

.main_btn ul li:nth-last-of-type(1)  {
    margin-bottom: 0;
    background-color: #FFFFFF;
    border: 1px #E40274 solid;
}

.main_btn ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-weight: bold;
    color: #FFFFFF;
    border-radius: 30px;
}

.main_btn ul li:nth-last-of-type(1) a  {
    color: #404040;
}

.main_btn ul li a:hover {
    text-decoration: none;
    background-color: #FC1087;
}

.main_btn ul li:nth-last-of-type(1) a:hover  {
    background-color: #F7F7F7;
}


/* ===== コンテンツ ===== */

.content {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    text-align: left;
    width: 1200px;
    font-size: 1em;
    box-sizing: border-box;
}

.content h2 {
    width: 100%;
    font-size: 1.8em;
    font-weight: normal;
    text-align: center;
    margin-top: 80px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0px;
    padding-bottom: 50px;
    border-bottom: 1px solid #CCCCCC;
    color: #404040;
}

.midashi {
    width: 100%;
    margin-bottom: 60px;
    font-size: 1.7em;
    font-weight: bold;
    line-height: 1.6em;
}

.midashi_b {
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0;
    color: #FFFFFF;
    font-size: 1.7em;
    font-weight: bold;
    line-height: 1.6em;
    text-align: center;
    background-color: #0053BB;
}

.center_box {
    text-align: center;
    line-height: 1.6em;
}

.btn_box {
    width: 80%;
    margin: 0 auto;
}

.btn_box p {
    width: 90%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

.btn_box .btn a {
    display: block;
    width: 90%;
    color: #FFFFFF;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    background-color: #E40274;
    border-radius: 100vh;
}

.btn_box .btn a:hover {
    background-color: #C70465;
    text-decoration: none;
}

.btn_box .btn_w a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    border: 1px #C70465 solid;
    border-radius: 100vh;
}

.btn_box .btn_w a:hover {
    background-color: #FEECF5;
    text-decoration: none;
}

.btn_link a {
    display: block;
    width: 60%;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    border: 1px #C70465 solid;
    border-radius: 100vh;
}

.btn_link a:hover {
    background-color: #FEECF5;
    text-decoration: none;
}

.page_title {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #CCCCCC;
}

.page_title h4 {
    font-size: 1.5em;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
    line-height: 1em;
}

.page_title span {
    font-size: 1em;
    font-weight: bold;
}


/* ========== リストボックス ========== */

.list4 ul {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
}
.list4 li {
    list-style-type : none;
    width: 24%;
    float: left;
    text-align: center;
    margin-right: 1%;
    margin-top: 0;
    margin-bottom: 0;
}

.list4 li:nth-of-type(4n) {
    margin-right: 0;
}

.list4 p {
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 0;
    font-size: 0.8em;
}

.list3 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
}

.list3 ul {
    margin: 0;
    padding: 0;
}

.list3 li {
    list-style-type : none;
    width: 32%;
    float: left;
    margin-top: 0;
    margin-bottom: 40px;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 2%;
    text-align: center;
}

.list3 li:nth-last-of-type(1) {
    margin-right: 0;
}

.list2 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 80px;
    overflow: hidden;
}

.list2 ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.list2 li {
    list-style-type : none;
    width: 49%;
    float: left;
    margin-top: 5px;
    margin-bottom: 50px;
    margin-right: 1%;
    box-sizing: border-box;
    text-align: center;
}
.list2 li:nth-of-type(2n) {
    margin-right: 0;
}

.list2 li img {
    width: 100%;
}


/* ==================== 特徴 ==================== */

.feature_box {
    width: 100%;
    box-sizing: border-box;
}

.feature_box .in_box {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

.feature_box h3 {
    text-align: center;
    font-size: 1.7em;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 80px;
}

.feature_box h4 {
    text-align: left;
    font-size: 1.7em;
    line-height: 1.6em;
    margin-top: 0;
    margin-bottom: 30px;
}

.feature_box h5 {
    text-align: left;
    font-size: 1.3em;
    line-height: 1.6em;
    margin-top: 0;
    margin-bottom: 30px;
}

.feature_box p {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6em;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
}

.feature_box_num {
    width: 115px;
    position: absolute;
    top: -50px;
    left: 50px;
    z-index: 2;
}

.feature_box img {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.feature_box_left1 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 80px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.feature_box_right1 {
    font-size: .9em;
    position: absolute;
    top: 130px;
    right: 0;
    z-index: 1;
    width: 600px;
    padding: 50px 30px;
    background-color: #FFFFFF;
    line-height: 1.5em;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.2));
}

.feature_box_left2 {
    font-size: .9em;
    text-align: left;
    position: absolute;
    top: 130px;
    left: 0;
    z-index: 1;
    width: 500px;
    padding: 50px 30px;
    background-color: #FFFFFF;
    line-height: 1.5em;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.2));
}

.feature_box_right2 {
    text-align: right;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 80px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.feature_box_left3 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 80px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.feature_box_right3 {
    font-size: .9em;
    position: absolute;
    top: 130px;
    right: 0;
    z-index: 1;
    width: 500px;
    padding: 50px 30px;
    background-color: #FFFFFF;
    line-height: 1.5em;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.2));
}

.feature_box_left4 {
    font-size: .9em;
    text-align: left;
    position: absolute;
    top: 130px;
    left: 0;
    z-index: 1;
    width: 500px;
    padding: 50px 30px;
    background-color: #FFFFFF;
    line-height: 1.5em;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.2));
}

.feature_box_right4 {
    text-align: right;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 80px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* ========== おすすめ ========== */

.osusume_box {
    width: 100%;
    background-color: #F5F6F8;
    box-sizing: border-box;
    padding: 50px 0;
}

.osusume_box h3 {
    font-size: 2em;
    margin-bottom: 50px;
    text-align: center;
}


.osusume_in {
    width: 1000px;
    margin: 0 auto;
}

.osusume_box ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.osusume_box li {
    list-style-type : none;
    width: 30%;
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 5%;
    text-align: center;
    box-sizing: border-box;
}

.osusume_box li:nth-last-of-type(1) {
    margin-right: 0;
}

.osusume_box li p {
    font-size: 1em;
    font-weight: bold;
}

.osusume_box li img {
    width: 100%;
}

/* ========== 使い方 ========== */

.howto_box {
    width: 100%;
    box-sizing: border-box;
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    /*padding-bottom: 100px;*/
}

.howto_box h3 {
    font-size: 2em;
    margin-bottom: 50px;
    text-align: center;
}


.howto_in {
    width: 1200px;
    margin: 0 auto;
}

.howto_box ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.howto_box li {
    list-style-type : none;
    width: 228px;
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 15px;
    text-align: center;
    box-sizing: border-box;
}

.howto_box li:nth-last-of-type(1) {
    margin-right: 0;
}

.howto_box li img {
    width: 100%;
}

.howto_swipe {
    display: none;
}

/* ========== 準備 ========== */

.jyunbi_box {
    width: 100%;
    background-color: #F5F6F8;
    box-sizing: border-box;
    padding-top: 80px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 80px;
}

.jyunbi_box h3 {
    font-size: 2em;
    margin-bottom: 50px;
    text-align: center;
}


.jyunbi_in {
    width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 20px;
    /*border: 3px #0196DF solid;*/
    box-sizing: border-box;
    background-color: #FFFFFF;
    overflow: hidden;
    font-size: 21px;
}

.jyunbi_box dl{
    float: left;
    width: 33%;
    display:flex;
    flex-wrap: wrap;
    border-right: 2px #0196DF solid;
}

.jyunbi_box dl:nth-last-of-type(1) {
    border-right: none;
}

.jyunbi_box dt{
    width: 35%;
    padding: 15px;
    box-sizing: border-box;
}

.jyunbi_box dt img {
    width: 100%;
}

.jyunbi_box dd{
    padding: 0;
    margin: 0;
    width: 65%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}


/* ========== 料金 ========== */

.price_box {
    width: 100%;
    box-sizing: border-box;
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 80px;
}

.price_in {
    width: 1000px;
    margin: 0 auto;
}

.price_box h3 {
    font-size: 2em;
    margin-bottom: 50px;
    text-align: center;
}

.price_box h4 {
    font-size: 1.3em;
    font-weight: normal;
    margin-bottom: 30px;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 3px #0196DF solid;
}

.price_box h4 span {
    font-size: 1.8em;
    font-weight: bold;
}

.price_box h5 {
    font-size: 1.2em;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
}

.price_box p {
    font-size: 1em;
    margin-bottom: 0px;
    text-align: center;
}

/* ========== 質問 ========== */

.faq_box {
    width: 100%;
    box-sizing: border-box;
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 80px;
}

.faq_box h3 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: #5B9AD5;
}


.faq_in {
    width: 1200px;
    margin: 0 auto;

}

/* ==================== アコーディオン ==================== */

.accordion-container {
    width: 100%;
}

.accordion-list:not(:first-child) {
    margin-top: 10px;
}

.accordion-title {
    background: #fff;
    cursor: pointer;
    font-size: 1.2em;
    padding: 20px 40px;
    position: relative;
}

.accordion-title span {
    color: #0196DF;
    font-size: 1.5em;
    margin-right: 20px;
}

.accordion-title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #333;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}
.accordion-title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #333;
    transition: all .3s ease-in-out;
}

.accordion-title.open:before {
    transform: rotate(180deg);
}
.accordion-title.open:after {
    opacity: 0;
}

.accordion-text {
    width: 100%;
    display: none;
    padding: 20px 40px;
    margin: 0;
    background-color: #F0F9FD;
    box-sizing: border-box;
}

.accordion-text h4 {
    padding: 0;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.5em;
}

.accordion-text p {
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.5em;
}

.accordion-text ul {
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 1.5em;
    margin-bottom: 0;
}

.accordion-text li {
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
}


/* ========== 医療機関 ========== */

.clinic_box {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 100px 0;
}

.clinic_box h3 {
    font-size: 2em;
    margin-bottom: 50px;
    text-align: center;
}


.clinic_in {
    width: 1200px;
    margin: 0 auto;
}

.clinic_in img {
    width: 100%;
}

.clinic_box ul {
    margin: 0;
    padding: 0;
}

.clinic_box ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


/* ========== slick ========== */

.slider_box {
    margin-bottom: 100px;
}

.slick-slide img {
    width :  100%;
}

.slide-items {
    width: 50%;
    height: 50%;
    margin: auto;
}
.slide-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-prev:before,
.slick-next:before {
    color: #333333;
}

.slick-dots li button:before {
    font-size: 13px;
    top: 6px;
}

.slick-prev{
    left: -30px;
}
.slick-next{
    right: -30px;
}

.slick-prev:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f053";
    font-size:30px;
}
.slick-next:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size:30px;
}


/* ========== パーツ ========== */

.left_box {
    width: 50%;
    float: left;
}

.left_box p {
    line-height: 1.5em;
}

.right_box {
    width: 50%;
    float: right;
}

.right_box img {
    width: 100%;
}

.gmap {
    position: relative;
    padding-bottom: 36.25%;
    height: 0;
    overflow: hidden;
}

.gmap iframe,
.gmap object,
.gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gmap_s {
    position: relative;
    padding-bottom: 46.25%;
    height: 0;
    overflow: hidden;
}

.gmap_s iframe,
.gmap_s object,
.gmap_s embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/* ==================== 画像 ==================== */
.alignleft	{float: left;
    margin-right: 20px;
    margin-bottom: 20px;}

.alignright	{float: right;
    margin-left: 20px;
    margin-bottom: 20px;}

.aligncenter	{clear: both;
    display: block;
    margin: 25px auto;}

a img	{border: none;}
.overlay:hover {
    opacity:0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter:alpha(opacity=60);
}
.sp_image {
    display:none;}
.sp_image_box50 {
    display:none;}
.pc_image {
    display:block;}

/* ==================== フッター ==================== */
#foot {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
    box-sizing: border-box;
    background-color: #808080;
}

#foot_in {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    font-size: 0.9em;
}

#foot_in h3 {
    font-size: 1.5em;
    color: #FFFFFF;
}

.foot_left {
    float: left;
    width: 48%;
    box-sizing: border-box;
}

.foot_right {
    float: right;
    width: 50%;
    box-sizing: border-box;
}

#foot_in ul {
    margin: 0;
    padding: 0;
    width: 33%;
    box-sizing: border-box;
    float: left;
}

#foot_in li {
    list-style-type: none;
    width: 100%;
    vertical-align: middle;
}

#foot_in li a {
    display: block;
    padding: 10px 0;
    font-weight: normal;
    font-size: 0.9em;
    text-align: left;
    color: #FFFFFF;
}
#foot_in li a:hover {
    text-decoration: underline;
}

.foot_nav {
    width:100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px #aaaaaa solid;
}
.foot_nav ul {
    margin:0 auto;
    padding: 0px;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    width:800px;
}
.foot_nav ul li {
    margin:0;
    list-style:none;
}
.foot_nav ul li a {
    display: block;
    width: 100%;
    margin:0;
    padding:0;
    list-style:none;
    color: #FFFFFF;
    font-size: 0.8em;
}

.copyright {
    text-align: center;
    width: 100%;
    font-size: 0.7em;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.sp-fix-footer  {
    display:none;
}


/*---- pagetop ----*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 60px;
    font-size: 36px;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    line-height: 36px;
    z-index: 9999;
}
#page-top a {
    text-decoration: none;
    color: #fff;
    width: 100px;
    text-align: center;
    display: block;
    border-radius: 8px;
    background-color: #C8CDD0;
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 0;
}
#page-top a:hover {
    text-decoration: none;
    background-color: #B0B7BC;
}

/* ========== form ========== */

.form_box {
    width: 1000px;
    background-color: #FFFFFF;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ========== Table ========== */

input[type="submit"] {
    display: block;
    padding: 10px 25px !important;
    font-size: 1.1em !important;
    color: #FFFFFF;
    cursor: pointer;
    background-color: #0053BB !important;
    border: 1px solid #3399FF;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    margin-top: 20px;
}

input[type="submit"]:hover {
    background-color: #005FD6 !important;
    border: 1px solid #3399FF;
}

.form_box table {
    width: 100%;
    border: 1px solid #cccccc;
    border-collapse: collapse;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.form_box th {
    border: 1px solid #cccccc;
    padding: 15px;
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
    width: 35%;
    background-color: #F0F5F6;
}

.form_box td {
    border: 1px solid #cccccc;
    padding: 15px;
}
.form_box p {
    margin-top: 10px;
}

.form_box label {
    margin-right: 15px;
}

input[type="radio"]{
    vertical-align: baseline;
}
input[type="text"],input[type="email"],input[type="tel"],textarea,select {
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    padding: 8px;
    font-size: 16px;
    width: 70%;
}
input[type="text"]:focus,input[type="email"]:focus,input[type="tel"]:focus,textarea:focus,input[type="text"]:hover,input[type="email"]:hover,input[type="tel"]:hover,textarea:hover,.input_btn:hover {
    border:2px solid #3399FF;
}

textarea {
    width: 80%!important;
    height: 10em;
}

.confirm-box {
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #F0F5F6;
    box-sizing: border-box;
}

.confirm-box p {
    font-size: .95em;
    margin-bottom: 10px;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
    border-radius: 0px;
    box-shadow: none;
}

.mfp_element_submit,.mfp_element_reset,.mfp_element_button,button.mfp_next,button.mfp_prev {
    border-radius: 0px;
    background: none;
    text-shadow: none;
    font-size: 18px;
    cursor: pointer;
    outline: none;
}

.mfp_element_submit:hover,.mfp_element_reset:hover,.mfp_element_button:hover,button.mfp_next:hover,button.mfp_prev:hover {
    background: none;
    box-shadow: none;
}

input[type=checkbox] {
    transform: scale(1.5);
    margin: 0 10px;
    vertical-align: middle;
}

.required {
    color: #fff;
    background-color: #E40274;
    padding: .3em .5em;
    line-height: 1.2em;
    font-size: .6em;
    font-weight: bold;
    white-space: nowrap;
    margin: 0 .5em;
    display: inline-block;
    vertical-align: middle;
}

/* ========== SNS ========== */
.sns_box	{
    display: none;
}

/* ========== 共通 ========== */
.mt_3 { margin-top: 3px;}
.mt_5 { margin-top: 5px;}
.mt_9 {
    margin-top: 9px;
}
.mt_13 { margin-top: 13px;}
.mt_10 { margin-top: 10px;}
.mt_15 { margin-top: 15px;}
.mt_18 { margin-top: 18px;}
.mt_20 { margin-top: 20px;}
.mt_25 { margin-top: 25px;}
.mt_23 { margin-top:23px;}
.mt_30 { margin-top:30px;}
.mt_40 { margin-top:40px;}
.mt_50 { margin-top:50px;}
.mt_80 { margin-top:80px;}
.mt_90 { margin-top:90px;}
.mb_5 {
    margin-bottom: 5px;
}
.mb_10 {
    margin-bottom: 10px;
}
.mb_20 {
    margin-bottom: 20px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mb_40 {
    margin-bottom: 40px;
}
.mb_50 {
    margin-bottom: 50px;
}
.mb_60 {
    margin-bottom: 60px;
}
.mb_70 {
    margin-bottom: 70px;
}
.mb_80 {
    margin-bottom: 80px;
}
.ml_9 {
    margin-left: 9px;
}
.ml_10 { margin-left: 10px;}
.ml_15 { margin-left: 15px;}
.ml_20 { margin-left: 20px;}
.ml_30 { margin-left: 30px;}
.ml_40 { margin-left: 40px;}
.ml_45 { margin-left: 45px;}
.ml_50 {
    margin-left:50px;
}
.ml_55 {margin-left:55px;}
.ml_95 {
    margin-left:95px;
}
.ml_100 {margin-left:100px;}
.ml_120 {margin-left:120px;}
.ml_140 {
    margin-left:140px;
}
.mr_5 { margin-right:5px;}
.mr_10 { margin-right:10px;}
.mr_15 { margin-right:15px;}
.mr_20 { margin-right:20px;}
.mr_25 { margin-right:25px;}
.mr_30 { margin-right:30px;}
.mr_45 { margin-right:45px;}
.mr_55 { margin-right:55px;}
.pr_45{ padding-right:45px;}
.pt_3{padding-top:3px;}
.pt_5{padding-top:5px;}
.pt_10{padding-top:10px;}
.pt_15{padding-top:15px;}
.pt_30{padding-top:30px;}
.pt_40{padding-top:40px;}
.pt_50{padding-top:50px;}
.pl_20{padding-left:20px;}
.pb_30{padding-bottom:30px;}
.pb_40{padding-bottom:40px;}
.pb_50{padding-bottom:50px;}
.w_30{
    width: 30px;
}
.w_67{
    width: 67%;
    margin-left: auto;
    margin-right: auto;
}
.w_90{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.w_95{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.w_100{
    width: 100px;
}
.w_120{
    width: 120px;
}
.w_150{
    width: 150px;
}
.w_200{
    width: 200px;
}
.w_250{
    width: 250px;
}
.w_300{
    width: 300px;
}
.w_360{
    width: 360px;
}
.w_400{
    width: 400px;
}
.w_500{
    width: 500px;
}
.w_550{
    width: 550px;
}
.w_600{
    width: 600px;
}
.w_650{
    width: 650px;
}
.wp_90{
    width: 90%;
}
.wp_45{
    width: 45%;
}
.wp_40{
    width: 40%;
}
.center{ text-align:center;}
.pc_center{ text-align:center;}
.left{
    text-align:left !important;
}
.right{
    text-align:left;
}
.font_10{ font-size:10px;}
.font_12{ font-size:12px;}
.font_14{ font-size:14px;}
.font_16{ font-size:16px;}
.font_18{ font-size:18px;}
.font_24{ font-size:24px;}
.font_g{
    color: #666;
}
.font_r{
    color: #E40274;
}
.font_o{
    color: #EB6100;
}
.font_b{
    color: #0053BB;
}
.font_p{
    color: #E4007F;
}
.font_bold{
    font-weight: bold;
}
.lh_25{
    line-height: 25px;
}
.lh_30{
    line-height: 30px;
}
.textline_y{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #D9B000;
}
.back_r{
    background-color: #F6D2D2 !important;
    width: 30%;
}
.back_r2{
    background-color: #F6D2D2 !important;
}
.back_r3{
    background-color: #FFE1E1;
}
.back_o{
    background-color: #FFF7EF !important;
}
.back_o2{
    background-color: #FFEAD5;
}
.back_w{
    width: 70%;
}
.back_g{
    background-color: #EEEEEE;
}
.back_b{
    background-color: #99CCFF;
}
.back_b2{
    background-color: #DFEFFF;
}
.back_p{
    background-color: #FCEDF2;
}
.back_p2{
    background-color: #F5C5D5;
}
.back_p3{
    background-color: #FAE8FF;
}
.back_y{
    background-color: #FFFFCA;
}
.back_m{
    background-color: #EFFFBF;
}
.back_m2{
    background-color: #DDFFF7;
}
.back_c{
    background-color: #EFDAC7;
}
.back_v{
    background-repeat: repeat;
    background-image: url(../images/vertical_p.jpg);
}
.back_bung{
    background-repeat: repeat;
    background-image: url(../images/bungalow_p.jpg);
}
.disp{ display:inline;}

.image_box {
    text-align: center;
    margin-bottom: 50px;
}

.image_box0 {
    margin: 0;
}

.image_box0 img {
    max-width: 100%;
}

.image_box img {
    max-width: 100%;
}

.image_box60 img {
    display: block;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.image_right {
    float: right;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.text_box{
    text-align: left;
}

.ft_left{
    float: left;
}

.ft_right{
    float: right;
}

.dl_box dl {
    width: 95%;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.dl_box dt {
    color: #218C00;
    margin: 0;
    padding: 0;
}

.dl_box dd {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 0px;
    padding: 0;
}

.disc ul {
    margin-top: 10px;
    margin-bottom: 40px;
    margin-left: 0px;
    padding: 0;
}
.disc li {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.decimal ul {
    margin-top: 10px;
    margin-bottom: 50px;
    margin-left: 0px;
    padding: 0;
}
.decimal li {
    list-style-type: decimal;
    margin-left: 35px;
    margin-top: 15px;
    line-height: 1.7em;
    font-size: 1.1em;
}

.no_line {
    border:none;
}

.sp_text {
    display: none;
}

.pc_none {
    display: none!important;
}

hr {
    border: 1px solid #DDDDDD;
    height: 6px;
    background-color: #EEEEEE;
    margin-top: 20px;
    margin-bottom: 20px;
}

.clear{
    clear:both;
}
/* clearfix */
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

.clearfix{
    display:inline-block;
    min-height:1%;  /* for IE 7*/
}

/* Hides from IE-mac */
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
/* - 768px
---------------------------------------------------------------------*/

@media screen and (max-width: 767px) {


    /* ==================== ヘッダー ==================== */

    #head {
        width: 100%;
        height: 72px;
        padding-top: 10px;
        padding-bottom: 0px;
        box-sizing: border-box;
        background-color: #F5F6F8;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .header_logo {
        width: 160px;
        float: left;
        margin-left: 10px;
        margin-top: 0;
    }

    .header_logo img {
        width: 160px;
    }

    .header_logo a:hover img	{
        opacity: 1.0;
    }

    .header_logo p {

        float: none;
    }

    .header_logo p:nth-of-type(2) {
        display: none;
    }

    .header_center {
        width: 130px;
        float: right;
        margin-right: 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .header_center li a {
        display: flex;
        color: #fff;
        padding: 8px 10px;
        font-size: 0.6em;
        font-weight: bold;
        text-align: center;
        box-sizing: border-box;
        background-color: #E40274;
    }

    .header_center li:nth-last-of-type(1) a {
        display: none;
    }


    .hamburger-menu {
        margin-right: 5px;
    }

    .hamburger-menu__bar:first-child {
        top: 8px;
    }
    .hamburger-menu__bar:nth-child(2) {
        top: 16px;
    }
    .hamburger-menu__bar:last-child {
        top: 24px;
    }

    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }

    .navigation-menu {
        display: none;
        background-color: #fff;
        position: absolute;
        top: 72px;
        width: 100%;
        z-index: 9999;
    }

    .navigation__list-item a {
        display: block;
        padding: 15px 0;
        font-size: .9em;
    }

    #main {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 72px 0;
        position: static;
    }

    .main_ph {
        display: none;
    }

    .main_ph_sp {
        display: block;
        float: left;
        width: 40%;
    }

    .main_txt {
        width: 90%;
        position: static;
        top: 100px;
        left: 48%;
        margin-left: auto;
        margin-right: auto;
    }

    .main_txt img {
        display: block;
        max-width: 90%;
        margin: 0 auto;
    }

    .main_txt h4 {
        font-weight: normal;
        font-size: 1.3em;
        line-height: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }

    .main_txt h3 {
        font-weight: bold;
        font-size: 1.4em;
        line-height: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }

    .main_btn {
        width: 58%;
        float: right;
        padding-top: 80px;
    }

    .main_btn ul {
        width: 100%;
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0px;
        padding: 0;
    }

    .main_btn ul li {
        width: 100%;;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .main_btn ul li a {
        font-size: .9em;
        display: block;
        width: 100%;
        padding: 10px 0;
        font-weight: bold;
        color: #FFFFFF;
    }

    #page_main {
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 20px;
        padding-top: 70px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 0;
    }
    .page_box {
        width: 100%;
        height: 300px;
        padding: 0;
        position: relative;
    }

    .page_box .bg-title {
        width: 100%;
        font-weight: bold;
        font-size: calc(32 / 580 * 100vw);
        line-height: 1.5;
        position: absolute;
        top: 40%;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 2px 2px #FFF;
        box-sizing: border-box;
    }

    .content {
        width: 95%;
        font-size: 0.85em;
        padding-top: 10px;
        padding-bottom: 10px;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

    .content .in_box {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        box-sizing: border-box;
    }

    .content h2 {
        width: 100%;
        font-size: 1.4em;
        font-weight: normal;
        text-align: left;
        margin-top: 30px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0px;
        padding-bottom: 30px;
        border-bottom: 1px solid #CCCCCC;
    }

    .content h2.page_title {
        width: 100%;
        font-size: 1.4em;
        font-weight: normal;
        text-align: center;
        margin-top: 30px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
        padding-bottom: 0;
        border-bottom: none;
        color: #458A00;
    }

    .content h3 {
        width: 100%;
        font-size: 1.3em;
        font-weight: bold;
        text-align: center;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .content p {
        margin-bottom: 30px;
        line-height: 1.5em;
        font-size: 1.1em;
    }

    .content .single_box {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .content .single_box h2 {
        width: 100%;
        font-size: 1.2em;
        font-weight: normal;
        text-align: left;
        margin-top: 0px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #CCCCCC;
        color: #000000;
    }

    .midashi {
        width: 100%;
        margin-bottom: 30px;
        font-size: 1.3em;
        font-weight: bold;
        line-height: 1.6em;
    }

    .midashi_b {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px 0;
        color: #FFFFFF;
        font-size: 1.2em;
        line-height: 1.6em;
    }


    .center_box {
        text-align: left;
        line-height: 1.6em;
    }

    .btn_box {
        width: 100%;
        margin: 0 auto;
    }

    .btn_box p {
        width: 90%;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 20px;
        font-size: 1em;
        font-weight: bold;
        text-align: center;
    }

    .btn_link a {
        width: 90%;
    }

    .left_box {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    .left_box p {
        line-height: 1.5em;
    }

    .right_box {
        width: 100%;
        float: none;
        padding-top: 30px;
        margin-bottom: 30px;
    }



    /* ========== リストボックス ========== */

    .list4 ul {
        width: 100%;
        margin-top: 10px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0;
        padding: 0;
    }
    .list4 li {
        list-style-type : none;
        width: 48%;
        float: left;
        text-align: center;
        margin-right: 2%;
        box-sizing: border-box;
    }

    .list4 li:nth-of-type(2n) {
        margin-right: 0;
    }

    .list4 li img {
        width: 100%;
    }

    .list4 p {
        width: 98%;
        min-height: 5em;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: auto;
        margin-left: auto;
        padding: 0;
        font-size: 0.8em;
    }

    .list3 {
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
    }

    .list3 ul {
        margin: 0;
        padding: 0;
    }

    .list3 li {
        list-style-type : none;
        width: 96%;
        float: none;
        margin-top: 5px;
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        text-align: center;
    }

    .list3 li:nth-last-of-type(1) {
        margin-right: auto;
        margin-bottom: 0;
    }

    .list3 li img {
        width: 100%;
        height: auto;
    }

    .list2 {
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0;
    }

    .list2 ul {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .list2 li {
        list-style-type : none;
        width: 100%;
        float: none;
        margin-top: 0;
        margin-bottom: 30px;
        margin-right: 0;
        box-sizing: border-box;
        text-align: center;
    }
    .list2 li:nth-of-type(2n) {
        margin-right: 0;
    }

    /* ==================== 特徴 ==================== */

    .feature_box {
        width: 100%;
        box-sizing: border-box;
    }

    .feature_box .in_box {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .feature_box h3 {
        text-align: left;
        font-size: 1.3em;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .feature_box h4 {
        text-align: left;
        font-size: 1.05em;
        line-height: 1.6em;
        margin-top: 0;
        margin-bottom: 10px;
        display:inline-block;
        vertical-align: middle;
    }

    .feature_box h5 {
        text-align: center;
        font-size: 1.2em;
        line-height: 1.6em;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .feature_box p {
        text-align: left;
        font-size: 1em;
        line-height: 1.6em;
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .feature_box img {
        max-width: 100%;
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 10px;
        padding: 0;
    }

    .feature_box_left1 {
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        position: static;
    }

    .feature_box_right1 {
        font-size: .9em;
        position: static;
        z-index: 0;
        width: 100%;
        padding-top: 0px;
        padding-right: 14px;
        padding-left: 14px;
        padding-bottom: 0px;
        background-color: #F5F6F8;
        line-height: 1.5em;
        filter: drop-shadow(0px 0px 5px rgba(0,0,0,0));
        box-sizing: border-box;
    }

    /* ========== おすすめ ========== */

    .osusume_box {
        width: 100%;
        box-sizing: border-box;
        padding: 30px 0;
    }

    .osusume_box h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }


    .osusume_in {
        width: 95%;
        margin: 0 auto;
    }

    .osusume_box ul {
        width: 80%;
        margin: 0 auto;
        padding: 0;
    }

    .osusume_box li {
        list-style-type : none;
        width: 100%;
        float: none;
        margin-top: 0;
        margin-bottom: 50px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        box-sizing: border-box;
    }

    .osusume_box li:nth-last-of-type(1) {
        margin-right: 0;
        margin-bottom: 0;
    }

    .osusume_box li p {
        font-size: 1em;
    }

    /* ========== 使い方 ========== */

    .howto_box {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        padding-top: 50px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 60px;
        position: relative;
    }

    .howto_box h3 {
        font-size: 1.5em;
        margin-bottom: 50px;
        text-align: center;
    }


    .howto_in {
        width: 100%;

    }

    .howto_box ul {
        display: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .howto_box li {
        list-style-type : none;
        width: 228px;
        float: left;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 15px;
        text-align: center;
        box-sizing: border-box;
    }

    .howto_box li:nth-last-of-type(1) {
        margin-right: 0;
    }

    .howto_box li img {
        width: 100%;
    }

    .howto_swipe {
        display: block;
        width:96%;
        margin: 0 auto;
        height:370px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position:relative;
    }

    .simplebar-track.simplebar-horizontal {
        height: 10px;
        background: #FFFFFF;
        border-radius: 5px;
        max-width: 372px;
        margin: 0 auto;
        display: none;
    }
    .simplebar-scrollbar {
        height: 10px;
        background: #00A0E8;
        border-radius: 5px;
        top: 0;
    }

    .simplebar-scrollbar:before {
        background: #00A0E8;
    }

    /* ========== スクロールバー iphoneダメ ==========

    .howto_swipe::-webkit-scrollbar {
      height: 10px;
    }
    .scroll_bar::-webkit-scrollbar-track{
       background-color: #fff;
    }
    .howto_swipe::-webkit-scrollbar-thumb{
      background: #00A0E8;
      border-radius: 2px;
    }
    .howto_swipe::-webkit-scrollbar-track-piece {
      background: #FFFFFF;
    }
        */

    .howto_swipe img {
        width: 100%;
    }

    .howto_swipe_inner {
        width: 1000px;
        background-color: #ffffff;
        padding: 15px 0 15px 50px;
        border-radius: 15px;
    }

    .swipe_box {
        position:absolute;
        top:60%;
        left:50%;
        width:120px;
        height:120px;
        text-align:center;
        transform: translate(-50%, -50%);
    }

    /* ========== 準備 ========== */

    .jyunbi_box {
        width: 100%;
        box-sizing: border-box;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 20px;
    }

    .jyunbi_box h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }


    .jyunbi_in {
        width: 90%;
        margin: 0 auto;

    }

    .jyunbi_box dl{
        float: none;
        width: 100%;
        padding-bottom: 15px;
        display:flex;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 2px #0196DF solid;
    }

    .jyunbi_box dl:nth-last-of-type(1) {
        border-bottom: none;
    }

    .jyunbi_box dt{
        float: none;
        width: 30%;
        padding-left: 20px;
        box-sizing: border-box;
    }

    .jyunbi_box dt img {
        width: 100%;
    }

    .jyunbi_box dd{
        font-size: .9em;
        padding: 0;
        margin: 0;
        width: 70%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .jyunbi_box p {
        font-size: .9em;
        padding: 0;
        margin: 0;
    }

    /* ========== 料金 ========== */

    .price_box {
        width: 100%;
        box-sizing: border-box;
        padding-top: 30px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 60px;
    }

    .price_in {
        width: 90%;
        margin: 0 auto;

    }

    .price_box h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }

    .price_box h4 {
        font-size: .9em;
        font-weight: normal;
        margin-bottom: 30px;
        padding-bottom: 20px;
        text-align: center;
        border-bottom: 3px #0196DF solid;
    }

    .price_box h4 span {
        font-size: 1.3em;
        font-weight: bold;
    }

    .price_box h5 {
        font-size: 1em;
        padding: 0;
        margin-bottom: 20px;
    }

    .price_box p {
        font-size: .9em;
        margin-bottom: 0px;
        text-align: left;
    }

    /* ========== 質問 ========== */

    .faq_box {
        width: 100%;
        box-sizing: border-box;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 50px;
    }

    .faq_box h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }


    .faq_in {
        width: 90%;
        margin: 0 auto;

    }

    /* ==================== アコーディオン ==================== */

    .accordion-container {
        width: 100%;
    }

    .accordion-list:not(:first-child) {
        margin-top: 10px;
    }

    .accordion-title {
        background: #fff;
        cursor: pointer;
        font-size: 1em;
        padding-top: 20px;
        padding-right: 50px;
        padding-left: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .accordion-title span {
        color: #0196DF;
        font-size: 1.2em;
        margin-right: 10px;
    }

    .accordion-title:before {
        position: absolute;
        content: '';
        top: 50%;
        right: 25px;
        height: 2px;
        width: 15px;
        background: #333;
        transform: rotate(90deg);
        transition: all .3s ease-in-out;
    }
    .accordion-title:after {
        position: absolute;
        content: '';
        top: 50%;
        right: 25px;
        height: 2px;
        width: 15px;
        background: #333;
        transition: all .3s ease-in-out;
    }

    .accordion-title.open:before {
        transform: rotate(180deg);
    }
    .accordion-title.open:after {
        opacity: 0;
    }

    .accordion-text {
        width: 100%;
        font-size: .9em;
        display: none;
        padding: 20px;
        margin: 0;
        background-color: #F0F9FD;
        box-sizing: border-box;
    }

    .accordion-text h4 {
        padding: 0;
        margin-top: 0;
        margin-bottom: 10px;
        line-height: 1.5em;
    }

    .accordion-text p {
        padding: 0;
        margin-top: 0;
        margin-bottom: 10px;
        line-height: 1.5em;
    }

    .accordion-text ul {
        padding: 0;
        margin-top: 0;
        margin-right: 0;
        margin-left: 1.5em;
        margin-bottom: 0;
    }

    .accordion-text li {
        padding: 0;
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 10px;
    }


    /* ========== 医療機関 ========== */

    .clinic_box {
        width: 100%;
        box-sizing: border-box;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 50px;
    }

    .clinic_box h3 {
        font-size: 1.5em;
        margin-bottom: 30px;
        text-align: center;
    }


    .clinic_in {
        width: 95%;
        margin: 0 auto;
    }

    .clinic_in img {
        width: 100%;
    }



    /* ========== MAP ========== */

    .gmap {
        position: relative;
        padding-bottom: 70.25%;
        height: 0;
        overflow: hidden;
    }

    .gmap_s {
        position: relative;
        padding-bottom: 60.25%;
        height: 0;
        overflow: hidden;
    }


    /* ========== 共通 ========== */

    .image_box{
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .image_box img {
        width: 100%;
    }

    .image_box20 img {
        width: 20%;
        margin-left: auto;
        margin-right: auto;
    }

    .image_box30 img {
        width: 30%;
    }

    .image_box50 img {
        width: 50%;
    }

    .image_box90 img {
        width: 90%;
    }

    .sp_image_box50 {
        display: block;
    }

    .sp_image_box50 img {
        display: block;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp_image_box60 img {
        display: block;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp_image_box70 img {
        display: block;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp_image_box80 img {
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp_image {
        display:block;
    }
    .sp_image img {
        display: block;
        width: 100%;
    }
    .pc_image {
        display:none;
    }

    .image_right {
        float: none;
        margin-top: 10px;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .image_right img {
        width: 100%;
    }
    .sp_center {
        text-align: center;
    }
    .sp_text {
        display:block;
    }
    .sp_mt10{
        margin-top: 10px;
    }
    .sp_mt20{
        margin-top: 20px;
    }
    .sp_mt30{
        margin-top: 30px;
    }
    .sp_mb10{
        margin-bottom: 10px;
    }
    .sp_mb20{
        margin-bottom: 20px;
    }
    .sp_mb30{
        margin-bottom: 30px;
    }

    .w_30{
        width: 100%;
    }
    .w_100{
        width: 100%;
    }
    .w_67{
        width: 100%;
    }
    .w_120{
        width: 100%;
    }
    .w_150{
        width: 100%;
    }
    .w_200{
        width: 100%;
    }
    .w_250{
        width: 100%;
    }
    .w_300{
        width: 100%;
    }
    .w_360{
        width: 100%;
    }
    .w_400{
        width: 100%;
    }
    .w_500{
        width: 100%;
    }
    .w_550{
        width: 100%;
    }
    .w_600{
        width: 100%;
    }
    .w_650{
        width: 100%;
    }
    .wp_90{
        width: 100%;
    }
    .wp_45{
        width: 100%;
    }
    .wp_40{
        width: 40%;
    }
    .font_16{ font-size:0.9em;}

    .ft_left{
        float: none;
    }

    .ft_right{
        float: none;
    }

    .center{ text-align: left;}

    .decimal ul {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .decimal li {
        list-style-type: decimal;
        margin-left: 20px;
        margin-top: 20px;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .disc li {
        margin-left: 20px;
        margin-bottom: 10px;
    }

    .back_r{
        background-color: #F6D2D2 !important;
        width: 100%;
    }

    .back_r2{
        background-color: #F6D2D2 !important;
    }

    .back_w{
        width: 100%;
    }

    .g_box {
        width: 100%;
        background-color: #F6F6F6;
        padding: 15px;
        border-radius: 20px;
        box-sizing: border-box;
        font-size: 0.9em;
    }
    .pc_center{ text-align:left;}

    .sp_none {
        display: none!important;
    }

    .pc_none {
        display: block!important;
    }

    /* ========== Table ========== */
    .form_box {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .form_box table {
        font-size: 1em;
        width: 100%;
        box-sizing: border-box;
    }

    .form_box th {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border: none;
    }

    .form_box td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border: none;
    }


    input[type="text"],input[type="email"],input[type="tel"],textarea,select {
        width: 85% !important;
    }

    input.yubin { width: 35% !important; }

    input[type="file"] {
        margin-bottom: 8px;
    }

    input[type="submit"] {
        font-size: 1.3em !important;
        width: 70%;
    }

    input[type="button"],input[type="submit"] {
        -webkit-appearance: none;
    }

    .form_table label {
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .f_table {
        border-collapse: collapse;
        width: 100%;
        font-size: 1em;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        margin-bottom: 40px;
        border-top: 1px solid #CCCCCC;
        border-bottom: none;
        border-right: 1px solid #CCCCCC;
        border-left: 1px solid #CCCCCC;
    }

    .f_table th {
        display: block;
        padding-top: 12px;
        padding-right: 12px;
        padding-left: 20px;
        padding-bottom: 12px;
        text-align: center;
        font-weight: bold;
        width: 100%;
        border-bottom: 1px solid #CCCCCC;
        background-color: #F4F4F4;
        box-sizing: border-box;
    }

    .f_table td {
        display: block;
        width: 100%;
        border-bottom: 1px solid #CCCCCC;
        border-left: none;
        padding-top: 12px;
        padding-right: 12px;
        padding-left: 25px;
        padding-bottom: 12px;
        text-align: center;
        box-sizing: border-box;
    }

    /* ========== SNS ========== */

    .sns_box {
        display: block;
        background-color: #C8CDD0;
        text-align: center;
    }

    .share_btn2{
        display: inline-block;
        text-decoration: none;
        width: 50px;
        margin:10px;
        height: 50px;
        line-height: 50px;
        font-size: 23px;
        color:white;
        border-radius: 12px;
        text-align: center;
        vertical-align: middle;
        overflow: hidden;
        font-weight: bold;
        transition: .3s;
    }
    .share_btn2 .fa {line-height:50px}
    .share_btn2:hover{
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    .share_btn2.shtw {background: #22b8ff;}
    .share_btn2.shfb {background: #6680d8;}
    .share_btn2.shhtb {background: #49a8fb;}
    .share_btn2.shpkt {background: #ff6d82;}
    .share_btn2.shfdly {background: #7bda72;}
    .share_btn2.shgp {background: #fd6969;}


    /* ========== slick ========== */

    .slider_box {
        width: 100%;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .slick-slide img {
        width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
        display: none;
    }

    .slick-dots li button:before {
        font-size: 10px;
        top: 3px;
    }

    /* ==================== フッター ==================== */
    #foot {
        margin-top: 0;
        padding-bottom: 3em;
    }

    #foot_in {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 10px;
        font-size: 0.9em;
    }

    #foot_in h3 {
        font-size: 1em;
        color: #FFFFFF;
    }

    .foot_right {
        float: none;
        width: 100%;
        box-sizing: border-box;
    }

    #foot_in ul {
        margin: 0;
        padding: 0;
        width: 45%;
        box-sizing: border-box;
        float: left;
    }

    #foot_in li {
        list-style-type: none;
        width: 100%;
        vertical-align: middle;
    }

    #foot_in li a {
        display: block;
        padding: 5px 0;
        font-weight: normal;
        font-size: 0.8em;
        text-align: left;
        color: #FFFFFF;
    }

    .sp-fix-footer {
        display:block;
        padding: 0;
    }
    .sp-fix-footer ul {
        width: 100%;
        position: fixed;
        z-index: 1000;
        background-color: #E40274;
        bottom: 0;

        display: flex;
        display: -webkit-box; /*Android4.3*/
        display: -moz-box;    /*Firefox21*/
        display: -ms-flexbox; /*IE10*/
        display: -webkit-flex; /*PC-Safari,iOS8.4*/
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }
    .sp-fix-footer ul li {
        margin: 0;
        padding: 0;
        list-style-type: none;
        width: 50%;
        box-sizing: border-box;
    }

    .sp-fix-footer ul li:nth-last-of-type(1) {
        border-right: none;
    }

    .sp-fix-footer ul li a {
        display: block;
        width: 100%;
        font-size: .8em;
        font-weight: bold;
        text-align: center;
        color: #FFFFFF;
        padding: 1em 0;
        box-sizing: border-box;
    }

    .sp-fix-footer ul li:nth-last-of-type(1) a {
        color: #333;
        background-color: #FFFFFF;
        border-top: 1px #E40274 solid;
        border-right: 1px #E40274 solid;
        border-bottom: 1px #E40274 solid;
    }

    .sp-fix-footer ul li:nth-last-of-type(1)  a:hover{
        background-color: #F7F7F7;
    }

    /* pagetop
    ---------------------------------------------------------------------*/

    #page-top {
        position: fixed;
        bottom: 40px;
        right: 10px;
        opacity: 0.7;
        filter: alpha(opacity=70);
        -ms-filter: "alpha(opacity=70)";
        line-height: 36px;
    }
    #page-top a {
        font-size: 0.5em;
        text-decoration: none;
        color: #fff;
        width: 50px;
        text-align: center;
        display: block;
        border-radius: 6px;
        background-color: #C8CDD0;
        padding-top: 5px;
        padding-right: 0;
        padding-bottom: 5px;
        padding-left: 0;
    }
    #page-top a:hover {
        text-decoration: none;
        background-color: #B0B7BC;
    }

}
/* PCで電話番号リンクを無効に */
@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
.search-results h3{
    border-bottom: 0 solid #ffffff;
}
.search-results h3::before{
    display: none;
}

.button-search {
    border: 4px solid #b5b5b5;
    border-radius: 8px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    /*letter-spacing: 0.5em;*/
    padding: 0.5em 0.5em;
    text-align: left;
    cursor: pointer;
}
.result-clinic {
    font-weight: bold;
    color: #ef81a0;
    font-size: 1.8rem;
}
.search-result-link {
    text-align: center;
    /*background-color: #ebebeb;*/
    padding: 0.5em;
    letter-spacing: 0.2em;
    font-weight: bold;
    width: 1200px;
    margin: 0 auto;
    color: #000;
}
.search-result-link-bot {
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-result-link button:hover {
    box-shadow: none;
    opacity: 0.8;
    margin-top: 4px;
    margin-bottom: -4px;
}

.search-results .breadcrum{
    padding-top: 30px;
    padding-left: 30px;
}
.search-results .box-slider-header {
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    width: 1200px;
    margin: 0 auto;
    /*position: relative;*/
    /*height: 640px;*/
    display: flex!important;
    background-color: #ffffff;
}
.search-results .box-slider-header-advise{
    margin-bottom: 75px;
}
.search-results .box-slider-header .box-slider-header-top-left{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*height: 500px;*/
    width: 55%;
    margin: 50px 0 50px 50px;
}

.search-results .box-slider-header .box-slider-header-top-right {
    /*display: inline-block;*/
    border: 1px solid #c6c6c6;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 2px 2px #c6c6c6;
    /*position: absolute;*/
    /*right: 50px;*/
    /*top: 50px;*/
    margin-top: 30px;
    margin-bottom: 30px;
}

.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child {
    text-align: center;
    border: 1px solid #c6c6c6;
    border-radius: 20px;
    margin: 10px;
    padding: 50px 30px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-text-noted-pc {
    font-size: 13px;
    font-weight: bold;
    margin-top: 22px;
}

.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top .title-1 {
    font-size: 48px;
    letter-spacing: 13px;
    margin-bottom: 5px;
}

.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top .title-2 {
    font-size: 36px;
}

.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-mid{
    color: #5B9AD5;
    font-size: 24px;
    margin-bottom: 30px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-mid .box-slider-header-top-right-child-mid-top{
    font-size: 26px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-mid .box-slider-header-top-right-child-mid-top span{
    color: #EF5DA8;
    font-weight: bold;
    font-size: 39px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-bottom .box-slider-header-top-right-child-bottom-top{
    color: #EF5DA8;
    margin-bottom: 10px;
    font-size: 24px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-bottom .box-slider-header-top-right-child-bottom-top img{
    margin-top: 10px;
}

.search-results .button-search-hospital{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 20px;
    padding: 5px 60px;
    box-shadow: 0 5px 5px 0px #C0C0C0;
    background-color: #EF5DA8;
    border: 5px solid #EDBCD9;
    margin: auto;
}

.search-results .button-search-hospital-advise{
    padding: 5px 50px;
}

.search-results .button-search-hospital > span{
    display: block;
    margin-left: 5px;
}

.content-result-search .we-are-waiting {
    color: #fd3545;
}

.search-results .box-slider-header .box-slider-header-top {
    padding: 30px;
}

.search-results .box-slider-header .box-slider-header-top .top-image {

}

.search-results .box-slider-header .box-slider-header-top .top-image img {
    width: 350px;
}

.search-results .box-slider-header .box-slider-header-top .top-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 30px;
}

.search-results .box-slider-header .box-slider-header-bottom {
    height: 255px;
    background: rgba(255, 255, 255, 0.5);
}

.search-results .box-slider-header .box-slider-header-bottom .search-result-link .group-button-search-hospital {
    display: inline-block;
    margin-bottom: -35px;
}


/*.search-results .block-search-results {*/
/*    width: 1600px;*/
/*    margin: 0 auto;*/
/*}*/

/*.search-results .block-search-results .block-title {*/
/*    font-size: 40px;*/
/*    font-weight: bold;*/
/*    text-align: center;*/

/*}*/

/*.search-results .block-search-results .block-search-results {*/
/*    font-size: 30px;*/
/*    margin-top: 20px;*/
/*    margin-bottom: 50px;*/
/*    text-align: center;*/

/*}*/

/*.search-results .block-search-results .block-search-results .result-clinic {*/
/*    color: #ef81a0;*/
/*    font-size: 40px;*/
/*}*/

/*.search-results .block-search-results .content-result-search {*/
/*    font-size: 34px;*/
/*    margin-top: 30px;*/
/*    text-align: center;*/
/*    padding-left: 20px;*/
/*    padding-right: 20px;*/
/*}*/
/*.search-results .block-search-results .content-result-search .result-clinic{*/
/*    font-size: 34px;*/
/*}*/

/*.search-results .block-search-results .search-result-link .group-button-search-hospital {*/
/*    display: inline-block;*/
/*}*/

/*.search-results .block-search-results .search-result-link .group-button-search-hospital .button-search-hospital {*/
/*    font-size: 30px;*/
/*    font-weight: normal;*/
/*    padding: 5px 10px;*/
/*}*/

/*.search-results .block-search-results .search-result-link .group-button-search-hospital .button-search-hospital img {*/
/*    width: 35px;*/
/*}*/

/*.search-results .block-search-results .search-result-link .group-button-search-hospital .button-search-hospital span {*/
/*    padding: 10px 70px;*/
/*}*/

.top-block-search-results {
    margin-top: -240px !important
}

.search-results .block-why-ishachok {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.search-results .block-why-ishachok .block-top .block-title {
    font-size: 32px;
    font-weight: normal;
    color: #5B9AD5;
    margin: 50px;
}

.search-results .block-why-ishachok .block-content {
    border-radius: 30px;
    box-shadow: 0 0 2px 2px #c6c6c6;
    padding: 50px;
    margin-bottom: 80px;
    background-color: #ffffff;

}

@media screen and (max-width: 600px) {
    .search-results .block-why-ishachok .block-content{
        text-align: left;
    }
  }

.search-results .block-why-ishachok .block-content .block-content-top {
    font-weight: bold;
    font-size: 29px;
    margin-bottom: 50px;
}

.search-results .block-why-ishachok .block-content .block-content-mid {
    font-size: 21px;
}

.search-results .block-why-ishachok .block-content .block-content-bottom {
    font-size: 20px;
    margin-top: 50px;
}

.search-results .block-video {
    /*width: 1600px;*/
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.search-results .block-video .block-video-top{
    width: 1000px;
    position: relative;
    padding-bottom: 600px;
    height: 0;
    overflow: hidden;
    margin: 0 auto;

}
.search-results .block-video .block-video-top iframe{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.search-results .block-video .block-video-top img{
    width: 39%;
}
/*.search-results .block-video .block-video-top iframe{*/
/*    width: 39%;*/
/*}*/
.search-results .block-video .block-video-content{
    background-color: rgba(91,95,101,255);
    padding: 10px;
    position: absolute;
    width: 100%;
    top: 43%;
}
.search-results .block-search-results{
    display: flex;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 0 2px 2px #c6c6c6;
    padding: 20px 50px;
    background-color: #ffffff;
    text-align: center;
}
.search-results .block-search-results .block-search-results-left .block-search-results-left-top{
    font-size: 38px;
}
.search-results .block-search-results .block-search-results-left .block-search-results-left-bottom{
    font-size: 27px;
}
.search-results .block-search-results .block-search-results-center{
    color: #5B9AD5;
    margin: auto;
    /*padding-left: 30px;*/
}
.search-results .block-search-results .block-search-results-center .block-search-results-center-top{
    font-size: 24px;
}
.search-results .block-search-results .block-search-results-center .block-search-results-center-top span{
    font-size: 33px;
    color: #EE81AB;
    font-weight: bold;
}
.search-results .block-search-results .block-search-results-center .block-search-results-center-bottom{
    font-size: 20px;
}
.search-results .block-search-results .block-search-results-right{
    /*margin: auto;*/
}
.search-results .block-search-results .block-search-results-right .block-search-results-right-top{
    font-size: 24px;
    color: #EE81AB;
    margin-bottom: 15px;
}
.search-results .block-search-results .block-search-results-right .block-search-results-right-top img{
    margin-top: 5px;
}
.search-results .block-search-results .block-search-results-right .block-search-results-right-bottom{

}

.block-howto {
    width: 1200px;
    margin: 0 auto;
}

.block-howto .block-howto-top {
    font-size: 30px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
    color: #5B9AD5;
}

.block-howto .block-howto-content {
    display: flex;
    justify-content: space-between;
}

.block-howto .block-howto-content .item-howto {
    border: 1px solid #325F93;
    background-color: #F3F9FF;
    padding: 0 36px 10px;
    position: relative;
}

.block-howto .block-howto-content .item-howto::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 67%;
    right: -18px;
    transform: translateY(-50%);
    background: center / contain no-repeat url(../images/waiting/polygon.png);
}
.block-howto .block-howto-content .item-howto-custom::after{
    display: none;
}

.block-howto .block-howto-content .item-howto .item-title {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    color: #5B9AD5;
    margin-top: 50px;
    margin-bottom: 20px;
}
.block-howto .block-howto-content .item-howto .item-title-custom{
    margin-top: 25px;
    margin-bottom: 0;
}

.block-howto .block-howto-content .item-howto .item-image {
    text-align: center;
}

.block-howto .block-howto-content .item-howto .item-description {
    font-size: 16px;
}

.block-jyunbi-box .block-title{
    text-align: center;
    font-size: 32px;
    color: #5B9AD5;
    margin-bottom: 50px;
}
.block-usage-fee{
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.block-usage-fee .block-usage-fee-top .title{
    font-size: 32px;
    color: #5B9AD5;
    margin-bottom: 30px;
}

.block-usage-fee .block-usage-fee-content {
    background-color: #ffffff;
    padding:50px
}

.block-usage-fee .block-usage-fee-content .block-usage-fee-content-top {
    border-bottom: 1px solid #5B9AD5;
    margin-bottom: 50px;
}

.block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-1 {
    font-size: 37px;
    font-weight: bold;
    color: #EF5DA8;
}

.block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2 {
    font-size: 25px;
}

.block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2 .tax-included {
    font-size: 37px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}
.block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2 .tax-included::before{
    content: "";
    display: inline-block;
    width: 100%;
    height: 20px;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    background: center / contain no-repeat url(../images/waiting/line9.png);
}

.block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2 .tax-included span {
    font-size: 21px;
}
.block-usage-fee .block-usage-fee-content .block-usage-fee-content-mid{
    margin-bottom: 50px;
}
.block-usage-fee .block-usage-fee-content .block-usage-fee-content-mid img{
    width: 80%;
}
.block-usage-fee .block-usage-fee-content .block-usage-fee-content-bottom {
    font-size: 25px;
}
.block-search-results-footer{
    background-color: rgba(53,57,64,0.8);
    padding: 10px 0;
    width: 100%;
    bottom: 0;
    position: fixed;
    z-index: 100;
    display: none;
}
.block-search-results-drifting{
    text-align: center;
    border: 2px solid #EF5DA8;
    border-radius: 10px;
    display: none;
    padding: 15px 20px;
    position: fixed;
    right: 2%;
    z-index: 7000;
    top: 500px;
    background-color: #ffffff;
}
.block-search-results-drifting .block-search-results-drifting-header .close-drifting{
    background-color: #353940;
    border-radius: 26px;
    color: #ffffff;
    display: inline-block;
    padding: 1px 13px;
    /*font-weight: bold;*/
    font-size: 24px;
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
}
.block-search-results-drifting .block-search-results-drifting-content .block-search-results-drifting-content-top{
    font-size: 19px;
}
.block-search-results-drifting .block-search-results-drifting-content .block-search-results-drifting-content-bottom{
    font-size: 18px;
    color: #5B9AD5;
    margin: 10px;
}
.block-search-results-drifting .block-search-results-drifting-content .block-search-results-drifting-content-bottom span{
    color: #EF5DA8;
    font-size: 22px;
    font-weight: bold;
}
.block-search-results-drifting .block-search-results-drifting-footer .button-search-hospital{
 padding: 7px 15px;;
}
.pagetop{
    display: none;
}
@media screen and (max-width: 1920px) {
    /*.pagetop{*/
    /*    top: 260px;*/
    /*}*/
    .block-search-results-drifting{
        top: 350px;
    }
}
@media screen and (max-width: 1600px) {
    .block-search-results-drifting{
        top: 300px;
    }
    /*.search-results .box-slider-header {*/
    /*    width: 100%;*/
    /*}*/
    .search-results .block-video .block-video-top img{
        width: 63%;
    }
}

@media screen and (max-width: 1510px) {
    .search-results .block-search-results .content-result-search {
        font-size: 30px;
    }

    .search-results .block-search-results .content-result-search .result-clinic {
        font-size: 30px;
    }
}

@media screen and (max-width: 1366px) {
    .search-results .block-search-results .content-result-search {
        font-size: 28px;
    }

    .search-results .block-search-results .content-result-search .result-clinic {
        font-size: 28px;
    }
}

@media screen and (max-width: 1280px) {
    .search-results .block-search-results .content-result-search {
        font-size: 26px;
    }

    .search-results .block-search-results .content-result-search .result-clinic {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .search-results .breadcrum{
        padding-top: 15px;
        padding-left: 15px;
    }
    .search-results .breadcrum .pnkz{
        margin-bottom: 0;
    }
    .top-block-search-results {
        margin-top: -150px !important
    }

    .search-result-link {
        width: 100%;
    }

    .search-results .box-slider-header {
        width: 100%;
        text-align: center;
        display: none;
    }

    .search-results .box-slider-header .box-slider-header-bottom {
        height: 160px;
    }

    .search-results .box-slider-header .box-slider-header-top .top-image img {
        width: 80%;
    }

    .search-results .box-slider-header .box-slider-header-top .top-title {
        font-size: 20px;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .search-results .block-search-results {
        width: 92%;
    }

    .search-results .block-search-results .block-title {
        font-size: 30px;
        text-align: center;
    }

    .search-results .block-search-results .block-search-results {
        font-size: 25px;
        margin-top: 0;
        margin-bottom: 25px;
        text-align: center;
    }

    .search-results .block-search-results .block-search-results .result-clinic {
        font-size: 30px;
    }

    .search-result-link {
        width: 100%;
    }

    .search-results .block-search-results .search-result-link .group-button-search-hospital .button-search-hospital {
        font-size: 20px;
        padding: 5px 10px;
    }

    .search-results .block-search-results .search-result-link .group-button-search-hospital .button-search-hospital img {
        width: 25px;
    }

    .search-results .block-search-results .search-result-link .group-button-search-hospital .button-search-hospital span {
        padding: 5px 20px;
    }

    .search-results .block-search-results .content-result-search {
        font-size: 15px;
        margin-top: 10px;
        text-align: center;
    }

    .search-results .block-search-results .content-result-search .result-clinic {
        font-size: 15px;
    }
    .search-results .block-why-ishachok {
        width: 90%;
        margin: 0 auto;
    }
    .search-results .block-why-ishachok .block-top .block-title{
        font-weight: bold;
        font-size: 20px;
        margin: 20px 50px;
    }
    .search-results .block-why-ishachok .block-content{
        padding: 30px 15px;
        margin-bottom: 15px;
    }
    .search-results .block-why-ishachok .block-content .block-content-top{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .search-results .block-why-ishachok .block-content .block-content-mid{
        font-size: 14px;
    }
    .search-results .block-why-ishachok .block-content .block-content-bottom{
        font-size: 14px;
        margin-top: 15px;
    }

    .search-results .block-video{
        width: 100%;
        margin: 0 auto;
    }

    .search-results .block-video .block-video-top{
        width: 90%;
        padding-bottom: 200px;

    }
    .block-howto{
        width: 90%;
        margin: 0 auto;
    }
    .block-howto .block-howto-top{
        font-size: 20px;
        margin-top: 0;
    }
    .block-howto .swipe_box{
        z-index: 10000;
    }
    .block-howto .howto_swipe_inner{
        display: flex;
    }
    .block-howto .block-howto-content .item-howto{
        margin-left: 15px;
        padding: 0 15px 10px;
    }
    .block-howto .block-howto-content .item-howto .item-title{
        font-size: 20px;
        margin-top: 20px;
    }
    .block-howto .block-howto-content .item-howto .item-description{
        font-size: 14px;
    }
    .block-usage-fee{
        width: 90%;
        margin: 0 auto;
    }
    .block-usage-fee .block-usage-fee-top .title{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .block-usage-fee .block-usage-fee-content{
        background-color: unset;
        padding: 0;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-top{
        margin-bottom: 10px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-1{
        font-size: 20px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2{
        font-size: 14px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2 .tax-included{
        font-size: 22px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-top .block-usage-fee-content-top-2 .tax-included span{
        font-size: 14px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-mid{
        margin-bottom: 20px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-mid img{
        width: 100%;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-bottom{
        font-size: 16px;
        padding: 0 28px;
    }
    .block-usage-fee .block-usage-fee-content .block-usage-fee-content-bottom span{
        font-size: 14px;
    }
    .box-slider-header-sp{
        text-align: center;
        margin-bottom: 40px;
    }
    .box-slider-header-sp .box-slider-header-sp-content{
        margin-bottom: 20px;
    }
    .box-slider-header-sp .box-slider-header-sp-content .box-slider-header-sp-content1{
        font-size: 43px;
    }
    .box-slider-header-sp .box-slider-header-sp-content .box-slider-header-sp-content2{
        font-size: 32px;
    }
    .box-slider-header-sp .box-slider-header-sp-footer{
        width: 90%;
        margin: 0 auto;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp{
        box-shadow: 0 10px 10px 0 #C0C0C0;
        background-color: #ffffff;
        border-radius: 15px;
        padding: 30px 15px 20px;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-content{
        color: #5B9AD5;
        margin-bottom: 20px;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-content .block-search-result-sp-content-top {
        font-size: 23px;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-content .block-search-result-sp-content-top span{
        font-size: 35px;
        font-weight: bold;
        color: #EF5DA8;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-content .block-search-result-sp-content-bottom{
        font-size: 22px;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-footer .block-search-result-sp-footer-top{
        font-size: 18px;
        color: #EE81AB;
        font-weight: bold;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-footer .block-search-result-sp-footer-bottom{
        display: flex;
        justify-content: center;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-footer .block-text-noted-sp{
        font-size: 10px;
        font-weight: bold;
        margin-top: 18px;
    }
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-footer .block-search-result-sp-footer-bottom .button-search-hospital{
        font-size: 18px;
        padding: 10px 40px;
    }
    .block-jyunbi-box .block-title{
        margin-bottom: 20px;
    }
    .jyunbi_box p{
        font-size: 16px;
    }
    .faq_box{
        margin-bottom: 0;
    }
    .block-search-results-drifting{
        padding: 10px 20px;
        right: 0px;
        left: 0px;
        width: 100%;
        top: unset;
        box-sizing: border-box;
    }
    .block-search-results-drifting .block-search-results-drifting-header .close-drifting{
        font-size: 16px;
        padding: 0 8px;
        top: -14px;
        right: -1px;
    }
    .block-search-results-drifting .block-search-results-drifting-content-sp{
        display: flex;
        justify-content: space-between;
    }
    .block-search-results-drifting .block-search-results-drifting-content-sp .block-search-results-drifting-content-sp-left{
        font-size: 16px;
    }
    /*.block-search-results-drifting .block-search-results-drifting-content-sp .block-search-results-drifting-content-sp-left .block-search-results-drifting-content-sp-left-top{*/
    /*    font-size: 16px;*/
    /*}*/
    /*.block-search-results-drifting .block-search-results-drifting-content-sp .block-search-results-drifting-content-sp-left .block-search-results-drifting-content-sp-left-bottom{*/
    /*    font-size: 16px;*/
    /*}*/

    .block-search-results-drifting .block-search-results-drifting-content-sp .block-search-results-drifting-content-sp-right .button-search-hospital{
        font-size: 16px;
        padding: 5px 10px;
        top: -15px;
        right: -4px;
    }
}

@media screen and (max-width: 400px) {
    .box-slider-header-sp .box-slider-header-sp-footer .block-search-result-sp .block-search-result-sp-footer .block-search-result-sp-footer-bottom .button-search-hospital{
        padding: 10px 30px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1250px) {
    .search-results {
        padding-left: 12px;
        padding-right: 12px;
    }

    .block-search-results-drifting {
        right: 2.5%;
    }

    .search-results .box-slider-header {
        width: 100%;
    }

    .search-results .block-why-ishachok {
        width: 100%;
    }

    .block-howto {
        width: 100%;
    }

    .jyunbi_in {
        width: 100%;
    }

    .block-usage-fee {
        width: 100%;
    }

    .clinic_in {
        width: 100%;
    }

    .faq_in {
        width: 100%;
    }

    .search-results .block-video .block-video-top {
        width: 100%;
    }
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top p {
    color: #fa0101;
    font-size: 20px;
    font-weight: bold;
    text-align: start;
    width: fit-content;
    margin: 0 auto;
}
.box-slider-header-sp .box-slider-header-sp-content p{
    color: #fa0101;
    font-size: 20px;
    font-weight: bold;
    text-indent: -15em;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top .notice-emergency-pill {
    width: 360px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top .notice-emergency-pill p{
    color: #5f5d5d;
    font-size: 18px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top .notice-emergency-pill span{
    color: #fa0101;
    font-weight: bold;
    font-size: 20px;
}
.search-results .box-slider-header .box-slider-header-top-right .box-slider-header-top-right-child .box-slider-header-top-right-child-top .notice-emergency-pill a{
    color: #3f98eb;
    text-decoration: underline;
    font-size: 16px;
}
.box-slider-header-sp .box-slider-header-sp-content .notice-emergency-pill-sp p{
    color: #5f5d5d !important;
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
    margin-left: 20px;
    text-indent: 0;
}
.box-slider-header-sp .box-slider-header-sp-content .notice-emergency-pill-sp span{
    color: #fa0101;
    font-weight: bold;
    font-size: 18px;
}
.box-slider-header-sp .box-slider-header-sp-content .notice-emergency-pill-sp a{
    color: #3f98eb;
    text-decoration: underline;
}