@charset "utf-8";
/* CSS Document */
*,
::before,
::after{
    box-sizing: border-box;
    /* ↓↓debug code↓↓ */
    /* outline: 1px solid red; */
}
body {
    font-family: source-han-sans-japanese, "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #281D1A;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: justify;
}
a {
  color: #1F2774;
  text-decoration: none;
}
a:hover {
    color: #C0AB9A;
}
.anchor {
    display: block;
}
/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
::selection{
  background-color:#99C1DA;
}
::-moz-selection{
  background-color:#99C1DA;
}
body,
header,
footer{
  min-width:1200px;
}
@media print{
html {
  -webkit-print-color-adjust: exact;
}
body {
  zoom: 80%;
}
.fixed {
  position: inherit !important;
}
}
/*============================================================================

  header

============================================================================*/
header {
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    padding: 21px 120px 0;
}
header .inner {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: inherit;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: right;
}
@media screen and (max-width:1420px) {
    header {
        padding: 21px calc((100% - 1200px) / 2) 0;
    }
}

/* ロゴ */
header .header_logo {
  position: absolute;
  z-index: 10000;
  left: 0;
  top: 0;
}
header .header_logo,
header .header_logo img {
    width: 102px;
    height: 58px;
}


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

  nav

============================================================================*/
nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 9999;
}
nav .link {
    display: flex;
    justify-content: flex-end;
    gap: 0 62px;
    padding-top: 21px;
}
nav .link li a {
    position: relative;
    display: block;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #281D1A;
}
nav .link li a:hover {
    color: #281D1A;
}

/* ホバーのボーダー */
nav .link li a::before {
  position: absolute;
  left: 0;
  right:0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  margin:auto;
  background-color: #281D1A;
  transition: 0.15s  ease-out;
  transform: scaleX(0);
  content: "";
  z-index: 1;
}
nav .link li a:hover::before {
  transform: scaleX(1);
}
nav .btn {
    display: flex;
    margin-left: 62px;
    gap: 19px;
}
@media screen and (max-width:1600px) {
    nav .link {
        gap: 24px;
    }
    nav .btn {
        margin-left: 24px;
        gap: 12px;
    }
}

nav .btn li a {
    display: block;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 28px;
    color: #fff;
    text-align: center;
}
nav .btn li a::before {
    position: relative;
    display: inline-block;
    margin-top: -4px;
    vertical-align: middle;
    background: no-repeat;
    content: "";
}
nav .btn li.nav_tel a {
    padding: 0 31px;
    font-size: 20px;
    background-color: #4373b8;
}
nav .btn li.nav_tel a::before {
    width: 21px;
    height: 30px;
    margin-right: 14px;
    background-image: url("../images/head_btn_icon01.png");
}
nav .btn li.nav_cont a {
    padding: 0 32px;
    font-size: 18px;
    background-color: #68c5d8;
    transition: 0.2s ease-in-out;
}
nav .btn li.nav_cont a:hover {
    background-color: #4b98ae;
}
nav .btn li.nav_cont a::before {
    width: 28px;
    height: 19px;
    margin-right: 15px;
    background-image: url("../images/head_btn_icon02.png");
}

/* スクロールで追加されるクラス */
header.fixed {
    position:fixed;
    top:0;
    left:0;
    right: 0;
    z-index: 10;
    justify-content: center;
    width: 1200px;
    margin: 10px auto;
    padding: 21px 30px 0 60px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.7);
}
header.fixed nav .btn li.nav_cont a,
header.fixed nav .btn li.nav_tel a {
    padding: 0 22px;
}
header.fixed nav .link {
    gap: 24px;
}
header.fixed nav .btn {
    margin-left: 24px;
    gap: 12px;
}



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

  #mainvisual

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

/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual {
    position: relative;
    display: block;
    height: 280px;
    background-color:#e9e7e7;
    overflow: hidden;
}
#mainvisual .inner {
    position: relative;
    display: table;
    width: 100%;
    height: 260px;
    background: url("../images/mainvisual_headline.jpg") no-repeat center center;
}
@media screen and (min-width:1920px) {
    #mainvisual .inner {
        background-size: cover;
    }
}

/* キャッチフレーズ */
.mainvisual_catch {
    position: absolute;
    border-left-width: 0;
    top: 244px;
}
.mainvisual_catch::after {
    position: relative;
    display: block;
    width: 353px;
    height: 91px;
    margin: 25px 0 0 35px;
    background: url("../images/mainvisual_star.png") no-repeat;
    content: "";
}
.mainvisual_catch p {
    font-size: 48.2px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}
.mainvisual_catch p span {
    display: block;
    margin-bottom: 10px;
}
.mainvisual_catch p em {
    display: block;
    width: 420px;
    height: 35px;
    margin-top: 23px;
    line-height: 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #281D1A;
}
.mainvisual_clinic {
    position: absolute;
    top: 157px;
    right: 50%;
    margin-right: -581px;
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    font-size: 28px;
    font-weight: 500;
    line-height: 2.1;
    letter-spacing: 0;
}
.mainvisual_clinic img {
    display: block;
    margin-top: 52px;
}
.mainvisual_filter {
    position: absolute;
    z-index: 1;
    top: 610px;
    left: 0;
}
.mainvisual_filter::after {
    position: absolute;
    right: -193px;
    bottom: -12px;
    width: 143px;
    height: 123px;
    background: url("../images/mainvisual_filter_deco.png") no-repeat;
    content: "";
}
.mainvisual_filter p {
    position: relative;
    margin-left: -9px;
    transform: rotate(-9deg);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
}
.mainvisual_filter p::before {
    position: absolute;
    transform: rotate(9deg);
    left: 217px;
    bottom: -110px;
    width: 34px;
    height: 98px;
    background: url("../images/mainvisual_filter_arro01.png") no-repeat;
    content: "";
}
@media screen and (min-width:1920px) {
.mainvisual_filter p {
    transform: rotate(-5deg);
}
.mainvisual_filter p::before {
    transform: rotate(5deg);
}
}
.mainvisual_filter ol {
    display: flex;
    gap: 88px;
    margin-top: 163px;
    color: #fff;
}
.mainvisual_filter ol li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.556;
}
.mainvisual_filter ol li:nth-of-type(2) {
    margin-top: -23px;
}
.mainvisual_filter ol li:nth-of-type(3) {
    padding-top: 12px;
}
.mainvisual_filter ol li span {
    display: block;
    margin-bottom: 20px;
    padding: 0 22px 16px 19px;
    font-size: 28px;
    line-height: 1;
    color: #dcab50;
    background: url("../images/mainvisual_filter_line.png") repeat-x left bottom;
}
.mainvisual_filter ol li::after {
    position: absolute;
    right: -53px;
    width: 20px;
    height: 30px;
    background: url("../images/mainvisual_filter_arro02.png") no-repeat;
    content: "";
}
.mainvisual_filter ol li:nth-of-type(1)::after {
    top: 28px;
}
.mainvisual_filter ol li:nth-of-type(2)::after {
    top: 51px;
}
.mainvisual_filter ol li:nth-of-type(3)::after {
    display: none;
}
.mainvisual_txt {
    position: absolute;
    z-index: 1;
    bottom: 245px;
    right: 194px;
    font-size: 10px;
    letter-spacing: 0;
    color: #fff;
    opacity: 0.6;
}

/* 下層ページの見出し */
.mainvisual_headline {
    display: table-cell;
    width: 100%;
    box-sizing: border-box;
    padding: 0 120px;
    letter-spacing: 0.15em;
    vertical-align: middle;
    text-align: left;
    text-shadow: 0 0 5px rgba(255,255,255,0.7);
}
@media screen and (max-width:1420px) {
    .mainvisual_headline {
        padding: 0 calc((100% - 1200px) / 2);
    }
}
.mainvisual_headline p.headline {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}
.mainvisual_headline p.headline_en {
    margin-top: 15px;
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
}

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

  #contents

