@charset "utf-8";

/*--------------------------------------
# WEBfont
--------------------------------------*/
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');

/*--------------------------------------
# rest
--------------------------------------*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
hr,
menu,
nav,
section {
  display: block
}

a,
hr {
  padding: 0
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0
}

ins,
mark {
  background-color: #ff9;
  color: #000
}

body {
  line-height: 1
}

nav ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

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

a {
  margin: 0;
  vertical-align: baseline;
  background: 0 0;
  color: inherit
}

ins {
  text-decoration: none
}

mark {
  font-style: italic;
  font-weight: 700
}

del {
  text-decoration: line-through
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 3em 0
}

input,
select {
  vertical-align: middle
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast
}

*,
:after,
:before {
  box-sizing: border-box
}

/*--------------------------------------
# General
--------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll !important;
  word-break: break-word;
}

body {
  margin: 0 !important;
  color: #000;
  font-size: 1.3rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
  counter-reset: number;
}

@media all and (min-width: 950px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  #container {}
}

/*--------------------------------------
# Header
--------------------------------------*/
#header {
  /* clear: both;
  line-height: 1.2; */
}

#header .header-wrapper {
  padding: 0 60px 0 20px;
}

#header .site-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
}

#header .site-title h1 {
  width: 100%;
}

#header .site-title a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 60px;
  background: url(../images/site-title.svg) no-repeat center;
  background-size: auto 100%;
  overflow: hidden;
}

#header .global-nav-icon {
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 999;
}

body.open #header .global-nav-icon {
  background: none;
}

#header .global-nav-icon a {
  align-items: center;
  color: #064e7f;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  height: 60px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
  width: 60px;
}

#header .global-nav-icon a .i {
  border-bottom: 2px solid;
  display: block;
  margin: 4px 0;
  transition: 0.2s;
  width: 30px;
}

body.open #header .global-nav-icon a {
  opacity: 1;
  transform: rotate(135deg);
}

body.open #header .global-nav-icon a .i {
  margin: 0;
}

body.open #header .global-nav-icon a .i.t {
  transform: rotate(90deg);
}

body.open #header .global-nav-icon a .i.m {
  border: none;
  opacity: 0;
}

body.open #header .global-nav-icon a .i.b {
  transform: translateY(-1px);
}

@media all and (max-width: 949px) {
  #header {
    /* width: 100%;
    background: #fff; */
  }

  #header .supplement-nav {
    display: none;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #f2e100;
    overflow: auto;
    transition: 0.3s transform;
    z-index: 998;
  }

  body:not(.open) .global-nav {
    transform: translateX(100%);
  }

  .global-nav-wrapper {
    padding: 130px 0 70px;
    text-align: center;
  }

  .global-nav .nav-item-name {
    position: relative;
    display: block;
    padding: 5px 20px;
    color: #004b83;
    font-family: "Zen Old Mincho", serif;
    font-size: 5.5vw;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
  }

  .global-nav .nav-item-name.has-child:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0 7px 15px;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: #004b83 transparent transparent transparent;
    transform: rotate(180deg);
    vertical-align: middle;
    opacity: 0.8;
    transition: 0.2s;
  }

  .global-nav .nav-item:not(.open) .nav-item-name.has-child:after {
    transform: rotate(0);
  }

  .global-nav .sub-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0;
  }

  .global-nav .sub-link li {
    width: 50%;
  }

  .global-nav .sub-link a {
    display: block;
    padding: 10px;
    color: #004b83;
    font-family: "Zen Old Mincho", serif;
    font-size: 4vw;
    font-weight: 900;
    text-decoration: none;
  }

  .global-nav .child-nav {
    clear: both;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: 0.2s;
  }

  .global-nav .nav-item:not(.open) .child-nav {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
  }

  .global-nav .child-nav li:not(:first-child) {
    border-top: 1px dotted #004b83;
  }

  .global-nav .child-nav a {
    position: relative;
    display: block;
    padding: 0.5em 20px;
    color: #004b83;
    font-family: "Zen Old Mincho", serif;
    font-size: 4.6vw;
    font-weight: 900;
    text-decoration: none;
  }
}

