@charset "UTF-8";
/******************************
 * RESETs
******************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6, p,
ol,
ul,
ol ol,
ul ul,
ol ul,
ul ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #999;
  text-decoration: none;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

/* ボタンIOS対応 */
button {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: linear-gradient(to bottom, #EEE 0%, #CCC 100%);
  font-weight: normal;
}

button:hover {
  background: linear-gradient(to bottom, #FFF 0%, #CCC 100%);
}

select {
  word-wrap: normal;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
  appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/******************************
 * BASE
******************************/
* {
  min-height: 0vw;
}

html {
  scroll-padding-top: 160px;
  scroll-behavior: auto;
}

body {
  font-family: "Noto Serif JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1.5;
  font-style: normal;
  color: #170101;

  position: relative;
}

.inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

.textl {
  text-align: left;
}
.textc {
  text-align: center;
}
.textr {
  text-align: right;
}
.imgr {
  float: right;
}
.imgl {
  float: left;
}
.clearfix {
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.gotop {
  display: block;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  background: #c2607c;
  padding-top: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  opacity: 1;
  position: fixed;
  bottom: 70px;
  right: 0;
  z-index: 100;
  border: solid 1px #c2607c;
  padding-left: 4px;
  padding-top: 15px;
}
.gotop:hover {
  opacity: 1;
  text-decoration: none;
  color: #fff !important;
  opacity: 0.85;
}
.gotop:before {
  content: "";
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 20%;
  height: 20%;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
  left: 18px;
  top:9px
}
.col_red {
  color: #c00;
}

@media screen and (max-width: 769px) {
  body {
      font-size: 1.1em;
  }
}


/******************************
 * MENU
******************************/
#header {
  clear: both;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgb(255, 255, 255, 1);
  box-shadow: 0px 1px 5px 0px #f5e2de;
}
#header a {
  pointer-events:auto;
}

.globalnav-wrap {
  font-size: 16px;
  color: #170101;
  display: flex;
  justify-content: space-between;
}

.globalnav-wrap h1 {
  margin-left: 5px;
  padding-top: 20px;
}

.globalnav ol {
  display: flex;
  justify-content: flex-end;
  font-weight: 800;
  align-items: center;
  font-size: 15px;
}
.globalnav ol a {
  color: #c2607c;
}

#header .phone0 a {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-right: 15px;
}
#header .uketsuke {
  color: #fff;
  font-size: 11px;
  background: #c2607c;
  padding: 3px 6px;
  border-radius: 8px;
  margin-right: 5px;
}
#header .phone {
  color: #c2607c;
  font-size: 28px;
}
#header .phone:before {
  content: "";
  bottom: -3px;
  position: relative;
  font-family: "Material Icons";
  content: "\e324";
}

#header .qa0 a,
#header .mail0 a {
  text-align: center;
  height: 45px;
  width: 50px;
  color:#fff;
  display: block;
  padding: 10px 7px;
}
#header .qa0 a {
  background: #c2607c;
}
#header .mail0 a {
  background: #54802b;
}

.globalnav .dropdown-btn {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  margin-right: 15px;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
}
.globalnav .dropdown-btn:after {
  content: "";
  bottom: -3px;
  position: relative;
  font-family: "Material Icons";
  content: "\e5cf";
  color: #999;
}
.globalnav .dropdown-btn:hover {
}
.globalnav .dropdown {
  z-index: 1000;
  background: #f5e2de;
  position: absolute;
  left: 0;
  top: 37px;
  width: 260px;
  padding: 7px;
  display: none;
}
.globalnav .dropdown li {
  display: inline-block;
  margin: 10px 0;
}
.globalnav .dropdown li a {
  color: #170101;
}
.globalnav .nav-button-wrap,
.globalnav .open {
  display: block;
}
.globalnav .close {
  display: block;
}