==================================================================*/ 
main {
    display:block;
}
#container {
}
#contents {
    position: relative;
    padding-top: 150px;
    background: url("../images/top_system_bg.jpg") no-repeat center top;
}
#contents.page_404 {
    background-image: none;
}

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

  $footer

============================================================================*/
footer {
    position: relative;
    width: 100%;
}
.footer_contact {
    text-align: center;
    padding: 148px 0 150px;
}
.footer_contact_tit {
    margin-bottom: 72px;
    font-size: 40px;
    font-weight: 500; 
    line-height: 1;
}
.footer_contact_btn {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.footer_contact_btn li a {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 450px;
    height: 250px;
    padding: 34px 0 0;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
}
.footer_contact_btn li:first-of-type a {
    background-color: #4373b8;
}
.footer_contact_btn li:last-of-type a {
    background: url("../images/foot_mail.png") no-repeat center 98px;
    background-color: #68c5d8;
    transition: 0.2s ease-in-out;
}
.footer_contact_btn li:last-of-type a:hover {
    filter: brightness(110%);
}
.footer_contact_btn li a p {
    margin-bottom: 22px;
    font-size: 30px;
    font-weight: 500; 
    line-height: 1;
}
.footer_contact_btn li a p.foot_tel{
	font-size:36px;
	letter-spacing: 0.05em;
	margin:30px 0 0 ;
}
.footer_contact_btn li a div {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 75px;
    font-size: 15px;
    line-height: 1.33;
}
.footer_contact_btn li:first-of-type a div {
    background-color: #1f4492;
}
.footer_contact_btn li:last-of-type a div {
    background-color: #37a1be;
}

/* 事務所 */
.footer_btm_wrap {
    padding: 120px 0 92px;
    color: #fff;
    background-color: #281d1a;
}
.footer_office {
    display: flex;
    gap: 60px;
    width: 1180px;
    margin: 0 auto;
}
.footer_logo {
    padding-right: 10px;
}
.footer_logo img {
    width: 112px;
    height: 64px;
}
.footer_office_list dt {
    margin-bottom: 19px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
}
.footer_office_list dd {
    font-size: 14px;
    line-height: 1.714;
    white-space: nowrap;
    letter-spacing: 0;
}
.footer_office_list dd:first-of-type {
    margin-bottom: 10px;
}
.footer_office_list dd a {
    color: #fff;
}
.gmap_link {
    display: block;
    box-sizing: border-box;
    width: 173px;
    height: 46px;
    line-height: 42px;
    margin-top: 17px;
    padding-left: 17px;
    font-size: 14px;
    border: 1px solid #fff;
    background: url("../images/foot_link_arrow.png") no-repeat right 19px center;
    transition: 0.2s ease-in-out;
}
.gmap_link:hover {
    background: url("../images/foot_link_arrow_on.png") no-repeat right 10px center;
    background-color: rgba(255, 255, 255, 0.8);
    color: #281d1a;
}

/* コピーライト */
.copy {
    width: 1180px;
    margin: 48px auto 0;
    font-size: 10px;
    line-height: 1;
    text-align: right;
}
.copy a{
	margin:0 0 0 10px;
	display:inline-block;
	color:#fff;
}



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

  タイトル

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

h1 {
    font-size: 12px;
    position: absolute;
    width: calc(100% - 240px);
    max-width: 1600px;
    padding: 0 120px;
    top: 3px;
    right: 0;
    left: 0;
    line-height: 1;
    margin: auto!important;
}
@media screen and (max-width:1420px) {
    h1 {
        width: 100%;
        padding: 0 calc((100% - 1200px) / 2) !important;
    }
}

/*中央寄せ　背景画像あり*/
.tit01 {
    position: relative;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
}

/* 左寄せ　背景画像あり */
.tit02 {
    position: relative;
    top: -17px;
    display: inline-block;
    margin-bottom: 58px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #4373B8;
    text-align: center;
    line-height: 1;
}
.tit02::before,
.tit02::after {
    position: absolute;
    content: "";
}
.tit02::before {
    top: -17px;
    left: -78px;
    width: 56px;
    height: 70px;
    background: url("../images/price_tit_star01.png") no-repeat;
}
.tit02::after {
    top: -28px;
    right: -61px;
    width: 41px;
    height: 56px;
    background: url("../images/price_tit_star02.png") no-repeat;
}
/*左寄せ*/
.tit03 {
  position: relative;
  margin-bottom: 18px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #444;
  font-size: 19.5px;
  font-weight: bold;
  text-align: left;
  border-bottom: dotted 1px #ccc;
  padding-bottom: 10px;
}
/*左寄せ*/
.tit04 {
  position: relative;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  color: #1F2774;
  font-size: 16px;
  font-weight: bold;
}
/*中央寄せ　電球*/
.tit05 {
  position: relative;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 3px solid #000;
  background: #fff;
  margin-bottom: 40px;
}
.tit05:before,
.tit05:after {
  position: absolute;
  content: '';
}
.tit05:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
}
.tit05:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.tit05 i {
  font-size: 30px;
  font-size: 1.7rem;
  line-height: 60px;
  position: absolute;
  z-index: 1;
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 60px;
  text-align: center;
}
.tit05 span:before {
  top: -100px;
  left: calc(50% - 27px);
  width: 55px;
  height: 32px;
  background: url(../images/radiation.svg) top center no-repeat;
  position: absolute;
  content: '';
}
.tit05 span:last-child {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
/* 青い背景+水玉（左右）+文字左寄せ */
.tit06 {
  position: relative;
  margin-bottom: 27px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #00568c;
  font-size: 19px;
  font-weight: bold;
  text-align: left;
  padding: 15px 15px 13px;
  background: #c6e3f1;
}
.tit06::before {
  position: absolute;
  top: -15px;
  left: -8px;
  width: 80px;
  height: 22px;
  background: url(../images/kazari_h_top.png) no-repeat;
  content: "";
  z-index: 1;
}
.tit06::after {
  position: absolute;
  bottom: -13px;
  right: 0;
  width: 80px;
  height: 22px;
  background: url(../images/kazari_h_bottom.png) no-repeat;
  content: "";
  z-index: 1;
}
/* 緑背景+左寄せ+右側に画像 */
.tit07 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  display: block;
  line-height: 1.5;
  margin: 0 0 25px;
  padding: 13px 80px 13px 15px;
  background-color: #daeccc;
  color: #48a565;
  border-radius: 5px;
}
.tit07::before {
  position: absolute;
  width: 73px;
  height: 82px;
  top: -15px;
  right: 3px;
  margin: auto;
  background: url(../images/kazari_dammy01.png);
  background-size: cover;
  z-index: 1;
  content: "";
}
/* 左寄せ+左右に三角 */
.tit08 {
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border: 1px #000 solid;
  padding: 0.5em 0.7em;
}
.tit08::before {
  position: absolute;
  width: 55px;
  height: 45px;
  top: -5px;
  left: -5px;
  margin: auto;
  clip-path: polygon(0 0, 0 45%, 100% 0);
  background-color: #fffe00;
  z-index: -1;
  content: "";
}
.tit08::after {
  position: absolute;
  width: 55px;
  height: 45px;
  bottom: -5px;
  right: -5px;
  margin: auto;
  clip-path: polygon(0 100%, 100% 100%, 100% 45%);
  background-color: #fffe00;
  z-index: -1;
  content: "";
}
/* 左寄せ+斜線 */
.tit09 {
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  background: repeating-linear-gradient(45deg, #fff9e6, #fff9e6 5px, #fbf0d0 5px, #fbf0d0 10px);
  box-shadow: 0px 0px 0px 5px #fbf0d0;
  border: dashed 2px white;
  padding: 0.5em 0.7em 0.4em;
}
.tit09:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #f3dfa4;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
/* 左側に画像+左寄せ */
.tit10 {
  position: relative;
  margin-bottom: 30px;
  padding: 14px 14px 14px 45px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #1F2774;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
}
.tit10::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: #ffa3a3;
  box-shadow: 0 0.6em 0 #93e099, 0.6em 0 0 #8adaf9, 0.6em 0.6em 0 #efc378;
  content: "";
}
/* 左側に画像+左寄せ */
.tit11 {
  position: relative;
  margin-bottom: 30px;
  padding: 0 0 0 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #1F2774;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  border-left: 5px solid #82c79a;
}
.tit11::before {
  position: absolute;
  left: -5px;
  bottom: 0;
  content: '';
  width: 5px;
  height: 50%;
  background-color: #39588e;
}
/* 左側に電球+左寄せ */
.tit12 {
  position: relative;
  background: #f4f4f4;
  padding: 7px 5px 7px 70px;
  font-size: 20px;
  color: #474747;
  border-radius: 25px 15px 15px 25px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 2;
}
.tit12:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  display: inline-block;
  position: absolute;
  padding: 0em;
  color: #fff;
  background: #ff6363;
  font-weight: normal;
  width: 55px;
  text-align: center;
  height: 55px;
  line-height: 55px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
}
/* 左寄せ+右側に背景画像 */
.tit13 {
  display: block;
  margin-bottom: 20px;
  padding: 2px 0 0;
  line-height: 2.6;
  border-top: 3px solid #333;
  border-bottom: 1px dashed #333;
  font-size: 20px;
  font-weight: 600;
  background: url(../images/kazari_dammy01.png) right center no-repeat;
}
/* 左側に●+左寄せ */
.tit14 {
  position: relative;
  margin-bottom: 70px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #0d6fb8;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding-left: 1.5em;
}
.tit14:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  position: absolute;
  font-size: 1em;
  left: 0;
  color: #e69cbd;
}
/* 中央寄せ+上に画像+タイトル+下にサブタイトル */
.tit15 {
  position: relative;
  margin-bottom: 30px;
  padding: 70px 0 15px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #583a21;
  font-size: 30px;
  z-index: 100;
}
.tit15::before {
  position: absolute;
  width: 53px;
  height: 59px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url(../images/kazari_dammy01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  content: "";
}
.tit15 span {
  display: block;
  position: relative;
  letter-spacing: 2.5px;
  z-index: 2;
  font-weight: 500;
  font-style: normal;
  color: #583a21;
  font-size: 17px;
}
/* 左寄せ+左側に●+丸い背景 */
.tit16 {
  color: #505050;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;
  background: #dbebf8;
  vertical-align: middle;
  border-radius: 25px 3px 3px 25px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.tit16:before {
  content: '●';
  color: #fff;
  margin-right: 8px;
}
/* 左寄せ+下線 */
.tit17 {
  border-bottom: solid 3px #87ceeb;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 15px;
}
.tit17:before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 15%;
}
/* 上下線 */
.tit18{
  padding: 15px 30px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
/* 吹き出し+背景色あり */
.tit19 {
  position: relative;
  padding: 15px 30px;
  color: #fff;
  border-radius: 10px;
  background: #1f2774;
}

.tit19:after {
  position: absolute;
  bottom: -9px;
  left: 15px;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #1f2774 transparent transparent transparent;
}
/* 下線のみの吹き出し */
.tit20 {
  position: relative;
  padding: 15px 30px;
  border-bottom: 3px solid #1f2774;
  font-size: 24px;
}

.tit20:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #1f2774 transparent transparent transparent;
}

.tit20:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
/* ナンバー+タイトル */
.tit21 {
  position: relative;
  overflow: hidden;
  padding: 20px 30px  20px 130px;
  border-top: 3px solid #000;
  font-size: 24px;
}
.tit21:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #000;
}
.tit21 span {
  font-size: 36px;
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #fff;
}
/* 下に小さな下線 */
.tit_box01{
  position: relative;
  margin-bottom: 30px;
}
.tit_box01 h2 {
  font-size: 30px;
  position: relative;
  text-align: center;
}

