﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* Google font Icon */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");


/*========================
共通ヘッダー
========================*/
header {
  width: 100%;
  background: #FFF;
  position: fixed;
  right: 0;
  left: 0;
  padding:0;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
header {
  position: static;
  }
}

.head{
  position: relative;
  width: 100%;
  max-width: 1240px;
  height: 100px;
  padding:0 18px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:center;
}
.headlogo{
  max-width: 340px;
}
.headnav{
  flex: 1;
  margin: 0 32px 0 24px;
}
.headtel{
  margin: 0 0 0 auto;
}
.headtel p{
  color: #666;
  font-size: 0.8em;
  line-height: 1;
  white-space: nowrap;
  margin-top: 5px;
}
@media screen and (max-width: 1240px) {
.headlogo{
  max-width: 300px;
  }
}
@media screen and (max-width: 960px) {
.head {
  height: 84px;
  padding:0 18px;
  }
.headnav{
  margin: 0 24px 0 24px;
  }
.headtel{
  display: none;
  }
}
@media screen and (max-width: 767px) {
.head {
  height: 64px;
  padding:0 15px;
  }
.headlogo{
  max-width: 240px;
  }
}

/*ヘッダー高さ調整*/
#headimg {
  padding-top: 100px;
  opacity: 0.99; /*ヘッダー内のリンクを有効にする*/
}
@media screen and (max-width: 960px) {
#headimg {
  padding-top: 84px;
  }
}
@media screen and (max-width: 767px) {
#headimg {
  padding-top: 0;
  }
}


/*========================
ヘッダーイメージ内クイックリンク
========================*/
.quicklink {
  position: absolute;
  top: 15px;
  right: 24px;
}
.quicklink a{
  text-decoration: none;
  color: #FFF;
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 6px #000;
  margin: 0 0 0 0.8em;
}
.quicklink a:hover{
  text-decoration:underline;
}
@media screen and (max-width: 640px) {
.quicklink {
  position: absolute;
  top: 12px;
  right: 15px;
  }
.quicklink a{
  font-size: 1em;
  margin: 0 0 0 0.6em;
  }
}
@media screen and (max-width: 480px) {
.quicklink {
  position: absolute;
  top: 12px;
  right: 12px;
  }
.quicklink a{
  font-size: 0.95em;
  margin: 0 0 0 0.5em;
  }
}

