@charset "UTF-8";
/*2025.12.04*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font-style: normal;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

i {
  font-style: italic;
}

table {
  width: 100%;
  table-layout: fixed;
}

table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

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

input {
  outline: none;
}

input[type=text], input[type=tel], input[type=email], textarea {
  padding: 5px;
  border-style: 1px;
}

input[type=checkbox], input[type=checkbox] {
  margin: 3px;
}

textarea {
  min-height: 5em;
  vertical-align: top;
}

hr {
  border: 0;
  margin: 0;
  padding: 0;
}

:root {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #44403f;
  font-size: 18px;
  text-align: center;
  background: #444140;
  scroll-behavior: smooth;
}

.inner {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

main {
  overflow: hidden;
  background: #fff;
}

a {
  transition: all 300ms ease-in-out;
}
a:link {
  color: #00b4ed;
  text-decoration: none;
}
a:visited {
  color: #00b4ed;
  text-decoration: none;
}
a:hover {
  color: #e72a25;
  text-decoration: none;
}
a:active {
  color: #e72a25;
  text-decoration: none;
}

.bigger_txt {
  font-size: 1.35em;
}

.smaller_txt {
  font-size: 0.95em;
}

.tiny_txt {
  font-size: 0.85em;
}

.notice_txt {
  color: #e72a25;
  font-size: 0.95em;
}

.bolder_txt {
  font-weight: bolder;
}

.txt_color02 {
  color: #799dd2;
}

.txt_color05 {
  color: #d3991c;
}

.txt_color06 {
  color: #e95686;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

.flexbox {
  display: flex;
  justify-content: space-between;
}
.flexbox.col2 {
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexbox.col2 > * {
  width: 47%;
}
.flexbox.col3 {
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexbox.col3 > * {
  width: 31%;
}
.flexbox.col4 {
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexbox.col4 > * {
  width: 22%;
}
.flexbox.flex_rev {
  flex-direction: row-reverse;
}

.mb {
  margin-bottom: 60px;
}

.mb05 {
  margin-bottom: 30px;
}

.mb025 {
  margin-bottom: 15px;
}

.mb0 {
  margin-bottom: 0;
}

.act01 {
  transition: all 500ms cubic-bezier(0.48, 0.48, 0.68, 0.95);
  transform: translateY(50px);
  opacity: 0;
}
.act01.cue {
  opacity: 1;
  transform: translateY(0);
}

.act02 {
  transition: all 500ms cubic-bezier(0.48, 0.48, 0.68, 0.95);
  transition-delay: 0.2s;
  transform: scale(105%);
  opacity: 0;
}
.act02.cue {
  opacity: 1;
  transform: scale(100%);
}

.act03 {
  transition: all 500ms cubic-bezier(0.48, 0.48, 0.68, 0.95);
  transition-delay: 0.2s;
  transform: translateX(-20%);
  opacity: 0;
}
.act03.cue {
  opacity: 1;
  transform: translateX(0%);
}

.act04 {
  transition: all 500ms cubic-bezier(0.48, 0.48, 0.68, 0.95);
  transition-delay: 0.2s;
  transform: translateX(20%);
  opacity: 0;
}
.act04.cue {
  opacity: 1;
  transform: translateX(0%);
}

#loading {
  transition: all 300ms ease-in-out;
  transition-duration: 1s;
  transition-delay: 0.25s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #444140;
}
#loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
  opacity: 0.75;
}
#loading.loaded {
  opacity: 0;
  z-index: -10;
}

header {
  transition: all 300ms ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: #fff;
  background: #444140;
  z-index: 99;
}
header.fixed {
  height: 90px;
  opacity: 0.9;
}
header:hover {
  opacity: 1;
}
header .logo {
  height: 100%;
}
header .logo img {
  width: auto;
  height: 70%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .BtnSet {
  position: absolute;
  right: 60px;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  justify-content: right;
  width: 25%;
}
header .BtnSet a, header .BtnSet span {
  transition: all 300ms ease-in-out;
  position: relative;
  display: block;
  width: 100px;
  aspect-ratio: 1/1;
  margin-left: 10px;
  border-radius: 20em;
}
header .BtnSet a:hover, header .BtnSet span:hover {
  transform: scale(110%);
  z-index: 10;
}
header .BtnSet a img, header .BtnSet span img {
  position: absolute;
  width: 60%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .BtnSet .BtnSet_btn_01 {
  background: #d3991c;
}
header .BtnSet .BtnSet_btn_01 img {
  width: 70%;
}
header .BtnSet .BtnSet_btn_02 {
  background: #799dd2;
}
header .BtnSet .menuBtn {
  background: #815d5b;
  cursor: pointer;
}
header .BtnSet .menuBtn img {
  width: 50%;
}

.TitleHeader {
  position: relative;
  height: 200px;
  padding-top: 150px;
  background: url(../img/titleheader_bg01.jpg) top no-repeat;
  background-size: cover;
}
.TitleHeader .TitleHeader_title {
  position: absolute;
  top: calc(50% + 70px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 80%;
  font-size: 2.25em;
  font-weight: 450;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.2em;
}
.TitleHeader .TitleHeader_title span {
  display: block;
  font-size: 0.5em;
  font-weight: bolder;
  letter-spacing: 0.05em;
}
.TitleHeader .TitleHeader_title.tight {
  letter-spacing: 0;
}

nav {
  padding: 15px 0;
}
nav ul {
  display: flex;
  max-width: 900px;
  margin: auto;
}
nav ul li {
  position: relative;
  flex: 1;
  display: inline-block;
  border-left: 1px #444140 solid;
}
nav ul li:last-of-type {
  border-right: 1px #444140 solid;
}
nav ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: bold;
}
nav ul li a:link, nav ul li a:visited {
  color: #231815;
}
nav ul li a:hover, nav ul li a:active, nav ul li a.on {
  color: #231815;
  background: rgba(211, 153, 28, 0.1);
}
nav ul li span {
  display: block;
  padding-top: 0.25em;
  font-size: 0.75em;
}
nav ul li .sublinks {
  transition: all 300ms ease-in-out;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  width: 180%;
  height: 0%;
  padding: 0 9px;
  font-weight: 500;
  background: rgba(219, 240, 237, 0.9);
  height: 0;
  opacity: 0;
}
nav ul li .sublinks.x2 {
  width: 290%;
}
nav ul li .sublinks.on {
  height: auto;
  padding: 9px;
  opacity: 1;
}
nav ul li .sublinks ul {
  display: block;
  margin: 0;
}
nav ul li .sublinks ul li {
  position: relative;
  margin-left: 1em;
  padding: 0.1em 0;
  text-align: left;
  line-height: 1em;
  display: block;
  border: none;
}
nav ul li .sublinks ul li::before {
  content: "▶";
  position: relative;
  left: -1em;
  color: #7ec9c1;
  font-size: 0.5em;
}
nav ul li .sublinks ul li a {
  display: inline;
  padding: 0;
  font-size: 0.75em;
}
nav ul li .sublinks ul li a:link, nav ul li .sublinks ul li a:visited {
  color: #231815;
  background: none;
}
nav ul li .sublinks ul li a:hover, nav ul li .sublinks ul li a:active {
  color: #e72a25;
  background: none;
}
nav ul li .sublinks ul li.color06 a:link, nav ul li .sublinks ul li.color06 a:visited {
  color: #e95686;
}
nav ul li .sublinks ul li.color06 a:hover, nav ul li .sublinks ul li.color06 a:active {
  color: #e72a25;
}

article {
  min-height: 50vh;
  padding-bottom: 60px;
}
article h1, article h2 {
  margin-bottom: 30px;
  padding: 6px 30px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 450;
  text-align: center;
  background: #7ec9c1;
}
article h3 {
  margin-bottom: 30px;
  padding: 6px 60px;
  color: #fff;
  font-weight: 450;
  font-size: 1.25rem;
  text-align: center;
  background: #799dd2;
  border-radius: 20em;
}
article h4 {
  margin-bottom: 9px;
  color: #799dd2;
  font-size: 1.35rem;
}
article section {
  margin-bottom: 60px;
}
article section:last-of-type {
  margin-bottom: 0;
}
article div {
  margin-bottom: 30px;
}
article p, article ul, article ol, article dl, article table {
  margin-bottom: 15px;
}
article p {
  line-height: 1.65em;
}
article ul li {
  position: relative;
  margin-left: 1em;
  margin-bottom: 0.25em;
}
article ul li:last-of-type {
  margin-bottom: 0;
}
article ul li::before {
  content: "・";
  position: absolute;
  left: -1em;
}
article ul li.nopict::before {
  display: none;
}
article ol {
  counter-reset: num-counter;
}
article ol li {
  position: relative;
  margin-left: 1.5em;
}
article ol li::before {
  content: "◯";
  position: absolute;
  left: -1.5em;
}
article ol li:after {
  content: counter(num-counter);
  counter-increment: num-counter;
  position: absolute;
  top: 0.05em;
  left: -1.35em;
  font-size: 0.9em;
}
article hr {
  height: 1px;
  background-color: #444140;
  margin-bottom: 30px;
}
article .box01 {
  background: rgba(211, 153, 28, 0.1);
}
article .box01 div {
  margin-bottom: 0;
}
article .box01 img {
  background: rgba(255, 255, 255, 0.5);
}
article .box01 .box01_txt {
  padding: 39px 0;
  background: none;
}
article .box01 .box01_txt .box01_title {
  color: #44403f;
}
article .box01 .box01_txt p {
  margin-bottom: 0;
}
article .box02 .box02_title {
  margin-bottom: 21px;
  padding: 6px 15px;
  color: #7ec9c1;
  font-size: 1.45rem;
  font-weight: 550;
  background: none;
  border: 3px #7ec9c1 solid;
  border-radius: 20em;
}
article .box03 .box03_title {
  margin-bottom: 0;
  padding: 6px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  background: #7ec9c1;
}
article .box03 .box03_img {
  text-align: center;
}
article .box04 .box04_title {
  margin-bottom: 21px;
  padding: 6px 15px;
  color: #799dd2;
  font-size: 1.45rem;
  font-weight: 550;
  background: none;
  border: 3px #799dd2 solid;
  border-radius: 20em;
}
article .flowbox {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  text-align: center;
}
article .flowbox .flowbox_step {
  position: relative;
  margin-bottom: 39px;
  padding: 3px;
  border: 1px #7ec9c1 solid;
  border-radius: 20em;
}
article .flowbox .flowbox_step * {
  margin-bottom: 0;
}
article .flowbox .flowbox_step::after {
  content: url(../img/pict_arrow01.svg);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: rotate(90deg);
  display: block;
  width: 30px;
}
article .flowbox .flowbox_step:last-of-type {
  margin-bottom: 0;
  color: #7ec9c1;
  font-size: 1.15em;
  font-weight: 550;
}
article .flowbox .flowbox_step:last-of-type::after {
  display: none;
}
article .title01 {
  padding: 9px 15px;
  font-size: 1.5rem;
}
article .title_h3 {
  margin-bottom: 15px;
  padding: 3px 60px;
  color: #fff;
  font-weight: 450;
  font-size: 1.15em;
  text-align: center;
  background: #799dd2;
  border-radius: 20em;
}
article .txt01 {
  margin-bottom: 15px;
  line-height: 1.35em;
  font-size: 1.5rem;
  font-weight: 550;
}
article .list01 li {
  position: relative;
  margin-left: 1.5em;
}
article .list01 li::before {
  content: "●";
  position: absolute;
  left: -1.5em;
  color: #799dd2;
}
article .list02 li {
  position: relative;
  margin-left: 45px;
  margin-bottom: 15px;
}
article .list02 li::before {
  content: url(../img/list02_pict.svg);
  position: absolute;
  top: 2px;
  left: -30px;
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
}
article .list03 li {
  position: relative;
  margin-left: 45px;
  margin-bottom: 15px;
}
article .list03 li::before {
  content: url(../img/list03_pict.svg);
  position: absolute;
  top: 2px;
  left: -30px;
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
}
article .list04 li {
  position: relative;
  margin-left: 45px;
  margin-bottom: 15px;
}
article .list04 li::before {
  content: url(../img/list04_pict.svg);
  position: absolute;
  top: 2px;
  left: -30px;
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
}
article .bg_color02 {
  background-color: #799dd2 !important;
}
article .bg_color03 {
  background-color: #7ec9c1 !important;
}
article .bg_color05 {
  background-color: #d3991c !important;
}
article .bg_color06 {
  background-color: #e95686 !important;
}
article .msg404 {
  padding-top: 20vh;
  font-size: min(4.5vw, 1.1em);
  text-align: center;
}
article .edit {
  padding: 30px 0;
  text-align: right;
}
article .inner {
  margin-bottom: 0;
}

footer {
  padding-top: 60px;
  color: #5f5f5f;
  border-top: 1px #444140 solid;
  background: #fffdf5;
}
footer .inner {
  margin-bottom: 45px;
}
footer .footer_logo {
  width: 100%;
  max-width: 450px;
  margin-bottom: 21px;
}
footer .timeTable {
  margin-bottom: 30px;
}
footer .timeTable table {
  table-layout: auto;
  font-size: 1.1rem;
  font-weight: 600;
}
footer .timeTable table th, footer .timeTable table td {
  padding: 12px 0;
  text-align: center;
}
footer .timeTable table thead span, footer .timeTable table tfoot span {
  display: block;
  padding: 3px;
  color: #fff;
  font-weight: 500;
  background-color: #799dd2;
  border-radius: 20em;
}
footer .timeTable table thead {
  border-bottom: 1px #44403f solid;
}
footer .timeTable table tfoot {
  border-top: 1px #44403f solid;
}
footer .timeTable table tfoot td {
  padding-left: 3%;
  text-align: left;
}
footer .timeTable table tbody {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
footer .timeTable table tbody span {
  display: inline;
}
footer .timeTable table tbody th {
  width: 32%;
  padding-right: 3%;
  text-align: right;
}
footer .timeTable table tbody td {
  width: 10.8333333333%;
  font-size: 1.1em;
}
footer .telnum {
  font-weight: 600;
  text-align: center;
}
footer .telnum .telnum_box {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
  margin-bottom: 6px;
  padding: 18px 12px;
  padding-bottom: 21px;
  color: #fff;
  font-size: 1.95rem;
  letter-spacing: 0.05em;
  background: #799dd2;
  border-radius: 20em;
}
footer .telnum .telnum_box img {
  width: 25px;
  margin-right: 12px;
  vertical-align: middle;
}
footer .telnum .telnum_box span {
  font-size: 0.75em;
}
footer .gmap {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
footer .gmap iframe {
  width: 100%;
  height: 100%;
  border: 1px #5f5f5f solid;
}
footer .locateInf {
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
  font-weight: 600;
}
footer .locateInf::before {
  position: absolute;
  top: 0;
  left: 0;
  content: url(../img/pict_location.svg);
  display: block;
  width: 25px;
}
footer .copy {
  padding: 6px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.1em;
  background: #444140;
}

.NavMenu {
  transition: all 300ms ease-in-out;
  overflow-y: auto;
  transition-duration: 0.8s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f7f7;
  opacity: 0;
  z-index: -99;
}
.NavMenu::-webkit-scrollbar {
  width: 3px;
}
.NavMenu::-webkit-scrollbar-track {
  background-color: #fff;
}
.NavMenu::-webkit-scrollbar-thumb {
  background-color: #444140;
}
.NavMenu.on {
  opacity: 1;
  z-index: 9999;
}
.NavMenu .NavMenu_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  text-align: center;
  background: #44403f;
  z-index: 10;
}
.NavMenu .NavMenu_header .NavMenu_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  height: 70%;
  margin: auto;
}
.NavMenu .NavMenu_header .NavMenu_logo img {
  width: auto;
  height: 100%;
}
.NavMenu .NavMenu_header .closeBtn {
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  width: 30px;
  height: 30px;
  padding: 25px;
  background: #815d5b;
  border-radius: 20em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.NavMenu .NavMenu_header .closeBtn img {
  width: 100%;
}
.NavMenu .NavMenu_content {
  padding-top: 150px;
}
.NavMenu .NavMenu_content ul {
  margin-bottom: 30px;
}
.NavMenu .NavMenu_content ul li {
  font-size: 1.25rem;
}
.NavMenu .NavMenu_content ul li a {
  display: block;
  margin-bottom: 15px;
  padding: 9px 15px;
  line-height: 1.1em;
}
.NavMenu .NavMenu_content ul li a:link, .NavMenu .NavMenu_content ul li a:visited {
  color: #fff;
  background: #815d5b;
}
.NavMenu .NavMenu_content ul li a:hover, .NavMenu .NavMenu_content ul li a:active {
  color: #fff;
  background: #815d5b;
  opacity: 0.85;
}
.NavMenu .NavMenu_content ul li span {
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.001em;
}
.NavMenu .NavMenu_content ul li ul {
  margin-left: 0.5em;
}
.NavMenu .NavMenu_content ul li ul li {
  position: relative;
  margin-left: 1.25em;
  margin-bottom: 6px;
  font-size: 1rem;
}
.NavMenu .NavMenu_content ul li ul li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: -1.25em;
  color: #815d5b;
}
.NavMenu .NavMenu_content ul li ul li a {
  display: inline;
  padding: 0;
  line-height: 1em;
}
.NavMenu .NavMenu_content ul li ul li a:link, .NavMenu .NavMenu_content ul li ul li a:visited {
  color: #231815;
  background: none;
}
.NavMenu .NavMenu_content ul li ul li a:hover, .NavMenu .NavMenu_content ul li ul li a:active {
  color: #e72a25;
  background: none;
  opacity: 1;
}
.NavMenu .NavMenu_content ul li ul li.color06 a:link, .NavMenu .NavMenu_content ul li ul li.color06 a:visited {
  color: #e95686;
}
.NavMenu .NavMenu_content ul li ul li.color06 a:hover, .NavMenu .NavMenu_content ul li ul li.color06 a:active {
  color: #e72a25;
}
.NavMenu .NavMenu_content ul li ul li.color06.color06::before {
  color: #e95686;
}
.NavMenu .NavMenu_content div:nth-of-type(2) ul {
  line-height: 1em;
}

.mv {
  position: relative;
}
.mv .slogan_01 {
  position: absolute;
  top: 45%;
  left: 5%;
  z-index: 10;
  padding: 12px 21px;
  padding-left: 60px;
  color: #799dd2;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.6);
}
.mv .slogan_02 {
  position: absolute;
  top: 56%;
  left: 10%;
  z-index: 10;
  padding: 15px 30px;
  color: #799dd2;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.6);
}
.mv .PickPoints {
  position: absolute;
  right: 5%;
  bottom: 30px;
  z-index: 10;
  display: flex;
}
.mv .PickPoints p {
  width: 30%;
  margin-left: 3%;
}
.mv .PickPoints p img {
  width: 100%;
  max-width: 180px;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.mv_slide {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.mv_slide li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.mv_slide li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv_slide li:nth-child(1) {
  animation: slide1 24s infinite;
}

.mv_slide li:nth-child(2) {
  animation: slide2 24s infinite;
}

.mv_slide li:nth-child(3) {
  animation: slide3 24s infinite;
}

.mv_slide li:nth-child(4) {
  animation: slide4 24s infinite;
}

.mv_slide li:nth-child(1) {
  opacity: 1;
}

@keyframes slide1 {
  0% {
    opacity: 1;
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide2 {
  0% {
    opacity: 0;
  }
  20.83% {
    opacity: 0;
  }
  33.33% {
    opacity: 1;
  }
  54.16% {
    opacity: 1;
  }
  66.66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide3 {
  0% {
    opacity: 0;
  }
  54.16% {
    opacity: 0;
  }
  66.66% {
    opacity: 1;
  }
  87.5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide4 {
  0% {
    opacity: 0;
  }
  87.5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.OpeningMsg {
  padding: 12px 0;
  color: #fff;
  background: rgba(211, 153, 28, 0.1);
}
.OpeningMsg p {
  padding: 12px 0;
  background: #d3991c;
}
.OpeningMsg p img {
  width: auto;
  height: 40px;
}

.h_slider {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  padding: 30px 0;
  /*
  &:hover ul {
    animation-play-state: paused;
  }
  */
}
.h_slider ul {
  display: flex;
  flex-shrink: 0;
  animation: scroll-left 60s linear infinite;
  padding: 0;
  margin: 0;
  list-style: none;
}
.h_slider ul:nth-child(1) {
  transform: translateX(0);
}
.h_slider ul:nth-child(2) {
  transform: translateX(100%);
}
.h_slider ul:nth-child(3) {
  transform: translateX(200%);
}
.h_slider ul li {
  display: inline-block;
  flex-shrink: 0;
  overflow: hidden;
  width: 230px;
  aspect-ratio: 1/1;
  margin: 0 27px;
  border-radius: 50em;
}
.h_slider ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.greetingMsg {
  margin-bottom: 60px;
  padding: 30px 0;
  background: rgba(129, 93, 91, 0.05);
}
.greetingMsg .inner {
  color: #799dd2;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.65em;
}
.greetingMsg .inner .greetingMsg_txt_1 {
  margin-bottom: 0.5em;
  color: #815d5b;
}

