@charset "UTF-8";
*,
::before,
::after {
    box-sizing: border-box;
    /* ↓↓debug code↓↓ */
    /* outline: 1px solid red; */
}
:root {
    --text-color: #222;
    --main-color: #272d5e; /*メイン色*/
    --sub-color: #bead5c; /*サブ色*/
    --bg-color: #f5f5f5; /*サイドメニュー・レイアウト類の背景色*/
    --border-color: #bbb; /*境界線色*/
    --btn-color: #f5af08; /*ボタンなどの色*/
    --font-type: "Noto Sans JP", sans-serif; /*見出し用フォント*/
    --font-type-en: "al-fresco", sans-serif;
}
body {
    position: relative;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: justify;
}
body:has(.js-open){
    overflow-y: hidden;
}
a {
    color: #1F2774;
    text-decoration: none;
}
a:hover {
    color: #C0AB9A;
}

/*tel*/
[href^=tel]:hover {
    cursor: default;
}
a[href="tel:準備中"] {
    pointer-events: none;
}
::selection {
    background-color: #99C1DA;
}
::-moz-selection {
    background-color: #99C1DA;
}

body,
.nav_wrap.fixed,
#mainvisual .inner,
header,
footer {
    min-width: 1280px;
}

@media print {
    html {
        -webkit-print-color-adjust: exact;
    }
    body {
        zoom: 80%;
    }
    .fixed {
        position: inherit !important;
    }
}
/* 画像のにじみ（大きい画像を小さく表示した時等）対策 */
.visibility {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*============================================================================

  header

============================================================================*/
header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: rgba(20, 25, 60, 0.6);
}
header .inner {
    position: relative;
    height: inherit;
    padding-right: 120px;
}

/* ロゴ */
header .header_logo {
    position: absolute;
    top: 42px;
    left: 90px;
    z-index: 11;
}
header .header_logo img {
    width: 450px;
    height: auto;
}
.head_info {
    display: flex;
    justify-content: flex-end;
}
.head_info_btn {
    width: 250px;
}
.head_info_btn a {
    position: relative;
    display: flex;
    padding-right: 15px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    filter: brightness(1);
    background-image: linear-gradient(90deg, rgba(15,110,105,0.99608) 0%, rgb(11,162,154) 100%);
    transition: 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    height: 120px;
}
.head_info_btn.yoyaku_btn a{
     background: linear-gradient(90deg, rgb(22 81 137) 0%, #008bd1 100%);
}
.head_info_btn a:hover {
    filter: brightness(1.2);
}
.head_info_btn a::after {
    position: absolute;
    right: 27px;
    top: calc(50% - 4px);
    width: 10px;
    height: 9px;
    background-color: #bead5c;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    content: "";
    transition: 0.3s ease-in-out;    
}
.head_info_btn a:hover::after {
    right: 18px;
}
.head_info_tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 330px;
    text-align: center;
    color: #fff;
    background-color: #14193c;
}
.head_info_tel dt {
    margin-bottom: 10px;
    padding-left: 12px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
}
.head_info_tel dd {
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-size: 38px;
    letter-spacing: 0.05em;
    line-height: 1;
}
.head_info_tel dd::before {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 10px;
    background: url("../images/head_tel_icon.svg") no-repeat center/contain;
    content: ""
}
.head_info_schedule {
    box-sizing: border-box;
    width: 340px;
    padding: 9px 20px 0;
}
.head_info_schedule .tb01 {
    font-size: 12px;
    letter-spacing: 0.05em;
}
.head_info_schedule .tb01 th,
.head_info_schedule .tb01 td {
    line-height: 34px;
}
.head_info_schedule .tb01 tr:not(:last-of-type) th,
.head_info_schedule .tb01 tr:not(:last-of-type) td {
    border-bottom: 1px solid #fff;
}
.head_info_schedule .tb01 th {
    width: 75px;
    padding-right: 16px;
    padding-left: 3px;
    text-align: center;
}
.head_info_schedule .tb01 tr:not(:first-of-type) th {
    text-align: right;
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-size: 13px;
}
.head_info_schedule .tb01 tr:not(:first-of-type) td {
    color: #bead5c;
}
.head_info_schedule .schedule_note {
    display: none;
}

@media screen and (max-width: 1640px) {
    header .header_logo {
        left: 20px;
        top: 60px;
    }
    header .header_logo img {
        width: 280px;
        height: auto;
    }
    .head_info_btn {
        width: 180px;
    }
    .head_info_btn a {
        font-size: 16px;
    }
    .head_info_btn a::after {
        position: absolute;
        right: 14px;
        top: calc(50% - 4px);
        width: 6px;
        height: 7px;
    }
    .head_info_btn a:hover::after {
        right: 8px;
    }
    .head_info_tel {
        width: 200px;
    }    
    .head_info_tel dt {
        margin-bottom: 6px;
        padding-left: 12px;
        font-size: 14px;
    }    
    .head_info_tel dd {
        font-size: 24px;
    }
    .head_info_tel dd::before {
        top: 0;
        width: 14px;
        height: 14px;
        margin-right: 10px;
    }

}
@media screen and (max-width: 1350px) {
        .head_info_btn {
        width: 160px;
    }
    .head_info_btn a{
        padding-right: 0;
    }
    .head_info_btn a::after{
        right: 47%;
        top: calc(50% - -35px);
    }
    header .inner {
        padding-right: 80px;
    }
    .pc_menu {
        width: 80px!important;
    }
}

