@charset "utf-8";

/*==========================================
 custom properties
===========================================*/

:root {
	--main-color: #F89244;
  --sub-color: #008C46;
  --text-color: #2B2B2B;
  --line-color: #e1e1e1;
  --bg1-color: #fef6e7;
  --bg2-color: #e7f5e7;
  --bg3-color: #f8f8ff;
  --bg4-color: #f5fffa;
  --bg5-color: #FEE9D9;
  
  
  
}

/*==========================================
 common
===========================================*/

*, *::before, *::after {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing: border-box;
}

a {
	color:#333;
	text-decoration:none;
}

a:hover {
	color:#333;
	text-decoration:underline;
}

a[href^="tel:"] {
  cursor: default;
}

.pc {
	display: none;
}

.sp {
	display: block;
}

.hidden {
  display: none;
}

@media print, screen and (min-width: 601px) {

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

}

/* reCAPTCHAの表示を消す */
.grecaptcha-badge {
	visibility: hidden !important;
}

/*==========================================
 全体
===========================================*/

html {
	font-size: 62.5%;
}

body {
	position: relative;
	font-family: "Kosugi Maru", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	line-height: 1.2;
  font-weight: 400;
	color: var(--text-color);
	background: #FFF;
}

#wrap {
	width: 100%;
  overflow: hidden;
	/* background: #FFF; */
}

#head_wrap {
	width: 100%;
  background: rgba(255,255,255,.9);
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 5px 0px #ccc;
  z-index: 9999;
}

#head_wrap.UpMove{
  animation: UpAnime 1s forwards;
}

#head_wrap.DownMove{
  animation: DownAnime 1s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#head0 {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

#head {
  width: 100%;
  height: 100px;
  padding: 0 10px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  position: relative;
}

#contents_wrap {
	width: 100%;
  background: #fff;
	position: relative;
	z-index: 1;
}

#contents {
	width: 100%;
  background: #fff;
  position: relative;
}

/* foot */
#foot_wrap {
	width: 100%;
  padding: 20px 10px;
  background: var(--main-color);
  position: relative;
	z-index: 1;
}

#foot {
  width: 100%;
  padding: 20px 10px;
  background: var(--bg1-color);
  border-radius: 10px;
}

/* foot9 */
#foot9_wrap {
	width: 100%;
  padding: 20px 10px 80px;
  background: var(--main-color);
  position: relative;
	z-index: 1;
}

#foot9 {
  width: 100%;
}

@media print, screen and (min-width: 601px) {

  body {
    padding-bottom: 0;
  }

  #wrap {
    width: 1200px;
    margin: 0 auto;
  }

  #head_wrap {
    width: 1200px;
    margin: 0 auto;
  }

  #head0 {
    height: 20px;
  }

  #head {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #contents_wrap {
  }
  
  #contents {
  }

  #foot_wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 10px;
  }

  #foot {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  #foot9_wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 10px;
  }

  #foot9 {
    width: 100%;
    margin: 0 auto;
  }
  
}

@media print, screen and (min-width: 1201px) {

  #wrap {
    width: 100%;
  }

  #head_wrap {
    width: 100%;
  }

  #foot_wrap {
    width: 100%;
  }

  #foot {
    width: 1200px;
  }

  #foot9_wrap {
    width: 100%;
  }

  #foot9 {
    width: 1200px;
  }

}

/*==========================================
 ヘッダーのスタイル
===========================================*/

#head0 .headline {
	font-size: 1.1rem;
  font-weight: 500;
	line-height: 1.5;
	color: #FFF;
	text-align: center;
}

#head .title {
  display: flex;
  flex-direction: column-reverse;
}

#head .title .logoBlock {
  width: 180px;
}

#head .title .logoBlock .logo {
  width: 100%;
  margin-bottom: 4px;
}

#head .title .logoBlock .logo img {
	width: 100%;
	height: auto;
}

#head .title .logoBlock .heading {
	font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

@media print, screen and (min-width: 601px) {

  #head0 .headline {
    text-align: right;
  }

  #head .title {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  #head .title .logoBlock {
    width: 210px;
    margin-right: 20px;
  }

  #head .title .logoBlock .logo {
    margin-bottom: 8px;
  }

  #head .title .logoBlock .heading {
    font-size: 1.3rem;
  }
  
}

/*==========================================
 gNav
===========================================*/

#gNav {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  padding-top: 110px;
  background: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
}

