/* === CSS Variables === */
/* ページ構成やボリュームに応じてROOTの変更や追加を行ってください。 */
:root {
  /* Base font and colors */
  --font-base-family: noto-sans-cjk-jp, '游ゴシック', 'Yu Gothic', Helvetica, sans-serif;
  --font-ttl-family: "Times New Roman", 游明朝体, "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HGS明朝B, "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --font-base-size: 15px;
  --font-line-height: 1.3;
  --font-base-color: #333333;
  --background-body: #ffffff;
  --main-color: #33BDD1;
  --acent-color: #F54767;
  --bg-main-color: #2EB7CB;
  --bg-sub-color: #FEF6F7;
  --btn-color: #F54767;
  --btn-hover-color: #fb143e;
  --btn-subcolor: #00b800;
  --btn-hover-subcolor: #019b01;


  /* Heading */
  --heading-font-family: var(--font-ttl-family);
  --heading-font-color: var(--font-base-color);
  --heading-line-height: 1.4;

  /* Link colors */
  --link-color: #0184c9;
  --link-hover-color: #035088;

  /* Table */
  --table-border-color: var(--font-base-color);

  /* Responsive font sizes */
  --font-size-pc: 16px;
  --font-line-height-pc:  1.8;
  
  /* link directry */
  --img-dir: "../img/";
}

@charset "UTF-8";
/****************************************
		General Setting 
*****************************************/
html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption,
tbody, tfoot, thead, table, label, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}

body {
  font-family: var(--font-base-family);
  font-size: var(--font-base-size);
  line-height: var(--font-line-height);
  word-break: break-strict;
  text-rendering: optimizeLegibility;
  color: var(--font-base-color);
  background-color: var(--background-body);
  -webkit-text-size-adjust: 100%;
  margin-top: 80px;
  min-width: initial;
  _display: inline;
  _zoom: 1;
}

@media (min-width:768px) {
  body {
    min-width: 1024px;
    margin-top: 0;
    font-size: var(--font-size-pc);
    line-height: var(--font-line-height-pc);
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--heading-line-height);
  font-weight: normal;
  font-family: var(--heading-font-family);
}

p {
  font-family: var(--font-base-family);
  font-size: var(--font-base-size);
}