.info {
  margin-bottom: 60px;
}
.info .info_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
  margin-bottom: 30px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1em;
}
.info .info_title::before, .info .info_title::after {
  content: "";
  position: absolute;
  left: calc(-100vw - 15px);
  width: 100vw;
  height: 1px;
  background: #444140;
}
.info .info_title::before {
  top: 30%;
}
.info .info_title::after {
  top: calc(30% - 5px);
}
.info .info_title span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: 0.85em;
  font-weight: 600;
}
.info .info_banner {
  margin-bottom: 30px;
  text-align: center;
}
.info .info_posts li {
  position: relative;
  margin-left: 180px;
  margin-bottom: 15px;
  line-height: 1.75em;
}
.info .info_posts li span {
  position: absolute;
  left: -180px;
  display: block;
  width: 160px;
  padding: 5px 0;
  padding-bottom: 8px;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  line-height: 1em;
  background: #799dd2;
  border-radius: 20em;
}

.NoticeBox {
  overflow: hidden;
  display: inline-block;
  margin: auto;
  margin-bottom: 12px;
  padding: 6px 45px;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 20em;
  background: #f39800;
}
.NoticeBox img {
  position: relative;
  top: -3px;
  width: 28px;
  vertical-align: middle;
}

.LinkBtn_01 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 400px;
  padding: 6px 60px;
  font-size: 1.8rem;
  border-radius: 20em;
}
.LinkBtn_01:link, .LinkBtn_01:visited {
  color: #fff;
  background: #799dd2;
}
.LinkBtn_01:hover, .LinkBtn_01:active {
  color: #fff;
  background: #815d5b;
}
.LinkBtn_01::before {
  transition: all 300ms ease-in-out;
  content: url(../img/arrow01.svg);
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 7px));
  right: 60px;
  display: block;
  width: 50px;
}
.LinkBtn_01:hover::before {
  right: -120px;
}
.LinkBtn_01::after {
  transition: all 300ms ease-in-out;
  content: url(../img/arrow01.svg);
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 7px));
  left: -120px;
  display: block;
  width: 50px;
}
.LinkBtn_01:hover::after {
  left: 60px;
}