@media all and (min-width: 950px) {
  #header .header-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 min(6%, 80px);
  }

  #header .site-title {
    display: block;
    width: 35%;
    max-width: 280px;
    min-height: 0;
  }

  #header .site-title a {
    padding-top: 134px;
    background-position: 0 center;
    background-size: 90% auto;
  }

  #header .supplement-nav ul {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    font-family: "Zen Old Mincho", serif;
  }

  #header .supplement-nav li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.6;
  }

  #header .supplement-nav a {
    display: block;
    padding: 10px 20px;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    transition: 0.2s opacity;
  }

  #header .supplement-nav a:not([href^="tel:"]):hover {
    opacity: 0.6;
  }

  #header .supplement-nav li.access {
    grid-row: 1 / 3;
    padding: 20px;
    background: #004b83;
    color: #fff;
  }

  #header .supplement-nav li.access a {
    margin-top: 8px;
    padding: 5px 10px;
    background: #fff;
    color: #004b83;
    border-radius: 100px;
  }

  #header .supplement-nav li.inquiry {
    background: #f2e100;
  }

  #header .supplement-nav li.inquiry a {
    color: #004b83;
  }

  #header .supplement-nav li.reserve {
    background: #221815;
  }

  #header .supplement-nav li.reserve a {
    color: #fff;
  }

  #header .supplement-nav li.tel {
    grid-column: 2 / 4;
    justify-content: center;
    background: #e2e7f1;
  }

  #header .supplement-nav li.tel a {
    color: #004b83;
    font-size: 3rem;
  }

  #header .supplement-nav li.tel a:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 30px;
    margin: 0 5px 0 0;
    background: url(../images/icon/tel.svg) no-repeat 0 center;
    background-size: 100% auto;
    vertical-align: bottom;
  }

  #header .global-nav-icon {
    display: none;
  }

  body:not(.open) #header .global-nav-icon a i.close,
  .global-nav {
    margin: -0.25em -0.25em -0.25em 0;
  }

  .global-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }

  body.scroll .global-nav {
    box-shadow: 0 0 6px rgb(0 0 0 / 40%);
  }

  .global-nav .global-nav-wrapper {}

  .global-nav ul.nav-wrapper {
    display: flex;
    color: #004b83;
    font-family: "Zen Old Mincho", serif;
  }

  .global-nav .nav-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .global-nav .nav-item:not(:first-child) {
    border-left: 1px solid #f2e100;
  }

  .global-nav .nav-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #f2e100;
    transition: 0.3s;
  }

  .global-nav .nav-item:hover:before {
    height: 100%;
  }

  .global-nav .nav-item-name {
    position: relative;
    display: block;
    padding: 1.25em 0.5em;
    font-size: min(1.4vw, 1.8rem);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    transition: 0.2s;
  }

  .global-nav .nav-item-name.has-child {
    cursor: default;
  }

  .global-nav .child-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 100%;
    padding: 15px 20px;
    background: #f2e100;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
    overflow: hidden;
    transition: 0.3s;
  }

  .global-nav .nav-item:not(:hover) .child-nav {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
  }

  .global-nav .child-nav li:not(:last-child) {
    margin-bottom: 0.5em;
  }

  .global-nav .child-nav a {
    position: relative;
    display: block;
    font-weight: 700;
    text-decoration: none;
  }

  .global-nav .child-nav a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #004b83;
    transition: 0.3s;
  }

  .global-nav .child-nav a:hover:before {
    width: 100%;
  }
}

/*--------------------------------------
# Footer
--------------------------------------*/
#footer {
  clear: both;
  margin-bottom: 60px;
  padding: 30px 20px 45px;
  background: #004b83;
  color: #fff;
}

#footer .information {
  clear: both;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}

#footer .information .site-title {
  margin-bottom: 0;
}

#footer .information .site-title a {
  display: block;
  width: 55%;
  height: 0;
  margin: 0 auto 10px;
  padding-top: 23%;
  background: url(../images/site-title_white.svg) no-repeat center;
  background-size: 100% auto;
  overflow: hidden;
}

#footer .information address {
  font-style: normal;
}

#footer .information ul.sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  line-height: 1.2;
}

#footer .information .sns-link li {
  margin: 0 15px;
}