.tit_box01 p {
  font-size: 18px;
  text-align: center;
}

.tit_box01:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #fa4141;
}
/*==================================================================

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

==================================================================*/
/*院長略歴*/
.list01 {
  margin: 0 0 15px;
  padding: 0;
  border-width: 0 1px 1px;
}
.list01 dt {
  margin: 0;
  padding: 14px 3px 0px;
}
.list01 dd {
  margin: -38px 0 0;
  padding: 12px 4px 10px 100px;
  border-bottom: 1px dotted #ACACAC;
}
/*院長略歴　年月無し*/
.list02 {
  margin: 0 0 15px;
  border-width: 0 1px 1px;
}
.list02 li {
  margin: 0 0px 0px;
  padding: 6px 4px 6px 0;
  border-bottom: 1px dotted #ddd;
}
/*まる*/
.list03{
}
.list03 li{
  position:relative;
  margin-bottom:10px;
  padding-left:15px;
}
.list03 li:last-child{
  margin-bottom:0;
}
.list03 li:before{
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #E0D0BF;
  border: 1px solid #E0D0BF;
  border-radius: 100%;
  content: '';
}
.list03 li i{
  margin-right:8px;
}
/*さんかく*/
.list04 li{
  position: relative;
  margin-bottom:15px;
  padding-left:22px;
  color:#223a70;
}
.list04 li:before{
  position:absolute;
  top:0.5em;
  left:7px;
  width: 0;
  height: 0;
  border:5px solid transparent;
  border-left: 5px solid #4A577F;
  content:"";
}
/*やじるし*/
.list05 li{
  position:relative;
  margin-bottom: 10px;
  line-height:1;
  padding-left:15px;
}
.list05 li:before{
  position:absolute;
  left:0;
  top:0.3em;
  height:5px;
  width:5px;
  transform:rotate(45deg);
  background-color: transparent;
  border-top:1px solid #333;
  border-right:1px solid #333;
  content:"";
}
/* まる & 背景 */
.list06{
  padding:35px 15px 25px 45px;
  background-color:#f7f7f7;
}
.list06:after {
  display: block;
  clear: both;
  content: "";
}
.list06 li{
  position:relative;
  float:left;
  margin-bottom:15px;
  padding-left:0.9em;
  padding-right:5%;
  
}
.list06 li:before{
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #DAC58B;
  border: 1px solid #DAC58B;
  border-radius: 100%;
}
/*まる & 枠 */
.list07{
  border: 3px solid #eee;
  padding: 30px ;
}
.list07 li{
  padding-left:0.9em;
  margin-bottom:10px;
  position:relative;
}
.list07 li:last-child{
  margin-bottom:0;
}
.list07 li:before{
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #E0D0BF;
  border: 1px solid #E0D0BF;
  border-radius: 100%;
}
.list07 li i{
  margin-right:8px;
}
/*チェック*/
.list08{
  margin-bottom:30px;
  padding:35px 10px 20px 45px;
  background-color:#f7f7f7;
}
.list08:after{
  display: block;
  clear: both;
  content: "";
}
.list08 li{
  position:relative;
  float:left;
  margin-right: 5%;
  margin-bottom:20px;
  margin-left: 28px;
  border-bottom: 1px dotted #cdcdcd;
}
.list08 li:before{
  display: block;
  position: absolute;
  top: 3px;
  left: -28px;
  width: 20px;
  height: 20px;
  background-image:url(../images/check.svg);
  background-repeat:no-repeat;
  background-position:left center;
  content: '';
}
.list08-box{
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  padding: 30px;
  background: #b8bfff;
}
.list08-box .list08 {
  margin-bottom: 0;
  padding: 35px 25px 20px 50px;
  background-color: #fff;
  font-size: 17px;
}
.list08-box .list08 li {
  width: auto;
}
.list08-box::before {
  position: absolute;
  width: 65px;
  height: 50px;
  top: -5px;
  left: -5px;
  margin: auto;
  clip-path: polygon(0 0, 0 85%, 100% 0);
  background-color: #1f2774;
  z-index: 0;
  content: "";
}
.list08-box::after {
  position: absolute;
  width: 65px;
  height: 50px;
  bottom: -5px;
  right: -5px;
  margin: auto;
  clip-path: polygon(0 100%, 100% 100%, 100% 15%);
  background-color: #1f2774;
  z-index: 0;
  content: "";
}
/*数字＋背景色*/
.list09 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list09 li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  line-height: 1.4;
  font-size: 16px;
  border-bottom: #1f2774 1px dashed;
}