.feverInf {
  color: #fff;
  font-size: 1.25rem;
  background: url(../img/feverInf_bg.png);
}
.feverInf p {
  margin-bottom: 21px;
}
.feverInf .inner {
  padding: 30px 0;
  text-align: center;
}
.feverInf .feverInf_title {
  margin-bottom: 15px;
  font-size: 2rem;
}
.feverInf .feverInf_ph {
  height: 300px;
  background: url(../img/feverInf_bg02.jpg) center no-repeat;
  background-size: cover;
}

.solveInf .solveInf_header {
  padding: 39px 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.75em;
  background: #815d5b;
}
.solveInf .solveInf_header .inner {
  text-align: center;
}
.solveInf .solveInf_header .solveInf_title {
  margin-bottom: 21px;
  font-size: 2rem;
}
.solveInf .solveInf_box {
  color: #fff;
}
.solveInf .solveInf_box .inner {
  transition: all 300ms ease-in-out;
  align-items: stretch;
  position: relative;
  height: 100%;
}
.solveInf .solveInf_box .inner:hover {
  opacity: 0.8;
}
.solveInf .solveInf_box .inner .solveInf_box_txt {
  width: calc(50% - 120px);
  padding: 60px;
  font-size: 1.25rem;
  text-align: center;
}
.solveInf .solveInf_box .inner .solveInf_box_txt img {
  max-width: 230px;
  margin-bottom: 15px;
}
.solveInf .solveInf_box .inner .solveInf_box_ph {
  display: block;
  position: relative;
  width: 50%;
  background: #fff;
  background-size: cover;
}
.solveInf .solveInf_box .inner a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.solveInf .solveInf_box:nth-of-type(even) .flexbox {
  flex-direction: row-reverse;
}
.solveInf .solveInf_box.n1 {
  background: rgba(121, 157, 210, 0.5);
}
.solveInf .solveInf_box.n1 .solveInf_box_txt {
  background-color: #799dd2;
}
.solveInf .solveInf_box.n1 .solveInf_box_ph {
  background: url(../img/solveInf_box_ph01.png) center no-repeat;
}
.solveInf .solveInf_box.n2 {
  background: rgba(211, 153, 28, 0.5);
}
.solveInf .solveInf_box.n2 .solveInf_box_txt {
  background-color: #d3991c;
}
.solveInf .solveInf_box.n2 .solveInf_box_ph {
  background: url(../img/solveInf_box_ph02.png) center no-repeat;
}
.solveInf .solveInf_box.n3 {
  background: rgba(129, 93, 91, 0.5);
}
.solveInf .solveInf_box.n3 .solveInf_box_txt {
  background-color: #815d5b;
}
.solveInf .solveInf_box.n3 .solveInf_box_ph {
  background: url(../img/solveInf_box_ph03.png) center no-repeat;
}