@media screen and (max-width: 1200px) {
  header {
    position: relative;
    width: 100%;
  }
  #header {
    padding: 7px 0;
  }
  #header .sp_none {
    display: none;
  }
  .nav-button-wrap {
    display: block;
    position: absolute;
    right: 0px;
    top: 15px;
    z-index: 1000;
    cursor: pointer;
    padding: 15px;
    height: 53px;
  }

  .globalnav {
    display: none;
  }
  .globalnav-wrap h1 {
    padding-top: 0;
  }
  .globalnav-wrap.open {
  position: fixed;
  inset: 0;
}
  .globalnav-wrap.open .globalnav {
    display: block;
    padding: 40px 20px 0;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(233, 197, 197, 0.9);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .globalnav-wrap.open .globalnav li {
    display: block;
  }
  .globalnav-wrap.open .globalnav li:hover {
    background: transparent;
  }
  .globalnav-wrap.open .globalnav .dropdown {
    display: block;
    position: static;
    background: transparent;
  }
.globalnav-wrap.close .globalnav {
  display: none;
}
  .nav-button,
.nav-button span {
    display: inline-block;
    transition: all 0.3s;
  }

  .nav-button {
    z-index: 20;
    width: 25px;
    height: 19px;
    position: relative;
  }

  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #170101;
    border-radius: 4px;
  }

  .nav-button span:nth-of-type(1) {
    top: 0;
  }

  .nav-button span:nth-of-type(2) {
    top: 9px;
  }

  .nav-button span:nth-of-type(3) {
    bottom: -1px;
  }

  .active .nav-button span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  .active .nav-button span:nth-of-type(2) {
    opacity: 0;
  }

  .active .nav-button span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

.globalnav .dropdown-btn {
  padding: 20px 0 0 20px;
}
.globalnav .dropdown-btn:after {
  content: "";
}
.globalnav .dropdown {
  width: 100%;
  padding: 5px 5px 0 20px;
}
}
@media screen and (max-width: 420px) {
  .globalnav-wrap h1 {
    width: 80%;
  }
  .globalnav-wrap h1 img {
    width: 100%;
    height: auto;
  }
}

/******************************
 * MAIN
******************************/
.inner2 {
  margin: 0 auto;
  max-width: 980px;
  width: 86%;
}
#main {
  margin: 0 0 55px 0;
}

/* パンクズ */
#breadcrumb_area {
  margin-bottom: 80px;
}
#breadcrumb_area .breadcrumb {
  display: flex;
  gap: 0 15px;
  list-style: none;
  padding: 0;
  font-size: 14px;
}
#breadcrumb_area .breadcrumb a {
  color: #999;
  text-decoration: none;
}
#breadcrumb_area .breadcrumb a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
#breadcrumb_area .breadcrumb li {
  display: flex;
  align-items: center;
}
#breadcrumb_area .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  margin-left: 15px;
  font-family: "Material Icons";
  content: "\e409";
  position: relative;
  top: 2px;
}

.bdr {
  border-bottom: dashed 1px #333;
}

#m_title_area {
    position: relative;
    width: calc( 100% - 30px);
    margin:0 15px 15px 15px;
}
#m_title_area img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}
#m_title_area h2 {
    position: absolute;
    top: 40%;
    left: 35px;
    font-size: clamp(1.75rem, 1rem + 3vw, 3.25rem);
    color: #fff;
    font-weight: 500;
}

.ks_title {
  font-size: clamp(1.125rem, 0.572rem + 2.46vw, 2.875rem);
  font-weight: 500;
  color: #c2607c;
  margin-bottom: 55px;
}
.ks_title:before {
  content: "―";
  margin-right: 1em;
  color: #c2607c;
}

#main h3 {
  margin: 100px 0 55px 0;
  font-size: clamp(1.313rem, 1.153rem + 0.8vw, 1.75rem);
  line-height: 1.3;
  font-weight: 500;
  padding-left: 20px;
  border-left: solid 7px #0898df;
}
#main h3:first-child {
  margin: 55px 0;
}

#main h4 {
  margin: 55px 0 25px 0;
  font-size: clamp(1.313rem, 1.153rem + 0.8vw, 1.75rem);
  line-height: 1.3;
  font-weight: 500;
}

@media screen and (max-width: 769px) {
  #m_title_area img {
    height: 220px;
  }
  #breadcrumb_area .breadcrumb {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 7px;
  }
  #breadcrumb_area .breadcrumb li {
    display: inline;
  }
  #breadcrumb_area .breadcrumb li:not(:last-child)::after {
    margin-left: 0;
  }
}

#page_h_nav ul {
    display: flex;
    margin:0 auto 55px auto;
    justify-content: center;
    flex-wrap:wrap;
}
#page_h_nav ul li {
    border:solid 1px #c2607c;
    margin:10px 15px;
}
#page_h_nav ul li a {
    color:#c2607c !important;
    font-weight:500;
    font-size:1.2em;
    padding:10px 35px;
    display: block;
}
#page_h_nav ul li a:hover {
    opacity:0.8;
}

/******************************
 * FOOTER
******************************/
#footer {
  background: #fbf5e9;
  padding: 35px 0 10px 0;
  margin-top: 80px;
}
#footer a {
  color: #170101;
}