.list09 li::before{
  counter-increment: section;
  content: counter(section);
  padding-right: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1F2774;
}
/*●の数字＋背景色*/
.list10 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list10 li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  line-height: 1.4;
  font-size: 16px;
  border-bottom: #1f2774 1px dashed;
}

.list10 li::before{
  display: inline;
  counter-increment: section;
  content: counter(section);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background-color: #1F2774;
  border-radius: 20px;
  padding: 5px 11px;
  margin-right: 10px;
}
/*数字の右側に）＋背景色*/
.list11 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list11 li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  line-height: 1.4;
  font-size: 16px;
  border-bottom: #1f2774 1px dashed;
}

.list11 li::before{
  display: inline;
  counter-increment: section;
  content: counter(section);
  font-size: 17px;
  font-weight: 700;
  color: #1F2774;
  margin-right: 20px;
}
.list11 li::after{
  position: absolute;
  content: ")";
  color: #1F2774;
  font-size: 17px;
  left: 20px;
}
/*==================================================================

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

==================================================================*/
/*ボタン ゴースト*/
.btn01 a {
  display: inline-block;
  position: relative;
  padding: 15px 25px;
  line-height: 1;
  border: 1px solid #33409a;
  text-align: center;
  color: #33409a;
  font-weight: bold;
  transition: ease-in-out 0.1s;
}
.btn01 a i {
  margin-right: 10px;
  color: #33409a;
  transition: ease-in-out 0.1s;
}
.btn01 {
  position: relative;
  top: 10px;
  margin-bottom: 10px;
}
.btn01 a:hover{
  background-color: #33409a;
  color: #fff;
}
.btn01 a:hover i {
  color: #fff;
}
/* btn02 */
.btn02 a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  background: #a5cd95;
  box-shadow: 0px 5px 0 #74aa5f;
  padding: 16px;
  transition: 0.2s all ease 0s;
}
.btn02 a:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: 0px 1px 0 #74aa5f;
}
.btn02 a i {
  margin-right: 7px;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
/* btn03 */
.btn03 a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #00408f;
  background: #00408f;
  color: #fff;
  font-weight: bold;
  transition: ease-in-out 0.2s;
  border-radius: 25px;
  overflow: hidden;
}
.btn03 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn03 a span {
  z-index: 2;
  position: relative;
}
.btn03 a i {
  margin-right: 7px;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.btn03 a:hover{
  color:#00408f;
}
.btn03 a:hover::before {
  transform-origin: left top;
  color:#00408f;
  transform: scale(1, 1);
}
/*btn04*/
.btn04{
}
.btn04 a{
  position: relative;
  display:inline-block;
  padding:8px 20px;
  color:#fff;
  background: #00408f;
  font-weight:bold;
  transition:ease-in-out 0.2s ;
}
.btn04 a i{
  margin-right:7px;
}
.btn04 a:hover{
  color:#fff;
}
.btn04 a span{
  z-index: 2;
  position: relative;
}
.btn04 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #6baaea;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn04 a:hover::before {
  transform: scale(1, 1);
}
/*btn05*/
.btn05{

}
.btn05 a{
width: 130px;
  display:inline-block;
  position: relative;
  padding: 9px 0 7px;
font-family: serif;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
transition:ease-in-out 0.2s ;
}
.btn05 a:before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  top: 0;
  left:0;
  transition:0.5s;
  background: -webkit-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: -moz-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: -o-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: linear-gradient(90deg, #0068b7 0%, #208ee1 100%);
}
.btn05 a:after{
  background: -webkit-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: -moz-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: -o-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: linear-gradient(90deg, #59b4f9 0%, #94d0fd 100%);
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:1;
  top: 0;
  left:0;
}
.btn05 a:hover:before{
  opacity:0;
}

.btn05 p {
  z-index: 5;
  position: relative;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}
.btn05 p img{
  position: absolute;
  right: 15px;
  top: 9px;
}

.btn05 a:hover img {
  opacity: 1;
  transform: translateX(0.3em);
  transition: ease-in-out 0.4s;
}
/*btn06*/
.btn06 {
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn06 a i {
  margin-right: 7px;
}
.btn06 a {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0 #000;
  box-shadow: 4px 4px 0 #000;
  padding: 10px;
}

.btn06 a:hover {
  -webkit-box-shadow: -4px -4px 0 #000;
  box-shadow: -4px -4px 0 #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/*btn07*/
.btn07 a {
  position: relative;
  display: block;
  padding: 0.8em;
  text-align: center;
  border: 1px solid #9C27B0;
  text-decoration: none;
  outline: none;
  transition: all .4s;
  font-weight: 600;
}
.btn07 a i {
  margin-right: 7px;
}

.btn07 a::before,
.btn07 a::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 2;
  content: '';
  transition: all .4s;
}
.btn07 a::before {
  border-top: 1px solid #FF5722;
  border-bottom: 1px solid #FF5722;
  transform: scale(0, 1);
}
.btn07 a::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale(1, 0);
}
.btn07 a:hover {
  color: #FF5722;
}
.btn07 a:hover::after,
.btn07 a:hover::before {
  transform: scale(1);
}
.btn01_arrow{
  position:relative;
  left:0px;
  margin-right:14px;
  transition:0.2s ease-in, 0.22s ease-out;
}
.btn01_arrow img{
  opacity:1 !important;
}
.btn01_arrow,
.btn01_arrow img{
  width: 18px;
  height: 13px;
}
.btn01 a:hover .btn01_arrow{
  left:4px;
}
/*==================================================================

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

==================================================================*/
/* 画像を右寄せ　※画像サイズはhtmlで調整 */
.img_fr{
  display:block;
  position:relative;
  float:right;
  margin-left:30px;
  margin-bottom:0 !important;
  text-align:center;
}
.img_fr img{
  border-radius:3px;
  margin-bottom:7px;
  max-width: 300px;
  height: auto;
}
/* 画像に対して説明文がある場合は、dlで囲い、dtに画像を、ddにテキストを使う */
.img_fr dd{
  padding-left:20px;
  line-height:1.3;
  font-size:15px; 
  font-weight:bold;
  color: #1F2774;
  text-align:left;
}
/*==================================================================

  $アンカーリンンク
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* 2個並び */
.ank02{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ank02 li{
  width: 48%;
  margin: 0 1% 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.ank02 li a{
  width: 100%;
  height: 100%;
  padding:10px 10px 20px;
  border:1px solid #00408f;
  font-weight:bold;
  font-size:13px;
  color:#00408f;
  text-align:center;
  vertical-align:middle;
  transition:0.1s ease-in-out;
}
.ank02 li a:hover{
  background-color:#00408f;
  color:#fff;
}
.ank02 li i{
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  margin:auto;
}
/* 3個並び */
.ank03{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ank03 li{
  width: 30%;
  margin: 0 1% 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.ank03 li a{
  width: 100%;
  height: 100%;
  padding:10px 10px 20px;
  border:1px solid #00408f;
  font-weight:bold;
  font-size:13px;
  color:#00408f;
  text-align:center;
  vertical-align:middle;
  transition:0.1s ease-in-out;
}
.ank03 li a:hover{
  background-color:#00408f;
  color:#fff;
}
.ank03 li i{
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  margin:auto;
}
/* 4個並び */
.ank04{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ank04 li{
  width: 23%;
  margin: 0 1% 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.ank04 li a{
  width: 100%;
  height: 100%;
  padding:10px 10px 20px;
  border:1px solid #00408f;
  font-weight:bold;
  font-size:13px;
  color:#00408f;
  text-align:center;
  vertical-align:middle;
  transition:0.1s ease-in-out;
}
.ank04 li a:hover{
  background-color:#00408f;
  color:#fff;
}
.ank04 li i{
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  margin:auto;
}
/*==================================================================

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

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

/* --------------layout共通タイトル-------------- */
.layout_tit{
  color: #1F2774;
  font-size: 18px;
  font-weight: bold;
}
.layout_tit em{
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
.layout_tit span{
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
/* layout小タイトル */
.layout_tit_02{
  color: #1F2774;
  font-size: 18px;
  font-weight: bold;
}
/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 {
  position: relative;
  margin: 0 0 15px;
}
.layout01:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  content: "";
}
.layout01 dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
.layout01 dl:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  content: "";
}
.layout01 dt {
  width: 30%;
  background-color: #f7f7f7;
  letter-spacing: 0.1em;
  color: #1F2774;
  font-weight: bold;
  font-size: 120%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.5;
}
.layout01 dt em {
  display: block;
  width: 100%;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-size: 150%;
  font-weight: normal;
  color: #C3AF97;
}
.layout01 dt span{
  font-size: 75%;
}

.layout01 dd {
  width: 70%;
  box-sizing: border-box;
  padding: 3%;
}
/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02 {
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.layout02::after {
  display: block;
  clear: both;
  content: "";
}
.layout02 .layout02_box {
  width: 49%;
  margin: 0 2% 0 0;
  margin-bottom: 25px;
  padding: 4%;
  background-color: #f7f7f7;
  box-sizing: border-box;
}
.layout02 .layout02_box:nth-child(even) {
  margin-right: 0;
}
.layout02 .layout02_box .layout02_text {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #1F2774;
}
.layout02 .layout02_text img{
  width: 100%;
}
/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03 {
  margin: 0 0 15px;
}
.layout03 .layout03_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout03 .layout03_title {
  width: 27%;
  padding: 2%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.layout03 .layout03_title img {
  width: 100%;
  height: auto;
}
.layout03 .layout03_text {
  width: 73%;
  padding: 1% 3%;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 {
  margin: 0 0 15px;
}
.layout04 .layout04_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout04 .layout04_title {
  width: 27%;
  padding-right: 2%;
  display: flex;
  align-items: center;
}
.layout04 .layout04_title img {
  width: 100%;
}
.layout04 .layout04_text {
  width: 73%;
  padding: 3%;
  background-color: #fff;
}
/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05 {
  margin: 0 0 15px;
}
.layout05 .layout05_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout05 .layout05_title {
  padding: 2%;
  width: 25%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.layout05 .layout05_title img {
  width: 100%;
  padding-bottom: 10px;
  height: auto;
  display: block;
}
.layout05 .layout05_text1 {
  padding: 1% 3%;
  vertical-align: top;
}
.layout05 .layout05_text1:nth-child(2) {
  width: 40%;
}
.layout05 .layout05_text1:nth-child(3) {
  width: 40%;
  border-left: 1px solid #e2e2e2;
}
.layout05 .layout05_title h4{
  font-size: 18px;
  font-weight: bold;
}
.layout05 .layout05_text1 h5 {
  font-weight: bold;
  margin: 0 0 5px;
}
.layout05 .layout05_text1 h4 em,
.layout05 .layout05_text1 h5 em {
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
.layout05_text1 {}

.layout05_text1 ul {
  margin-bottom: 15px;
}
.layout05 ul.list03 li{
  margin: 0;
}
/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06 {
  margin: 0 0 15px;
}
.layout06 .layout06_box {
  display: flex;
  padding-bottom: 5px;
  position: relative;
}
.layout06 .layout06_box:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  content: "";
}
.layout06 .layout06_box:last-child:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  content: "";
}
.layout06 .layout06_title {
  width: 30%;
  padding: 0 3%;
  background-color: #f7f7f7;
  vertical-align: middle;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  font-size: 120%;
}
.layout06 .layout06_title h4{
  letter-spacing: 0.1em;
  color: #1F2774;
  font-weight: bold;
  text-align: center;
}
.layout06 .layout06_box:last-of-type {
  padding: 0;
}
/* 数字 */
.layout06 .layout06_title em {
  display: block;
  width: 100%;
  line-height: 1;
  margin: 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 170%;
  font-weight: normal;
  color: #C3AF97;
}
.layout06 .layout06_text1 {
  padding: 2% 3%;
  vertical-align: top;
}
.layout06 .layout06_text1:nth-child(2) {
  width: 35%;
}
.layout06 .layout06_text1:nth-child(3) {
  width: 35%;
  border-left: 1px solid #e2e2e2;
}
.layout06 .layout06_text1 h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px;
}
.layout06_text1 {}

.layout06_text1 ul {}

.layout06_text1 ul li span {}
/* 3つ並びのレイアウト。 */
.layout07 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.layout07::after {
  display: block;
  clear: both;
  content: "";
}
.layout07 .layout07_box {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  box-sizing: border-box;
  padding: 3%;
  border-radius: 10px;
  background-color: #f7f7f7;
}
.layout07 .layout07_box:nth-child(3n) {
  margin-right: 0;
}
.layout07 .layout07_box .layout07_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.layout07 .layout07_box .layout07_title em {
  margin-right: 8px;
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}
.layout07 .layout07_box .layout07_text {
  line-height: 1.5;
}
/* 3つ並びのレイアウト。矢印付き */
.layout08 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.layout08 .layout08_box {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  padding: 3%;
  border-radius: 10px;
  background-color: #f7f7f7;
  box-sizing: border-box;
}
.layout08 .layout08_box:nth-child(3n) {
  margin-right: 0;
}
.layout08 .layout08_box::before {
  position: absolute;
  right: 0px;
  left: 0;
  height: 7px;
  width: 7px;
  transform: rotate(135deg);
  background-color: transparent;
  border-top: 2px solid #1F2774;
  border-right: 2px solid #1F2774;
  content: "";
  bottom: -16px;
  margin: auto;
}
.layout08 .layout08_box:nth-child(3n)::before {
  display: none;
}
.layout08 .layout08_box .layout08_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.layout08 .layout08_box .layout08_title em {
  margin-right: 8px;
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}
.layout08 .layout08_box .layout08_text {
  line-height: 1.5;
}
/* layout10 */
.layout10{
  position: relative;
}
.layout10::before{
  width: 1px;
  height: calc(100% - 16%);
  border-right: #71b4d7 dotted 4px;
  position: absolute;
  left: 62px;
  top: 8%;
  z-index: 1;
  content: "";
}
.course_ablation::before{
  height: calc(100% - 8%);
  top: 8%;
}
.layout10 .flow_box{
  display: flex;
  display: -ms-flex;
  padding: 4%;
  background: #fff;
}
.layout10 .flow_box:nth-child(even){
  background: #dfebf5;
}
.layout10 .flow_box:nth-child(odd){
  background: #f7f8f9;
}
.layout10 .flow_box .number{
  display: flex;
  display: -ms-flex;
  justify-content: center;
  justify-content: -ms-center;
  align-items: center;
  align-items: -ms-center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 4%;
  background: #1f2774;
  border-radius: 50%;
  line-height: 1;
  color: #fff;
  font-size: 28px;
}
.layout10 .flow_box .layout10_box{
  width: 90%;
}

.layout10 .flow_box .layout10_text .title{
  background: #1f2774;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.layout10 .flow_box .layout10_text .title span{
  position: relative;
}
.layout10 .flow_box .layout10_text .title span::after{
  display: inline-block;
  content: "|";
  margin: 0 12px;
}
.layout10 .flow_box .layout10_text .title2{
  padding-bottom: 2px;
  padding-top: 16px;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px dashed rgba(35,24,21,0.4);
}
.layout10 .flow_box .layout10_text .list03{
  margin-top:8px;
}
.layout10 .flow_box .layout10_text .list03 li{
  margin-bottom: 0;
}
.layout10 .flow_box .layout10_text .list03 li::before{
  background-color: #1f2774;
  border: 1px solid #1f2774;
}

.layout10 .flow_box .layout10_text .list_column{
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
}
.layout10 .flow_box .layout10_text .list_column li{
  margin-right: 5%;
}
/*注意書き*/
.caution {
  background:#f4f5fb;
  display: block;
  position: relative;
  padding: 25px;
  border-radius: 15px;
}
.caution span {
  width: 55px;
  height: 55px;
  background: #1F2774;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  left: -5px;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}
.caution span::before {
  position: absolute;
  width: 15px;
  height: 20px;
  bottom: -3px;
  right: -3px;
  margin: auto;
  clip-path: polygon(100% 85%, 40% 0, 0 53%);
  background-color: #1F2774;
  z-index: 1;
  content: "";
}
.caution p:nth-of-type(1) {
  font-size: 18px;
  margin: 0 0 15px;
  padding: 0 0 0 40px;
  font-weight: 600;
  color: #1F2774;
}
/*==================================================================

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

==================================================================*/
/* 診療時間（医院案内、アクセス共通） */
.footer_info_sche{
  width:506px;
  margin-top:4px;
}
.schedule table{
  width:100%;
}
.schedule table tr:first-child td{
}
.schedule p{
  margin-left:22px;
  margin-bottom:2px;
}
.schedule p strong{
  color:#1F2774;
}
.schedule p:last-child{
  margin-bottom:0;
}
.schedule_note{
}
.schedule_note li{
  display:block;  
}
/*フッターの診療時間*/
.tb01{
  margin-bottom:12px;
  border-spacing: 0;
  border-collapse: collapse;
  white-space:nowrap;
}
.tb01 td,.tb01 th{
  border-bottom:1px solid #fff;
  vertical-align: middle;
}
.tb01 th:first-child{
}
.tb01 th{
  width: 30%;
  height: 50px;
  line-height:1;
  white-space:nowrap;
  text-align:center;

}
.tb01 td{
  width: 10%;
  text-align: center;
}

/*本文中のテーブル*/
.tb03 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: collapse;
  border: solid 1px #00408f;
}
.tb03 td,
.tb03 th {
  padding: 8px 20px;
  border: 1px solid #00408f;
}
.tb03 th {
  font-weight: bold;
  text-align: left;
  background-color: #FAFAFA;
}
.tb03 th span {
  font-size: 13px;
}
.tb03 td {
  background-color: #ffffff;
  text-align: center;
}

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

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

==================================================================*/
.box1{
  position:relative;
  width:1200px;
  margin:0 auto 100px;
}
.box2{
  margin-bottom:100px;
}
.text {
  position:relative;
  margin-bottom:50px;
}
.text p {
  margin-bottom:1em;
}
.tit_text{
  padding: 30px 0;
  margin-bottom: 20px;
}

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

  .top_trouble

==================================================================*/
.top_trouble {
    position: relative;
    padding: 150px 0 190px;
    background-color: #4373B8;    
}
.top_trouble::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 31px 31px 0 31px;
    border-color: #281d1a transparent transparent transparent;
    content: "";
}
.top_trouble::after {
    position: absolute;
    bottom: 66px;
    right: 50%;
    margin-right: -178px;
    width: 304px;
    height: 160px;
    border-width: 31px 31px 0 31px;
    background: url("../images/top_trouble_dedo.png") no-repeat;
    content: "";
}
.top_trouble h2 {
    margin-bottom: 100px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
}
.top_trouble_list {
    display: flex;
    justify-content: center;
    gap: 39px;
}
.top_trouble_list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 10px 10px 10px 1px #335fa8;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0;
    text-align: center;
}

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

  .top_system

==================================================================*/
.top_system {
    position: relative;
    padding: 135px 0 150px;
    overflow: hidden;
    background: url("../images/top_system_bg.jpg") no-repeat center top;
}
.top_system::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 31px 31px 0 31px;
    border-color: #4373B8 transparent transparent transparent;
    content: "";
}
.top_system::after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1920px;
    height: 502px;
    background-color: #281d1a;
    clip-path: polygon(0 0, 100% 300px, 100% 100%, 0% 100%);
    content: "";
}
.top_system h2 {
    margin-bottom: 76px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.625;
    text-align: center;
}
.top_system_list {
    width: 1000px;
    margin: 0 auto 70px;
}
.top_system_list li {
    position: relative;
    display: flex;
    box-sizing: border-box;
    height: 169px;
    margin-bottom: 60px;
    padding: 0 0 0 100px;
    border-bottom: 1px solid #ccc;
}
.top_system_list li:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.top_system_list li::after {
    position: absolute;
    content: "";
    background: no-repeat;
}
.top_system_list li:nth-of-type(1)::after {
    top: -6px;
    right: 70px;
    width: 119px;
    height: 102px;
    background-image: url("../images/top_system_deco01.png");
}
.top_system_list li:nth-of-type(2)::after {
    top: -1px;
    right: 40px;
    width: 165px;
    height: 117px;
    background-image: url("../images/top_system_deco02.png");
}
.top_system_list li:nth-of-type(3)::after {
    top: 24px;
    right: 70px;
    width: 102px;
    height: 77px;
    background-image: url("../images/top_system_deco03.png");
}
.top_system_list li span {
    position: relative;
    display: block;
    margin-right: 88px;
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0;
    color: #4373b8;
}
.top_system_list li span::before {
    position: relative;
    display: block;
    width: 44px;
    height: 27px;
    margin-bottom: -6px;
    background: url("../images/top_system_point.png") no-repeat;
    content: "";
}
.top_system_list li p {
    padding-top: 9px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: 0;
    margin-right: 240px;
}
.top_system_list li:nth-of-type(3) p {
    padding-top: 34px;
}
.top_function {
}
.top_function h3 {
    margin-bottom: 45px;
    font-size: 30px;
    font-weight: 500;
    line-height: 84px;
    text-align: center;
    color: #4373b8;
    background: url("../images/top_function_tit_deco.png") no-repeat center top;
}
.top_function_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 1100px;
    margin: 0 auto;
}
.top_function_list dl {
    position: relative;
    width: 340px;
}
.top_function_list dl:nth-of-type(1)::before {
    position: absolute;
    top: -23px;
    left: -23px;
    width: 112px;
    height: 59px;
    content: "";
    background: url("../images/top_function_ribon.png") no-repeat;
}
.top_function_list dl dt {
    line-height: 85px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border-radius: 15px 15px 0 0;
}
.top_function_list dl:nth-of-type(odd) dt {
    background-color: #68c5d8;
}
.top_function_list dl:nth-of-type(even) dt {
    background-color: #4373b8;
}
.top_function_list dl dd {
    box-sizing: border-box;
    height: 255px;
    padding: 22px 40px 0;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.875;
    border-radius: 0 0 15px 15px;
    background: no-repeat right 40px bottom 20px;
}
.top_function_list dl:nth-of-type(odd) dd {
    background-color: #d7f0f5;
}
.top_function_list dl:nth-of-type(even) dd {
    background-color: #d7e1f0;
}
.top_function_list dl:nth-of-type(1) dd {
    background-image: url("../images/top_system_list_deco01.png");
}
.top_function_list dl:nth-of-type(2) dd {
    background-image: url("../images/top_system_list_deco02.png");
}
.top_function_list dl:nth-of-type(3) dd {
    background-image: url("../images/top_system_list_deco03.png");
}
.top_function_list dl:nth-of-type(4) dd {
    background-image: url("../images/top_system_list_deco04.png");
}
.top_function_list dl:nth-of-type(5) dd {
    background-image: url("../images/top_system_list_deco05.png");
}
.top_function_list dl:nth-of-type(6) dd {
    background-image: url("../images/top_system_list_deco06.png");
}

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

  .top_flow

==================================================================*/
.top_flow {
    position: relative;
    padding: 150px 0 350px;
    overflow: hidden;
}
.top_flow::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 31px 31px 0 31px;
    border-color: #281d1a transparent transparent transparent;
    content: "";
}
.top_flow::after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1920px;
    height: 600px;
    background: url("../images/top_flow_bg.jpg") no-repeat center center;
    background-size: cover;
    clip-path: polygon(0 300px, 100% 0, 100% 100%, 0% 100%);
    content: ""; 
}
.top_flow h2 {
    margin-bottom: 100px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}
.top_flow_list {
    position: relative;
    width: 1000px;
    margin: 0 auto;
}
.top_flow_list::before {
    position: absolute;
    z-index: 1;
    top: -148px;
    right: 50%;
    margin-right: -641px;
    width: 245px;
    height: 188px;
    background: url("../images/top_flow_deco.png") no-repeat;
    content: "";
}
.top_flow_list li {
    position: relative;
    display: flex;
    box-sizing: border-box;
    height: 140px;
    margin-bottom: 60px;
    padding: 30px 50px 0 8px;
    border-radius: 15px;
    background-color: #ebebeb;
}
.top_flow_list li::before {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 23px;
    background: url("../images/top_flow_arrow.png") no-repeat; 
    content: "";
}
.top_flow_list li:last-of-type::before {
    display: none;
}
.top_flow_list li span {
    position: relative;
    width: 118px;
    text-align: center;
    font-family: din-2014, sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    height: 80px;
    border-right: 2px solid #d3d1d1;
}
.top_flow_list li span::before {
    position: relative;
    display: block;
    width: 42px;
    height: 23px;
    margin: 2px 0 -1px 39px;
    background: url("../images/top_flow_step.png") no-repeat;
    content: "";
}
.top_flow_tit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 382px;
    height: 80px;
    padding-left: 34px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    color: #4373B8;
}
.top_flow_txt {
    width: 420px;
    margin: -3px 0 0 auto;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.875;
}
.top_flow_logo {
    position: absolute;
    left: 50%;
    margin-left: -756px;
    bottom: -36px;
}


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

  .top_flow

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

.top_company {
    position: relative;
    width: 100%;
    margin-top: -300px;
    padding: 336px 0 38px;
    overflow: hidden;
}
.top_company_bg {
    position: absolute;
    width: 100%;
    min-width: 1920px;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #281d1a;
    clip-path: polygon(0 300px, 100% 0, 100% 100%, 0% 100%);
}
.top_company_bg::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: calc(50% - 360px);
    height: 100%;
    background: url("../images/top_company_bg.jpg") no-repeat left top;
    content: "";
}
@media screen and (min-width:3120px) {
    .top_company::before {
        background-size: cover;
    }
}
.top_company h2 {
    position: relative;
    margin-bottom: 80px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.625;
    color: #fff;
    text-align: center;
}
.top_company h2 span {
    color: #dcab50;
}
.top_company .inner {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;
}
.top_company_txt {
    width: 492px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 2.375;
    color: #fff;
}
.top_company_txt .note {
    margin-top: 34px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.top_company_number {
    position: relative;
    padding-top: 158px;
}
.top_company_number li {
    display: flex;
    align-items: baseline;
    line-height: 1;
}
.top_company_number li:first-of-type {
    margin-bottom: 56px;
}
.top_company_number li span {
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0;
    color: #fff;
}
.top_company_number li:nth-of-type(1) span:first-of-type {
    margin-right: 12px;
}
.top_company_number li:nth-of-type(2) span:first-of-type {
    position: relative;
    top: -56px;
    margin-right: 31px;
    line-height: 1.421;
}
.top_company_number li span:last-of-type {
    margin-left: 6px;
}
.top_company_number li span i {
    position: relative;
    top: -5px;
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
    font-style: normal;
}
.top_company_number li em {
    display: inline-block;
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 110px;
    letter-spacing: 0;
    color: #dcab50;
}


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

  $company

==================================================================*/
.company_outline {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 52px;
}
/* .company_outline::after {
    position: absolute;
    right: -44px;
    bottom: 0;
    width: 255px;
    height: 156px;
    background: url("../images/company_deco.png") no-repeat;
    content: "";
} */
/* 会社概要 */
.tb02 {
    width: 100%;
    border-spacing: 0;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.625;
}
.tb02 th {
    width: 292px;
    padding: 17px 0 17px 148px;
    border-bottom: 1px solid #c9c7c6;
    vertical-align: top;
}
.tb02 td {
    padding: 17px 0 17px 20px;
    border-bottom: 1px solid #c9c7c6;
    vertical-align: top;
}
.tb02 tr:last-of-type th,
.tb02 tr:last-of-type td {
    border-bottom: none;
}
.tb02 th.nb, .tb02 td.nb {
    border-bottom: none;
}
.tb02 td dl {
    margin-bottom: 35px;
}
.tb02 td dl:last-of-type {
    margin-bottom: 9px;
}
.tb02 td a, .tb02 td a:hover {
    color: #281D1A;
}
.group_logo {
    padding-bottom: 12px;
    margin-top: 20px;
}
.group_logo img {
    width: 115px;
    height: 41px;
}
.tb02 td li {
    text-indent: -1em;
    margin-left: 1em;
    margin-bottom: 16px;
}
.tb02 td li:last-of-type {
    margin-bottom: 0;
}


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

  $price

==================================================================*/
.tit01.price {
    margin-bottom: 70px;
}
.price_list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 150px;
}
.price_list dl {
    width: 350px;
    text-align: center;
}
.price_list dt {
    line-height: 50px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: #4373b8;
}
.price_list dd {
    box-sizing: border-box;
    height: 120px;
    padding-top: 22px;
    background-color: #e6ecf6;
}
.price_list dd .main_price {
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 45px;
    letter-spacing: 0.03em;
    line-height: 1;
}
.price_list dd .main_price em {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.price_list dd .sub_price {
    margin-top: 9px;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1;
}
.price_service {
    position: relative;
    box-sizing: border-box;
    width: 1000px;
    margin: 0 auto 146px;
    padding: 0 100px 59px;
    border-radius: 20px;
    text-align: center;
    background-color: #e6ecf6;
}
.price_service::after {
    position: absolute;
    bottom: -35px;
    right: -87px;
    width: 244px;
    height: 187px;
    background: url("../images/price_deco.png") no-repeat;
    content: "";
}
.price_service_list {
    text-align: left;
}
.price_service_list {
    counter-reset: section;
}
.price_service_list li {
    padding: 0 0 0 72px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 100px;
    border-bottom: 1px solid #bdcee7;
}
.price_service_list li:last-of-type {
    border-bottom: none;
}
.price_service_list li::before {
    display: inline-block;
    counter-increment: section;
    content: counter(section);
    margin-right: 28px;
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 43.3px;
    vertical-align: middle;
}
.price_option h2.tit01 {
    margin-bottom: 62px;
}
.price_option_txt {
    margin-bottom: 96px;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.5;
    text-align: center;
}
.price_option .inner {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 200px;
}
.price_option .inner::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 50px);
    background: linear-gradient(90deg, rgba(67,115,184,1) 0%, rgba(67,115,184,1) 50%, rgba(61,167,57,1) 50%, rgba(61,167,57,1) 100%);
    content: "";
}
.price_option_g, .price_option_l {
    position: relative;
    width: 450px;
    height: 750px;
    color: #fff;
}
.price_option_g::after, .price_option_l::after {
    position: absolute;
    content: "";
}
.price_option_g::after {
    left: 0;
    bottom: -21px;
    width: 337px;
    height: 98px;
    background: url("../images/price_google.png") no-repeat;
}
.price_option_l::after {
    right: 0;
    bottom: 0;
    width: 224px;
    height: 76px;
    background: url("../images/price_line.png") no-repeat;
}
.price_option_g figure, .price_option_l figure {
    margin-bottom: 34px;
}
.price_option_g figure img, .price_option_l figure img {
    width: 100%;
    height: auto;
}
.price_option_g h3, .price_option_l h3 {
    margin-bottom: 33px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}