#footer .information .sns-link a {
  display: block;
  font-size: 160%;
}

#footer .information .sns-link a.sns-note {
  width: 91px;
  height: 0;
  padding-top: 20px;
  background: url(../images/icon/note_white.svg) no-repeat center;
  background-size: auto 100%;
  overflow: hidden;
}

#footer .copylight {
  clear: both;
  padding: 5px 0 7px;
  text-align: center;
}

#footer .copylight small {
  color: #fff;
  font-size: 1rem;
}

@media all and (max-width: 949px) {
  #footer .footer-sitemap {
    display: none;
  }
}

@media all and (min-width: 950px) {
  #footer {
    margin-bottom: 0;
    padding: 60px min(6%, 80px) 30px;
  }

  #footer .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  #footer .information {
    padding-right: 8%;
    font-family: "Zen Old Mincho", serif;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
  }

  #footer .information .site-title a {
    width: 305px;
    padding-top: 125px;
  }

  #footer .information ul.sns-link {
    justify-content: left;
  }

  #footer .information .sns-link a {
    transition: 0.2s;
  }

  #footer .information .sns-link a:hover {
    opacity: 0.6;
  }

  #footer .footer-sitemap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    line-height: 1.2;
  }

  #footer .footer-sitemap .nav-wrapper:not(:last-child) {
    padding-right: 5%;
  }

  #footer .footer-sitemap .nav-item {
    margin-bottom: 1.5em;
  }

  #footer .footer-sitemap .nav-item-name {
    position: relative;
    text-decoration: none;
    font-weight: 500;
  }

  #footer .footer-sitemap .child-nav {
    padding-left: 0.2em;
  }

  #footer .footer-sitemap .child-nav li a {
    font-weight: 300;
    text-decoration: none;
  }

  #footer .footer-sitemap a:hover,
  #footer .footer-sitemap .child-nav li a:hover {
    text-decoration: underline;
  }

  #footer .copylight {
    flex: none;
    width: 100%;
    padding: 0;
    text-align: left;
  }
}

/*--------------------------------------
# pagetop
--------------------------------------*/
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 85px;
  z-index: 5;
  opacity: 1;
  transition: 0.2s opacity, 0s 0s right;
}

body:not(.scroll) #pagetop {
  right: 100%;
  opacity: 0;
  transition: 0.2s opacity, 0s 0.2s right;
}

#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  background: #004b83;
  border-radius: 100px;
  opacity: 0.8;
}

@media all and (min-width: 950px) {
  #pagetop {
    right: 15px;
    bottom: 15px;
  }

  #pagetop a {
    transition: 0.2s;
  }

  #pagetop a:hover {
    opacity: 1;
  }
}

/*--------------------------------------
# fixed-nav
--------------------------------------*/
#fixed-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  background: #004b83;
  border-top: 2px solid #fff;
  line-height: 1.2;
  transition: 0.2s;
}

body:not(.scroll) #fixed-nav {
  transform: translateY(100%);
}

#fixed-nav ul {
  display: flex;
}

#fixed-nav li {
  flex: 1;
}

#fixed-nav li.inquiry {
  background: #fff;
}

#fixed-nav li.reserve {
  background: #221815;
}

#fixed-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 115%;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

#fixed-nav li.inquiry a {
  color: #004b83;
}

@media all and (min-width: 950px) {
  #fixed-nav {
    left: auto;
    right: 0;
    width: 300px;
    border-top: none;
  }

  #fixed-nav ul {
    flex-wrap: wrap;
  }

  #fixed-nav li.inquiry {
    order: 1;
    background: #f2e100;
  }

  #fixed-nav li.reserve {
    order: 2;
  }

  #fixed-nav li.tel {
    order: 3;
    flex: none;
    width: 100%;
    background: #e2e7f1;
  }

  #fixed-nav a {
    height: 65px;
    padding: 10px 20px;
    font-size: 1.8rem;
  }

  #fixed-nav li.inquiry a {
    color: #004b83;
  }

  #fixed-nav li.tel a {
    color: #004b83;
    font-size: 3rem;
  }

  #fixed-nav li.tel a:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 30px;
    margin: 0 5px 0 0;
    background: url(../images/icon/tel.svg) no-repeat 0 center;
    background-size: 100% auto;
    vertical-align: bottom;
  }
}