a {
  color: var(--link-color);
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.thumbimg:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

.clear {
  clear: both;
  line-height: 0;
}

.clearfix {
  display: block;
  zoom: 1;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0px;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.minc {
  font-family: var(--font-ttl-family);
}

.ac {
	text-align: center;
}

.ar {
	text-align: right;
}

.bold {
	font-weight: bold;
}

em {
	font-weight: bold;
	background: linear-gradient(transparent 70%, #fffab1 70%);
}

small {
	font-size: .8em;
}

strong {
	color: var(--acent-color);
}

.wrap p {
	margin-bottom: 1rem;
}


/* アニメーション
------------------------------------*/

/* --- 1.スクロールしたらフェードインアニメーションの指定 --- */
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}

/* --- スクロールダウン --- */
.scrDown a {
  display: inline-block;
  position: absolute;
  bottom: -90vw;
  padding: 10px 10px 90px;
  left: 0;
  z-index: 2;
  overflow: hidden;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  text-shadow: #fff 0 0 4px;
}
.scrDown a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: #000;
}

.scrDown a::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media (min-width: 768px) {
  .scrDown a {
    left: 40px;
    bottom: -45vw;
    padding: 10px 10px 110px;
  }
  .scrDown a::after {
    height: 100px;
  }
}

 
/*2.上下の動きを指定*/
.updown {transform: translateY(-50px);}
.downup {transform: translateY(50px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(100px);}
.slide-left {transform: translateX(-100px);}

/* 画面開いたらフェードイン（スクロール無し） */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/****************************************
		Base Setting 
*****************************************/

.mt00 {
	margin-top: 0!important;
}
.mb00 {
	margin-bottom: 0!important;
}

.mt1em {
	margin-top: 1em!important;
}
.mt10 {
	margin-top: 10px!important;
}
.mt20 {
	margin-top: 20px!important;
}
.mt40 {
	margin-top: 40px!important;
}
.mb10{
    margin-bottom: 10px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.pt10 {
	padding-top: 10px!important;
}
.pt20 {
	padding-top: 20px!important;
}
.pt40 {
	padding-top: 40px!important;
}


/* ---- block_layout ---- */

.body_wrap {
	overflow: hidden;
  padding-top: 100px;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .body_wrap {
    padding-top: 163px;
  }
  .wrap {
    	width: 90%;
	}
}
@media (min-width: 1240px) {
  .wrap {
    	width: 1240px;
	}
}

.w86 {
	width: 86%;
	margin:0 auto;
}

.sec {
  padding: 11% 0;
}
@media (min-width: 798px) {
  .sec {
    padding: 100px 0 80px;
  }
  .sec:last-of-type {
    padding-bottom: 110px;
  }
}

.sp_only {
  display: block;
}
.pc_only {
  display: none;
}
@media (min-width: 798px) {
  .sp_only {
    display: none;
  }
  .pc_only {
    display: block;
  }
}

/****************************************
		parts Setting 
*****************************************/


/* ---- btn_style ---- */
.btn_style {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  box-sizing: border-box;
  transition: all 200ms 0s ease;
  text-align: center;
  min-width: 270px;
  border-radius: 5px;
}

.btn_style a {
  padding: 13px 31px;
  display: block;
  position: relative;
}

.btn_style a:hover {
	text-decoration: none;
}

.btn_style i,
.btn_style i.fa-angle-right {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}

.btn_style.btn_sub {
	background: var(--btn-subcolor);
}
.btn_style.btn_sub:hover {
	background: var(--btn-hover-subcolor);
}
.btn_style.btn_main {
	background: var(--btn-color);
	margin: 1.5em 0;
}
.btn_style.mgB0 {
	margin: 1.5em 0 0;
}
.btn_style.btn_main:hover {
	background: var(--btn-hover-color);
}
.btn_style.btn_sub a,
.btn_style.btn_main a {
	color: #fff;
	background: none;
}

.drawer-nav .btn_style {
  min-width: 245px;
  display: inline-block;
  text-align: center;
}


/* ---- box ---- */
@media (min-width: 798px) {
  .box {
    float: left;
    display: block;
  }
}

/* ---- table ----*/
table {
	margin: 15px 0;
	width: 100%;
}
table th,
table td {
  box-sizing: border-box;
  border-right: 0;
  padding: 2% 0;
  vertical-align: middle;
}
table tr:first-of-type th,
table tr:first-of-type td {
    border-top: 1px var(--table-border-color) solid;
}

@media (min-width: 767px) {
  table th {
	padding: 1.2em;
    border-bottom: 1px var(--table-border-color) solid;
  }
  table td {
    padding: 1em;
      border-bottom: 1px var(--table-border-color) solid;
  }
}



/* ---- acc_blk アコーディオン ---- */
.acc_blk {
	display: none;
}



/* ---- target_line ----*/
.target_line {
  margin-top: -83px;
  padding-top: 83px;
}

@media (min-width:768px) {
  .target_line {
    margin-top: 0;
    padding-top: 0;
  }
}



/****************************************
		font / 見出し
*****************************************/
/* 最上部タイトル */
.sec_page_btit {
	background: var(--bg-main-color);
	padding: 20px 0;
	text-align: center;
}
.sec_page_btit h1 {
	color: #fff;
    font-size: 1.7em;
    display: inline-block;
    text-align: center;
}
.sec_page_btit h2 {
	color: #fff;
	position: relative;
	margin-bottom: .5em;
}
.sec_page_btit h2:before {
	content: '';
    position: absolute;
    bottom: -7px;
    display: inline-block;
    width: 20px;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;	
}


/* タイトルパターン１ */
.page_ltit h2 {
    font-size: 2em;
	  margin: 1rem 0 1.5rem;
    line-height: 1.2;
}
.page_ltit h2 span {
	display: block;
	font-size: 1.3rem;
}
.page_ltit h3 {
  font-size: 1.45em;
  margin-bottom: 1em;
}

/* タイトルパターン２ */
.page_ttl h2 {
    position: relative;
    line-height: 1em;
    text-indent: 1.2em;
    font-size: 1.8em;
    text-align: left;
    margin: 0 0 1em;
}
.page_ttl h2:before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: var(--main-color);
    border-radius: .5em;
}

.page_ttl h3 {
    font-size: 1.45em;
    margin-bottom: 1em;
    padding-left: 10px;
    border-left: var(--bg-main-color) 5px solid;
}

/* タイトルパターン３ */
.head_ttl h2 {
	background: var(--bg-sub-color);
    padding: 1rem 2rem;
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 3rem 0 1rem;
}

.head_ttl.ttlh3 {
    padding: 1rem 0;
    margin: 2rem 0 1.5rem;
    border-bottom: var(--bg-main-color) 1px solid;
}

.head_ttl h3 {
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
    padding-left: 1rem;
    line-height: 1.2;
}

.head_ttl h3:before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    background: var(--main-color);
}

.blk2_area .blk h3,
  .blk3_area .blk h3 {
    font-size: 1.45em;
  }

.sec h4 {
    font-size: 1.1rem;
    margin: 1.2em 0 0.5em;
    font-weight: bold;
}

.sec h5 {
	font-size: 1.05rem;
	font-weight: bold;
}



@media (min-width: 768px) {
  .sec_page_btit {
	  padding: 40px 0;
	}
  .sec_page_btit h1 {
    font-size: 2.2em;
  }
  .page_ltit h2 {
    font-size: 3.3em;
    margin: 0 0 1.5rem;
  }
  .page_ltit h3 {
    font-size: 2em;
    margin-bottom: 1.2em;
  }
  .page_ttl h3 {
    font-size: 1.6rem;
    margin: 1em 0;
  }

  .sec h4 {
		font-size: 1.2rem;
	}
	.sec h5 {
    font-size: 1.1rem;
	}
}

.txt_blue {
	color: var(--main-color);
}



/****************************************
		header ＊
*****************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 0;
}
.header .wrap {
  padding: 0;
}
.header_logo img {
  width: 185px;
  margin-left: 7px;
}

header h1 {
	font-size: .8em;
	padding: 3px 0;
}

.header_logoarea {
  padding: 10px 0;
  position: relative;
}

.header_logo {
  display: inline-block;
}

.header_logoarea ul {
  position: absolute;
  display: flex;
  top: 15px;
  right: 0;
}

.header_logoarea ul li.header_tel {
  margin-right: 18px;
}

.header_inner_blk {
	background: var(--bg-sub-color);
	padding: 1em 0;
}

.header_inner_blk .wrap {
	position: relative;
}

@media (max-width: 768px) {
  .header .wrap {
    width: 100%;
  }
}

/* ハンバーガーメニュー
 ------------------------------ */
.sp_dnav_btn {
  position: absolute;
  top: -15px;
  right: 0;
  width: 58px;
  background-color: #19b3b3;
}
.sp_dnav_btn .inn {
  position: relative;
  height: 58px;
}
.sp_dnav_btn .ct {
  position: absolute;
  top: 19px;
  left: 50%;
  width: 24px;
  -webkit-transform: translateY(0%) translateX(-50%);
  transform: translateY(0%) translateX(-50%);
}
.sp_dnav_btn .ct .line i {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 8px;
  background-color: #fff;
}

.drawer-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 80px;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer-bg {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.drawer-nav {
  position: absolute;
  z-index: 10000;
  top: 0;
  right: 0;
  overflow-y: auto;
  width: 75vw;
  height: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
}
.drawer-menu {
  padding-bottom: 30px;
  border-top: 1px solid #aac3d2;
}
.drawer-menu li a, .drawer-menu li p {
  font-size: 94%;
  display: block;
  padding: 20px;
  text-decoration: none;
  border-bottom: 1px solid #aac3d2;
  background-color: var(--bg-sub-color);
}
.drawer-menu li a {
  background-image: url(../img/common/sp_common_dnav_ico_02.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 7px 11px;
}
.drawer-menu li p {
  background-image: url(../img/common/sp_common_dnav_ico_01.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 11px 11px;
  color: var(--acent-color);
}
.drawer-menu li p.open {
  background-image: url(../img/common/sp_common_dnav_ico_03.png);
  background-size: 10px 2px;
}
.drawer-menu li ol {
  display: none;
}
.drawer-menu li ol li a,
.drawer-menu li ol li p {
  background-color: #fff;
}
.drawer-menu li ol li a img {
  position: relative;
  top: -1px;
  width: 9px;
  margin-right: 6px;
  vertical-align: middle;
}
.drawer-menu li ol ul {
  display: none;
}
.drawer-nav .cv_tel {
  text-align: center;
    line-height: 1;
  margin-bottom: 1.5em;
}
.drawer-nav .cv_tel span {
  display: block;
}
.drawer-nav .btn_style.btn_main,
.drawer-nav .btn_style.btn_sub {
  margin: .5em 0 0;
}
.drawer-nav .sns_link {
  padding: 10px 0 150px;
  font-size: 2em;
}
.drawer-nav .sns_link ul {
  justify-content: center;
}
.drawer-nav .sns_link ul li:last-of-type {
  padding-right: 0;
}
.drawer-nav .sns_link a,
.drawer-nav .cv_tel a {
  color: #333;
}

@media (min-width: 768px) {
    /* header pc
  ------------------------------ */
  .header_tel {
    position: absolute;
    right: 140px;
    top: 50%;
      transform: translateY(-50%);
  }
  .header_tel .tel_txt {
    position: absolute;
      left: -235px;
      top: 50%;
      transform: translate(0, -50%);
    font-weight: bold;
  }
  .header_tel a {
    display: inline-block;
    background: var(--btn-color);
    border-radius: 5px;
    color: #fff;
    padding: 5px 10px 8px;
    margin-top: 10px;
  }
  .header_tel img, .header_tel p {
      display: block;
      float: left;
  }
  .header_tel img {
    padding-top: 8px;
  }
  .header_tel a p {
      line-height: 1;
      position: relative;
      padding-left: 8px;
      text-align: center;
    margin-bottom: 0;
  }
  .header_tel p strong {
      font-size: 1.8em;
      font-weight: 700;
      display: block;
      color: #fff;
  }
  .header_tel p span {
      font-size: .8em;
      letter-spacing: .09em;
  }
  .drawer-overlay {
    display: none;
  }
  
  /* PC ドロップダウンメニュー
  ------------------------------ */
  .global_menu { /* メニュー全体のスタイル */
    width: 100%;
    position: relative;
    color: var(--font-base-color); /* 文字色 */
    background: #fff;
    text-align: center;
  }
  
  .global_menu li {
    display: inline-block;
  }
  
  .global_menu a { /* 各項目のスタイル */
    display: block;
    padding: 10px 30px;
    color: var(--font-base-color);
    font-weight: 500;
  }
  
  .child_menu > li > a { /* 子項目のスタイル */
    font-size: 0.9em;
  }
  .child_menu > li > a:hover { /* 子項目のスタイル（ホバー時） */
    background: var(--bg-sub-color);
  }
  
  .child_menu { /* 下層メニューのスタイル */
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 30px;
    color: var(--font-base-color); /* 文字色 */
    background: var(--bg-sub-color); /* 背景色 */
    visibility: hidden; /* 下層メニューを非表示 */
    z-index: 99;
  }
  
  .menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
    visibility: visible; /* 下層メニューを表示 */
  }
  .child_menu a:hover {
    opacity: 0.75;
  }
  .child_menu a{
    padding: 10px 20px;
  }
  .child_menu div li{
    text-align: left;
    font-size: 14px;
    width: 18%;
  }
  .child_menu li i{
    padding-left: 7px;
  }
  .child_menu div a{
    padding: 10px 0;
  }
  .menu > li:hover {
    background: var(--bg-sub-color);
    -webkit-transition: all .5s;
    transition: all .5s;
  }
}


/* ---- sns_link ----*/
.sns_link ul {
    display: flex;
}
.sns_link ul li {
	padding-right: .7em;
}
.sns_link ul a:hover {
	opacity: .7;
  transition: all 200ms 0s ease;
}

.header_sns.sns_link {
	position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	font-size: 1.5em;
}
.header_sns.sns_link ul a,
.header_sns.sns_link ul a:hover {
	color: #333;
}


/****************************************
		footer ＊
*****************************************/

/* .btn_gotop {
------------------------ */
.btn_gotop {
  position: fixed;
  bottom: 70px;
  right: 2vw;
  z-index: 100;
  background: var(--bg-sub-color);
  padding: 15px;
  border-radius: 50%;
  font-size: .75em;
  text-align: center;
  transition: all 200ms 0s ease;
}

.btn_gotop i  {
	font-size: 1.5rem;
	display: block;
	padding: 0;
}

.btn_gotop:hover {
  background: var(--acent-color);
  color: #fff;
  text-decoration: none;
}
.btn_gotop a:hover {
	text-decoration: none;
}


/* .footer_inner {
------------------------ */
.footer {
  margin-bottom: 69px;
}

.footer .wrap {
  padding: 0;
  flex-wrap: wrap;
}
.footer .wrap p {
  padding: 8px 0;
}

.footer_inner {
	background-color: var(--bg-main-color);
	color: #ffffff;
}

.footer_inner .wrap {
	display: flex;
	justify-content: center;	
	padding: 50px 0;
}

@media (min-width:768px) {
  .footer {
    margin-bottom: 0;
  }
}


/* .footer_inner .fnav {
------------------------ */
.footer_inner .fnav {
  padding: 0;
  width: 80%;
  margin: 1em auto 2em;
}
.fnav .fnav_blk,
.fnav .fnav_blk a,
.footer_bottom ul li a {
  color: #ffffff;
  transition: all 200ms 0s ease;
  width: 100%;
}

.fnav .fnav_blk h4,
.fnav .fnav_blk .fnav_sp_blk li {
  padding: 0;
  border-bottom: var(--link-hover-color) 1px solid;
  margin-bottom: 0;
  font-weight: bold;
}

.fnav .fnav_blk li {
  margin-bottom: 3px;
  font-size: 14px;
}

.fnav .fnav_blk h4 a,
.fnav .fnav_blk .fnav_sp_blk a {
  padding: 1.2em 0;
  display: block;
  position: relative;
}
.fnav .fnav_blk h4 a i,
.fnav .fnav_blk .fnav_sp_blk a i {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width:768px) {
  .footer_inner .fnav {
    display: flex;
    justify-content: space-between;
   width: calc(100% - 40%);
  }
  .fnav .fnav_blk .fnav_sp_blk {
    display: none;
  }
  .fnav .fnav_blk ul {
    display: block;
  }
  .fnav .fnav_blk h4 {
    padding: 10px 0;
  }
  .fnav .fnav_blk h4,
  .fnav .fnav_blk .fnav_sp_blk li {
    border-bottom: none;
  }
  .fnav .fnav_blk h4 a,
  .fnav .fnav_blk .fnav_sp_blk a {
    padding: 0;
    display: inline-block;
    width: auto;
  }
  .fnav .fnav_blk h4 a i,
  .fnav .fnav_blk .fnav_sp_blk a i {
    display: none;
  }
}


/* .footer_inner_cv {
------------------------ */
.footer_inner_cv .sns_link {
	margin: 20px 0;
}
.footer_inner_cv .sns_link ul {
	font-size: 2.5em;
  justify-content: center;
}
.footer_inner_cv .sns_link ul li {
  padding: 0 .5em;
}
.footer_inner_cv .sns_link ul a,
.footer_inner_cv .sns_link ul a:hover {
	color: #fff;
}


.footer_inner_cv_btn {
  text-align: center;
}
.footer_inner_cv_btn .btn_style {
	margin: 10px 0;
}

.pay_blk {
  width: 65%;
	background: #fff;
  margin: 0 auto 2em;
	padding: 1.5em;
	color: var(--font-base-color);
}
.pay_blk dt {
	font-weight: bold;
}

@media (min-width: 768px) {
  .footer_inner_cv {
    width: 30%;	
  }
  .pay_blk {
      width: auto;
	  margin-bottom: 2em;
  }
}


/* .footer_bottom {
------------------------ */
.footer_bottom {
  padding: 50px 0 0;
	position: relative;
}
.footer_bottom:before, .footer_bottom:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    border-style: solid;
}
.footer_bottom:before {
    left: 0;
    border-width: 45px 50vw 0 0;
    border-color: var(--bg-main-color) transparent transparent transparent;
}
.footer_bottom:after {
    right: 0;
    border-width: 0 50vw 45px 0;
    border-color: transparent var(--bg-main-color) transparent transparent;
}

.footer_bottom .wrap {
	padding: 2em 0 1em;
	text-align: center;
}
.footer_bottom p img {
  height: 75px;
}
.footer_bottom p.footer_copy {
  text-align: center;
  padding: 20px 10px;
  font-size: 80%;
  line-height: 1.4;
  margin:0 auto;
}

.footer_copy {
	margin-top: .5em;
}

/* 追従フッター */
.sp_foot_btns {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.sp_foot_btns ul {
  display: flex;
}
.sp_foot_btns ul li {
  display: block;
  float: left;
  width: 50%;
}
.sp_foot_btns ul li a {
  position: static;
  height: 65px;
  border: 2px solid #fff;
display: block;
text-decoration: none;
}
.sp_foot_btns ul li:nth-of-type(1) a {
  border-right: none;
  background-color: var(--acent-color);
}
.sp_foot_btns ul li:nth-of-type(2) a {
  border-right: none;
  background-color: var(--btn-color);
}
.sp_foot_btns ul li:nth-of-type(3) a {
  background-color: var(--btn-subcolor);
}
.sp_foot_btns ul li a span {
  position: static;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
color: #fff;
font-size: 80%;
font-weight: 500;
}
.sp_foot_btns ul li a span img {
  display: block;
  width: auto;
  height: 27px;
  margin: 0 0 4px;
}

.sp_foot_btns ul li:nth-of-type(2) a span {
  left: 43%;
}
.sp_foot_btns ul li:nth-of-type(2) a span img {
  margin-right: 6px;
}


/****************************************
		parts ＊
*****************************************/

/* アンカーリンク {
------------------------ */
.anchor_lnk {
	margin: 0 auto 3em;
}
.anchor_lnk ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 92%;
	max-width: 368px;
	margin: 0 auto;
}
.anchor_lnk li {
	margin: 0 0 8px;
	flex: 0 1 312px;
	flex-basis: 48.913%;
	text-align: center;
}
.anchor_lnk li a {
	position: relative;
	display: block;
	width: 100%;
  min-height: 58px;
	border-radius: 7px;
	color: #fff;
	text-decoration: none;
  font-weight: 600;
}
.anchor_lnk li a span {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
  padding: 10px 0 3px;
	background-color: var(--btn-color);
	border-radius: 7px;
  font-size: 100%;
  line-height: 2;
}
.anchor_lnk li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
  height: 25px;
	background: var(--btn-hover-color) url(../img/common/common_arw_01.svg) no-repeat center bottom 7px;
	background-size: 10px;
	border-radius: 0 0 7px 7px;}
#Page .anchor_lnk {
	margin: 1em auto 3em;
}

