/*
Theme Name: いっくるクリニック
*/
/*-----------------------------------------------
 基本設定
-----------------------------------------------*/ :root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  /*--color-theme: #F8B400;*/
  --color-theme: #f0ba1a;
  --color-sub: #D8F0FF;
  --color-content: #fff9e8;
  --color-brown: #4E2F14;
  --color-black: #333333;
  --color-gray: #cccccc;
}
/*---------------------------------------------
Common Style
---------------------------------------------*/
h2.heading {
  position: relative;
  width: 100%;
  margin: 0 0 50px;
  padding: 0 0 30px 0;
  color: var(--color-brown);
  font-size: 1.5rem;
  text-align: center;
  background-image: linear-gradient(90deg, rgba(0 0 0 / 0) 0%, rgba(0 0 0 / 0) 47%, var(--color-theme) 47%, var(--color-theme) 53%, rgba(0 0 0 / 0) 53%, rgba(0 0 0 / 0) 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: center bottom;
}
h2.heading::before {
  content: attr(data-en);
  display: block;
  margin-bottom: 10px;
  color: var(--color-theme);
  font-size: 3.5rem;
}
h2.heading::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-image: url(/cms/wp-content/uploads/2025/10/img_logo_title.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  h2.heading {
    font-size: 1.0rem;
  }
  h2.heading::before {
    font-size: 1.8rem;
  }
  h2.heading::after {
    top: -30px;
    width: 30px;
    height: 30px;
  }
}
a.link {
  color: var(--color-theme);
  margin: 0 auto;
  display: block;
  width: fit-content;
  transition: var(--transition);
}
a img:hover {
  transition: var(--transition);
}
a.link:hover, a img:hover {
  opacity: .7;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.fl-box {
  display: flex;
  flex-wrap: wrap;
}
/* 背景ずらしボタン
----------------------------*/
.button-bg {
  color: var(--color-black);
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  border: 1px solid #333;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-bg:after {
  content: "";
  background-color: #fffaa9;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
  border-radius: 5px;
  transform: translateZ(-10px);
}
.button-bg:hover:after {
  top: 0px;
  left: 0px;
}
@media (min-width: 768px) {
  .button-bg {
    padding: 13px 50px 13px;
  }
}
/* レスポンシブテーブル
----------------------------*/
.rps_table {
  margin: 0 auto;
  width: 100% !important;
  line-height: 2.0;
  max-width: 2000px;
}
.rps_table td, .rps_table th {
  border: 1px solid #ccc;
  padding: 20px 30px;
  line-height: 1.8;
  background: #fff;
}
.rps_table th {
  background: #f0f0f0;
  font-weight: normal;
  text-align: left;
  padding: 20px 15px;
  white-space: nowrap;
}
.rps_table ul {
  margin: 0;
}
@media only screen and (max-width:767px) {
  .rps_table {
    border: none;
  }
  .rps_table tr {
    display: block;
  }
  .rps_table th, .rps_table td {
    padding: 10px;
    display: list-item;
    list-style-type: none;
    border: none;
    width: 100%;
  }
  .rps_table td, .rps_table.border td {
    border-top: none;
  }
}
/* 臨時ニュース
----------------------------*/
section#preview {
  border: 3px solid #4591f3;
  border-radius: 10px;
  display: flex;
  margin: 50px auto;
  width: 90%;
  max-width: 1200px;
}
section#preview .header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #4591f3;
  color: #fff;
  font-weight: bold;
  padding: 30px 50px;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: 0.5rem;
  white-space: nowrap;
}
section#preview .content {
  padding: 10px;
}
section#preview .content .date {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #f25648;
}
section#preview .content .date span {
  margin-left: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #666666;
}
.note {
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
}
.note .t {
  background-color: #dff3ff;
  padding: 10px 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-radius: 10px 0 0 10px;
}
.note .desc {
  padding: 10px 20px;
}
@media only screen and (max-width:1024px) {
  section#preview {
    flex-flow: column;
  }
}
@media only screen and (max-width:768px) {
  section#preview .header {
    padding: 10px 20px;
    font-size: 1.8rem;
    letter-spacing: normal;
    line-height: 2.2rem;
  }
  section#preview .content .date {
    display: block;
    text-align: center;
    font-size: 1.5rem;
  }
  section#preview .content .date span {
    margin-left: 0px;
    font-size: 1rem;
  }
  .note {
    flex-flow: column;
  }
  .note .t {
    border-radius: 10px 10px 0 0;
    white-space: normal;
  }
}
@media only screen and (max-width:425px) {
  section#preview .content .date span {
    display: block;
    margin-bottom: 10px;
  }
}
/*---------------------------------------------
Header Style
---------------------------------------------*/
header {
  position: relative;
  z-index: 8;
}
/* small menu area
----------------------------*/
.header_small_menu, .footer_small_menu {
  position: relative;
  background: var(--color-theme);
  color: #fff;
  padding: 5px;
  font-size: 12px;
  transition: var(--transition);
  z-index: 9;
}
.header_small_menu a, .footer_small_menu a {
  color: #fff;
}
.header_small_menu a:before, .footer_small_menu a:before {
  font-family: 'fontAwesome';
  content: '\f0da';
  margin-right: 3px;
}
.header-logo, .header_small_content, .footer_small_content {
  width: 90% !important;
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.header-logo .logo img {
  transition: var(--transition);
}
.header_small_menu #description {
  margin: 0;
  padding: 3px 0;
  font-size: 13px;
  font-weight: normal;
}
.header_small_menu_right {
  margin: 3px 70px 0 0;
}
.header_small_menu_right li, .footer_small_menu li {
  display: inline-block;
  padding: 0 3px;
}
.header_small_menu li a, .footer_small_menu li a {
  padding: 3px !important;
}
.footer_small_content.no-nav {
  display: none;
}
/* 左から右に線が伸びる（下部）
---------------------------*/
.header_small_menu li a, .footer_small_menu li a {
  position: relative;
}
.header_small_menu li a::after, .footer_small_menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 91%;
  height: 1px;
  background: #fff;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.header_small_menu li.current a::after, .header_small_menu li a:hover::after, .footer_small_menu li.current a::after, .footer_small_menu li a:hover::after {
  transform: scale(1, 1);
}
#nav_fixed {
  font-family: 游ゴシック体, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", FontAwesome, sans-serif;
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  padding-top: 35.5px;
  background: #fff;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
}
#nav_fixed .logo {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
#nav_fixed .logo img {
  max-height: 60px;
  width: 80%;
}
.header-logo .header-right {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-right: 70px;
}
.is-shrink .header-logo .header-right {
  margin-right: 50px;
}
.header-logo .header-right .cta {
  padding: 10px 5px 10px 30px;
  white-space: nowrap;
}
.header-right .cta .tel a {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  line-height: 1.0em;
  transition: var(--transition);
}
.header-right .cta .tel a:hover {
  color: var(--color-brown);
}
.header-right .cta .tel a::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 5px;
  content: '\f095';
  display: block;
  font-size: 1.5rem;
  transition: var(--transition);
}
.header-logo #nav ul#fixnavul {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.header-logo #nav ul li a {
  display: inline-block;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  font-weight: bold;
  vertical-align: bottom;
  font-size: .9em;
  padding: 3px;
}
#nav_fixed .menu_button {
  display: none;
}
.is-shrink .header-logo {
  font-size: 0.8em;
}
.is-shrink .header-logo .logo img {
  transform: scale(.9);
}
.is-shrink .header-right .cta .tel a {
  font-size: 1.75rem;
}
.is-shrink .header-right .cta .tel a::before {
  font-size: 1.2rem;
}
/* sub menu style
---------------------------*/
ul#fixnavul li.sub {
  position: relative;
}
ul#fixnavul ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(200, 200, 200, .2);
  overflow: hidden;
}
ul#fixnavul ul.sub-menu li + li {
  border-left: none !important;
}
ul#fixnavul ul.sub-menu li a {
  padding: 15px 25px;
  border-radius: inherit;
  transition: 0.5s;
  white-space: nowrap;
  width: 100%;
  display: block;
}
ul#fixnavul ul.sub-menu li a:hover {
  transform: translateX(5px);
  background-color: var(--color-content);
}
/* 左から右に線が伸びる（下部）
---------------------------*/
.header-logo #nav ul#fixnavul > li > a {
  position: relative;
}
.header-logo #nav ul#fixnavul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.header-logo #nav ul#fixnavul > li > a:hover::after, .header-logo #nav ul#fixnavul > li > a.current::after {
  transform: scale(1, 1);
}
/* パンくずリスト
---------------------------*/
.breadcrumb-wrap {
  text-align: center;
}
.breadcrumb-wrap.fixed {
  margin-top: 55px;
}
ul#breadcrumb {
  max-width: 2000px;
  width: 90%;
  font-size: 13px;
  padding: 10px 0;
  margin: 0 auto;
  text-overflow: ellipsis;
  list-style: none;
}
#breadcrumb li {
  display: inline-block;
}
#breadcrumb li a:hover {
  color: var(--color-hover);
}
#breadcrumb .fa-home {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#breadcrumb li:not(:first-child):before {
  content: '\f0da';
  color: #aaa;
  margin: 0 5px;
  position: relative;
  top: 1px;
  font-family: 'FontAwesome';
}
@media only screen and (max-width:1023px) {
  ul#breadcrumb {
    width: 100%;
    padding: 10px 20px;
  }
}
@media only screen and (max-width:425px) {
  ul#breadcrumb {
    font-size: 0.6rem;
    padding: 10px;
  }
}
/* スマホドロワーメニュー
---------------------------*/
.drawer-overlay {
  transition: var(--transition);
}
.drawer-overlay.active {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 9999;
}
#drawer-nav {
  background: var(--color-black);
  margin: 0;
  padding: 10px;
  list-style: none;
  top: 0;
  z-index: 99999;
  width: 80%;
  max-width: 450px;
  height: 100%;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
  overflow-y: scroll;
  position: fixed;
  right: -100%;
}
#drawer-nav.active {
  left: inherit;
  right: 0;
}
#drawer-nav ul.menu li:not(:last-child) {
  border-bottom: 1px dotted #999;
}
#drawer-nav ul.menu li a {
  display: block;
  padding: .8em 1em;
  margin: 0;
  position: relative;
  color: #eee;
  font-size: 0.9rem;
  transition: 0.3s;
}
#drawer-nav ul.menu li a:hover {
  background-color: var(--color-brown);
}
#drawer-nav ul#drawernavul li ul.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 0 10px;
}
#drawer-nav ul#drawernavul li ul.sub-menu li {
  border: none;
}
#drawer-nav ul#drawernavul li ul.sub-menu li a:before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
  color: var(--color-gray);
  font-size: 0.9rem;
}
#drawer-nav a.line_bnr {
  margin: 30px auto 0;
  display: block;
  max-width: 250px;
}
@media screen and (max-width:1199px) {
  #nav_fixed {
    border-radius: 0 0 20px 20px;
  }
  #nav_fixed #nav, #nav_fixed .cta {
    display: none;
  }
  #nav_fixed .menu_button {
    position: absolute;
    z-index: 7;
    right: 0px;
    display: inline-block;
    font-size: 11px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    text-align: center;
    transition: all .3s;
  }
  #nav_fixed .menu_button {
    transform: scale(0.9);
  }
  #nav_fixed .menu_button::before {
    font-family: 'fontAwesome';
    content: '\f0c9';
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 3px;
    right: 0;
    margin: auto;
    font-size: 25px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    -webkit-font-smoothing: antialiased;
  }
  #nav_fixed .menu_button span {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
  }
  .header_small_content, .footer_small_content {
    display: block;
    width: 96% !important;
    text-align: center;
  }
  .header_small_menu #description {
    text-align: center;
  }
  .header_small_menu .header_small_menu_right {
    display: none;
  }
  #nav_fixed #nav {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .header_small_content, .footer_small_content {
    width: 100% !important;
  }
}
/*---------------------------------------------
FirstView Style
---------------------------------------------*/
.firstview {
  position: relative;
  width: 100%;
  height: calc(100vh - 35.5px);
  height: calc(100svh - 35.5px);
  background: linear-gradient(0deg, #fff, #87ceeb);
  overflow: hidden;
}
.firstview .fv-logo {
  position: absolute;
  width: 100%;
  top: calc((100% - 35.5px) / 2 - 50px);
  left: 50%;
  transform: translate(-50%, calc((100% - 35.5px) / 2 * -1));
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  z-index: 1;
}
.firstview.sub {
  padding-top: 180px;
  height: auto;
  background: transparent;
}
.firstview .fv-logo .txt {
  color: var(--color-brown);
  text-align: center;
  font-size: 1.5rem;
}
.firstview .fv-logo .txt .catch {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.firstview .fv-logo .txt .title {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.firstview .fv-logo .txt .catch img, .firstview .fv-logo .txt .title img {
  width: 450px;
  max-width: 90%;
  margin: 0 auto;
}
.firstview .fv-logo .logo img {
  max-width: 400px;
  animation: swing 3.0s linear infinite;
}
.firstview.sub .fv-logo .txt .slug {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.firstview.sub .fv-logo .txt .title {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.firstview .illust img.btm1 {
  position: absolute;
  bottom: 0.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 500px;
  z-index: 1;
}
.firstview .illust img.btm2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.firstview .illust img.cloud1 {
  position: absolute;
  width: 15vw;
  top: 25vh;
  left: 2vw;
  animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
}
.firstview .illust img.cloud2 {
  position: absolute;
  width: 10vw;
  top: 15vh;
  right: 25vw;
  animation: floating-y 3.0s ease-in-out infinite alternate-reverse;
}
.firstview .illust img.cloud3 {
  position: absolute;
  width: 8vw;
  bottom: 35vh;
  left: 15vw;
  animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}
.firstview .illust img.cloud4 {
  position: absolute;
  width: 10vw;
  bottom: 40vh;
  right: 10vw;
  animation: floating-y 2.0s ease-in-out infinite alternate-reverse;
}
.firstview .illust img.bird {
  position: absolute;
  width: 100px;
  top: 30%;
  right: -100px;
  animation: fly 8s ease-out infinite;
  z-index: 2;
}
.firstview.sub .illust img.cloud1 {
  width: 10vw;
  top: 50%;
  left: 10vw;
}
.firstview.sub .illust img.cloud2 {
  width: 10vw;
  top: 30%;
  right: 20vw;
}
.firstview.sub .illust img.bird {
  bottom: 0;
  top: inherit;
}
.firstview.sub .illust img.btm1, .firstview.sub .illust img.btm2, .firstview.sub .illust img.cloud1, .firstview.sub .illust img.cloud2, .firstview.sub .illust img.cloud3, .firstview.sub .illust img.cloud4 {
  display: none;
}
@media screen and (max-width:1199px) {
  .firstview.sub {
    padding-top: 150px;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .firstview {
    height: 70vw;
    height: 70svw;
  }
  .firstview .fv-logo .logo img {
    max-width: 300px;
  }
}
@media screen and (max-width:767px) {
  .firstview .fv-logo {
    flex-direction: column-reverse;
  }
  .firstview .fv-logo .logo img {
    width: 300px;
    max-width: 90%;
    margin: 0 auto;
  }
  .firstview .illust img.cloud1 {
    left: -5vh;
    width: 25vw;
  }
  .firstview .illust img.cloud2 {
    width: 20vw;
  }
  .firstview .illust img.cloud3 {
    width: 18vw;
  }
  .firstview .illust img.cloud4 {
    width: 20vw;
  }
  .firstview .illust img.bird {
    animation: fly 5s ease-out infinite;
  }
}
/*---------------------------------------------
Front Page Style
---------------------------------------------*/
section .content-wrap {
  max-width: 1680px;
  width: 96%;
  margin: 0 auto;
  padding: 120px 0;
}
section .content-wrap.fullwidth {
  max-width: inherit;
  width: 100%;
}
section.news {
  background: var(--color-content);
  border-radius: 0 0 50px 50px;
}
section.news .news-wrap img.header {
  width: 500px;
  margin: 0 auto;
}
section.news .news-wrap .news-list-wrap {
  max-width: 100%;
  width: 600px;
  margin: -23px auto 0;
  padding: 20px 50px;
  background: #fff;
  border: 1px solid var(--color-black);
  border-radius: 50px;
  box-shadow: 8px 8px 0px #fff1cb;
}
section.news .news-wrap .news-list-wrap p {
  text-align: center;
  margin: 0;
}
section.news ul.news-list li a {
  width: 90%;
  padding: 10px 0;
  margin: 0 auto;
  display: block;
  border-bottom: 1px dashed var(--color-black);
  transition: var(--transition);
}
section.news ul.news-list li a:hover {
  transform: translateX(5px);
}
section.news ul.news-list li a span.date {
  color: var(--color-theme);
  font-weight: bold;
}
section.concept .fl-box {
  justify-content: space-between;
  column-gap: 8rem;
}
section.concept .fl-box .box {
  width: 40%;
  max-width: 800px;
}
section.concept .fl-box .box.txt {
  margin-right: auto;
}
section.concept .box.pic img {
  border-radius: 0 50px 50px 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.concept .box.txt .title {
  color: var(--color-theme);
  font-weight: bold;
  font-size: 1.5rem;
  margin: 1.5rem 0;
}
section.concept .box.txt .msg {
  padding-bottom: 1.5rem;
}
section.concept .desc p span {
  font-size: 0.8rem;
  margin-right: 10px;
}
section.information {
  background: linear-gradient(180deg, var(--color-content), #fff);
  border-radius: 50px 50px 0 0;
}
section.information .fl-box {
  justify-content: space-between;
  column-gap: 4rem;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
section.information .fl-box .box {
  position: relative;
  width: calc((100% - 2rem * 2) / 2);
}
section.information .fl-box .box::after {
  font-family: 'FontAwesome';
  color: var(--color-theme);
  font-size: 80px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
section.information .fl-box .box iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
section.information .fl-box .box.gmap::after {
  content: '\f3c5';
  color: #D3333C;
}
section.information .fl-box .box.detail {
  background: #fff;
  border: 1px solid var(--color-black);
  box-shadow: 8px 8px 0px #fff1cb;
  padding: 50px 30px;
  margin: 0 auto;
  border-radius: 20px;
}
section.information .fl-box .box.detail::after {
  content: '\f017';
  background: #fff;
}
section.information .box.detail .title {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin: 0 0 1.2rem;
}
section.information .box.detail .inner {
  display: flex;
  align-items: center;
  margin: 15px 0 0;
}
section.information .box.detail .subheading span {
  font-size: 1.2rem;
  font-weight: bold;
  border-left: 3px solid var(--color-theme);
  padding: 0 10px 0 10px;
}
table.hours {
  margin: 0 auto;
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  font-size: 0.8rem;
}
table.hours th {
  width: auto;
  background-color: var(--color-brown);
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding: 10px 15px;
  border: 1px solid #fff;
  vertical-align: middle;
  white-space: nowrap;
}
table.hours td {
  padding: 5px;
  text-align: center;
  background-color: #fbfbfb;
  border: 1px solid #fff;
}
table.hours td img {
  width: 35px;
  margin: 0 auto;
}
table.hours td.nowrap {
  white-space: nowrap;
}
table.hours td p.vertical {
  writing-mode: vertical-rl;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  section.information .fl-box {
    align-items: center;
    flex-direction: column;
    gap: 80px;
  }
  section.information .fl-box .box {
    width: 100%;
    max-width: 600px;
  }
  section.information .fl-box .box.gmap {
    aspect-ratio: 1/1;
  }
  section.concept .fl-box {
    column-gap: 4rem;
  }
  section.concept .fl-box .box.txt {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  section.concept .fl-box .box, section.concept .fl-box .box.txt {
    width: 90%;
    max-width: inherit;
    margin: 0 auto;
  }
  section.concept .box.pic img {
    border-radius: 20px;
  }
  section.concept .box.txt .title {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
  }
}
@media (max-width: 768px) {
  section.news .news-wrap img.header {
    width: 300px;
  }
  section.news .news-wrap .news-list-wrap {
    margin: -14px auto 0;
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  section.information .box.detail .title {
    font-size: 1.2rem;
  }
  section.information .fl-box .box::after {
    font-size: 60px;
    width: 60px;
    height: 60px;
    top: -40px;
  }
  section.information .fl-box .box.detail {
    padding: 40px 20px;
  }
  section.information .box.detail .subheading span {
    font-size: 1.0rem;
  }
}
/*---------------------------------------------
Main Style
---------------------------------------------*/
#content-wrap {
  position: relative;
  z-index: 1;
  margin: 50px 0 0;
  padding-bottom: 100px;
  border-radius: 50px;
}
/*---------------------------------------------
News Style
---------------------------------------------*/
#content-area.news {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
}
h3.post-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.0rem;
  margin: 10px 0;
}
.post-meta {
  font-size: .85em;
  margin-bottom: 1rem;
}
.post-meta .post-date {
  margin-right: 8px;
}
.post-meta .post-date.published {
  color: #999;
}
section.post-main {
  margin-top: 1em;
}
section.post-main p:last-child {
  margin-bottom: 0;
}
#content-area.news .post-main h1 {
  font-size: 2.5rem;
  line-height: 3.0rem;
}
#content-area.news .post-main h2 {
  font-size: 2.0rem;
  line-height: 2.5rem;
  color: inherit;
  background-color: inherit;
  padding: 0;
}
#content-area.news .post-main h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  position: relative;
  padding-bottom: 1.0rem;
  width: 100%;
  border-bottom: 5px solid #c7c7c7;
}
#content-area.news .post-main h3::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 70px;
  height: 5px;
  background-color: var(--color-theme);
}
#content-area.news .post-main h4 {
  font-size: 1.0rem;
  line-height: 1.8rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
#content-area.news .post-main h4:before {
  content: '';
  display: block;
  width: 3px;
  height: 1.8rem;
  background-color: var(--color-theme);
  margin-right: 10px;
}
#content-area.news .post-main h5 {
  font-size: 0.8rem;
  line-height: 1.0rem;
  color: inherit;
}
figure.thumbnail img, .news .post-main img {
  height: auto;
  border-radius: 20px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
#content-area.news .post-main ul {
  list-style: disc;
  padding-left: 1.5em;
  padding-bottom: 1.5em;
  line-height: 2;
}
#content-area.news .post-main ol {
  padding-left: 1.5em;
  padding-bottom: 1.5em;
  line-height: 2;
}
#content-area.news .post-main blockquote {
  background: #fff1cb;
  padding: 20px 30px;
  border-radius: 20px;
}
#content-area.news .post-main blockquote p:last-child {
  margin-bottom: 0;
}
#content-area.news.archive article {
  position: relative;
  border: 1px solid var(--color-gray);
  box-shadow: 8px 8px 0px #fff1cb;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
}
#content-area.news.archive article .post-box {
  display: flex;
  justify-content: start;
}
#content-area.news.archive article .post_thumbnail {
  overflow: hidden;
  position: relative;
  margin: 0;
  width: 280px;
}
#content-area.news.archive article .post_thumbnail img {
  height: 100%;
  width: auto;
  object-fit: cover;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