/*============================================================================

  nav

============================================================================*/
@media print, screen and (min-width: 641px) {
    /* PC用メニュー */
    /* ボタン */
    .pc_menu {
        position: fixed;
        z-index: 15;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        border: none;
        text-align: center;
        cursor: pointer;
        background-color: #0e0e0f;
        padding: 0;
    }
    .home .pc_menu {
        position: absolute;
    }
    .pc_menu .line {
        position: absolute;
        top: 49px;
        left: 0;
        right: 0;
        display: block;
        width: 40px;
        height: 1px;
        background-color: #fff;
        margin: 0 auto;
        transition: background-color ease 0.5s, -webkit-transform ease 0.5s;
        transition: transform ease 0.5s, background-color ease 0.5s;
        transition: transform ease 0.5s, background-color ease 0.5s, -webkit-transform ease 0.5s;
    }
    .pc_menu .line::before, 
    .pc_menu .line::after {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 40px;
        height: 1px;
        background-color: #fff;
        transition: background-color ease 0.5s, -webkit-transform ease 0.5s;
        transition: transform ease 0.5s, background-color ease 0.5s;
        transition: transform ease 0.5s, background-color ease 0.5s, -webkit-transform ease 0.5s;
        content: "";
    }
    .pc_menu .line::before {
        top: -13px;
    }
    .pc_menu .line::after {
        bottom: -13px;
    }
    .pc_menu .pc_menu_tit {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 27px;
        margin: auto 0 0;
        display: block;
        font-family: "cormorant", sans-serif;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.1em;
        line-height: 1;
        color: #fff;
    }
    .pc_menu.open .line {
        background-color: transparent;
    }
    .pc_menu.open .line::before {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        }
        .pc_menu.open .line::after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* メニュー */
    .pc_menu_wrap {
        position: fixed;
        display: flex;
        align-items: center;
        padding: 50px 50px 50px;
        z-index: 14;
        top: 0;
        right: -100%;
        width: 40%;
        max-width: 700px;
        height: 100vh;
        overflow-y: auto;
        opacity: 0;
        transition: right 1s ease, opacity 1s ease;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    .pc_menu_wrap.js-open {
        opacity: 1;
        right: 0;
    }
    .pc_menu_wrap .pc_menu_item {
        width: 100%;
    }
    .pc_menu_wrap .pc_menu_item li {
        line-height: 1.3;
    }
    .pc_menu_wrap .pc_menu_item li a {
        display: block;
        width: 100%;
        font-family: "shippori-mincho", sans-serif;
        font-weight: 500;
        font-size: 17px;
        letter-spacing: 0.1em;
        padding: 26px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
    }
    .pc_menu_wrap .pc_menu_item li a:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    .pc_menu_wrap .pc_menu_item li:first-of-type a {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    .nav_wrap {
        display: none;
    }
    
    /* MV下メニュー */
    .mv_nav_wrap {
        position: absolute;
        z-index: /*10*/1;
        top: -70px;
        width: 100%;
        height: 140px;
        margin: 0 auto;
    }
    .mv_menu_list_wrap {
        width: calc(100% - 100px);
        min-width: 1280px;
        height: 100%;
        margin: 0 auto;
        background-image: linear-gradient(90deg, rgba(188,188,188,0.99608) 0%, rgb(255,255,255) 20%, rgb(255,255,255) 80%, rgb(188,188,188) 100%);
        box-shadow: 0px 0px 16px 0px #191a1c, 0px 0px 16px 0px #191a1c;
    }
    .nav_menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 60px;
    }
    .nav_menu li a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 140px;
        padding: 29px 0 52px;
        font-family: "shippori-mincho", sans-serif;
        font-weight: 600;
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 1.48;
        text-align: center;
        color: #222;
        transition: 0.3s ease-in-out;
    }
    .nav_menu li a:hover {
        color: #ac9111;
    }
    .nav_menu li a::after {
        position: absolute;
        left: calc(50% - 5px);
        bottom: 24px;
        width: 10px;
        height: 10px;
        background-color: #bead5c;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        content: "";
        transition: 0.3s ease-in-out;
    }
    .nav_menu li a:hover::after {
        bottom: 14px;
    }

    /* 追従時の設定 */
    .mv_nav_wrap.fixed {
        z-index: 10000;
        position: fixed;
        top: 0;
        /*left: 0;
        right: 0;*/
        margin: auto;
    }
	/*----------サイド　予約ボタン----------*/
	.side_bnr {
	  position: fixed;
/*	  top: 250px;*/
	  right: 0;
	  z-index: 11;
	  bottom: 0;
	}
	.side_bnr ul {
	  width: 170px;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	}
	.side_bnr ul li a {
		position: relative;
		display: flex;
		padding: 10px 5px;
		font-size: 16px;
		font-family: "shippori-mincho", sans-serif;
		font-weight: 500;
		letter-spacing: 0.05em;
		text-align: center;
		color: #fff;
		filter: brightness(1);
		background: linear-gradient(90deg, rgb(22 81 137) 0%, #008bd1 100%);
		transition: 0.3s ease-in-out;
		justify-content: center;
		align-items: center;
		height: 110px;
		box-shadow: 0px 4px 20px rgba(25, 26, 28, 0.2), 0px 8px 40px rgba(25, 26, 28, 0.1);
	}
	.side_bnr ul li a img {
		margin-bottom: 10px;
	}
	.side_bnr ul li a:after {
		content: "";
		position: absolute;
		right: 47%;
		top: calc(50% - -35px);
		width: 6px;
		height: 7px;
		background-color: #bead5c;
    	clip-path: polygon(0 0, 0% 100%, 100% 50%);
    	transition: 0.3s ease-in-out;
	}
	.side_bnr ul li a:hover:after {
		right: 45%;
	}
	.side_bnr ul li a:hover {
		filter: brightness(1.2);
	}
}

/*============================================================================

  #mainvisual

============================================================================*/
/* TOP */
#mainvisual.home_mv {
    position: relative;
    width: 100%;
    height: 950px;
    overflow: hidden;
}
.slider-fade .slick-slide img {
    width: 100%;
    height: 950px;
    -o-object-fit: cover;
    object-fit: cover;
}

/*　キャッチコピー　*/
.main_catch {
    position: absolute;
    z-index: 2;
    top: 328px;
    left: 0;
    width: 100%;
    padding-top: 79px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 56px;
    letter-spacing: 0.05em;
    line-height: 1.34;
    text-align: center;
    color: #fff;
    background: url("../images/logo_mark.svg") no-repeat center top/93px auto;
}
.main_catch::before {
    position: absolute;
    left: 0;
    bottom: 76px;
    z-index: -1;
    width: 100%;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 119px;
    letter-spacing: 0.055em;
    line-height: 1;
    text-align: center;
    color: #dddcd0; 
    opacity: 0.1;
    content: "IMPLANT";
}
.main_catch span {
    position: relative;
    bottom: -9px;
    font-size: 70px;
    vertical-align: bottom;
}
.main_catch span.gold01 {
    color: #bead5c;
}
.main_catch span.gold02 {
    color: #ac9111;
}
.main_catch span em {
    position: relative;
    top: -5px;
    font-size: 56px;
}
@media print, screen and (min-width: 641px) {
    .main_catch.slide01 span.gold02 {
        display: inline-block;
        margin-bottom: 19px;
    }
    .main_catch.slide02 span.gold01,
    .main_catch.slide03 span.gold01 {
        display: inline-block;
        margin-bottom: 26px;
    }
}

/* 下層 */
.sub_mainvisual {
    height: 400px;
    background: url("../images/headline_bg.jpg") no-repeat center bottom/cover;
    overflow: hidden;
}
.sub_mainvisual .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    height: inherit;
    margin: 0 auto;
}
/* タイトル */
.mainvisual_catch {
    display: table-cell;
    padding-top: 120px;
    letter-spacing: 0.15em;
    vertical-align: middle;
    text-align: center;
}
.mainvisual_catch p.headline {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 34px;
    letter-spacing: 0.15em;
    line-height: 1.4;
    color: #bead5c;
    filter: drop-shadow(0px 0px 10px #14193c) drop-shadow(0px 0px 15px #14193c) drop-shadow(0px 0px 20px #14193c);
}
.mainvisual_catch p.headline_en {
    position: relative;
    top: -90px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 119px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    color: #dddcd0;
    opacity: 0.1;
}


/*==================================================================

  #contents

==================================================================*/
main {
    position: relative;
    display: block;
}
main:not(.home) {
    background-image: linear-gradient(90deg, rgba(206, 206, 206, 0.85) 0%, rgb(242, 242, 242) 100%);
}
#contents {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0 120px;
}

/*==================================================================

  .breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    margin: 0 auto 50px;
    font-size: 14px;
}
.breadcrumbs:last-child {
    margin: 0 auto;
}
.breadcrumbs i {
    margin-right: 5px;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs li {
    float: left;
    margin-right: 5px;
}
.breadcrumbs li a {
    color: var(--main-color);
}
.breadcrumbs li:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    content: "\f054";
    padding-left: 10px;
}
.breadcrumbs li:last-child:after {
    content: "";
}

/*============================================================================

  $footer

============================================================================*/
.pagetop {
    position: fixed;
    z-index: /*12*/1;
    cursor: pointer;
    width: 110px;
    right: 30px;
    bottom: 135px;
}
@media (hover: hover) {
    .pagetop {
        transition: transform 0.3s ease-in-out;
    }
    .pagetop:hover {
        transform: translateY(-10px);
    }
}
footer {
    position: relative;
    width: 100%;
    background-image: linear-gradient(90deg, rgba(20,25,60,0.99608) 0%, rgb(39,46,94) 100%);
}
.footer_info_wrap {
    display: flex;
    justify-content: space-between;
    width: 1140px;
    margin: 0 auto;
    padding: 122px 0 115px;
}
.info_left {
    max-width: 570px;
    width: 100%;
    padding-top: 2px;
}
.info_right {
    max-width: 500px;
    width: 100%;
}

/* 医院概要 */
.footer_info_logo {
    margin-bottom: 38px;
    text-align: center;
}
.footer_info_add {
    margin-bottom: 30px;
    line-height: 40px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.075em;
    text-align: center;
    color: #fff;
    background-color: #141a3d;
    border-radius: 5px;
}
.footer_info_tel a {
    display: block;
    margin-bottom: 25px;
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-size: 45px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    text-align: center;
}
.footer_info_tel ::before {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 16px;
    background: url("../images/head_tel_icon.svg") no-repeat center/contain;
    content: ""
}
.info_left .tb01 {
    margin-bottom: 22px;
    font-size: 19px;
    border-top: 3px solid #f7f7f7;
    border-bottom: 3px solid #f7f7f7;
}
.info_left tr:first-of-type th, 
.info_left tr:first-of-type td {
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #f7f7f7;
    border-bottom: 1px dashed #f7f7f7;
}
.info_left .tb01 td, 
.info_left .tb01 th {
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.1em;
}
.info_left .tb01 tr:not(:first-of-type) th {
    padding-right: 23px;
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 0.05em;
    text-align: right;
}
.info_left .tb01 th {
    width: 29.8%;
    color: #f7f7f7;
}
.info_left .tb01 td {
    color: #bead5c;
}
.info_left .tb01 tr:nth-of-type(2) th,
.info_left .tb01 tr:nth-of-type(2) td {
    padding-top: 22px;
}
.info_left .tb01 tr:nth-of-type(3) th,
.info_left .tb01 tr:nth-of-type(3) td {
    padding-top: 23px;
    padding-bottom: 22px;
}
.info_left .schedule_note {
    font-size: 17px;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    color: #f7f7f7;
}
.info_left .schedule_note em {
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-size: 21px;
    letter-spacing: 0.05em;
}