@media (min-width:768px) {
	.anchor_lnk {
		margin-top: 16px;
	}
	#Page .anchor_lnk {
		margin: 2em auto 0em;
	}
	.anchor_lnk ul {
	  max-width: 1008px;
	}
	.anchor_lnk li {
    flex-basis: 30%;
		margin: 8px 12px;
	}
	.anchor_lnk li a {
		min-height: 88px;
	}
	.anchor_lnk li a span {
		padding: 16px 0;
		font-size: 146.666%;
		line-height: 1.45;
	}
	.anchor_lnk li a::before {
		height: 30px;
		background-size: 20px auto;
	}
}


/* cv_area
------------------------ */
.cv_area {
    padding: 65px 0 50px;
    position: relative;
    text-align: center;
}

.cv_area h2 {
		font-size: 2.8rem;
}
.cv_area h2 span {
	font-size: 1.3rem;
	display: block;
}

.cv_area h3 {
  font-size: 1.3em;
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (min-width:680px) {
	.cv_area {
    padding: 6% 0 4%;
  }
  .cv_area h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
  }
  .cv_area h3 {
    font-size: 1.5em;
    margin-bottom: 1.5em;
  }

  .cv_area .btn_style.btn_main {
		margin-right: 40px;
	}	
}


/* .clinic_info {
------------------------ */