.clinic_section_01 {
  padding: 30px 0;
}
.clinic_section_01 img {
  overflow: hidden;
  border-radius: 50em;
}

.clinic_section_02 .box01:nth-of-type(even) .flexbox {
  flex-direction: row-reverse;
}

article .gmap iframe {
  width: 100%;
  height: 700px;
  border: 1px #444140 solid;
}
article .telnum {
  font-weight: 600;
  text-align: center;
}
article .telnum .telnum_box {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  max-width: 500px;
  margin: auto;
  margin-bottom: 6px;
  padding: 6px 12px;
  color: #fff;
  font-size: min(6vw, 1.95rem);
  letter-spacing: 0.05em;
  background: #799dd2;
  border-radius: 20em;
}
article .telnum .telnum_box img {
  width: 25px;
  margin-right: 12px;
  vertical-align: middle;
}
article .telnum .telnum_box span {
  font-size: 0.75em;
}

article .colum_section_02 .inner {
  position: relative;
}
article .colum_section_02 .archiveList {
  margin-bottom: 90px;
  font-size: 1.25rem;
  line-height: 1.35em;
}
article .colum_section_02 .archiveList ul:first-of-type {
  border-top: 1px #7ec9c1 solid;
}
article .colum_section_02 .archiveList ul li {
  margin: 0;
  border-bottom: 1px #7ec9c1 solid;
}
article .colum_section_02 .archiveList ul li::before {
  display: none;
}
article .colum_section_02 .archiveList ul li a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 30px 0;
  padding-right: 60px;
}
article .colum_section_02 .archiveList ul li a:link, article .colum_section_02 .archiveList ul li a:visited {
  color: #305eab;
  background: rgba(126, 201, 193, 0);
}
article .colum_section_02 .archiveList ul li a:hover, article .colum_section_02 .archiveList ul li a:active {
  padding-left: 60px;
  padding-right: 0;
  background: rgba(126, 201, 193, 0.1);
}
article .colum_section_02 .archiveList ul li a::before {
  transition: all 300ms ease-in-out;
  content: url(../img/pict_archivelist.svg);
  position: absolute;
  top: 51%;
  left: -60px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  opacity: 0;
}
article .colum_section_02 .archiveList ul li a:hover::before {
  left: 21px;
  opacity: 0.5;
}
article .colum_section_02 .archiveList ul li a::after {
  transition: all 300ms ease-in-out;
  content: url(../img/pict_archivelist.svg);
  position: absolute;
  top: 51%;
  right: 30px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
}
article .colum_section_02 .archiveList ul li a:hover::after {
  right: -60px;
  opacity: 0;
}
article .colum_section_02 .archiveList ul.fixposts {
  margin-bottom: 0;
  border-top: 1px #7ec9c1 solid;
}
article .single_header {
  margin: 0;
  padding-top: 30px;
}
article .single_header .postTitle {
  padding: 0;
  color: #305eab;
  font-size: min(6.5vw, 1.5rem);
  font-weight: 550;
  text-align: left;
  background: none;
}
article .single_header .postTitle .postDate {
  display: block;
  color: #44403f;
  font-size: 1.1rem;
}
article .postBody {
  padding: 30px 0;
  border: 1px #7ec9c1 solid;
  border-left: none;
  border-right: none;
}
article .returnBtm {
  display: block;
  width: 80%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  padding: 27px 15px;
  font-size: min(5.5vw, 1.75rem);
  border: 1px #444140 solid;
  border-radius: 20em;
}
article .returnBtm:link, article .returnBtm:visited {
  color: #444140;
  background: rgba(126, 201, 193, 0);
}
article .returnBtm:hover, article .returnBtm:active {
  color: #fff;
  background: rgba(126, 201, 193, 0.5);
  border-color: #7ec9c1;
}
article .ArchiveSelecter {
  text-align: right;
}
article .ArchiveSelecter select {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 50%;
  max-width: 150px;
  margin-right: 30px;
  margin-bottom: 15px;
  padding: 6px;
  padding-right: 60px;
  color: #44403f;
  font-size: 1.5rem;
  font-weight: 600;
  background: url(../img/pict_select.svg) right 10px center no-repeat;
  background-size: 22px 22px;
  border: none;
  border-bottom: 4px #44403f solid;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
article .ArchiveSelecter select option {
  font-size: 1em;
}
article .pagenav {
  font-size: min(4.5vw, 1.25rem);
}
article .pagenav a, article .pagenav span {
  display: inline-block;
  margin: 0 6px;
  padding: 12px 15px;
  line-height: 1em;
}
article .pagenav a:link, article .pagenav a:visited {
  color: #fff;
  background-color: #7ec9c1;
}
article .pagenav a:hover, article .pagenav a:active {
  color: #fff;
  background-color: #d3991c;
}

@media screen and (min-width: 900px) {
  .pc {
    display: inherit;
  }
  .sp {
    display: none !important;
  }
  .w5p_pc {
    width: 5%;
  }
  .w10p_pc {
    width: 10%;
  }
  .w15p_pc {
    width: 15%;
  }
  .w20p_pc {
    width: 20%;
  }
  .w25p_pc {
    width: 25%;
  }
  .w30p_pc {
    width: 30%;
  }
  .w35p_pc {
    width: 35%;
  }
  .w40p_pc {
    width: 40%;
  }
  .w45p_pc {
    width: 45%;
  }
  .w50p_pc {
    width: 50%;
  }
  .w55p_pc {
    width: 55%;
  }
  .w60p_pc {
    width: 60%;
  }
  .w65p_pc {
    width: 65%;
  }
  .w70p_pc {
    width: 70%;
  }
  .w75p_pc {
    width: 75%;
  }
  .w80p_pc {
    width: 80%;
  }
  .w85p_pc {
    width: 85%;
  }
  .w90p_pc {
    width: 90%;
  }
  .w95p_pc {
    width: 95%;
  }
  .w100p_pc {
    width: 100%;
  }
}/*# sourceMappingURL=core.css.map */