/* アクセスマップ */
.info_map {
    margin-bottom: 28px;
}
.info_map img {
    width: 100%;
    height: auto;
}
.info_map iframe {
    width: 100%;
    height: 360px;
    border-radius: 5px;
    border: 3px solid #fff !important;
}
.info_access {
    margin-left: -3px;
}
.info_access ul li {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: #f7f7f7;
}
.info_access ul li:not(:last-of-type) {
    margin-bottom: 20px;
}
.info_access ul li::before {
    position:relative;
    top: -2px;
    display: inline-block;
    width: 13px;
    height: 14px;
    margin-right: 11px;
    vertical-align: middle;
    background-color: #bead5c;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    content: "";
}

/* フッターナビ */
.footer_nav {
    padding: 98px 0;
    background-color: #131629;
}
.footer_nav_list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 2%;
    width: 1200px;
    margin: 0 auto;
}
.footer_nav_list li {
    position: relative;
    width: 32%;
    padding-left: 24px;
    line-height: 1.3;
}
.footer_nav_list li::before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #fff;
    content: "";
}
.footer_nav_list li a {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #fff;
}
@media (hover: hover) {
    .footer_nav_list li a {
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
    .footer_nav_list li a::before {
        content: "";
        width: 100%;
        height: 1px;
        background-color: #fff;
        transition: transform 0.15s ease-out;
        transform: scaleX(0);
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        z-index: 1;
    }
    .footer_nav_list li a:hover::before {
        transform: scaleX(1);
    }
}

/* コピーライト */
.copy {
    padding: 24px 0 54px;
    text-align: center;
    background-color: #131629;
}
.copy small {
    font-family: "josefin-sans", sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 1;
    color: #fff;
}

/*==================================================================

  タイトル

==================================================================*/
h1 {
    position: absolute;
    z-index: 1;
    top: 15px;
    left: 90px;
    width: calc(100% - 90px);
    font-size: 12px;
    letter-spacing: 0.075em;
    line-height: 1;
    color: #fff;
}
@media screen and (max-width: 1640px) {
    h1 {
        left: 20px;
        width: 300px;
        line-height: 1.2;
    }
}
.tit01 {
    margin-bottom: 50px;
    padding-top: 45px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-align: center;
    background: url(../images/logo_mark.svg) no-repeat center top / 60px auto;
}
.tit01 span {
    font-size: 48px;
    color: #ac9111;
}
.tit02 {
    position: relative;
    margin-bottom: 24px;
    padding: 10px 0 10px 26px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: #444;
    border-left: 7px solid #008bd1;
    background-color: rgba(255, 255, 255, 0.3);
}
.tit02 span {
    color: #ac9111;
}
.tit02::before {
    position: absolute;
    top: 0;
    left: 5px;
    width: 7px;
    height: 100%;
    background-color: #00a199;
    content: "";
}
.tit03 {
    margin-bottom: 10px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.075em;
    line-height: 1.4;
    color: #304b7d;
}

/*==================================================================

  .btn
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
.btn01 a {
    display: inline-block;
    padding: 20px 70px 21px 30px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    letter-spacing: 0.075em;
    color: #2d4166;
    box-sizing: border-box;
    border: 1px solid #2d4166;
    background: url("../images/top_btn_arrow.png") no-repeat right 21px center/30px auto;
    transition: 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
    .btn01 a:hover {
        color: #fff;
        background-image: url("../images/top_btn_arrow_on.png");
        background-position: right 11px center;
        background-color: #2d4166;
    }
}
/*==================================================================

  $table
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* 診療時間（医院案内、アクセス共通） */
.schedule table {
    width: 100%;
}

/*フッターの診療時間*/
.tb01 {
    border-spacing: 0;
    border-collapse: collapse;
    white-space: nowrap;
    color: #fff;
}
.info_detail .tb01 {
    margin-bottom: 10px;
}
.info_detail .tb01 td, 
.info_detail .tb01 th {
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    background: #fff;
    letter-spacing: 0.1em;
}
.info_detail .tb01 th {
    width: 36.3%;
    height: 45px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}
.info_detail .tb01 td {
    width: 8.4%;
    text-align: center;
}
.info_detail .tb01 tr:first-of-type th, 
.info_detail .tb01 tr:first-of-type td {
    color: #fff;
    background: var(--main-color);
}
.info_detail .tb01 tr:last-of-type th, 
.info_detail .tb01 tr:last-of-type td {
    border-bottom: none;
}
.info_detail .schedule_note {
    display: flex;
    flex-wrap: wrap;
    gap: 0 17px;
}
.schedule .close01 {
    color: #6aa2a3;
}
.schedule .close02 {
    color: #fff;
}
.schedule .dia {
    color: #588a41;
}

.tb02 {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 10px 0;
}
.tb02 tr {
    display: flex;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}
.tb02 th {
    width: 25%;
    padding: 14px 0;
    font-weight: normal;
    line-height: 1.4;
    text-align: left;
}
.tb02 td {
    padding: 14px 0;
    font-weight: normal;
    line-height: 1.4;
    text-align: left;
}
.tb02 th + td {
    width: 75%;
}

/*==================================================================

  $box
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
.box1 {
    margin-bottom: 100px;
}
.text {
    margin-bottom: 50px;
}
.text > p {
    margin-bottom: 1em;
}
section p {
    line-height: 2;
}

/*==================================================================

  $list

==================================================================*/
.list02 li {
    line-height: 1.4;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    list-style-type: none;
}

.list06_w100 {
    padding: 25px 40px 20px;
    background-color: rgba(255, 255, 255, 0.6);
}
.list06_w100 li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 1em;
    line-height: 1.5;
    list-style-type: none;
}
.list06_w100 li:before {
    display: block;
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--sub-color);
    border: 1px solid var(--sub-color);
    border-radius: 100%;
}
.list06_w100 p:last-of-type {
    margin-bottom: 0;
}
.list08 {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 40px 15px;
    background-color: rgba(255, 255, 255, 0.6);
}
.list08:after {
    display: block;
    clear: both;
    content: "";
}
.list08 li {
    position: relative;
    display: inline-block;
    margin: 0 10px 20px 40px;
    border-bottom: 1px dotted #ccc;
    list-style-type: none;
    line-height: 1.4;
}
.list08 li:before {
    display: block;
    position: absolute;
    left: -23px;
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    font-weight: 900;
    color: #008bd1;
}
.list08 p:last-of-type {
    margin-bottom: 0;
}

/*----------番号（四角の背景色付き）----------*/
ol.square {
    counter-reset: number;
    list-style: none;
}
ol.square li {
    margin-bottom: 12px;
    list-style-type: none;
}
ol.square li:before {
    margin-right: 10px;
    padding: 2px 8px;
    line-height: 1.6;
    background: #008bd1;
    color: #fff;
    counter-increment: number;
    content: counter(number);
}

/*==================================================================

  $layout

==================================================================*/
/* --------------layout共通タイトル-------------- */
.layout_tit {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    color: var(--text-color);
}
.layout_tit em {
    margin-right: 10px;
    color: var(--sub-color);
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 30px;
}
.layout_tit span {
    margin-right: 10px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--sub-color);
}