.clinic_info_inner, .clinic_schedule {
  width: 100%;
}
.clinic_info .wrap {
  background: var(--bg-sub-color);
  padding: 1.5em 2em;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.5em 2em;
}
.clinic_info_inner dl {
  margin-bottom: 1em;
  line-height: 1.6;
}
.clinic_schedule_tbl th, .clinic_schedule_tbl td {
  padding: 2% 0;
}
.clinic_schedule_tbl {
	text-align: center;
}
.clinic_schedule_tbl th, .clinic_schedule_tbl td {
	border-left: #333 1px solid;
	vertical-align: middle;
	padding: 2% 0;
}
.clinic_schedule_tbl th:last-of-type, .clinic_schedule_tbl td:last-of-type {
	border-right: #333 1px solid;
}

@media (min-width:768px) {
  .clinic_info {
    margin-bottom: 6%;
  }
  .clinic_info .wrap {
    padding: 2em 2em 1.5em;
  }
  .clinic_info_inner {
    width: 37%;
  }
  .clinic_info_inner dl {
    margin-bottom: .5em;
  }
  .clinic_schedule_tbl th, .clinic_schedule_tbl td {
    padding: 1.2em 1.5em;
  }
}


/* info_area お知らせ
------------------------ */
.info_area_inner dl {
    border-bottom: #fff 1px solid;
    flex-wrap: wrap;
}
.info_area_inner dl:first-of-type {
    border-top: #fff 1px solid;
}
.info_area_inner dl a {
  padding: 1.5em 1em;
  color: #fff;
  flex-wrap: wrap;
}
.info_area_inner dl dt,
.info_area_inner dl dd {
  width: 100%;
}