.option_price {
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 0.05em;
    line-height: 1;
}
.option_price em {
    font-family: source-han-sans-japanese, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.option_price span {
    display: block;
    margin-top: 6px;
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1;
}
.option_sub_price {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: -0.1px;
    line-height: 1;
}
.price_option_note {
    width: 1100px;
    margin: 20px auto 0;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    color: #7E7776;
    text-align: right;
}
.price_option_figure {
    position: relative;
    width: 360px;
    height: 340px;
    margin: -250px auto 0;
    background: url("../images/price_delta_line.png") no-repeat center 76px;
}
.price_option_figure li {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 100%;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.667;
    text-align: center;
    color: #fff;
    background-color: #281d1a;
}
.price_option_figure li:nth-of-type(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.price_option_figure li:nth-of-type(2) {
    bottom: 0;
    left: 0;
}
.price_option_figure li:nth-of-type(3) {
    bottom: 0;
    right: 0;
}


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

  $qa

==================================================================*/
.qa_wrap {
    position: relative;
    box-sizing: border-box;
    width: 1000px;
    margin: 0 auto;
    padding: 0 100px 50px;
    border-radius: 20px;
    text-align: center;
    background-color: #e6ecf6;
}
.qa_wrap::after {
    position: absolute;
    bottom: -18px;
    right: -73px;
    width: 129px;
    height: 184px;
    background: url("../images/qa_deco.png") no-repeat;
    content: "";
}
.qa_wrap .tit02 {
    margin-bottom: 30px;
}
.qa_intro {
    margin-bottom: 92px;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
}
.qa_list dl {
    margin-bottom: 49px;
    padding: 0 25px;
    text-align: left;
    border-bottom: 1px solid #bdcee7;
}
.qa_list dl:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}
.qa_list dt {
    position: relative;
    display: flex;
    margin-bottom: 18px;
    padding-left: 90px;
}
.qa_list dt span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    box-sizing: border-box;
    width: 69px;
    height: 60px;
    margin-right: 21px;
    padding-top: 15px;
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    text-align: center;
    background: url("../images/qa_fukidashi.png") no-repeat;
}
.qa_list dt em {
    display: block;
    width: 660px;
    padding-top: 11px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #4373b8;
}
.qa_list dd {
    width: 670px;
    padding: 0 0 45px 90px;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.625;
}