/*--------------------------------------
# Common
--------------------------------------*/
@media all and (max-width: 949px) {
  .hide-m {
    display: none !important;
  }
}

.ff-serif {
  font-family: "Zen Old Mincho", serif;
}

.strong {
  font-weight: 700;
}

.ff-serif.strong {
  font-weight: 900;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2em {
  padding-left: 2em;
  text-indent: -2em;
}

.indent3em {
  padding-left: 3em;
  text-indent: -3em;
}

.indent4em {
  padding-left: 4em;
  text-indent: -4em;
}

/* Font size */
.small {
  font-size: 87.5%;
}

.big {
  font-size: 118%;
}

.large {
  font-size: 138%;
}

/* Color */
.fc-red {
  color: #f00;
}

.fc-blue {
  color: #004b83;
}

.fc-yellow {
  color: #ebdb01;
}

.fc-black {
  color: #000;
}

/* Space */
.mb0 {
  margin-bottom: 0;
}

/* link */
a {
  color: inherit;
  text-decoration: underline;
}

/* text */
p {
  margin-bottom: 1.5em;
}

p.aligncenter {
  text-align: center;
}

p.alignleft {
  text-align: left;
}

p.alignright {
  text-align: right;
}

/* align */
img.aligncenter,
img.alignleft,
img.alignright,
div.aligncenter,
div.alignleft,
div.alignright {
  display: block;
  margin: 1.5em auto;
  text-align: center;
}

div.aligncenter img,
div.alignleft img,
div.alignright img {
  display: block;
  margin-bottom: 0.2em;
}

/* List */
ul.reset,
ol.reset {
  list-style: none;
}

ul:not(.reset) {
  list-style: disc;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

ol:not(.reset) {
  list-style: decimal;
  margin-bottom: 2em;
  padding-left: 2em;
  overflow: hidden;
}

ul:not(.reset)>li,
ol:not(.reset)>li {
  margin: 0.5em 0;
}

ul:not(.reset) ul:not(.reset),
ol:not(.reset) ul:not(.reset) {
  list-style: circle;
  margin-bottom: 0;
}

/* Table */
table:not(.layout) {
  margin-bottom: 1.5em;
  border-top: 1px solid #004a7c;
  border-left: 1px solid #004a7c;
}

table caption {
  margin-bottom: 0.25em;
  font-weight: bold;
  text-align: left;
}

table:not(.layout) th,
table:not(.layout) td {
  padding: 5px 10px;
  background: #fff;
  border-right: 1px solid #004a7c;
  border-bottom: 1px solid #004a7c;
}

table:not(.layout) th {
  font-weight: 500;
  background: #bcc9dd;
}

table:not(.layout) th.bg-blue {
  background: #004a7c;
  color: #fff;
}

@media all and (max-width: 949px) {
  .table-slider {
    overflow-y: auto;
  }
}

/* Tab Layout */
.tab-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.5em;
}

.tab-layout .tab-input {
  display: none;
}

.tab-layout:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  order: -1;
  margin-top: -2px;
  position: relative;
  z-index: 1;
}

.tab-layout .tab-label {
  background: #ccc;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  line-height: 1.2;
  padding: 8px 10px;
  min-width: 10%;
}

.tab-layout .tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-layout .tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab-layout .tab-input:checked+.tab-label {
  color: #fff;
  background: #000;
  padding: 10px 10px;
}

.tab-layout .tab-input:checked+.tab-label+.tab-content {
  height: auto;
  padding-top: 1.5em;
  opacity: 1;
  transition: 0.5s opacity;
}

/* Accordion Layout */
.accordion-layout {
  clear: both;
  margin-bottom: 1.5em;
  border-top: 1px solid #175a87;
}

.accordion-layout label {
  display: block;
  border-bottom: 1px solid #175a87;
}

.accordion-layout .accordion-title {
  position: relative;
  padding: 18px 25px 18px 0;
  color: #004b83;
  font-family: "Zen Old Mincho", serif;
  font-size: 118%;
  font-weight: 900;
  line-height: 1.4;
  cursor: pointer;
}

.accordion-layout .accordion-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #004b83 transparent transparent transparent;
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: 0.2s;
}