@media (min-width:678px) {
  .info_area_inner dl a {
 	  display: flex;
    padding: 2em;
 }
  .info_area_inner dl dt {
    width: 20%;
  }
  .info_area_inner dl dd {
    width: 80%;
  }
}


/*		google map ＊
------------------------ */
.gmaps {
	  position: relative;
    width: 100%;
    padding-bottom: 70%;
    height: 0;
    overflow: hidden;
}
.gmaps iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media (min-width: 768px) {
  .gmaps {
    padding-bottom: 40%;
  }
}


/*		Youtube ＊
------------------------ */
.youtube_blk {
  position: relative;
  height: 0;
  padding: 30px 0 56.25%;
  margin: 10px 0 20px;
  overflow: hidden;
}

.youtube_blk iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.intro_contain .youtube_blk {
  margin: 40px 0 0;
}

@media (min-width: 768px) {
  .youtube_blk {
    padding: 30px 0 37.25%;
    margin: 30px 0;
  }
  .youtube_blk iframe {
    width: 70%;
  }
  .intro_contain .youtube_blk {
    margin: 50px 0 0;
  }
}


/*		mv_video 動画埋め込み
------------------------ */
.mv_video {
  width: 100%;
  min-height: 56vw;
  background: url(../img/mv_dummy.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.mv_video:after {
  content: '';
  width: 100%;
  height: 100%;
  /*background-color: rgba(255, 255, 255, .3);*/
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.mv_video video{
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width: 768px) {
  .mv_video{
    min-width: 960px;
    min-height: 42vw;
  }
  .mv_video video {
		width: auto;
	}
}



/****************************************
		Page Setting 
*****************************************/


/* レイアウト */
.sec_page_wrap {
  margin: 0 0 15%;
}

.sec_page .sec_page_wrap:last-of-type {
	margin: 0;
}

.page_blk,
.page_blk_normal {
	display: flex;
  flex-wrap: wrap;
}

.page_blk_clm_narrow {
  width: 90%;
	display: table-cell;
	vertical-align: middle;
	padding: 40px;
}

.page_blk .page_blk_photo_wide {
	width: 100%;
	margin: 0;
}
.page_blk_normal .page_blk_normal,
.page_blk_normal .page_blk_normal_photo,
.page_blk .page_blk_photo,
.page_blk_normal.reverse .page_blk_normal_photo,
.page_blk_normal.clm_wide .page_blk_normal_photo,
.page_blk.clm_wide .page_blk_photo,
.page_blk.reverse, .page_blk_normal.reverse,
.page_blk_clm,
.page_blk_normal .page_blk_normal_clm,
.page_blk_normal.clm_wide .page_blk_normal_clm,
.page_blk.clm_wide .page_blk_clm {
  width: 100%;
}

@media (min-width:768px) {
  .sec_page_wrap {
    margin: 0 0 5%;
  }
  .page_blk_clm_narrow {
      width: 34%;
  }
  .page_blk .page_blk_photo {
    width: 52%;
    margin: 0 6% 0 0;
  }
  .page_blk.reverse .page_blk_photo {
    margin: 0 0 0 6%;
  }
  .page_blk_normal .page_blk_normal_photo {
    width: 52%;
    margin: 0 0 0 6%;
  }
  .page_blk_normal.reverse .page_blk_normal_photo {
    margin: 0 6% 0 0;
  }
  .page_blk_normal.clm_wide .page_blk_normal_photo,
  .page_blk.clm_wide .page_blk_photo {
    width: 34%;
  }
  .page_blk.reverse, .page_blk_normal.reverse {
    flex-direction: row-reverse;
  }
  .page_blk_clm,
  .page_blk_normal .page_blk_normal_clm {
    width: 42%;
  }
  .page_blk_normal.clm_wide .page_blk_normal_clm,
  .page_blk.clm_wide .page_blk_clm{
    width: 60%;
  }

}


/* 2カラム・3カラムデザイン */
.blk2_area,
.blk3_area {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blk2_area .blk,
.blk3_area .blk {
	margin: 2% auto;
  width: 100%;
}

.blk3_area .blk {
  width: 100%;
}
.blk3_area .w86 .blk3_area .blk img {
  width: 100%;
}

.blk3_area .blk em {
	font-size: 1.1em;
}

.blk2_area .blk .photo,
.blk3_area .blk .photo {
	text-align: center;
}

@media (min-width:768px) {
  .blk2_area .blk {
    width: 47.5%;
    margin: 0 0 3%;
  }

  .blk3_area .blk {
    width: 30%;
    margin: 0 0 2%;
  }
}


/* 装飾（リスト、枠、背景） */
.list_item {
	margin-bottom: 1em;
}

.list_item li {
    position: relative;
    padding-left: 20px;
}
.list_item li:before {
	content: "";
	width: 13px;
  height: 13px;
	display: inline-block;
	background-color: var(--acent-color);
	border-radius: 50%;
	margin-right: 5px;
  left: 0;
  top: 6px;
  position: absolute;
}

.border_blk {
	border: var(--link-hover-color) 2px solid;
	border-radius: 10px;
  padding: 1.3em 2em 0.5em;
  margin-bottom: 1.4em;
  background: #fff;
	box-sizing: border-box;
  width: 100%;
}
@media (min-width:768px) {
  .border_blk {
		padding: 1.5em 3em 0.5em;
	}
}
	

.bg_color {
	background: var(--bg-sub-color);
}
.sec_page .bg_color {
	padding: 25px;
}
.bg_color .page_blk {
	margin: 0;
}

/* scr_slider */
.scr_slider {
	margin: 2em 0 0;
}


/*****************************************
		under parts Setting 
*****************************************/

/* cntns_menu ボタンメニューリンク
------------------------------------- */
.cntns_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  width: 100%;
  margin: 5% auto 0;
}
.cntns_menu li {
	width: 20%;
  width: 45%;
	margin: 0 2.5% 5%;
	text-align: center;
}
.cntns_menu li a {
	display: block;
	background: #fff;
	color: #fff;
  height: 170px;
	position: relative;
}
.cntns_menu p {
	position: absolute;
	top: 32%;
	left: 50%;
	transform: translate(-50%, -32%);
}
  .cntns_menu p.icon_wide {
    left: 35%;
    transform: translate(-26%, -20%);
  }
	 
.cntns_menu .menu_btn {
	background: var(--btn-color);
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  bottom: 14px;
  position: absolute;
  width: 135px;
	padding: 5% 0 4%;
  left: 50%;
  transform: translateX(-50%);
}
.cntns_menu .menu_btn i {
	position: absolute;
    bottom: 50%;
    right: 4%;
    transform: translateY(50%);
}

.cntns_menu li:nth-of-type(2) p {
  top: 20%;
    transform: translate(-50%, -20%);
}
.cntns_menu li:nth-of-type(1) p img,
.cntns_menu li:nth-of-type(2) p img,
.cntns_menu li:nth-of-type(5) p img,
.cntns_menu li:nth-of-type(8) p img {
  width: 85%;
}

@media (min-width:768px) {
  .cntns_menu {
		width: 90%;
	}
  .cntns_menu li {
	  width: 20%;
  }
  .cntns_menu li a {
		height: 190px;
	}
  .cntns_menu .menu_btn {
    padding: 3% 0 2%;
 }
}


/*	pagenavi Setting 
------------------------------*/
.pagenavi_inner {
  padding: 30px 0 0;
}

.pagenavi_inner .wp-pagenavi a, .pagenavi_inner .wp-pagenavi span {
  padding: 7px 12px;
  border: 1px solid var(--main-color);
  color: #000;
  font-weight: 700;
  font-size: 107%;
  margin-right: 10px;
}

.pagenavi_inner .wp-pagenavi a:hover {
  background: var(--bg-sub-color);
  text-decoration: none;
}

.pagenavi_inner .wp-pagenavi span.current {
  background: var(--bg-sub-color);
}