#footer #f_contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

#footer #f_contact div {
  border-radius: 36px;
}
#footer #f_contact div a {
  padding: 25px;
  display: block;
  text-align: center;
}
#footer #f_contact dl dt {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
}
#footer #f_contact div:first-child {
  background: #e9c5c5;
  font-size: 16px;
  width: 58%;
}
#footer #f_contact div:first-child a {
  display: flex;
  justify-content: space-between;
}
#footer #f_contact div:first-child dl {
  width: calc( 100% - 110px);
}
#footer #f_contact div:first-child p {
  width: 90px;
  height: 90px;
  text-align: center;
  background: #f5e2de;
  border-radius: 50%;
  padding: 25px 25px 15px 23px;
}
#footer #f_contact div:first-child p span {
  font-size: 40px;
}
#footer #f_contact div:first-child:hover {
    background: rgb(233, 197, 197, 0.85);
    color: #170101 !important;
}
#footer #f_contact div:last-child {
  background: #fff;
  width: 38%;
}
#footer #f_contact div:last-child a {
  color: #c2607c;
}
#footer #f_contact .uketsuke {
  color: #fff;
  font-size: 11px;
  background: #c2607c;
  padding: 2px 6px;
  border-radius: 8px;
  margin-right: 5px;
}
#footer #f_contact .phone {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
#footer #f_contact .phone:before {
  content: "";
  bottom: -3px;
  position: relative;
  font-family: "Material Icons";
  content: "\e324";
}

#footer #f_info {
  display: flex;
  justify-content: space-between;
}

#footer #f_info .left_area {
  width: 56%;

}

#footer #f_info .left_area ul {
  display: flex;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

#footer #f_info .left_area ul li {
  width: 25%;
  font-size: 14px;
  margin-bottom: 7px;
}
#footer #f_info .left_area ul li:before {
  bottom: -1px;
  position: relative;
  font-family: "Material Icons";
  content: "\e5cc";
  font-size: 12px;
  margin-right: 0px;
}
#footer #f_info .left_area ul li a:hover {
  text-decoration: underline;
}

#footer #f_info .left_area dl dt {
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 10px;
}

#footer #f_info .right_area {
  width: 40%;
}

#footer .copy {
  font-size: 11px;
  margin-top: 15px;
}

.footer_pc_none {
    display: none;
}

  #fixed-footer-menu {
    position: sticky;
    z-index: 92;
    bottom: 0;
    width: 100%;

  }
  #fixed-footer-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #fixed-footer-menu li {
    background: #e9c5c5;
    width: calc( 100% / 3 );
    font-weight: 500;
    border-right: solid 1px #fbf5e9;
  }
  #fixed-footer-menu li:last-child {
    border-right: none;
  }
  #fixed-footer-menu li a {
    text-align: center;
    display: block;
    width: 100%;
    padding: 25px 0;
    font-size: 11px;
    color: #170101;;
  }
  #fixed-footer-menu ul li:hover {
      background: #edcecd;
  }
  #fixed-footer-menu li p {
    font-size: 11px;
    line-height: 1.1;
  }

@media screen and (max-width: 1200px) {
  #footer #f_info .left_area ul li {
    width: 33%;
  }
}
@media screen and (max-width: 1130px) {
  #footer {
    padding: 35px 0 0 0;
  }
  .footer_pc_none {
    display: block;
  }
  #footer #f_contact div:first-child {
    width: 58%;
  } 
  #footer #f_contact div:last-child {
    width: 40%;
  }

}
@media screen and (max-width: 940px) {
  #footer #f_contact div a {
    text-align: left;
    line-height: 1.2;
  }
  #footer .mini {
    font-size: 13px;
  }
}
@media screen and (max-width: 910px) {
  #footer #f_info {
    display: block;
  }
  #footer #f_info .left_area {
    width: 100%;
  }
  #footer #f_info .right_area {
    width: 100%;
    margin-top: 35px;
  }
  #footer #f_info .left_area ul {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 860px) {
  #footer #f_contact {
    display: block;
    margin-bottom: 35px;
  }
    #footer #f_contact div:first-child {
    width: 100%;
    margin-bottom: 15px;
  } 
  #footer #f_contact div:last-child {
    width: 100%;
  }
  #footer #f_contact div:last-child a {
    text-align: center !important;
  }
}
@media screen and (max-width: 530px) {
  #footer #f_info .left_area ul li {
    width: 50%;
  }

}