/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 {
    position: relative;
    margin: 0 0 15px;
}
.layout01:before {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--border-color);
    content: "";
}
.layout01 .layout01_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0;
}
.layout01 .layout01_box:after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--border-color);
    content: "";
}
.layout01 .layout01_title {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 30%;
    font-weight: bold;
    font-size: 120%;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.25);
}
.layout01 .layout01_title em {
    display: block;
    width: 100%;
    line-height: 1;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 150%;
    color: var(--sub-color);
}
.layout01 .layout01_title span {
    font-size: 75%;
}
.layout01 .layout01_text {
    width: 70%;
    padding: 20px 3%;
}
.layout01 .layout01_text p {
    line-height: 1.7;
}
.layout01 .layout01_text p img{
    width: 70%;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 {
}
.layout04 .layout04_box {
    display: flex;
    margin-bottom: 20px;
    background-color: rgba(172, 159, 93, 0.2);
    padding: 2%;
}
.layout04 .layout04_title {
    width: 35%;
    padding-right: 2%;
    display: flex;
    align-items: center;
}
.layout04 .layout04_title p {
    margin-bottom: 0;
}
.layout04 .layout04_title img {
    width: 100%;
    height: auto;
}
.layout04 .layout04_text {
    width: 65%;
    padding: 15px 3%;
    background-color: #fff;
}
.box_style01 {
    background-color: rgba(172, 159, 93, 0.2);
    padding: 20px;
    margin: 0 0 15px;
}
.box_style01 img{
    width: 100%;
}


/*==================================================================

  アンカーリンンク

==================================================================*/
.anklink {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.anklink li {
    width: 49%;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: space-between;
    position: relative;
    margin: 0 0 10px;
}
.anklink li a {
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    border: 1px solid var(--main-color);
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
    vertical-align: middle;
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.anklink li a:hover {
    background-color: var(--main-color);
    color: #fff;
}
.anklink li i {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    margin: auto;
}

/*==================================================================

  reason

==================================================================*/
.sec_reason {
    padding-top: 155px;
    background-image: linear-gradient(90deg, rgba(20,25,60,0.99608) 0%, rgb(39,46,94) 100%);
    overflow: hidden;
}
.sec_reason h2 {
    position: relative;
    margin-bottom: 47px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 70px;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-align: center;
    color: #efefef;
    filter: drop-shadow(0px 0px 10px #14193c) drop-shadow(0px 0px 15px #14193c) drop-shadow(0px 0px 29px #14193c);
}
.sec_reason h2::before {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -10px;
    width: 100%;
    font-family: "cormorant", sans-serif;
    font-weight: 500;
    font-size: 247px;
    letter-spacing: 0.25em;
    line-height: 1;
    text-align: center;
    color: #b9b9b9;
    content: "REASON";
    opacity: 0.1;
}
.sec_reason h2 span {
    color: #bead5c;
}
.sec_reason h2 em {
    position: relative;
    top: -2px;
    padding: 0 26px 0 30px;
    font-family: "cormorant", sans-serif;
    font-weight: 500;
    font-size: 168px;
    color: #ac9111;
    vertical-align: middle;
}
.sec_reason h2 em::before,
.sec_reason h2 em::after {
    position: absolute;
    z-index: -1;
    height: 53px;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    filter: drop-shadow(0px 0px 20px #14193c) drop-shadow(0px 0px 29px #14193c);
}
.sec_reason h2 em::before {
    top: 26px;
    left: -55px;
    width: 77px;
    background-image: url("../images/top_reason_tit_symbol_left.png");
}
.sec_reason h2 em::after {
    top: 25px;
    right: -53px;
    width: 76px;
    background-image: url("../images/top_reason_tit_symbol_right.png");
}
.sec_reason h2 i {
    font-style: normal;
    font-size: 63px;
    letter-spacing: 0.23em;
}
@media print, screen and (min-width: 641px) {
    .top_reason_list {
        min-width: 1280px;
    }
    .top_reason_list li a {
        display: flex;
        justify-content: flex-start;
        filter: brightness(1);
        transition: 0.3s ease-in-out;
    }
    .top_reason_list li:nth-of-type(even) a {
        flex-direction: row-reverse;
    }
    .top_reason_list li figure {
        width: 50%;
    }
    .top_reason_list li figure img {
        width: 100%;
        height: 400px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .top_reason_list_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 640px;
        text-align: center;
        padding: 4px 0 0 116px;
    }
    .top_reason_list li:nth-of-type(even) .top_reason_list_text {
        padding: 10px 125px 0 0;
    }
    .top_reason_list li:nth-of-type(1) .top_reason_list_text h3,
    .top_reason_list li:nth-of-type(6) .top_reason_list_text h3 {
        line-height: 1.5;
    }
}
@media (hover: hover) and (pointer: fine) {
    .top_reason_list li a:hover {
        filter: brightness(1.4);
    }
}
.top_reason_list li a {
    background-color: #141831;
}
.top_reason_list li figure {
    position: relative;
}
.top_reason_list li figure::after {
    position: absolute;
    top: 0;
    width: 103px;
    height: 100%;
    background-size: 100% auto;
    background-repeat: repeat-y;
    content: "";
}
.top_reason_list li:nth-of-type(odd) figure::after {
    right: 0;
    background-image: url("../images/top_reason_img_deco_right.png");
}
.top_reason_list li:nth-of-type(even) figure::after {
    left: 0;
    background-image: url("../images/top_reason_img_deco_left.png");
}
.top_reason_list_text {
    position: relative;
    text-align: center;
}
.top_reason_list_text::before {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}
.top_reason_list li:nth-of-type(1) .top_reason_list_text::before {
    top: 202px;
    left: -50px;
    width: 110px;
    height: 58px;
    background-image: url("../images/top_reason_no01.png");
}
.top_reason_list li:nth-of-type(2) .top_reason_list_text::before {
    top: 169px;
    right: -56px;
    width: 121px;
    height: 60px;
    background-image: url(../images/top_reason_no02.png);
}
.top_reason_list li:nth-of-type(3) .top_reason_list_text::before {
    top: 170px;
    left: -63px;
    width: 118px;
    height: 96px;
    background-image: url(../images/top_reason_no03.png);
}
.top_reason_list li:nth-of-type(4) .top_reason_list_text::before {
    top: 170px;
    right: -78px;
    width: 146px;
    height: 84px;
    background-image: url(../images/top_reason_no04.png);
}
.top_reason_list li:nth-of-type(5) .top_reason_list_text::before {
    top: 168px;
    left: -64px;
    width: 146px;
    height: 99px;
    background-image: url(../images/top_reason_no05.png);
}
.top_reason_list li:nth-of-type(6) .top_reason_list_text::before {
    top: 134px;
    right: -70px;
    width: 138px;
    height: 95px;
    background-image: url(../images/top_reason_no06.png);
}
.top_reason_list_text h3 {
    margin-bottom: 22px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 45px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: #ccc;
}
.top_reason_list_text h3 i {
    font-style: normal;
}
.top_reason_list_text h3 span {
    font-size: 54px;
    color: #bead5c;
}
.top_reason_list_text p {
    font-size: 17px;
    line-height: 2.059;
    letter-spacing: 0.075em;
    color: #bbb;
}

/* 下層ページ */
.reason_list_item {
    display: flex;
    justify-content: space-between;
}
.reason_list .reason_list_item:nth-of-type(even) {
    flex-direction: row-reverse;
}
.reason_list_item:not(:last-of-type) {
    padding-bottom: 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid #c0c0c0;
}
.reason_list_item_img {
    width: 460px;
}
.reason_list_item_text {
    width: 680px;
}
.reason_list_item_text h3 {
    margin-bottom: 18px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: #ac9111;
}
.reason_list_item_text p {
    line-height: 2;
}
.reason_list_facility li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.reason_list_facility li:not(:last-of-type) {
    margin-bottom: 30px;
}
.reason_list_facility_text {
    width: calc(100% - 290px);
}
.reason_list_item_text .reason_list_facility_text p {
    font-size: 15.5px;
    letter-spacing: 0;
}
.reason_list_facility_text .tit03 {
    margin-bottom: 5px;
    letter-spacing: 0;
}

/*==================================================================

  qa

==================================================================*/
.sec_qa {
    padding: 0 0 140px;
    background-color: #e2dfcf;
}
.top_qa_tit_wrap {
    height: 590px;
    padding: 170px 0 0;
    mask-image: url(../images/top_qa_tit_mask.png);
    mask-repeat: no-repeat;
    mask-position: center top;
    mask-size: auto auto;
    -webkit-mask-image: url(../images/top_qa_tit_mask.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    -webkit-mask-size: auto auto;
    background-image: url("../images/top_qa_tit_deco.png"), url("../images/top_qa_tit_bg.jpg");
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom, center;
}
@media screen and (min-width: 1920px) {
    .top_qa_tit_wrap {
        background-size: 100% 120px, cover;
        mask-size: 100% 590px;
        -webkit-mask-size: 100% 590px;
    }
}
.top_qa_bubble {
    position: relative;
    width: 880px;
    height: 120px;
    margin: 0 auto 24px;
    line-height: 117px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0.1em;
    vertical-align: text-bottom;
    text-align: center;
    border-radius: 60px;
    color: #fff;
    background-color: #14193c;
    filter: drop-shadow(0 5px 16px rgba(25, 26, 28, 0.5));
}
.top_qa_bubble span {
    position: relative;
    bottom: -3px;
    font-size: 48px;
    color: #ac9111;
}
.top_qa_bubble::before,
.top_qa_bubble::after {
    position: absolute;
    content: "";
}
.top_qa_bubble::before {
    top: -75px;
    left: calc(50% - 199px);
    width: 253px;
    height: 107px;
    background-image: url(../images/top_qa_bubble_deco01.png), url(../images/top_qa_bubble_deco02.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 86px auto, 126px auto;
    background-position: left top, right 7px;
}
.top_qa_bubble::after {
    bottom: -20px;
    left: calc(50% - 12px);
    width: 18px;
    height: 21px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color: #14193c;
}
.sec_qa h2 {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 80px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 29px #63540e;
}
.sec_qa h2 span {
    font-family: "cormorant", sans-serif;
    font-weight: 500;
    font-size: 140px;
    letter-spacing: 0.1em;
}
.top_qa_list {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
    width: 1280px;
    margin: -40px auto 0;
}
.top_qa_list li a {
    position: relative;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: 300px;
    height: 390px;
    padding: 27px 0 0;
    border: 5px solid #8b7d3c;
    box-shadow: 0px 2px 10px 0px #8b7d3c;
    background-color: #ddd;
    filter: brightness(1);
    transition: 0.3s ease-in-out;    
}
@media (hover: hover) and (pointer: fine) {
    .top_qa_list li a:hover {
        top: -20px;
        filter: brightness(1.1);
    }
}
.top_qa_list li a::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #d0d0d0;
    clip-path: polygon(calc(100% - 38px) 0, 100% 0, 100% 100%, 38px 100%);
    content: "";
}
.top_qa_list li a::after {
    position: absolute;
    left: calc(50% - 20px);
    bottom: 25px;
    width: 40px;
    height: 40px;
    background: url("../images/top_qa_arrow.png") no-repeat center/contain;
    content: "";
}
.top_qa_list li a figure {
    position: relative;
}
.top_qa_list li a h3 {
    position: relative;
    margin-bottom: 10px;
    padding: 0 0 0 5px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.74;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-color);
}
.top_qa_list li:nth-of-type(1) a h3,
.top_qa_list li:nth-of-type(2) a h3 {
    padding-top: 4px;
    line-height: 1.5;
}
.top_qa_list li:nth-of-type(11) a h3,
.top_qa_list li:nth-of-type(12) a h3 {
    font-size: 20px;
    line-height: 1.365;
}
.top_qa_list li a h3 span {
    font-size: 28px;
    letter-spacing: 0;
    color: #74672a;
}
.top_qa_list li:nth-of-type(11) a h3 span,
.top_qa_list li:nth-of-type(12) a h3 span {
    font-size: 25px;
}

/* 下層ページ */
.qa_box {
    border: 1px solid #8b7d3c;
}
.qa_question {
    position: relative;
    padding: 18px 20px 18px 40px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0.09em;
    color: #fff;
    background-color: #8b7d3c;
    overflow: hidden;
}
.qa_question::before {
    position: absolute;
    top: 0;
    left: 18px;
    font-family: "cormorant", sans-serif;
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    color: #fff;
    content: "Q.";
    opacity: 0.1;
}
.qa_box:not(:last-of-type) {
    margin-bottom: 60px;
}
.qa_answer_flex {
    display: flex;
    justify-content: space-between;
    padding: 40px 50px;
}
.qa_answer_bubble {
    position: relative;
    box-sizing: border-box;
/*    width: calc(100% - 290px);*/
    padding: 75px 35px 30px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 17px;
}
.qa_answer_bubble::before {
    position: absolute;
    top: 10px;
    left: 35px;
    font-family: "cormorant", sans-serif;
    font-weight: 600;
    font-size: 72px;
    line-height: 1;
    color: #8b7d3c;
    content: "A.";
    opacity: 0.35;
}
.qa_answer_bubble::after {
/*    position: absolute;
    left: -33px;
    top: 40px;
    width: 34px;
    height: 28px;
    background-color: #fff;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    content: "";*/
}
.qa_answer_bubble .tit03 {
    color: #ac9111;
}
.qa_answer_bubble h5 {
    margin-bottom: 5px;
    font-size: 110%;
    font-weight: bold;
}
.qa_answer_bubble .layout01 .layout01_title {
    width: 35%;
    font-size: 110%;
    letter-spacing: 0.05em;
    color: var(--text-color);
    background-color: rgba(172, 159, 93, 0.2);
}
.qa_answer_bubble .layout01 .layout01_text {
    width: 65%;
    padding: 15px 3%;
    letter-spacing: 0.02em;
}
.qa_answer_bubble .layout04 .layout04_text {
    padding: 15px 3%;
    letter-spacing: 0.02em;
}
.qa_answer_bubble .layout04 .layout04_text p:not(.layout_tit) {
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/*==================================================================

  flow

==================================================================*/
.sec_flow {
    position: relative;
    padding: 164px 0 156px;
    background-image: linear-gradient(90deg, rgba(11,12,24,0.99608) 0%, rgb(25,28,47) 100%);
}
.sec_flow::before,
.sec_flow::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 900px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto auto;    
    mask-repeat: no-repeat;
    mask-position: center top;
    mask-size: auto auto;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    -webkit-mask-size: auto auto;
    content: "";
}
.sec_flow::before {
    top: 0;
    background-image: url("../images/top_flow_bg_top.jpg");
    mask-image: url(../images/top_flow_bg_top_mask.png);
    -webkit-mask-image: url(../images/top_flow_bg_top_mask.png);
}
.sec_flow::after {
    bottom: 0;
    background-image: url("../images/top_flow_bg_btm.jpg");
    mask-image: url(../images/top_flow_bg_btm_mask.png);
    -webkit-mask-image: url(../images/top_flow_bg_btm_mask.png);
}
@media screen and (min-width: 1920px) {
    .sec_flow::before {
        background-size: cover;
        mask-size: 100% 900px;
        -webkit-mask-size: 100% 900px;
    }
    .sec_flow::after {
        background-size: cover;
        mask-size: 100% 900px;
        -webkit-mask-size: 100% 900px;
    }
}
.sec_flow h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 153px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: 0.3em;
    line-height: 1.2;
    text-align: center;
    color: #bead5c;
}
.sec_flow h2 span {
    position: relative;
    bottom: -4px;
    font-size: 72px;
    letter-spacing: 0.25em;
    color: #ac9111;
}
.sec_flow h2::before {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -58px;
    width: 100%;
    font-family: "cormorant", sans-serif;
    font-weight: 500;
    font-size: 247px;
    letter-spacing: 0.255em;
    line-height: 1;
    text-align: center;
    color: #b9b9b9;
    content: "FLOW";
    opacity: 0.1;
}
@media print, screen and (min-width: 641px) {
    .top_flow_tree_wrap {
        box-sizing: border-box;
        width: 1200px;
        margin: 0 auto;
        padding-right: 10px;
    }
    .top_flow_item {
        display: flex;
    }
    .top_flow_num {
        width: 194px;
    }
    .top_flow_tree_wrap .top_flow_item:nth-of-type(1) .top_flow_num {
        padding: 15px 0 0 12px;
    }
    .top_flow_tree_wrap .top_flow_item:nth-of-type(2) .top_flow_num {
        padding: 12px 0 0 3px;
    }
    .top_flow_tree_wrap .top_flow_item:nth-of-type(3) .top_flow_num {
        padding: 13px 0 0 5px;
    }
    .top_flow_tree_wrap .top_flow_item:nth-of-type(4) .top_flow_num {
        padding: 13px 0 0 0;
    }
    .top_flow_tree_wrap .top_flow_item:nth-of-type(5) .top_flow_num {
        padding: 10px 0 0 3px;
    }
    .top_flow_text {
        width: 480px;
        margin-right: 36px;
        padding: 28px 0 0;
    }
    .top_flow_tree_wrap .top_flow_item:nth-of-type(5) .top_flow_text h3 {
        margin-bottom: 20px;
    }
    .top_flow_text p {
        width: 460px;
    }
}
.top_flow_tree_wrap {
    position: relative;
    z-index: 1;
}
.top_flow_item {
    position: relative;
}
.top_flow_item:not(:last-of-type) {
    margin-bottom: 50px;
}
.top_flow_item::after {
    position: absolute;
    bottom: 0;
    left: 84px;
    width: 3px;
    height: 170px;
    background-color: #988121;
    opacity: 0.5;
    content: "";
}
.top_flow_text h3 {
    margin-bottom: 30px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 37px;
    letter-spacing: 0.05em;
    line-height: 1.622;
    color: #bead5c;
}
.top_flow_text p {
    font-size: 18px;
    line-height: 2.222;
    letter-spacing: 0.05em;
    color: #e7e7e7;
}
.top_flow_img {
    width: 480px;
}
.flow_img img {
    width: 100%;
    height: auto;
}
.top_flow_tree_wrap .top_btn a{
    color: #bead5c;
    background: url(../images/top_qa_arrow.png) no-repeat right 21px center / 40px auto;
    border: 1px solid #bead5c;
}

.top_price_text .top_btn {
    margin-top: 40px;
    text-align: center;
    padding-left: 7px;
}
.top_btn a {
    display: inline-block;
    width: 400px;
    padding: 23px 0;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #2d4166;
    box-sizing: border-box;
    border: 1px solid #2d4166;
    background: url("../images/top_btn_arrow.png") no-repeat right 21px center/40px auto;
    transition: 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
    .top_btn a:hover {
        color: #fff;
        background-image: url("../images/top_btn_arrow_on.png");
        background-position: right 11px center;
        background-color: #2d4166;
    }
}

/* 下層ページ */
.flow_item {
    position: relative;
    display: flex;
}
.flow_item:not(:last-of-type)::after {
    position: absolute;
    top: 110px;
    left: 84px;
    width: 3px;
    height: calc(100% - 80px);
    background-color: #988121;
    opacity: 0.5;
    content: "";
}
section .flow_item:not(:last-of-type) {
    margin-bottom: 60px;
}
.flow_text h3 {
    margin-bottom: 20px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 0.07em;
    line-height: 1.3;
    color: #ac9111;
}
.flow_text p {
    line-height: 2;
}
@media print, screen and (min-width: 641px) {
    .flow_item {
        display: flex;
    }
    .top_flow_item::after {
        position: absolute;
        bottom: 0;
        left: 84px;
        width: 3px;
        height: 170px;
        background-color: #988121;
        opacity: 0.5;
        content: "";
    }
    .flow_item.top_flow_num {
        width: 200px;
    }
    .flow_text {
        width: 550px;
        margin-right: 56px;
        padding-top: 30px;
    }
    .flow_img {
        width: 400px;
        padding-top: 30px;
    }
    
}

/*==================================================================

  price

==================================================================*/
.sec_price {
    padding: 145px 0 110px;
    background-image: linear-gradient(90deg, #96b1b9 0%, #f3f3f3 100%);
}
.sec_price h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 109px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: 0.3em;
    line-height: 1.2;
    text-align: center;
    color: #222;
}
.sec_price h2 span {
    position: relative;
    bottom: -4px;
    font-size: 72px;
    letter-spacing: 0.25em;
    color: #ac9111;
}
.sec_price h2::before {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -58px;
    width: 100%;
    font-family: "cormorant", sans-serif;
    font-weight: 500;
    font-size: 247px;
    letter-spacing: 0.24em;
    line-height: 1;
    text-align: center;
    color: #fff;
    content: "PRICE";
    opacity: 0.3;
}
@media print, screen and (min-width: 641px) {
    .top_price_flex {
        display: flex;
    }
    .top_price_img {
        display: flex;
        justify-content: flex-end;
        position: relative;
        width: calc(50% - 80px);
        height: 700px;
        overflow: hidden;
    }
    .top_price_text {
        box-sizing: border-box;
        width: 720px;
        padding: 60px 0 0 110px;
    }
}
.top_price_text p {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.025em;
    line-height: 2.333;
    text-align: center;
}
.top_price_text p:not(:last-of-type) {
    margin-bottom: 44px;
}

/* 下層ページ */
.price_tb {
    width: 100%;
    background-color: #fff;
}
.price_tb:not(:last-child) {
    margin-bottom: 15px;
}
.price_tb .thead th,
.price_tb .thead td {
    background-color: #d6d9e8;
}
.price_tb th {
    text-align: center;
    background-color: var(--bg-color);
}
.price_tb tr td:nth-child(1) {
    width: 60%;
}
.price_tb tr td:nth-child(2) {
    text-align: center;
    width: 40%;
}
.price_tb th, 
.price_tb td {
    padding: 15px;
    border: 1px solid var(--border-color);
    vertical-align: middle;
}

/*==================================================================

  trouble

==================================================================*/
.sec_trouble h2 {
    padding: 125px 0 0;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 1.778;
    letter-spacing: 0.1em;
    text-align: center;
    height: 390px;
    background: url("../images/top_trouble_tit.jpg") no-repeat center/cover;
}
@media print, screen and (min-width: 641px) {
    .top_trouble_list li {
        display: flex;
    }
    .top_trouble_list li:nth-of-type(odd) {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .top_trouble_list figure {
        display: flex;
        width: 50%;
        min-width: 640px;
        height: 400px;
        overflow: hidden;
        flex-direction: row-reverse;
    }
    .top_trouble_list li:nth-of-type(odd) figure {
        flex-direction: row;
    }
    .top_trouble_cont {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        min-width: 640px;
    }
    .top_trouble_cont .top_btn {
        margin-top: 42px;
    }
    .top_trouble_list li:nth-of-type(2) .top_trouble_cont .top_btn {
        margin-top: 20px;
    }
}
@media screen and (min-width: 1920px) {
    .top_trouble_list figure img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.top_trouble_cont {
    text-align: center;
    background: linear-gradient(90deg, rgba(247, 247, 247, 0.8), rgba(142, 189, 130, 0.8)) fixed,url(../images/top_trouble_cont_bg01.jpg);
    background-position: center;
    background-size: cover;
}
.top_trouble_list li:nth-of-type(2) .top_trouble_cont {
    background: linear-gradient(90deg, rgba(83, 154, 224, 0.8), rgba(247, 247, 247, 0.8)) fixed,url(../images/top_trouble_cont_bg02.jpg);
    background-size: cover;
}
.top_trouble_cont h3 {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 0.12em;
    line-height: 1.63;
}
.top_trouble_cont h3 span {
    position: relative;
    top: 2px;
    font-size: 43px;
    letter-spacing: 0.1em;
    color: #ac9111;
}
.top_trouble_list li:nth-of-type(2) .top_trouble_cont h3 {
    font-size: 32px;
    letter-spacing: 0.1em;
}
.top_trouble_list li:nth-of-type(2) .top_trouble_cont h3 span {
    font-size: 37px;
    letter-spacing: 0.13em;
}

/*==================================================================

  message

==================================================================*/
.sec_message {
    position: relative;
    padding: 187px 0 131px;
    background-image: linear-gradient(90deg, rgba(176,176,176,0.99608) 0%, rgb(238,238,238) 100%);
    overflow: hidden;
}
.sec_message::before {
    position: absolute;
    width: 1920px;
    height: 440px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #0f1125;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50px);
    content: "";
}
.sec_message::after {
    position: absolute;
    width: 100%;
    height: 593px;
    left: 0;
    top: 0;
    background: url("../images/top_message_head.jpg") no-repeat center top;
    mask-image: url(../images/top_message_head_mask.png);
    mask-repeat: no-repeat;
    mask-position: center top -3px;
    mask-size: auto auto;
    -webkit-mask-image: url(../images/top_message_head_mask.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center top -3px;
    -webkit-mask-size: auto auto;    
    content: "";
}
@media screen and (min-width: 1920px) {
    .sec_message::before {
        width: 100%;
        left: 0;
        transform: translateX(0);
    }
    .sec_message::after {
        background-size: cover;
        mask-size: 100% 593px;
        -webkit-mask-size: 100% 593px;
    }
}
.sec_message h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 130px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.25em;
    text-align: center;
    color: #fff;
}
.sec_message h2::before {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -82px;
    width: 100%;
    font-family: "cormorant", sans-serif;
    font-weight: 500;
    font-size: 247px;
    letter-spacing: 0.245em;
    line-height: 1;
    text-align: center;
    color: #fff;
    content: "MESSAGE";
    opacity: 0.1;
}
.top_message_flex {    
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 1280px;
    margin: 0 auto;
}
.top_message_flex figure {
    text-align: center;
}
.top_message_flex figure figcaption {
    margin-top: 44px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
}
.top_message_flex .top_btn {
    margin-top: 45px;
}
.top_message_text {
    width: 734px;
    padding: 47px 0 0;
}
.top_message_text h3 {
    margin-bottom: 40px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.719;
    letter-spacing: 0.05em;
    text-align: center;
}
.top_message_text p {
    font-size: 17px;
    line-height: 2.118;
    letter-spacing: 0.05em;
}
.top_message_text p:not(:last-of-type) {
    margin-bottom: 26px;
}

/* 下層ページ */
.doctor_flex {    
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.doctor_flex figure {
    text-align: center;
}
.doctor_flex_text {
    width: 780px;
}
.doctor_flex_text p:not(:last-of-type) {
    margin-bottom: 1em;
}
.doctor_flex_text p.name,
.doctor_sub_flex_text  p.name {
    margin-top: 30px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: right;
}
.doctor_sub_flex_text  p.name {
    margin: 0 0 30px;
    text-align: left;
}
.doctor_sub_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}
.doctor_sub_flex_text {
    width: 780px;
    padding-top: 40px;
}
.doctor_sub_flex_text .doctor_carr_wrap {
    display: block;
    width: 100%;
}
.doctor_sub_flex_text .doctor_carr_box {
    width: 100%;
}

/*----------経歴・資格----------*/
.doctor_carr_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px 3%;
}
.doctor_carr_box {
    width: 48.5%;
    padding: 3%;
    box-sizing: border-box;
    background: #fff;
}
.doctor_carr_box .tit02 {
    margin-bottom: 15px;
    padding: 6px 0 6px 26px;
    font-size: 24px;
}

/*院内スライド 共通*/
.clinic_slide_wrap_flex .slide-item {
    position: relative;
}
.clinic_slide_wrap_flex .slide-item img {
    width: 100%;
    height: auto;
}
.clinic_slide_wrap_flex .slide_text {
    position: static;
    margin-top: 10px;
    padding: 10px;
    line-height: 1.5;
    font-weight: bold;
}
.clinic_slide_wrap_flex .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px 1.25%;
}
.clinic_slide_wrap_flex .slick-dots li {
    position: relative;
    transition: .3s;
    cursor: pointer;
}
.clinic_slide_wrap_flex .slick-dots li:hover {
    opacity: 0.8;
}
.clinic_slide_wrap_flex .slick-dots li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: .3s opacity linear;
}
.clinic_slide_wrap_flex .slick-dots li.slick-active::before {
    opacity: 0;
}
.clinic_slide_wrap_flex .slick-dots li img {
    width: 100%;
}

/*サーティフィケイト*/
.clinic_slide_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.clinic_slide_wrap :focus {
    outline: none;
}
.clinic_slide_wrap #slider {
    width: 100%;
}
.clinic_slide_wrap .clinic_slide_wrap_flex .slick-dots li {
    width: 19%;
}
.clinic_slide_wrap .caption {
    width: 100%;
    position: absolute;
    left: 0;
}
.clinic_slide_wrap .thumbnail-text-item {
    margin: 0 0 15px;
}

/*満足度調査*/
.cmn_valuation {
    text-align: center;
    margin: 50px 0 90px;
    padding: 40px 20px 50px;
    border: 10px solid rgba(172, 145, 17, 0.4);
    background-color: rgba(255, 255, 255, 0.9);
}
.cmn_valuation_ttl {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 25px;
}
.cmn_valuation_text {
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}
@media print, screen and (min-width: 641px) {
    .cmn_valuation_text {
        line-height: 2.4;
    }
}
@media (hover: hover) {
    .cmn_valuation_banner a {
        transition: 0.3s ease-in-out;
    }
    .cmn_valuation_banner a:hover {
        opacity: 0.7;
    }
}

.clinic_policy_tit {
    margin-bottom: 35px;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
}

/*設備紹介*/
@media print, screen and (min-width: 641px) {
    .facilities_equip {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.facilities_equip > dl {
    background-color: #fff;
}
.facilities_equip > dl > dd {
    line-height: 1.8;
}
.facilities_equip_img {
    text-align: center;
    margin-bottom: 20px;
}
.facilities_equip .facilities_equip_ttl {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 120%;
    line-height: 1.4;
    text-align: center;
    color: #008bd1;
}
@media print, screen and (min-width: 641px) {
    .facilities_equip.facilities_equip-1 {
        gap: 35px 3%;
    }
    .facilities_equip.facilities_equip-1 > dl {
        width: 44%;
    }
}
.facilities_equip.facilities_equip-1 > dl {
    padding: 30px 40px;
    border-top: 6px solid #008bd1;
}

/*==================================================================

  CSSアニメーション

==================================================================*/
/* フェードイン */
.fadeIn {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeIn {
  -webkit-animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードイン（下→上） */
.fadeInUp {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInUp {
  -webkit-animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フェードイン（右→左） */
.fadeInRight {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInRight {
  -webkit-animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フェードイン（左→右） */
.fadeInLeft {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInLeft {
  -webkit-animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フリップ（右回転） */
.flipRight {
  opacity: 0;
  visibility: visible;
}

.is-visible.flipRight {
  -webkit-animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

@-webkit-keyframes flipRight {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flipRight {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* フリップ（左回転） */
.flipLeft {
  opacity: 0;
  visibility: visible;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.is-visible.flipLeft {
  -webkit-animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes flipLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flipLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* 恒常的に動くアニメーション */
/* ゆっくり回転（右回転） */
.rotateRight {
  -webkit-animation: rotateRight 20s linear infinite;
          animation: rotateRight 20s linear infinite;
}

@-webkit-keyframes rotateRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ゆっくり回転（左回転） */
.rotateLeft {
  -webkit-animation: rotateLeft 20s linear infinite;
          animation: rotateLeft 20s linear infinite;
}

@-webkit-keyframes rotateLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* 浮遊（基準点から上） */
.floatingUp {
  -webkit-animation: floatingUp 10s ease-in-out infinite;
          animation: floatingUp 10s ease-in-out infinite;
}

@-webkit-keyframes floatingUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatingUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 浮遊（基準点から下） */
.floatingDown {
  -webkit-animation: floatingDown 10s ease-in-out infinite;
          animation: floatingDown 10s ease-in-out infinite;
}

@-webkit-keyframes floatingDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatingDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 生き物が跳ねる（鳥、リスなど） */
.jumping {
  position: relative;
  -webkit-animation: jumping 1s ease-in-out infinite;
          animation: jumping 1s ease-in-out infinite;
}

@-webkit-keyframes jumping {
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}

@keyframes jumping {
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}

/*common*/
.pc_inline{display:inline!important}.sp_inline{display:none!important}.sp_inline_ip{display:none!important}.pc_table{display:none!important}.sp_table{display:none!important}
address,body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,option,p,pre,select{margin:0;padding:0;-webkit-text-size-adjust:100%}img{vertical-align:middle;}iframe{vertical-align:middle;}li,ul{list-style:none;margin:0;padding:0}a img{border:none}.w010par{width:10%}.w020par{width:20%}.w025par{width:25%}.w050par{width:50%}.w075par{width:75%}.w100par{width:100%}.w010{width:10px}.w020{width:20px}.w030{width:30px}.w040{width:40px}.w050{width:50px}.w060{width:60px}.w070{width:70px}.w080{width:80px}.w090{width:90px}.w100{width:100px}.w110{width:110px}.w120{width:120px}.w130{width:130px}.w140{width:140px}.w150{width:150px}.w160{width:160px}.w170{width:170px}.w180{width:180px}.w190{width:190px}.w200{width:200px}.w210{width:210px}.w220{width:220px}.w230{width:230px}.w240{width:240px}.w250{width:250px}.w255{width:255px}.w260{width:260px}.w270{width:270px}.w280{width:280px}.w290{width:290px}.w300{width:300px}.w305{width:305px}.w310{width:310px}.w320{width:320px}.w330{width:330px}.w340{width:340px}.w350{width:350px}.w360{width:360px}.w365{width:365px}.w370{width:370px}.w380{width:380px}.w390{width:390px}.w400{width:400px}.w410{width:400px}.w415{width:415px}.w420{width:420px}.w430{width:430px}.w435{width:435px}.w440{width:440px}.w450{width:450px}.w460{width:460px}.w470{width:470px}.w480{width:480px}.w490{width:490px}.w500{width:500px}.w510{width:510px}.w520{width:520px}.w530{width:530px}.w540{width:540px}.w550{width:550px}.w560{width:560px}.w570{width:570px}.w580{width:580px}.w590{width:590px}.w600{width:600px}.w610{width:610px}.w620{width:620px}.w630{width:630px}.w640{width:640px}.w650{width:650px}.w660{width:660px}.w670{width:670px}.w680{width:680px}.w690{width:690px}.w700{width:700px}.w710{width:710px}.w720{width:720px}.w730{width:730px}.w740{width:740px}.w750{width:750px}.w760{width:760px}.w765{width:765px}.w960{width:960px}.w980{width:980px}.h030{height:30px}.h180{height:180px}.h190{height:190px}.h200{height:200px}.h240{height:240px}.h250{height:250px}.h280{height:280px}.h300{height:300px}.h350{height:350px}.mt00{margin-top:0!important}.mt01{margin-top:1px}.mt02{margin-top:2px}.mt03{margin-top:3px}.mt04{margin-top:4px}.mt05{margin-top:5px}.mt06{margin-top:6px}.mt07{margin-top:7px}.mt08{margin-top:8px}.mt09{margin-top:9px}.mt10{margin-top:10px}.mt15{margin-top:15px}.mt20{margin-top:20px}.mt25{margin-top:25px}.mt30{margin-top:30px}.mt35{margin-top:35px}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt90{margin-top:90px}.mt100{margin-top:100px}.mt110{margin-top:110px}.mt120{margin-top:120px}.mr00{margin-right:0!important}.mr01{margin-right:1px}.mr02{margin-right:2px}.mr03{margin-right:3px}.mr04{margin-right:4px}.mr05{margin-right:5px}.mr06{margin-right:6px}.mr07{margin-right:7px}.mr08{margin-right:8px}.mr09{margin-right:9px}.mr10{margin-right:10px}.mr15{margin-right:15px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr45{margin-right:45px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.mr100{margin-right:100px}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px}.mb02{margin-bottom:2px}.mb03{margin-bottom:3px}.mb04{margin-bottom:4px}.mb05{margin-bottom:5px}.mb06{margin-bottom:6px}.mb07{margin-bottom:7px}.mb08{margin-bottom:8px}.mb09{margin-bottom:9px}.mb10{margin-bottom:10px}.mb15{margin-bottom:15px}.mb20{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30{margin-bottom:30px}.mb35{margin-bottom:35px}.mb40{margin-bottom:40px}.mb45{margin-bottom:45px}.mb50{margin-bottom:50px}.mb60{margin-bottom:60px}.mb70{margin-bottom:70px}.mb80{margin-bottom:80px}.mb90{margin-bottom:90px}.mb100{margin-bottom:100px}.ml00{margin-left:0!important}.ml01{margin-left:1px}.ml02{margin-left:2px}.ml03{margin-left:3px}.ml04{margin-left:4px}.ml05{margin-left:5px}.ml06{margin-left:6px}.ml07{margin-left:7px}.ml08{margin-left:8px}.ml09{margin-left:9px}.ml10{margin-left:10px}.ml12{margin-left:12px}.ml15{margin-left:15px}.ml20{margin-left:20px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml45{margin-left:45px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml70{margin-left:70px}.ml80{margin-left:80px}.ml90{margin-left:90px}.ml100{margin-left:100px}.ml140{margin-left:140px}.ml160{margin-left:160px}.ma10{margin:10px}.ma15{margin:15px}.ma_auto{margin-left:auto;margin-right:auto}.pt00{padding-top:0!important}.pt01{padding-top:1px}.pt02{padding-top:2px}.pt03{padding-top:3px}.pt04{padding-top:4px}.pt05{padding-top:5px}.pt06{padding-top:6px}.pt07{padding-top:7px}.pt08{padding-top:8px}.pt09{padding-top:9px}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt40{padding-top:40px}.pt45{padding-top:45px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt70{padding-top:70px}.pt80{padding-top:80px}.pt90{padding-top:90px}.pt100{padding-top:100px}.pt120{padding-top:120px}.pr00{padding-right:0!important}.pr01{padding-right:1px}.pr02{padding-right:2px}.pr03{padding-right:3px}.pr04{padding-right:4px}.pr05{padding-right:5px}.pr06{padding-right:6px}.pr07{padding-right:7px}.pr08{padding-right:8px}.pr09{padding-right:9px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px}.pr25{padding-right:25px}.pr30{padding-right:30px}.pr35{padding-right:35px}.pr40{padding-right:40px!important}.pr45{padding-right:45px}.pr50{padding-right:50px}.pr60{padding-right:60px}.pr70{padding-right:70px}.pr80{padding-right:80px}.pr90{padding-right:90px}.pr100{padding-right:100px}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px}.pb02{padding-bottom:2px}.pb03{padding-bottom:3px}.pb04{padding-bottom:4px}.pb05{padding-bottom:5px}.pb06{padding-bottom:6px}.pb07{padding-bottom:7px}.pb08{padding-bottom:8px}.pb09{padding-bottom:9px}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:25px}.pb30{padding-bottom:30px}.pb35{padding-bottom:35px}.pb40{padding-bottom:40px}.pb45{padding-bottom:45px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb70{padding-bottom:70px}.pb80{padding-bottom:80px}.pb90{padding-bottom:90px}.pb100{padding-bottom:100px}.pl00{padding-left:0!important}.pl01{padding-left:1px}.pl02{padding-left:2px}.pl03{padding-left:3px}.pl04{padding-left:4px}.pl05{padding-left:5px}.pl06{padding-left:6px}.pl07{padding-left:7px}.pl08{padding-left:8px}.pl09{padding-left:9px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl30{padding-left:30px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl45{padding-left:45px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pl70{padding-left:70px}.pl80{padding-left:80px}.pl90{padding-left:90px}.pl100{padding-left:100px}.pa01{padding:1px}.pa02{padding:2px}.pa03{padding:3px}.pa04{padding:4px}.pa05{padding:5px}.pa10{padding:10px}.pa15{padding:15px}.fr{float:right}.fl{float:left}.fr10{float:right;margin-left:10px}.fr15{float:right;margin-left:15px}.fr30{float:right;margin-left:15px}.fl10{float:left;margin-right:10px}.fl15{float:left;margin-right:15px}.fl30{float:left;margin-right:30px}.txt10{font-size:10px}.txt11{font-size:11px}.txt12{font-size:12px}.txt13{font-size:13px}.txt14{font-size:14px}.txt15{font-size:15px}.txt16{font-size:16px}.txt17{font-size:17px}.txt18{font-size:18px}.txt19{font-size:19px}.txt20{font-size:20px}.txt21{font-size:21px}.txt22{font-size:22px}.txt23{font-size:23px}.txt24{font-size:24px}.txt25{font-size:25px}.txt26{font-size:26px}.txt27{font-size:27px}.txt28{font-size:28px}.txt29{font-size:29px}.txt30{font-size:30px}.txt31{font-size:31px}.txt32{font-size:32px}.txt33{font-size:33px}.txt34{font-size:34px}.txt35{font-size:35px}.txt36{font-size:36px}.txt37{font-size:37px}.txt38{font-size:38px}.txt39{font-size:39px}.txt40{font-size:40px}.bold{font-weight:700}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right}.clear{clear:both}.v_top{vertical-align:top}.v_mid{vertical-align:middle}.v_btm{vertical-align:bottom}.color_red{color:#f33}.color_pink{color:#ed8c96}.color_blue{color:#00408f}.color_green{color:#479f9d}.color_ore{color:#ff8327}.color_yellow{color:#ffeb8b}.color_beige{color:#dac58b}.color_brown{color:#9b8052}.color_navy{color:#1f2774}.color_black{color:#3e3a39}.ls_0{letter-spacing:0}.ls_1{letter-spacing:1px}.indent{margin-left:1em!important;text-indent:-1em}.line_h_2{line-height:2!important}.clearfix:after{display:block;clear:both;content:""}.sp{display:none!important}
.img_fr {
    display: block;
    position: relative;
    float: right;
    margin-left: 30px;
    margin-bottom: 1em;
    text-align: center;
}
.img_fr img {
    border-radius: 3px;
    margin-bottom: 7px;
    max-width: 400px;
    height: auto;
}
.img_fr.custom img {
    border-radius: 3px;
    margin-bottom: 7px;
    max-width: 500px;
    height: auto;
}