.hamburger {
  position: absolute;
  right: 10px;
  top: 56px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 300;
}

.hamburger_border {
  position: absolute;
  left: 0;
  width: 28px;
  height: 4px;
  background-color: var(--sub-color);
  transition: all .6s;
}

.hamburger_border_top {
  top: 0;
}

.hamburger_border_center {
  top: 10px;
}

.hamburger_border_bottom {
  top: 20px;
}

.black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

.nav-open #gNav {
  right: 0;
}

.nav-open .black_bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 10px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 10px;
}

.gNavList {
  margin-bottom: 40px;
  text-align: center;
}

.gNavList li {
}

.gNavList li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  padding: 20px 35px;
  transition: all .5s;
  position: relative;
	border-bottom: 1px solid var(--line-color);
}
  
.gNavList li a:hover {
  color: var(--main-color);
}

.snsList {
  display: flex;
  justify-content: center;
  align-items: center;
}

.snsList li {
}

.snsList li a {
  font-size: 3.0rem;
  padding: 20px;
  transition: all 0.3s;
}

.snsList li a i {
  font-size: 1em;
}

.snsList li a:hover {
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {
  
  #gNav {
    position: static;
    width: auto;
    height: auto;
    padding-top: 0;
    background-color: transparent;
    overflow-y: hidden;
    display: flex;
    align-items: center;
  }

  .gNavList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 0;
  }
  
  .gNavList li {
  }

  .gNavList li a {
    font-size: 1.4rem;
    border-bottom: none;
    padding: 14px 12px;
    position: relative;
    transition: all 0.3s;
  }
/*
  .gNavList li a:hover,
  .about .gNavList li.linkAbout a,
  .treatment .gNavList li.linkTreatment a,
  .gyakuten .gNavList li.linkGyakuten a,
  .blog .gNavList li.linkBlog a,
  .news .gNavList li.linkNews a {
    color: var(--main-color);
  }
*/
  

  .snsList {
  }
  
  .snsList li {
  }

  .snsList li a {
    font-size: 3.0rem;
    padding: 14px;
  }

}

/*==========================================
 　サイドナビのスタイル
===========================================*/

.sideNav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.sideNavList {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.sideNavList li {
  width: calc((100% - 8px) / 3);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  border-top: 2px solid var(--main-color);
  border-left: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
}

.sideNavList li a {
  width: 100%;
  height: 60px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--main-color);
  text-decoration: none;
  background: var(--bg1-color);
  transition: all 0.5s;
    
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.sideNavList li a i {
  font-size: 1.8em;
  margin-bottom: 6px;
}

.sideNavList li a:hover {
  opacity: 0.8;
}

@media print, screen and (min-width: 601px) {

  .sideNav {
    top: 130px;
    right: 0;
    left: inherit;
    bottom: inherit;
  }

  .sideNavList {
    height: 320px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sideNavList li {
    width: 50px;
    border-radius: 4px 0 0 4px;
    border-bottom: 2px solid var(--main-color);
    border-right: none;
  }

  .sideNavList li a {
    height: 150px;
    font-size: 1.4rem;
    writing-mode: vertical-rl;

    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .sideNavList li a i {
  }
  
}

/*==========================================
 ページトップへボタンのスタイル
===========================================*/

#iconPageTop {
  position: fixed;
  bottom: 80px;
  right: 10px;
	z-index: 10;
}

#iconPageTop a {
	width: 44px;
	height: 44px;
	line-height: 44px;
	background: rgba(248,146,68,0.8);
	color: #FFF;
	display: block;
	text-align: center;
	transition: all 0.5s;
  border-radius: 4px;
}

#iconPageTop a i {
  font-size: 1.8rem;
}

#iconPageTop a:hover {
	opacity: 0.8;
}

@media print, screen and (min-width: 601px) {

  #iconPageTop {
    bottom: 60px;
  }

}

/*==========================================
 フッターコンタクト
===========================================*/

.bg_contactImage {
  width: 100%;
}

.contactImage {
  position: relative;
}

.contactImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contactImage img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: bottom center;
}

@media print, screen and (min-width: 601px) {

  .contactImage img {
    height: 600px;
  }

}

/*==========================================
 フッターのスタイル
===========================================*/


/*==========================================
 フッターのスタイル
===========================================*/

#foot .foot1 {
}

#foot .profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