/*初めての方へ*/
.ql_guide {
	display: inline-block;
	position: relative;
  padding: 0 0 0 1.7em;
}
.ql_guide:before {
	position: absolute;
	top: -0.15em;
	left: 0;
  font-size: 1.5em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e7fd"; /*人*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}

/*診療時間*/
.ql_hours {
	display: inline-block;
	position: relative;
  padding: 0 0 0 1.5em;
}
.ql_hours:before {
	position: absolute;
	top: -0.05em;
	left: 0;
  font-size: 1.2em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e8b5"; /*時計*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}

/*アクセスMAP*/
.ql_map {
	display: inline-block;
	position: relative;
  padding: 0 0 0 1.45em;
}
.ql_map:before {
	position: absolute;
	top: -0.05em;
	left: 0;
  font-size: 1.3em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e0c8"; /*マップピン*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}


/*========================
共通フッター
========================*/
footer{
  width: 100%;
}

/*-------------------------
情報枠
--------------------------*/
.footinfo{
  width: 100%;
  height: auto;
  padding:0;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:stretch;
}
.footinfo li:first-child{
  width: 32%;
  height: auto;
  background: #2D55A5;
  padding: 64px 32px 48px;
  color: #FFF;
  font-size: 0.9em;
  text-align: center;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.footinfo li:last-child{
  width: 68%;
  height: auto;
  padding: 64px 32px 48px;
  text-align: center;
  position: relative;
}
.footinfo li:last-child .copyright{
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: #BBB;
  font-size: 0.75em;
}
@media screen and (max-width: 1240px) {
.footinfo li:first-child{
  width: 38%;
  }
.footinfo li:last-child{
  width: 62%;
  }
}
@media screen and (max-width: 960px) {
.footinfo{
  display: block;
  flex-direction: column;
  }
.footinfo li:first-child{
  width: 100%;
  padding: 64px 32px 48px;
  }
.footinfo li:last-child{
  width: 100%;
  padding: 42px 32px 48px;
  }
.footinfo li:last-child .copyright{
  right: 0;
  left: 0;
  margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
.footinfo li:first-child{
  font-size: 0.95em;
  padding: 48px 24px 36px;
  }
.footinfo li:last-child{
  padding: 42px 24px 42px;
  }
.footinfo li:last-child .copyright{
  bottom: 8px;
  }
}

/*アクセス情報中身*/
.footinfo li:first-child .inner{
  width: 100%;
  display: block;
}
.footinfo li:first-child h4{
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2.4em;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.footinfo li:first-child h3{
  font-weight: 300;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.2em;
  position: relative;
  margin-bottom: 48px;
}
.footinfo li:first-child h3:before{
  background-color: #FFD24E;
  bottom: -18px; /* 線の位置 */
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 48px;
}
.footinfo li:first-child .accessnote{
  line-height: 1.6;
  display: inline-block;
  margin-bottom: 18px;
}
.footinfo li:first-child .accessnote p{
  padding: 0.1em 0 0 1.3em;
  margin: 0 0 0.3em;
	position: relative;
  text-align: left;
}
.footinfo li:first-child .accessnote p:before{
	position: absolute;
	top: 0;
	left: 0;
  font-size: 1.1em;
  color: #FFD24E;
  font-family:"Material Symbols Rounded";
	content: "\e061"; /*ドット*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
.footinfo li:first-child .parking{
  position: relative;
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
}
.footinfo li:first-child .parking:before{
  margin: 0 0.2em 0 0;
  vertical-align: middle;
  font-size: 1.4em;
  font-family:"Material Symbols Rounded";
	content: "\e531"; /*車*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}

/*医院概要中身*/
.footinfo li:last-child .inner{
  width: 100%;
  max-width: 640px;
  display: inline-block;
  text-align: left;
  font-weight: 400;
  font-size: 0.95em;
}
.footinfo li:last-child .inner h1 img{
  width: 100%;
  max-width: 340px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
.footinfo li:last-child .inner h1 img{
  max-width: 300px;
  }
}

/*-------------------------
GoogleMap埋め込み
--------------------------*/
.footmap {
  position: relative;
  padding-top: 30%;
  height: 0;
  overflow: hidden;
}
@media(max-width:1000px){
.footmap {
  padding-top: 42%;
  }
}
.footmap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footmap iframe,
.footmap object,
.footmap embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all  0.7s ease;
}
.footmap iframe:hover,
.footmap object:hover,
.footmap embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media(max-width:767px){
.footmap {
  padding-top: 64%;
  }
}

/*Yahoo!地図*/
.footmap2 {
  border-top: 1px solid #DDD;
}


/*========================
スマホ用フッター固定ボタン
========================*/
.footbtn {
  display: none;
}
@media screen and (max-width: 767px) {
.footbtn {
  display: block;
  width:100%;
  height: 74px;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:stretch;
  background: #FFF;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.footbtn li{
  width: 25%;
  max-width:25%;
  height: auto;
  width: calc(100% / 4);
  margin:0 2px 0 0;
  padding: 0.5em 6px 0;
  line-height: 1;
  white-space: nowrap;
  background: rgb(221,221,221);
  background: linear-gradient(0deg, rgba(221,221,221,1) 0%, rgba(248,248,248,1) 100%);
  border-top: 4px solid #2E56A6;
}
.footbtn li:last-child{
  margin:0;
}
.footbtn li a{
  display: block;
  text-decoration: none;
  color: #2E56A6;
  font-weight: 700;
  }
}
@media screen and (max-width: 640px) {
.footbtn{
  height: 64px;
  }
}
@media screen and (max-width: 480px) {
.footbtn{
  height: 56px;
  }
.footbtn li{
  padding: 0.4em 6px 0;
  border-top: 3px solid #2E56A6;
  }
}

/*フッター高さ調整*/
@media screen and (max-width: 767px) {
footer {
  padding-bottom: 74px;
  }
}
@media screen and (max-width: 640px) {
footer {
  padding-bottom: 64px;
  }
}
@media screen and (max-width: 480px) {
footer {
  padding-bottom: 56px;
  }
}

/*ホーム*/
.footbtn_home{
  position: relative;
  width: 100%;
  height: 100%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.95em;
  text-align: center;
  padding: 2em 0 0;
}
.footbtn_home:before {
	position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1.8em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e88a"; /*家*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
@media screen and (max-width: 480px) {
.footbtn_home{
  font-size: 0.9em;
  padding: 1.8em 0 0;
  }
.footbtn_home:before {
  font-size: 1.6em;
  }
}

/*TEL*/
.footbtn_tel{
  position: relative;
  width: 100%;
  height: 100%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.95em;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 2em 0 0;
}
.footbtn_tel:before {
	position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1.8em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e61d"; /*電話*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
@media screen and (max-width: 480px) {
.footbtn_tel{
  font-size: 0.9em;
  padding: 1.8em 0 0;
  }
.footbtn_tel:before {
  font-size: 1.6em;
  }
}

/*お知らせ*/
.footbtn_news{
  position: relative;
  width: 100%;
  height: 100%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.95em;
  text-align: center;
  padding: 2em 0 0;
}
.footbtn_news:before {
	position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1.8em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e98e"; /*メガホン*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
@media screen and (max-width: 480px) {
.footbtn_news{
  font-size: 0.9em;
  padding: 1.8em 0 0;
  }
.footbtn_news:before {
  font-size: 1.6em;
  }
}

/*アクセス*/
.footbtn_access{
  position: relative;
  width: 100%;
  height: 100%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.95em;
  text-align: center;
  padding: 2em 0 0;
}
.footbtn_access:before {
	position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1.8em;
  line-height: 1;
  font-family:"Material Symbols Rounded";
	content: "\e0c8"; /*マップピン*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
@media screen and (max-width: 480px) {
.footbtn_access{
  font-size: 0.9em;
  padding: 1.8em 0 0;
  }
.footbtn_access:before {
  font-size: 1.6em;
  }
}


/*========================
汎用パーツ
========================*/
/*-------------------------
電話リンクテキスト
--------------------------*/
.tel{
  position:relative;
  display: inline-block;
  font-size: 1.8em;
  line-height: 1;
  padding: 0 0 0 1.3em;
  color: #2D55A5;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  margin: 0 auto;
  letter-spacing: 0.06em;
}
.tel:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:1em;
  height:1em;
  background:url(../img/common/icon_tel.png) no-repeat;
  background-size:contain;
}

/*-------------------------
汎用テーブル
--------------------------*/
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
}
.table th{
  font-weight: normal;
  line-height: 100%;
  text-align: left;
  padding: 0.5em 0.8em;
  line-height: 1.65;
  border: 1px solid #999;
  background-color: #F3F3F3;
}
.table td{
  font-weight: normal;
  line-height: 100%;
  text-align: right;
  padding: 0.5em 0.8em;
  line-height: 1.65;
  border: 1px solid #999;
}
@media screen and (max-width: 480px) {
.table {
  font-size: 0.9em;
  }
.table th{
  padding: 0.3em 0.5em;
  }
.table td{
  padding: 0.3em 0.5em;
  }
}

/*-------------------------
診療日テーブル
--------------------------*/
.hourtable {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
}
.hourtable tr:first-child{
  border-top: 1px solid #666;
}
.hourtable tr {
  border-bottom: 1px solid #666;
}
.hourtable th{
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  padding: 10px 5px;
}
.hourtable td{
  font-size: 2em;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  padding: 10px 5px;
  color: #2E56A6;
  width:9%;
}
.hourtable .mini{
  font-size: 1.35em !important;
  line-height: 0.7;
}
.hourtable .time{
  font-size: 1.2em;
  font-weight: 400;
}
.hourtable .SSS {
  font-size: 0.65em;
  margin: 0 0 0 0.3em;
  vertical-align: middle;
  line-height: 1;
}
@media screen and (max-width: 640px) {
.hourtable th{
  padding: 8px 5px;
  }
.hourtable td{
  padding: 8px 5px;
  }
}
@media screen and (max-width: 480px) {
.hourtable th{
  font-size: 0.85em;
  padding: 8px 2px;
  }
.hourtable td{
  font-size: 1.6em;
  padding: 8px 2px;
  }
.hourtable .time{
  font-size: 1em;
  letter-spacing: 0.03em;
  }
.hourtable .mini{
  font-size: 1.15em !important;
  }
}

/*-------------------------
見出し
--------------------------*/
/*かぎかっこ付き英文タイトル*/
.kakko {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  padding: 1rem 1em;
  font-size: 2.3em;
  font-weight: 300;
  color: #2E56A6;
  text-align: center;
  letter-spacing: 0.18em;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 48px;
}
.kakko span{
  display: block;
  font-size: 0.5em;
  color: #222;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 12px;
}
.kakko::before,
.kakko::after {
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  content: '';
}
.kakko::before {
  border-left: solid 2px #2E56A6;
  border-top: solid 2px #2E56A6;
  top: 0;
  left: 0;
}
.kakko::after {
  border-right: solid 2px #2E56A6;
  border-bottom: solid 2px #2E56A6;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
.kakko {
  max-width: 320px;
  font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
.kakko {
  max-width: 260px;
  padding: 1rem 1em 0.5rem;
  margin-bottom: 32px;
  }
.kakko::before,
.kakko::after {
  width: 1em;
  height: 1em;
  }
}

/*下線ライン付きサブタイトル*/
.subtitle {
  position: relative;
  font-size: 1.6em;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
  border-bottom: solid 5px #CCC;
  margin-bottom: 32px;
  padding-bottom: 12px;
}
.subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 5px #2E56A6;
  bottom: -5px;
  width: 20%;
}
@media screen and (max-width: 767px) {
.subtitle {
  font-size: 1.4em;
  }
}
@media screen and (max-width: 640px) {
.subtitle {
  margin-bottom: 24px;
  border-bottom: solid 3px #CCC;
  }
.subtitle:after {
  border-bottom: solid 3px #2E56A6;
  bottom: -3px;
  width: 32%;
  }
}
@media screen and (max-width: 480px) {
.subtitle {
  font-size: 1.3em;
  }
}

/*大文字明朝体見出しセンターテキスト*/
.minchotitle {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.8em;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
.minchotitle {
  font-size: 1.6em;
  }
}
@media screen and (max-width: 640px) {
.minchotitle {
  font-size: 1.5em;
  margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
.minchotitle {
  font-size: 1.35em;
  }
}

/*-------------------------
ボタン・テキストリンク
--------------------------*/
/*文末矢印アイコン付きボタン*/
.btn {
	display: inline-block;
	color: #FFF;
	background-color: #2C53A5;
	text-decoration: none;
	padding: 0.8em 2.4em 0.8em 1.2em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0.3em 0.3em 0;
}
.btn:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.4em;
  font-family:"Material Symbols Rounded";
	content: "\e5c8"; /*矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}
.btn:hover{
	background-color: #5878B8;
	transition: 0.3s;
}

/*文末アイコン付きテキストリンク (内部リンク)*/
.textlink {
	display: inline-block;
	color: #2C54A5;
	text-decoration: underline;
	padding: 0 1em 0 0;
	transition: 0.3s;
	position: relative;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 0.2em;
}
.textlink:after {
	position: absolute;
  top: 0;
  right: 0;
  font-size: 0.8em;
  font-family:"Material Symbols Rounded";
	content: "\f8ce"; /*ななめ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}
.textlink:hover{
  text-decoration: none;
}

/*文末アイコン付きテキストリンク (外部リンク)*/
.extextlink {
	display: inline-block;
	color: #2C54A5;
	text-decoration: underline;
	padding: 0 1.1em 0 0;
	transition: 0.3s;
	position: relative;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 0.2em;
}
.extextlink:after {
	position: absolute;
  top: 0;
  right: 0;
  font-size: 0.9em;
  font-family:"Material Symbols Rounded";
	content: "\e89e"; /*外部リンク*/
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}
.extextlink:hover{
  text-decoration: none;
}

/*-------------------------
ページ上部へジャンプ
--------------------------*/
#jumptop{
  position:fixed;
  right: 32px;
  bottom:32px;
  z-index: 2;
}
.jumpbtn {
  width:5em;
  height:5em;
  cursor:pointer;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  cursor:pointer;
  background:#FFF;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
  position: relative;
}
.jumpbtn:before {
  position: absolute;
  top: 0;
  left: 0.33em;
  display: block;
  font-size: 3em;
  color: #2E56A6;
  font-family:"Material Symbols Rounded";
	content: "\e5d8"; /*上向き矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}
@media(max-width:1240px){
#jumptop{
  right: 24px;
  bottom:24px;
  }
.jumpbtn {
  width: 4.2em;
  height: 4.2em;
  }
.jumpbtn:before {
  top: 0;
  left: 0.4em;
  font-size: 2.4em;
  }
}
@media(max-width:767px){
.jumpbtn {
  display: none;
  }
}


/*========================
予備パーツ
========================*/
/*-------------------------
横並びflexbox
--------------------------*/
/* 幅可変横並び*/
.column {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.column li{
  margin:0 15px 0 0;
}
.column li:last-child{
  margin:0 0 0 0;
}

/* 画像320px ＋ テキスト*/
.column320 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.column320_img {
  max-width: 320px;
  margin: 0 30px 0 0;
}
.column320_text {
  flex: 1;
}
@media screen and (max-width: 1000px) {
.column320_img {
  max-width: 240px;
  margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.column320 {
  flex-direction: column;
  display:block;
  }
.column320_img {
  max-width: 100%;
  margin: 0 0 15px 0;
  text-align: center;
  }
}

/* 均等2列(767px以下で縦列切り替え) */
.col2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.col2 li{
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  margin:0 30px 0 0;
}
.col2 li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 1000px) {
.col2 li{
  margin:0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.col2 {
  flex-direction: column;
  display:block;
  }
.col2 li {
  width:100%;
  max-width:100%;
  margin:0 0 20px 0;
  }
.col2 li:last-child{
  margin:0 0 0 0;
  }
}

