@charset "utf-8";
/* ---------------------
    - BASE
    - LINKS
    - HEADER
    - PAGETITLE
    - CONTENTS
    - FOOTER
    - PC 1025px -
    - TABLET - 1024px
    - SP - 640px
    - SP - 350px
--------------------- */
/* ==========================================================================
	BASE
========================================================================== */
body {
  width: 100%;
  color: #4b4b4b;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  line-height: 1.8em;
}
.wrapper {
  overflow: hidden;
  text-align: left;
  margin: 0 auto;
}
section ul, header ul, footer ul, .side ul, .main ul, nav ul, .side-content ul {
  list-style-type: none;
}
section h2, section h3, section h4, section h5 {
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 700;
}
iframe {
  vertical-align: bottom;
}
:root {
  --color01: #60aad9;
  --color02: #034a86;
  --color03: #00acdc;
  --color04: #e5f0f8;
  --font01: 'Noto Sans JP', sans-serif;
  --font02: 'Zen Maru Gothic', serif;
}
/* ==========================================================================
	LINKS
	========================================================================== */
a:hover.alpha img {
  opacity: 0.7;
  -ms-filter: "alpha(opacity=70)";
}
a, a:visited {
  color: #4b4b4b;
  text-decoration: none;
}
/*マウスオーバー時ゆっくり透過*/
a {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
/* ==========================================================================
	HEADER
========================================================================== */
.header {
  padding: 15px 0;
}
.header .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header .logo-tit {
  display: block;
  width: 280px;
  margin-bottom: 6px;
}
.logo-txt {
  display: block;
  color: #4b4b4b;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 10px;
}
.header-info {
  text-align: right;
}
.header-reserve {
  font-size: 1.2rem;
  letter-spacing: 0.5;
}
.header-reserve span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  background-color: var(--color02);
  border-radius: 15px;
  padding: 3px 15px;
  margin: 0 5px;
}
.header-address {
  font-size: 1.2rem;
  letter-spacing: 0;
}
.header-info .tel-cmn {
  margin-bottom: 6px;
}
.tel-cmn {
  font-family: var(--font02);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 100%;
}
.tel-cmn::before {
  content: "\f095";
  color: var(--color01);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
}
/* ==========================================================================
	NAVIGATION
	========================================================================== */
.nav {
  background-color: var(--color01);
  margin-bottom: 20px;
}
.gnav {
  display: flex;
}
.gnav-item {
  font-family: var(--font02);
  font-weight: 700;
  flex-grow: 1;
  text-align: center;
}
.gnav-item a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 0 auto;
}
.gnav-item a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* ==========================================================================
	PAGETITLE
========================================================================== */
.page {
	background: url("../images/cmn-images/page-bg.jpg") 50% 50% no-repeat;
	padding: 100px 0;
  margin-bottom: 10px;
}
.page-tit {
	width: 500px;
  color: var(--color02);
  font-family: var(--font02);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700!important;
  text-align: center;
	background-color: rgba(255,255,255,0.7);
	border-radius: 20px;
  padding: 60px 0;
	margin: 0 auto;
}

/*パンくず*/
#topic-path {
	text-align: right;
	font-size: 1.3rem;
	margin-bottom: 5%;
}
#topic-path a {
	text-decoration: underline;
}
/* ==========================================================================
	CONTENTS
	========================================================================== */
section h1 {
  margin-bottom: 50px;
}
section h2 {
  margin-bottom: 50px;
}
section h3 {
  margin-bottom: 40px;
}
section h4 {
  margin-bottom: 30px;
}
section h5 {
  margin-bottom: 30px;
}
section, article {
  clear: both;
  overflow: hidden;
  margin-bottom: 80px;
}
section p {
  margin-bottom: 20px;
}
.section-min {
  overflow: hidden;
  margin-bottom: 60px;
}
.link-margin {
  margin-top: -100px;
  padding-top: 100px;
}
.bg01 {
  background-color: var(--color04);
}
.bg02 {
  background-color: var(--color04);
  padding: 100px 0;
}
/*TITLE*/
main h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}
main h2 span {
  display: block;
  color: var(--color01);
  font-size: 50%;
}
main h3 {
  position: relative;
  color: var(--color01);
  font-size: clamp(2rem, 2.875vw, 2.6rem);
  border-bottom: solid 3px #eee;
  padding-bottom: 20px;
}
main h3::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--color01);
  bottom: -3px;
  width: 20%;
}
main h4 {
  font-size: clamp(1.8rem, 2.375vw, 2rem);
  background-color: var(--color04);
  padding: 15px;
}
main h4 strong{
  color: var(--color01);
}
main h4 span{
  font-size: 70%;
  letter-spacing: 0;
}
main h5 {
  color: var(--color01);
  font-size: clamp(1.7rem, 2.875vw, 2.3rem);
}
.tit-icon01 {
  position: relative;
  padding-top: 100px;
}
.tit-icon01::before {
  position: absolute;
  display: block;
  content: "";
  width: 70px;
  height: 95px;
  background: url("../images/cmn-images/icon01.png") 0 0 no-repeat;
  background-size: 100% auto;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
/*LIST*/
.li-cmn01 li {
	padding-left: 1.2em;
	text-indent: -1.2em;
	margin-bottom: 10px;
}
.li-cmn01 li:before{
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--color01);
	margin-right: 10px;
}
.li-cmn02 li {
  list-style-type: none;
  counter-increment: number;
	padding-left: 1.7em;
	text-indent: -1.7em;
	margin-bottom: 10px;
}