.group_img a {
    display: block;
    margin-bottom: 15px;
    background-color: #333;
    width: 175px;
    height: 100%;
    padding: 15px 0;
    text-align: center;
    opacity: 1;
    transition: 0.2s ease-in-out;
}
.group_img a:hover {
    opacity: 0.8;
}
/*==================================================================

	contact

==================================================================*/
.form-box {
}
.form_table {
    width: 1000px;
    margin: 0 auto;
}
.form_table th {
    width: 280px;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    border-bottom: 1px solid #c9c7c6;
}
.form_tit {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.required {
	padding: 8px 10px;
	background-color: #e84f4f;
	border-radius: 3px;
	font-size: 14px;
	color: #fff;
	line-height: 1;
}
.form_table td {
    box-sizing: border-box;
    width: 740px;
    padding: 20px 0 20px 50px;
    font-size: 16px;
    border-bottom: 1px solid #c9c7c6;
}
.form_input {
	width: 90%;
	height: 54px;
	padding: 0 16px;
	border: none;
	background: #f6f6f6;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 400;
}
.form_input.input_name{
	display:inline-block;
	width:44%;
}
.form_input.input_name.sei{
  margin:0 1.5% 0 0;
}
.form_textarea {
	width: 90%;
	height: 200px;
	padding: 14px 16px;
	border: none;
	background: #f6f6f6;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 400;
}
.form_select{
    width: 90%;
    height: 54px;
    padding: 0 16px;
    border: none;
    background: #f6f6f6;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
}
.form_radio_box {
    display: flex;
}
.form_radio_btn {
	position: relative;
	display: block;
	margin-right: 4%;
}
.form_radio_btn label {
	display: flex;
	align-items: center;
}
.form_radio_btn label::before {
	content: "";
	display: inline-block;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	border: 2px solid #8c8c8c;
	border-radius: 50%;
	box-sizing: border-box;
}
.form_radio_btn label::after {
	content: "";
	display: block;
	position: absolute;
	width: 14px;
	height: 14px;
	margin: auto;
	border-radius: 50%;
	left: 5px;
	top: 7px;
}
.form_radio_btn input[type='radio']:checked + label::after {
	background: #68C5D8;
}
.form_btn_area {
	text-align: center;
}
.form_btn_primary {
	width: 340px;
	height: 70px;
	margin: 60px auto 0;
	background-color: #68c5d8;
	border-radius: 50px;
	border: none;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	transition: ease-in-out 0.2s;
}
.form_btn_primary:hover {
	cursor: pointer;
	background-color: #4b98ae;
}
.form_btn_secondary {
	width: 340px;
	height: 70px;
	margin: 40px 40px 0 0;
	border-radius: 50px;
	border: 2px solid #c1c1c1;
	background: #fff;
	font-size: 18px;
	color: #fff;
    background-color: #c1c1c1;
	line-height: 1;
	transition: ease-in-out 0.2s;
}
.form_btn_secondary:hover {
	cursor: pointer;
	border: 2px solid #aaa;
	background-color: #aaa;
}
input[type='checkbox'], input[type='radio'] {
	display: none;
}
.confirm-tb {
	width: 900px;
	margin: 0 auto;
	border-collapse: collapse;
}
.confirm-tb td {
	border: 1px solid #ccc;
	padding: 5px;
	padding: 3% 5%;
    font-size: 16px;
}
.confirm-tb td.l_Cel {
	width: 40%;
	padding: 3% 5%;
	background: #D7E1F0;
}
.confirm-tb p.error_messe {
	margin: 5px 0;
	color: red;
}
/*----- thanks -----*/
.thanks_box_text {
	margin-bottom: 50px;
	text-align: center;
	font-size: 18px;
	line-height: 2;
}
.thanks_box_btn a {
    display: block;
	width: 300px;
	height: 60px;
    line-height: 60px;
	margin: 60px auto 100px;
	background-color: #68c5d8;
	border-radius: 50px;
	border: none;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
    text-align: center;
	letter-spacing: 0.1em;
	transition: ease-in-out 0.2s;
}
.thanks_box_btn a:hover {
	cursor: pointer;
	background-color: #4b98ae;
}



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

  .breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  margin: 0 auto 30px;
  font-size: 14px;
  z-index: 998;
}
.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:after {
  font-family: FontAwesome;
  content: ">";
  padding-left: 10px;
}
.breadcrumbs li:last-child:after {
  content: "";
}
.breadcrumbs li:last-child a{
  color:#d04634 !important;
}
/*==================================================================

  .404_p

==================================================================*/
.none_page_p{
  text-align: center;
  font-size: 26px;
  padding-top: 100px;
}

/*common*/
.pc{}.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:bottom}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}