#content-area.news.archive article .post-box:hover .post_thumbnail img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
#content-area.news.archive article .post-box .post-meta-all {
  padding: 10px 20px;
  width: calc(100% - 280px);
}
#content-area.news.archive article .post-box .post-title {
  font-weight: bold;
  padding: 5px 0px;
}
#content-area.news.archive article .post-box .post-substr {
  font-size: 13px;
  height: 4.5em;
}
#content-area.news.archive article .post-box .post-date {
  font-size: 12px;
  position: absolute;
  bottom: 10px;
}
@media only screen and (max-width:1024px) {
  #content-area.news {
    width: 100%;
    padding: 2%
  }
}
@media only screen and (max-width:768px) {
  #content-area.news.archive article .post_thumbnail {
    width: 180px;
  }
  #content-area.news.archive article .post-box .post-meta-all {
    width: calc(100% - 180px);
  }
  #content-area.news.archive article .post-box .post-date {
    position: relative;
    bottom: 0;
  }
}
@media only screen and (max-width:599px) {
  #content-area.news.archive article {
    box-shadow: 5px 5px 0px #fff1cb;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  #content-area.news.archive article .post_thumbnail {
    width: 100px;
  }
  #content-area.news.archive article .post-box .post-meta-all {
    padding: 5px 10px;
    width: calc(100% - 100px);
  }
  #content-area.news.archive article .post-box .post-substr {
    display: none;
  }
}
/*---------------------------------------------
About Style
---------------------------------------------*/
.doc-content {
  margin-top: -140px;
  padding: 100px 20px 60px 20px;
  background: var(--color-content);
  border-radius: 0 0 50px 50px;
}
.doc-content .content {
  max-width: 1182px;
  margin: 0 auto;
}
.doc-content .list {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.doc-content .list > div {
  width: calc(50% - 20px);
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 45px;
  color: #666;
  box-sizing: border-box;
}
.doc-content .list h4 {
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #333;
  border-bottom: #ccc solid 1px;
  padding: 0 0 15px 0;
  margin: 0 0 20px 0;
}
section.about-clinic {
  max-width: 900px;
  margin: 120px auto 0;
  padding: 50px;
  font-size: 0.8rem;
  line-height: 1.8em;
  background: #fff;
}
.about-clinic .eyecatch {
  max-width: 800px;
  margin: 0 auto;
}
.about-clinic .eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5em;
}
.clinic-info {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}
.clinic-info .title {
  width: 20%;
  padding: 8px 12px;
  font-weight: bold;
  white-space: nowrap;
}
.clinic-info .info {
  width: 80%;
  padding: 8px 12px;
}
.clinic-info .closed ul.hrlist li {
  padding: 0;
}
.clinic-info .closed ul.hrlist {
  margin: 0;
}
@media screen and (max-width:1024px) {
  .doc-content .content {
    max-width: 90%;
  }
  section.about-clinic {
    max-width: 100%;
    padding: 5%;
  }
}
@media screen and (max-width:768px) {
  .doc-content {
    margin-top: -60px;
  }
  .doc-content .list {
    display: block;
  }
  .doc-content .list > div {
    width: auto;
    padding: 20px;
  }
  .clinic-info .title {
    width: 25%;
    padding: 8px;
  }
  .clinic-info .info {
    width: 75%;
    padding: 8px;
  }
}
@media only screen and (max-width:480px) {
  .clinic-info.wrap {
    display: block;
  }
  .clinic-info.wrap .title {
    width: 100%;
  }
  .clinic-info.wrap .info {
    width: 100%;
    padding: 0 8px 8px 8px;
  }
}
/*---------------------------------------------
Medical Care Style
---------------------------------------------*/
section.medical-care {
  position: relative;
  width: 90%;
  max-width: 1182px;
  margin: 0 auto 100px;
}
section.medical-care:last-child {
  margin-bottom: 0;
}
section.medical-care .content {
  height: 520px;
  margin-bottom: 30px;
}
section.medical-care .content img {
  position: absolute;
  top: 0;
  max-width: 630px;
  width: 70%;
}
section.medical-care .content.R img {
  left: 0;
}
section.medical-care .content.L img {
  right: 0;
}
section.medical-care .content .desc-area {
  position: absolute;
  bottom: 0;
  max-width: 630px;
  width: 60%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
}
section.medical-care .content.R .desc-area {
  right: 0;
}
section.medical-care .content.L .desc-area {
  left: 0;
}
section.medical-care .content .desc-area h3.heading {
  color: var(--color-theme);
  font-size: 1.6rem;
  position: relative;
  line-height: 40px;
  margin: 0 0 50px;
}
section.medical-care .content .desc-area h3.heading:after {
  position: absolute;
  content: "";
  bottom: -25px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #c3c3c3;
}
@media only screen and (max-width:767px) {
  section.medical-care .content {
    height: auto;
  }
  section.medical-care .content img {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  section.medical-care .content .desc-area {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  section.medical-care .content .desc-area h3.heading {
    font-size: 1.2rem;
    line-height: 30px;
    margin-bottom: 30px;
  }
  section.medical-care .content .desc-area h3.heading:after {
    margin-bottom: 15px;
    width: 20px;
    height: 2px;
  }
}
/*---------------------------------------------
Commerce Style
---------------------------------------------*/
section.commerce {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
/* ----------------------------------------------------------------------
施設基準等の掲載事項 スタイル
---------------------------------------------------------------------- */
.fs-wrap {
  margin: 0 auto;
  max-width: 90%;
  width: 1000px;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}
.fs-wrap .sec {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 5px;
}
.fs-wrap .sec:last-child {
  margin-bottom: 0;
}
.fs-item {
  margin-bottom: 20px;
  padding: 15px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid var(--color-gray);
}
.fs-item ul {
  margin-bottom: 0;
  list-style-type: disc;
  padding-left: 1.0rem;
  padding-left: 1.5em;
}
.fs-title {
  font-weight: bold;
  color: var(--color-theme);
  margin-bottom: 8px;
}
.fs-desc {
  color: #555;
  font-size: 0.9em;
}
.rps_table.price {
  font-size: 0.9rem;
}
.rps_table.price td {
  text-align: right;
}
.fs-item h4.title2 {
  color: var(--color-theme);
  line-height: 1.4;
  position: relative;
  margin: 0 0 15px;
  padding: 0 .5em .5em;
  font-size: 1.3em;
}
.fs-item h4.title2::before {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  z-index: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-theme) 0%, var(--color-theme) 29.3%, rgba(150, 150, 150, .2) 29.3%, rgba(150, 150, 150, .2) 100%);
}
@media only screen and (max-width:959px) {
  .fs-wrap {
    width: 95%;
    padding: 0;
  }
  .fs-wrap .sec {
    padding: 0;
  }
  .fs-item h4.title2 {
    line-height: 1.1;
    margin: 0 0 10px;
    padding: 0 .0em .5em;
    font-size: 1.1rem;
  }
}
/*---------------------------------------------
Footer Style
---------------------------------------------*/
footer .footer-wrap {
  max-width: 1680px;
  width: 90%;
  margin: 50px auto 0;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
footer .footer-wrap #footer-left img {
  margin: 0 auto;
  width: 200px;
}
footer .footer-wrap #footer-left a {
  display: inline-block;
  width: 300px;
  max-width: 90%;
}
footer .footer-wrap .cta {
  width: fit-content;
  margin: 0 auto;
}
#information .cta {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#information .cta .rsv {
  margin: 0 auto 20px;
  display: flex;
  gap: 20px;
}
#information .cta .rsv img {
    width: 100%;
    max-width: 250px;
}
.cta .tel a {
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  transition: var(--transition);
}
.cta .tel a::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 5px;
  content: '\f095';
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}
.cta .tel a:hover {
  color: var(--color-brown);
}
.cta .address a {
  border: 1px solid var(--color-black);
  padding: 5px 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.cta .address a:hover {
  color: #fff;
  background-color: var(--color-brown);
}
footer .footer-wrap ul#footer-nav li {
  border-bottom: 1px solid rgba(50, 50, 50, .2);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
footer .footer-wrap ul#footer-nav li:before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8rem;
}
footer .footer-wrap ul#footer-nav li a {
  display: block;
  line-height: 0.8;
  font-size: 0.8rem;
  padding: 15px 5px;
  margin: 0;
  width: 100%;
  transition: 0.3s;
}
footer .footer-wrap ul#footer-nav li:hover {
  cursor: pointer;
  transform: translateX(5px);
}
footer .footer-wrap ul#footer-nav li:hover::before {
  color: var(--color-brown);
}
footer .footer-wrap ul#footer-nav li:hover a {
  color: var(--color-brown);
}
.copyright {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background: var(--color-theme);
}
@media only screen and (max-width:1199px) {
  .copyright {
    position: relative;
    transform: none;
    padding: 0;
  }
}
@media (max-width: 1023px) {
  footer .footer-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  footer {
    margin-bottom: 59px;
  }
  .cta .rsv {
    flex-direction: column;
  }
}
/*---------------------------------------------
Parts Style
---------------------------------------------*/
/* 予約ボタン
---------------------------*/
.float-button__wrap {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  display: none;
}
.float-button__wrap a {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  border: 1px solid #333;
  position: relative;
  cursor: pointer;
  line-height: 1.5rem;
  transition: var(--transition);
}
.float-button__wrap a::after {
  content: "";
  background-color: var(--color-sub);
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: var(--transition);
  border-radius: 50%;
  transform: translateZ(-10px);
}
.float-button__wrap a:hover::after {
  top: 0px;
  left: 0px;
  background-color: var(--color-theme);
}
.float-button__wrap a span {
  font-size: .8em;
  font-weight: bold;
}
.float-button__wrap a:hover img {
  opacity: inherit;
}
@media (max-width: 1023px) {
  .float-button__wrap a {
    width: 120px;
    height: 120px;
  }
}
/* ページトップボタン
---------------------------*/
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 11;
  height: 100%;
  transform: translateY(100%);
}
.arrow-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 11;
  width: 120px;
  transform: rotate(-90deg);
  height: 120px;
  pointer-events: none;
}
.arrow-pagetop::after {
  position: absolute;
  bottom: 12px;
  left: 0;
  display: block;
  content: "  ";
  width: 85px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: skew(58deg);
  transition: 0.5s;
}
.btn-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: var(--color-theme);
  height: 150px;
  width: 150px;
  clip-path: polygon(100% 100%, 0 100%, 0 50%);
  transform: rotate(-90deg);
  transition: 0.5s;
}
.btn-pagetop:hover + .arrow-pagetop::after {
  width: 180px;
}
.btn-pagetop span {
  position: absolute;
  bottom: 15px;
  left: 7px;
  font-size: 10px;
}
@media only screen and (max-width:767px) {
  #page-top {
    bottom: 59px;
  }
}
@media only screen and (max-width:600px) {
  .btn-pagetop {
    height: 200px;
    width: 200px;
    clip-path: polygon(100% 100%, 0 100%, 0 80%);
  }
  .btn-pagetop span {
    bottom: 7px;
  }
  .arrow-pagetop::after {
    bottom: 7px;
    height: 5px;
  }
  .arrow-pagetop::after {
    width: 100px;
  }
  .btn-pagetop:hover + .arrow-pagetop::after {
    width: 100px;
  }
}
/* Instagramボタン
---------------------------*/
.insta_btn {
  color: #FFF;
  border-radius: 14px;
  position: fixed;
  display: block;
  height: 90px;
  width: 90px;
  text-align: center;
  padding-top: 10px;
  box-sizing: border-box;
  font-size: 14px;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
  text-decoration: none;
  z-index: 9;
  right: 35px;
  top: 20px;
  transition: all 0.3s ease;
}
.insta_btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.insta_btn div {
  position: relative;
}
.insta_btn .fa-instagram {
  font-size: 50px;
  position: relative;
  display: inline-block;
  position: relative;
  transition: .5s
}
.insta_btn:hover .fa-instagram {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.insta_btn.is-shrink {
  transform: scale(0.8);
}
@media (max-width: 1199px) {
  .insta_btn {
    display: none;
  }
}
/* sp footer-bar style
---------------------------*/
ul.sp-footer-bar {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 99;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-top: solid 1px #DDDDDD;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  text-align: center;
  width: 100%;
  transform: translateY(60px);
}
ul.sp-footer-bar li.sp-footer-bar-item {
  flex: 1;
}
.sp-footer-bar-item + .sp-footer-bar-item {
  border-left: solid 1px #DDDDDD;
}
ul.sp-footer-bar li.sp-footer-bar-item a {
  display: block;
  padding: 10px 0;
}
ul.sp-footer-bar li.sp-footer-bar-item div {
  padding: 10px 0;
}
.sp-footer-bar-icon:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: block;
  font-size: 16px;
}
.sp-footer-bar-icon.icon-phone:before {
  content: '\f095';
}
.sp-footer-bar-icon.icon-calendar:before {
  content: '\f073';
}
.sp-footer-bar-icon.icon-line:before {
  font-family: 'Font Awesome 6 Brands';
  content: '\f3c0';
}
.sp-footer-bar-icon.icon-menu:before {
  content: '\f0c9';
}
.sp-footer-bar-icon.icon-insta:before {
  font-family: 'Font Awesome 6 Brands';
  content: '\f16d';
}
@media (max-width: 767px) {
  #container {
    padding-bottom: 59px;
  }
}
/* 記事のナビゲーション
---------------------------*/
ul.navigation-post {
  display: flex;
  width: 96%;
  max-width: 1000px;
  grid-gap: 2px;
  font-size: .9em;
  margin: 50px auto 0;
}
ul.navigation-post li {
  flex: 1;
  padding: 14px 16px;
}
.navigation-post li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 14px;
  transition: var(--transition);
}
.navigation-post li a:hover {
  color: var(--color-theme);
}
.navigation-post li.prev a {
  justify-content: flex-start;
}
.navigation-post li.next a {
  justify-content: flex-end;
}
.navigation-post li.prev a:hover {
  transform: translateX(-5px);
}
.navigation-post li.next a:hover {
  transform: translateX(5px);
}
.navigation-post li.prev a::before, .navigation-post li.next a::after {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Font Awesome 6 Free';
}
.navigation-post li.prev a::before {
  content: '\f053';
}
.navigation-post li.next a::after {
  content: '\f105';
}
.navigation-post .title {
  flex: 1;
  font-weight: bold;
  font-size: .9em;
}
.navigation-post li.next .title {
  text-align: right;
}
.navigation-post .thumb {
  width: 100px;
}
.navigation-post .thumb img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .navigation-post {
    flex-direction: column;
  }
}
/* ページャー
---------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  width: 96%;
  margin-top: 50px;
}
a.page-numbers, .pagination .current {
  padding: 12px 22px;
  margin: 0 3px;
  border-radius: 5px;
}
a.page-numbers {
  background: var(--color-gray);
  color: #fff;
  transition: var(--transition);
}
a.page-numbers:hover {
  background: var(--color-theme);
}
a.prev1.page-numbers::before {
  font-family: fontAwesome;
  content: "\f104";
}
a.next1.page-numbers::before {
  font-family: fontAwesome;
  content: "\f105";
}
a.prev.page-numbers::before {
  font-family: fontAwesome;
  content: "\f100";
}
a.next.page-numbers::before {
  font-family: fontAwesome;
  content: "\f101";
}
.pagination .current {
  background: var(--color-brown);
  color: #fff;
}
span.page-numbers.dots {
  padding: 8px .5em;
}
/*---------------------------------------------
Animation Style
---------------------------------------------*/
.box {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#nav_fixed.Down {
  animation: DownMotion 0.5s forwards;
}
@keyframes DownMotion {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
#nav_fixed.Up {
  animation: UpMotion 0.5s forwards;
}
@keyframes UpMotion {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 1;
  display: block;
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: none;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeOutAnime {
  from {
    opacity: 1;
    display: block;
  }
  to {
    opacity: 0;
    display: none;
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes fly {
  0% {
    transform: translateX(0) translateY(0)
  }
  100% {
    transform: translateX(-120vw) translateY(-50vh) rotate(-20deg);
  }
}
@keyframes swing {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
/*---------------------------------------------
ローディング画面
---------------------------------------------*/
html.display_load_screen body > *:not(#site_loader_overlay) {
  display: none !important;
  overflow: hidden;
}
#site_loader_overlay {
  display: block;
  background: var(--color-theme);
  opacity: 1;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}
#site_loader_logo {
  position: relative;
  width: 100%;
  height: 100%;
}
#site_loader_logo_inner {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#site_loader_logo_inner .logo_image {
  width: fit-content;
  margin: 0 auto;
  opacity: 0;
}
#site_loader_logo.active .logo_image {
  -webkit-animation: opacityAnimation 1.4s ease forwards 0.5s;
  animation: opacityAnimation 1.4s ease forwards 0.5s;
}
#site_loader_logo_inner .logo_image img {
  width: 10vw;
}
#site_loader_logo img.use_logo_animation {
  position: relative;
  -webkit-animation: slideUpDown 1.5s ease-in infinite 0s;
  animation: slideUpDown 1.5s ease-in infinite 0s;
}
#site_loader_logo_inner .message {
  text-align: center;
  margin: 30px auto 0;
  display: table;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  -webkit-animation: opacityAnimation 1.4s ease forwards 1.5s;
  animation: opacityAnimation 1.4s ease forwards 1.5s;
}
#site_loader_logo_inner .text {
  display: inline;
}
#site_loader_logo_inner .dot_animation_wrap {
  display: inline;
  margin: 0 0 0 4px;
  position: absolute;
}
#site_loader_logo_inner i {
  width: 2px;
  height: 2px;
  margin: 0 4px 0 0;
  border-radius: 100%;
  display: inline-block;
  background: #fff;
  -webkit-animation: loading-dots-middle-dots 0.5s linear infinite;
  -ms-animation: loading-dots-middle-dots 0.5s linear infinite;
  animation: loading-dots-middle-dots 0.5s linear infinite;
}
#site_loader_logo_inner i:first-child {
  opacity: 0;
  -webkit-animation: loading-dots-first-dot 0.5s infinite;
  -ms-animation: loading-dots-first-dot 0.5s linear infinite;
  animation: loading-dots-first-dot 0.5s linear infinite;
  -webkit-transform: translate(-4px);
  -ms-transform: translate(-4px);
  transform: translate(-4px);
}
#site_loader_logo_inner i:last-child {
  -webkit-animation: loading-dots-last-dot 0.5s linear infinite;
  -ms-animation: loading-dots-last-dot 0.5s linear infinite;
  animation: loading-dots-last-dot 0.5s linear infinite;
}
@media only screen and (max-width:1023px) {
  #site_loader_logo_inner .logo_image img {
    width: 20vw;
  }
}
@media only screen and (max-width:425px) {
  #site_loader_logo_inner .logo_image img {
    width: 30vw;
  }
}
@keyframes opacityAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideUpDown {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: 10px;
  }
}
@keyframes loading-dots-first-dot {
  100% {
    -webkit-transform: translate(6px);
    -ms-transform: translate(6px);
    transform: translate(6px);
    opacity: 1;
  }
}
@keyframes loading-dots-middle-dots {
  100% {
    -webkit-transform: translate(6px);
    -ms-transform: translate(6px);
    transform: translate(6px);
  }
}
@keyframes loading-dots-last-dot {
  100% {
    -webkit-transform: translate(6px);
    -ms-transform: translate(6px);
    transform: translate(6px);
    opacity: 0;
  }
}