.accordion-layout input[type="checkbox"] {
  display: none;
}

.accordion-layout .accordion-content {
  padding-bottom: 18px;
  overflow: hidden;
  transition: 0.2s;
  cursor: text;
}

.accordion-layout .accordion-content>*:last-child {
  margin-bottom: 0;
}

.accordion-layout input[type="checkbox"]:not(:checked)+.accordion-title:before {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-layout input[type="checkbox"]:not(:checked)+.accordion-title+.accordion-content {
  max-height: 0;
  padding-bottom: 0;
  line-height: 0;
  opacity: 0;
}

/* iframe */
.iframe-wrapper {
  display: block;
  margin-bottom: 1.5em;
}

.iframe-wrapper iframe {
  display: block;
  width: 100%;
}

@media all and (min-width: 950px) {
  .hide-d {
    display: none !important;
  }

  p.ff-serif {
    font-size: 1.7rem;
  }

  p.d-aligncenter {
    text-align: center;
  }

  p.d-alignleft {
    text-align: left;
  }

  p.d-alignright {
    text-align: right;
  }

  /* Accordion Layout */
  .accordion-layout .accordion-title {
    padding: 25px 30px 25px 0;
  }

  .accordion-layout .accordion-title:before {
    border-width: 10px 7px 0 7px;
  }

  /* Link */
  a[href^="tel:"],
  a:hover {
    text-decoration: none;
  }

  /* align */
  img.aligncenter,
  img.alignleft,
  div.alignleft {
    float: left;
    clear: left;
    max-width: 30%;
    margin: 0 3em 3em 0;
  }

  img.alignright,
  div.alignright {
    float: right;
    clear: right;
    max-width: 30%;
    margin: 0 0 3em 3em;
  }
}

/*--------------------------------------
2024.04.16　院長挨拶
--------------------------------------*/
.message-big {
  font-size: 2.2rem;
}

.message-small {
  font-size: 1.8rem;
}

.message-medium {
  font-size: 2.1rem;
}

.message-bold {
  font-size: 1.5rem;
  font-weight: 900;
  vertical-align: top;
}

.message-wrapper {
  background: linear-gradient(to bottom, rgba(0, 75, 131, 0) 0%, rgba(0, 75, 131, 0) 25%, rgba(0, 75, 131, 1) 50%, rgba(0, 75, 131, 1) 100%) !important;
}

@media all and (max-width: 949px) {
  .message-big {
    font-size: 1.6rem;
  }

  .message-small {
    font-size: 1.2rem;
  }

  .message-medium {
    font-size: 1.5rem;
  }

  .message-bold {
    font-size: 1.3rem;
    vertical-align: top;
  }

  .message-wrapper {
    background: linear-gradient(to bottom, rgba(0, 75, 131, 0) 0%, rgba(0, 75, 131, 0) 25%, rgba(0, 75, 131, 1) 60%, rgba(0, 75, 131, 1) 100%) !important;
  }
}

/*--------------------------------------
2024.04.23　院長挨拶
--------------------------------------*/
.message-large {
  font-size: 2.6rem;
}

.message-ex_small {
  font-weight: 900;
  vertical-align: top;
}

@media all and (max-width: 949px) {
  .message-large {
    font-size: 2rem;
  }
}

/*--------------------------------------
2024.05.22　歯ボロボロ
--------------------------------------*/
.tt8-h3 {
  margin-bottom: 2rem;
}

.tt8-small {
  font-size: 67.5%;
}

.tt8-node .node-wrapper {
  padding: 0 20px;
}

.tt8-node {
  padding: 40px 0;
}

.tt8-note {
  padding: 15px;
  background: #fff;
  border: 2px solid #e60012;
}

.tt8-p {
  margin: auto;
}

@media all and (min-width: 950px) {
  body.treatment8 #page-title h2 {
    padding-bottom: 0 !important;
  }

  .tt8-node {
    padding: 0 0 40px 0;
  }

  .tt8-node .node-wrapper {
    max-width: 1240px;
    margin: auto;
    padding: 0 min(6%, 80px);
  }

  .tt8-note {
    display: inline-block;
  }
}