/*BT*/
.bt-cmn01 a {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  color: #fff;
  font-family: var(--font01);
  font-weight: 700;
  text-align: center;
  background-color: var(--color01);
  border-radius: 80px;
  padding: 20px 0;
}
.bt-cmn01 a::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
}
.bt-cmn01 a:hover {
  background-color: var(--color03);
}
.btn-pattern01{
text-align: right;
}
/* ==========================================================================
	FOOTER
	========================================================================== */
.footer {
  padding-bottom: 20px;
}
.info {
  background: url("../images/cmn-images/time-bg.jpg") 50% 0 no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
.footer .info {
  margin-bottom: 40px;
}
.footer .info .wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.info-address {
  width: 40%;
}
.info-time {
  width: 60%;
}
.info-address .logo {
  margin-bottom: 0;
}
.info-address .logo span {
  display: block !important;
}
.footer .logo-tit {
  width: 280px;
  margin-bottom: 10px;
}
.footer .logo-tit img {
  width: 100%;
  height: auto;
}
.info-address .logo-txt {
  padding: 0;
}
.info-address .tel-cmn {
  margin-bottom: 6px;
}
.info-reserve {
  font-size: 1.4rem;
  letter-spacing: 0.5;
  padding-left: 2.5em;
  margin-bottom: 30px;
}
.info-reserve span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  background-color: var(--color02);
  border-radius: 15px;
  padding: 3px 15px;
  margin: 0 5px;
}
.info-address .bt-cmn01 {
  margin: 0;
}
.info-txt01 {
  font-size: 90%;
  margin-bottom: 5px;
}
.info-txt02 {
  font-size: 90%;
  font-weight: bold;
  margin-bottom: 5px;
}
.info-txt02 i {
  color: var(--color01);
  font-size: 120%;
  margin-right: 6px;
}
.info-inner {
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
}
.time-table-tit {
  font-weight: normal;
  text-align: center;
  border-bottom: solid 2px #f1f1f1;
  padding: 20px;
}
.time-table-txt {
  color: var(--color01);
  border-bottom: solid 2px #f1f1f1;
  padding: 20px;
}
.time-table-txt--orange {
  color: var(--color02);
}
.detail {
  display: flex;
  align-items: center;
  font-size: 90%;
  margin-bottom: 10px;
}
.detail:last-child {
  margin-bottom: 0;
}
.detail-tit {
  width: 120px;
  color: #fff;
  text-align: center;
  background-color: var(--color02);
  border-radius: 3px;
  padding: 5px 0;
}
.detail-tit--closed {
  background-color: #a1a1a1 !important;
}
.time-table-txt--orange {
  color: var(--color02);
}
.detail-txt {
  flex: 1;
  padding-left: 20px;
}
.footer-nav {
  font-family: var(--font02);
  font-weight: 700;
  margin-bottom: 40px;
}
.footer-nav .wrapper {
  text-align: center;
}
.fnav {
  display: flex;
}
.fnav-item {
  flex-grow: 1;
}
.fnav-item a:hover {
  color: var(--color04);
}
.footer-cp {
  color: var(--color01);
  font-size: 1.2rem;
  text-align: center;
}
/* PAGETOP
-----------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 50px;
  line-height: 50px;
  height: 50px;
  cursor: pointer;
}
#page-top i {
  color: #ccc;
}
/* ==========================================================================
	PC
	========================================================================== */