#foot .profile .logo {
  width: 100%;
  max-width: 250px;
  margin-bottom: 10px;
}

#foot .profile .logo img {
  width: 100%;
  height: auto;
}

#foot .profile .adrs {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
}

#foot .profile .tel a {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 3.2rem;
  color: var(--main-color);
  display: flex;
  align-items: center;
  text-decoration: none;
}

#foot .profile .tel i {
  font-size: 1.1em;
  margin-right: .2em;
}

#foot .profile .outlineList {
  display: flex;
  flex-wrap: wrap;
}

#foot .profile .outlineList > dt,
#foot .profile .outlineList > dd {
  font-size: 1.1rem;
}

#foot .profile .outlineList > dt {
  width: 5em;
}

#foot .profile .outlineList > dd {
  width: calc(100% - 5em);
}

#foot .profile .outlineList > dd .hoursList {
  display: flex;
  flex-wrap: wrap;
}

#foot .profile .outlineList > dd .hoursList > dt,
#foot .profile .outlineList > dd .hoursList > dd {
  font-size : 1.1rem;
  line-height : 1.3;
}

#foot .foot2 {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}

#foot .schedule {
  margin-bottom: 40px;
}

#foot .schedule table {
	width: 100%;
	overflow: hidden;
  border-radius: 4px 4px 0 0;
	table-layout: fixed;
  margin-bottom: 10px;
}

#foot .schedule table tr:first-child {
	background: #999;
  color: #fff;
}

#foot .schedule table tr:not(:first-child) {
	border-bottom: 1px solid #ccc;
}

#foot .schedule table tr th {
	width: 30%;
}

#foot .schedule table tr td {
	width: calc(70% / 7);
}

#foot .schedule table tr th,
#foot .schedule table tr td {
  font-size: 1.2rem;
	text-align: center;
	padding: .6em 0;
}

#foot .schedule table th {
  font-weight: 500;
}

#foot .schedule table tr td.open,
#foot .schedule .note .open {
	color: var(--main-color);
}

#foot .schedule table tr td.seitai,
#foot .schedule .note .seitai {
	color: var(--sub-color);
}

#foot .schedule .note {
  font-size: 1.2rem;
  text-align: right;
}

#foot .googleMap {
  position: relative;
  width: 100%;
	height: 150px;
	background: #eee;
	border: 1px solid #e1deda;
  overflow: hidden;
}
  
#foot .googleMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

#fNav {
  text-align: center;
  margin-bottom: 40px;
}

#fNav li {
  margin-bottom: 20px;
}

#fNav li:last-child {
  margin-bottom: 0;
}

#fNav li a {
  font-size : 1.4rem;
  line-height : 1.0;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s;
}

#fNav li a:hover {
  opacity: 0.8;
}

#foot9 .copyright {
  font-size : 1.0rem;
  line-height : 1.0;
  text-align: center;
  color: #fff;
}

@media print, screen and (min-width: 601px) {

  #foot .foot1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  #foot .profile {
    width: 270px;
    margin-bottom: 0;
  }

  #foot .profile .logo {
    width: 100%;
    max-width: none;
  }

  #foot .profile .adrs {
    font-size: 1.3rem;
    text-align: left;
  }

  #foot .profile .tel a {
    font-size: 3.5rem;
  }

  #foot .schedule {
    width: 330px;
    margin-bottom: 0;
  }

  #foot .googleMap {
    width: 410px;
    height: 150px;
  }

  #foot .foot2 {
    width: 700px;
    flex-direction: column;
    align-items: flex-end;
  }

  #fNav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    align-items: center;
  }

  #fNav li {
    margin-bottom: 0;
    margin-right: 20px;
  }

  #fNav li a {
    font-size : 1.5rem;
  }

  #fNav li:last-child {
    margin-right: 0;
  }

  #foot9 .copyright {
    font-size : 1.2rem;
  }
  
}

/*==========================================
 ページタイトルのスタイル
===========================================*/

#contentsHead_wrap {
  width: 100%;
  background: var(--bg1-color);
  position: relative;
  z-index: 2;
}


#contentsHead {
  width: 100%;
  padding-top: 140px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contentsTitle {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--sub-color);
  clip-path: inset(0 100% 0 0);
  animation: anim_contentsTitleJp 1.5s forwards;
}

@keyframes anim_contentsTitleJp {
  0% {
      clip-path: inset(0 100% 0 0);
  }
  100% {
      clip-path: inset(0);
  }
}