/*--------------------------------------
2024.05.24　治療の種類と費用
--------------------------------------*/
.price-p {
  text-align: center;
  margin-bottom: 1rem;
}

/*--------------------------------------
2024.06.18　治療の種類と費用
--------------------------------------*/
.table-price th.price-th {
  background: transparent;
  font-size: 1.6rem;
  border-right: none;
  padding: 8px 8px;
}

/*--------------------------------------
2024.06.18　歯髄再生治療
--------------------------------------*/
.treatment_lead {
  margin-bottom: 0.75em;
  color: #004b83;
  font-family: "Zen Old Mincho", serif;
  font-size: min(4.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5em 0;
  border-top: 1px solid #f2e100;
  border-bottom: 1px solid #f2e100;
  clear: both;
  text-align: left;
}

body[class^="treatment"] #page-title:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  margin: 0 auto;
  padding-top: 25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/treatment11_01.jpg);
  /* ここに追加 */
}

body[class^="treatment"] h4.treatment_subLead {
  margin-bottom: 0.75em;
  color: #004b83;
  font-family: "Zen Old Mincho", serif;
  font-size: min(4.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 0;
  /* 必要に応じて既存のpaddingをリセット */
  border: none;
  /* 必要に応じて既存のborderをリセット */
  clear: none;
  /* 必要に応じて既存のclearをリセット */
}

.tm11_10 {
  margin-top: 2rem;
}

body.treatment11 #flow.node {
  background: #f2e100;
}

.tt11-wrapper {
  overflow: auto;
  box-sizing: border-box;
}

.tt11img {
  margin: 0 3rem;
}

.table-price th.price-th {
  padding-top: 15px;
}

@media all and (min-width: 950px) {
  .table-price th.price-th {
    font-size: 2rem;
    padding: 10px 10px;
    padding-top: 30px;
  }

  img.tt11img {
    margin: 0 0 0 3rem;
  }
}

.tt11-faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.tt11-title {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.tt11-content {
  display: block;
  /* 常に表示する */
}

.tt11-layout .accordion-content {
  padding-bottom: 18px;
  overflow: hidden;
  transition: 0.2s;
}

.faq-tt11-block .icon {
  position: absolute;
  top: 12px;
  left: 0;
  width: 2em;
  font-size: min(6.8vw, 3.8rem);
}

.tt11-layout .tt11-title {
  position: relative;
  padding: 18px 25px 18px 0;
  color: #004b83;
  font-family: "Zen Old Mincho", serif;
  font-size: 118%;
  font-weight: 900;
  line-height: 1.4;
  padding-left: 3rem;
}

.faq-tt11-block .tt11-title {
  padding: 25px 35px 30px 60px;
}

.tt11-faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.tt11-faq-item>*:last-child {
  border-bottom: none;
}

.tt11-layout {
  clear: both;
  margin-bottom: 1.5em;
  border-top: 1px solid #175a87;
}

@media (min-width: 768px) {
  .faq-tt11-block .icon {
    top: 8px;
  }

  .tt11-layout .tt11-title {
    padding: 25px 30px 25px 0;
    padding-left: 3.5em;
  }
}

/*--------------------------------------
2024.06.26　治療の種類と費用
--------------------------------------*/
.over-span {
  font-size: 1.4rem;
}

.price-line {
  display: block;
}

@media (min-width: 768px) {
  .over-span {
    font-size: 1.6rem;
  }

  .price-line {
    display: none;
  }
}

/*--------------------------------------
2024.06.26　TOPページ
--------------------------------------*/

@media (min-width: 950px) {
  .menu-link li:nth-child(-n + 3) {
    width: 30% !important;
  }

  .menu-link li:nth-child(-n + 3) a .img {
    padding-top: 60% !important;
  }
}

/*--------------------------------------
2024.10.18　症例集ページ
--------------------------------------*/
@media all and (max-width: 949px) {
  table.table-example {
    width: 100%;
  }
}

/*--------------------------------------
2024.10.21　ストリートビュー追加
--------------------------------------*/
.street-view {
  max-width: 1080px;
  margin-top: 20px;
}

.street-view iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 540 / 343;
}

@media (min-width: 950px) {
  .street-view {
    margin-top: 40px;
  }
}