@media screen and (min-width: 1200px) {
  body {
    min-width: 1180px;
  }
  .wrapper {
    width: 1180px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1200px) {
  .wrapper {
    width: 96%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1025px) {
  tablet-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  .pc-none {
    display: none;
  }
  .br-pc {
    display: block;
  }
  .br-sp {
    margin-left: 10px;
  }
}
/* ==========================================================================
	TABLET - 1024px
	========================================================================== */
@media screen and (max-width:1024px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  tablet-only {
    display: block;
  }
  .wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .br-tablet {
    display: block;
  }
  .br-tabletonly {
    display: block;
  }
  .link-margin {
    margin-top: -60px;
    padding-top: 60px;
  }
  /* HEADER
-----------------------*/
  .header .wrapper {
    align-items: stretch;
  }
  .logo-txt {
    font-size: 1.1rem;
  }
  .header-info {
    width: 100px;
  }
  .header-info .tel-cmn {
    margin: 5px 70px 0 0;
    ;
  }
  .header .tel-cmn::before {
    content: "";
    margin-right: 0;
  }
  /* NAVIGATION
-----------------------*/
  .nav {
    margin-bottom: 0;
  }
  .gnav {
    display: block;
  }
  .gnav-item {
    font-family: var(--font02);
    font-weight: 700;
    flex-grow: 1;
    text-align: center;
  }
  .gnav-item a {
    color: #4b4b4b;
    padding: 15px 0;
  }
  /*panel*/
  #panel {
    position: fixed;
    top: 0;
    z-index: 130000;
    overflow: hidden;
    overflow-y: scroll;
    padding: 40px 0;
  }
  #panel-btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 150000;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--color01);
  }
  #panel-btn-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    margin: -1px 0 0 -12px;
    background: #fff;
    transition: .2s;
  }
  #panel-btn-icon:before, #panel-btn-icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    margin-left: -12px;
    background: #fff;
    transition: .3s;
  }
  #panel-btn-icon:before {
    margin-top: -11px;
  }
  #panel-btn-icon:after {
    margin-top: 9px;
  }
  #panel-btn .close {
    background: transparent;
  }
  #panel-btn .close:before, #panel-btn .close:after {
    margin-top: 0;
  }
  #panel-btn .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  #panel-btn .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  #panel {
    display: none;
    width: 100%;
    height: 100%;
    color: #3e3e3e;
    text-align: left;
    background-color: var(--color04);
    box-sizing: border-box;
    margin: 0;
  }
  /* CONTENTS
  -----------------------*/
  /*BT*/
  /*POST*/
  /* FOOTER
  -----------------------*/
  .footer {
    padding-bottom: 20px;
  }
  .fnav {
    display: inline-block;
  }
  .fnav-item {
    display: inline-block;
    margin: 0 10px 10px 10px;
  }
}
/* ==========================================================================
	SP - 640px
	========================================================================== */
@media screen and (max-width: 640px) {
  .tablet-only {
    display: none;
  }
  .sp-none {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .br-sp {
    display: block;
    margin: 0;
  }
  .br-tabletonly {
    display: inline;
  }
  body {
    font-size: 1.5rem;
  }
  section h1 {
    margin-bottom: 30px;
  }
  section h2 {
    margin-bottom: 30px;
  }
  section h3 {
    margin-bottom: 30px;
  }
  section h4 {
    margin-bottom: 30px;
  }
  section, article {
    clear: both;
    overflow: hidden;
    margin-bottom: 40px;
  }
  .section-min {
    margin-bottom: 40px;
  }
  .tit-icon01 {
    padding-top: 80px;
  }
  .tit-icon01::before {
    width: 50px;
    height: 68px;
  }
  /* HEADER
-----------------------*/
  .header {
    padding: 10px 0 0 0;
    margin-bottom: 0;
  }
  .header .logo-tit {
    width: 200px;
  }
  .header .logo-txt {
    font-size: 1rem;
    padding-left: 0;
  }
  .header-info {
    width: 60px;
    margin: 5px 25px 0 0;
  }
  .tel-cmn {
    font-size: 2.5rem;
    margin: 0;
  }
  .tel-cmn::before {
    content: "\f095";
    color: var(--color01);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
  }
  /* NAVIGATION
-----------------------*/
  /*panel*/
  #panel-btn {
    top: 5px;
    right: 5px;
  }
  /* PAGETITLE
  -----------------------*/
  .page {
    padding: 60px 0;
  }
  .page-tit {
    width: 80%;
    padding: 40px 0;
  }
  /*パンくず*/
  #topic-path {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  /* CONTENT
  -----------------------*/
  /*BT*/
  .bt-cmn01 a {
    width: 90%;
    padding: 17px 0;
  }
  .btn-pattern01{
text-align: center;
}
  /* FOOTER
  -----------------------*/
  .footer {
    padding-bottom: 10px;
  }
  .info {
    padding: 40px 0;
    margin-bottom: 30px;
  }
  .footer .info .wrapper {
    padding: 30px 20px;
  }
  .footer .info {
    display: block;
  }
  .footer .logo-tit {
    width: 240px;
    margin: 0 auto 10px auto;
  }
  .info-address {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .info-time {
    width: 100%;
  }
  .info-address .tel-cmn {
    text-align: center;
    margin-bottom: 6px;
  }
  .info-inner {
    border-radius: 15px;
  }
  .info-txt01 {
    margin-bottom: 6px;
  }
  .info-txt02 {
    margin-bottom: 6px;
  }
  .time-table {
    font-size: 1.3rem;
  }
  .time-table-tit {
    padding: 10px;
  }
  .time-table-txt {
    padding: 10px;
  }
  .detail {
    display: block;
  }
  .detail-tit {
    margin-bottom: 5px;
  }
  .detail-txt {
    padding-left: 0;
  }
  .footer-nav {
    margin-bottom: 20px;
  }
  .footer-cp {
    font-size: 1rem;
  }
  /* PAGETOP
-----------------------*/
  #page-top {
    bottom: 10px;
    right: 10px;
    font-size: 30px;
    line-height: 30px;
    height: 30px;
  }
}
/* ==========================================================================
	SP - 350px
	========================================================================== */
@media screen and (max-width: 350px) {}