@media print, screen and (min-width: 601px) {

  #contentsHead_wrap {
    width: 1200px;
  }

  #contentsHead {
    padding-top: 110px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contentsTitle {
    font-size: 3.0rem;
  }

}

@media print, screen and (min-width: 1201px) {

  #contentsHead_wrap {
    width: 100%;
  } 

} 

/*==========================================
 ページ概要のスタイル
===========================================*/

.contentsOverviewBlock  {
  width: 100%;
  padding: 40px 10px;
  animation: fadeUpAnime 1s .5s ease-out forwards;
  opacity: 0;
}

.contentsOverviewBlock .textBlock {
  padding: 0 10px;  
}

.contentsOverviewBlock .textBlock .title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--main-color);
  text-align: center;
}

.contentsOverviewBlock .textBlock .desc {
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: justify;
}

@media print, screen and (min-width: 601px) {

  .contentsOverviewBlock {
    width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .contentsOverviewBlock .textBlock {
    padding: 0 20px;  
  }

  .contentsOverviewBlock .textBlock .title {
    font-size: 2.8rem;
  }

  .contentsOverviewBlock .textBlock .desc {
    text-align: center;
  }

}

/*==========================================
 section
===========================================*/

.section_wrap {
	width: 100%;
}

.section_wrap .section {
  width: 100%;
  padding: 40px 10px;
}

.section_wrap .section .sectionHead {
  margin-bottom: 40px;
}

.sectionHead .sectionTitle {
  padding: 0 10px;
}

.sectionHead .sectionTitle .title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--sub-color);
  text-align: center;
  padding-bottom: 1em;
  margin-bottom: 20px;
  position: relative;
}

.sectionHead .sectionTitle .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.sectionHead .sectionTitle .desc {
  font-size: 1.8rem;
  line-height: 1.5;
}
  
@media print, screen and (min-width: 601px) {

  .section_wrap {
    width: 1200px;
  }

  .section_wrap .section {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
  }
  
  .sectionHead .sectionTitle {
    width: 800px;
    margin: 0 auto;
  }

  .sectionHead .sectionTitle .title {
    font-size: 2.8rem;
  }

  .sectionHead .sectionTitle .desc {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
  }
	
}

@media print, screen and (min-width: 1201px) {

  .section_wrap {
    width: 100%;
  }

}

/*==========================================
 共通部品
===========================================*/

/* meritList */

.meritList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.meritList li {
  width: calc((100% - 12px) / 3);
  margin-right: 4px;
  font-size: 1.1rem;
  font-feature-settings: "palt" 1;
  color: var(--main-color);
  text-align: center;
  border: 1px solid var(--main-color);
  padding: 2px;
  border-radius: 4px;
}

.meritList li:last-child {
  margin-right: 0;
}

@media print, screen and (min-width: 601px) {

  #head .meritList {
    width: 260px;
    margin-bottom: 0;
  }

  #head .meritList li {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #foot .meritList li {
    font-size: 1.2rem;
  }
  
}

/* noteBox */

.noteBox {
}

.noteBox .note {
  font-size: 1.5rem;
  line-height: 1.5;
  display: flex;
  margin-bottom: 4px;
}

.noteBox .note::before {
  content: "※";
	margin-right: 0.4em;
	font-size: 1em;
}

@media print, screen and (min-width: 601px) {


}

/* cautionBox */

.cautionBox {
  padding: 20px;
  background: var(--bg5-color);
  border-radius: 10px;
  margin-top: 40px;
}

.cautionBox .cautionTitle {
  text-align: center;
  margin-bottom: 20px;
}

.cautionBox .cautionTitle span {
  display: inline-block;
  padding: 0 40px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--sub-color);
  position: relative;
}

.cautionBox .cautionTitle span::before,
.cautionBox .cautionTitle span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--sub-color);
}

.cautionBox .cautionTitle span::before {
  left: 0;
}

.cautionBox .cautionTitle span::after {
  right: 0;
}

.cautionBox .cautionText {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}

.cautionBox .cautionSubBlock {
  padding: 20px;
  background: var(--bg1-color);
  border-radius: 10px;
  margin-top: 20px;
}

.cautionBox .cautionSubBlock .cautionSubTitle {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
}

.cautionBox .cautionSubBlock .cautionSubText {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 601px) {

  .cautionBox {
    padding: 40px;
  }

  .cautionBox .cautionSubBlock {
    padding: 40px;
    margin-top: 40px;
  }

  .cautionBox .cautionSubBlock .cautionSubText {
    margin-bottom: 40px;
  }

}

/* moreBtn */

.moreBtn {
  text-align: center;
}

.moreBtn a {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: .04em;
  text-decoration: none;
	position: relative;
  transition: all 0.3s;
}

.moreBtn a::after {
  display: inline-block;
  margin-left: 4px;
  content: '';
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid var(--text-color);
  border-right: 2px solid var(--text-color);
}

.moreBtn a:hover {
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {

}

/* postNav */

.postNavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.postNavi .prev,
.postNavi .next {
}

.postNavi .linkArchive {
  margin: 0 40px;
}

.postNavi .prev a,
.postNavi .next a,
.postNavi .linkArchive a {
  font-size : 1.5rem;
  font-weight: 500;
  letter-spacing : 0.1em;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.postNavi .prev a i,
.postNavi .next a i {
  font-size: 1.5em;
  vertical-align: middle;
}

.postNavi .prev a:hover,
.postNavi .next a:hover,
.postNavi .linkArchive a:hover {
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {
  
}

/* wp-pagenavi */

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size : 1.7rem;
  color: var(--sub-color);
	margin: 0 6px;
  padding: .4em;
  border: 1px solid var(--line-color);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
	text-decoration: none;
}


.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border: none;
  color: var(--sub-color);
}

.wp-pagenavi .extend {
  border: none;
  color: var(--sub-color);
}

.wp-pagenavi a i {
  font-size: 1.5em;
}

.wp-pagenavi a:hover {
  border: 1px solid var(--sub-color);
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  border: none;
}

.wp-pagenavi span.current{
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #fff;
}

@media print, screen and (min-width: 601px) {
  
}

/* ctgrySelect */

#ctgrySelect {
	margin-bottom: 40px;
}

#ctgryMenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#ctgryMenu li.cat-item-all {
	width: 100%;
}

#ctgryMenu li.cat-item {
	 width: calc((100% - 8px) / 2);
}

.mail #ctgryMenu li {
	 width: calc((100% - 32px) / 8);
}

#ctgryMenu li.cat-item-all,
#ctgryMenu li.cat-item,
.mail #ctgryMenu li {
  margin: 2px;
}

#ctgryMenu li a {
  display: block;
  padding: .4em 0;
	font-size: 1.2rem;
	line-height: 1.5;
  text-align: center;
  color: var(--main-color);
  border: 2px solid var(--bg5-color);
  text-decoration: none;
  background: #fff;
  border-radius: 4px;
	transition: all 0.3s ease-in-out;
}

.post-type-archive #ctgryMenu li.cat-item-all a,
#ctgryMenu li.current-cat a,
#ctgryMenu li.current-year a {
  color: #fff;
  background: var(--main-color);
  border: 2px solid var(--main-color);
  pointer-events: none;
}

#ctgryMenu li a:hover {
  border: 2px solid var(--main-color);
}

@media print, screen and (min-width: 601px) {

  #ctgrySelect {
    width: 940px;
    margin: 0 auto 80px;
  }

  #ctgryMenu {
    justify-content: center;
  }

  #ctgryMenu li.cat-item-all,
  #ctgryMenu li.cat-item {
    width: 148px;
    margin: 4px;
  }

  #ctgryMenu li a {
    font-size: 1.5rem;
  }

}

/*==========================================
 animation
===========================================*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeIn{
  animation-name: fadeInAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}

.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration: 1.0s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-out;
  opacity:0;
}

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration: 1.0s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-out;
  opacity:0;
}

.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration: 1.0s;
  animation-fill-mode:forwards;
  animation-timing-function: ease-out;
  opacity:0;
}


.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay10 {
  animation-delay: 1.0s;
}

.delay20 {
  animation-delay: 2.0s;
}

.delay30 {
  animation-delay: 3.0s;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-50px);
  }

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

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(50px);
  }

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

/* 印刷 */

@media print{

  body {
    width: 1200px;
  }

  #head_wrap {
    position: relative;
  }

  #btnPageTop {
    display: none;
  }
  
  .fadeInTrigger,
  .fadeUpTrigger,
  .fadeDownTrigger,
  .fadeLeftTrigger,
  .fadeRightTrigger {
    opacity: 1;
  }

}
