@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rozha+One&display=swap");
/* init --------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
br,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

fieldset,
table,
img,
abbr,
acronym {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

object {
  outline: none;
}

html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  touch-action: manipulation;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #edece5;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.6);
  text-align: left;
  text-rendering: optimizeLegibility;
  text-size-adjust: none;
  -webkit-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

a {
  color: rgb(0, 0, 0);
  text-decoration: underline;
  backface-visibility: hidden;
  transition: all 250ms cubic-bezier(0.76, 0, 0.24, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
  backface-visibility: hidden;
}

input[type=submit],
button {
  border-radius: 0;
  -webkit-appearance: none;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

table {
  border-collapse: collapse;
}

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

object {
  pointer-events: none;
}

label {
  cursor: pointer;
}

::selection {
  background: rgb(0, 0, 0);
  color: white;
}

/* breakpoint ------------------------------*/
/* breakpoint ------------------------------*/
/* header ------------------------------------*/
.header {
  width: 100%;
  height: 100px;
  padding: 0 50px;
  display: flex;
  background-color: #edece5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  transition: all 300ms ease;
}
.scroll .header {
  height: 60px;
}

.header:after {
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  display: block;
  background-color: black;
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
    padding: 0 20px;
    justify-content: center;
  }
  .header:after {
    width: calc(100% - 40px);
    left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .header {
    height: 60px;
    padding: 0;
  }
  .header:after {
    width: 100%;
    left: 0;
  }
}
.header__logo {
  max-width: 200px;
  flex-basis: 200px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .header__logo {
    max-width: 160px;
    flex-basis: 160px;
  }
}
.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header-nav {
    display: none;
  }
}
.header-nav__item {
  margin: 0 1.2vw;
  position: relative;
}
.header-nav__item a {
  display: flex;
  height: 60px;
  font-size: 1.4rem;
  line-height: 2;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}
.header-nav__item span {
  position: relative;
}
.header-nav__item span:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgb(0, 0, 0);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1);
}
.header-nav__item:hover span:after, .header-nav__item.current span:after {
  transform: scaleX(1);
}
.header-nav__pull {
  display: flex;
  color: rgb(0, 0, 0);
  justify-content: center;
  align-items: center;
}
.header-nav__pull:after {
  bottom: 10px;
}
.header-nav-sub {
  width: 240px;
  padding: 10px 0;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  position: absolute;
  top: 50px;
  left: 50%;
  z-index: 10;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translate3d(-50%, -10px, 0);
  transition: opacity 250ms ease, transform 250ms ease;
}
li:hover .header-nav-sub {
  opacity: 1;
  pointer-events: inherit;
  transform: translate3d(-50%, 0, 0);
}

.header-nav-sub li {
  margin: 8px 0;
}
.header-nav-sub li a {
  height: 40px;
  padding: 0 20px;
  display: flex;
  position: relative;
  justify-content: flex-start;
}
.header-nav-sub li a:after {
  content: "";
  width: 14px;
  height: 4px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: calc(50% - 2px);
  right: 20px;
  transition: all 300ms ease;
}
.header-nav-sub li a:hover:after {
  transform: translateX(5px);
}
.header-nav-sub li p {
  font-size: 1.4rem;
  line-height: 1.6;
}
.header-other {
  height: 60px;
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .header-other {
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .header-other {
    position: absolute;
    margin-right: 0;
    top: 10;
    left: calc(6vw - 20px);
  }
}
@media screen and (max-width: 576px) {
  .header-other {
    top: 0;
    left: 0;
  }
}
.header-other__item {
  position: relative;
}
.header-other__item:after {
  content: "";
  width: 1px;
  height: 50px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 5px;
  right: 0;
}
@media screen and (max-width: 576px) {
  .header-other__item:after {
    height: 40px;
    top: 10px;
  }
}
.header-other__item:last-child {
  padding-right: 0;
}
.header-other__item:last-child:after {
  display: none;
}
.header-other__text {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .header-other__text {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .header-access:after, .header-time:after {
    display: none;
  }
}
.header-access a, .header-time a {
  width: 80px;
  height: 60px;
  display: flex;
  text-decoration: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .header-access a, .header-time a {
    width: 35px;
  }
}
.header-access a:before, .header-time a:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.header-time a:before {
  background-image: url(../images/common/icon_clock.svg);
}
.header-access a:before {
  background-image: url(../images/common/icon_pin.svg);
}
.header-contact {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header-contact {
    display: none;
  }
}
.header-contact__tel {
  display: flex;
  align-items: center;
}
.header-contact__tel:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: block;
  background-image: url(../images/common/img_icon_tel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}
.header-contact__tel span {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1200px) {
  .header-contact__tel span {
    font-size: 2.2rem;
  }
}
.header-contact__text {
  font-size: 1.1rem;
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .header-contact__text {
    font-size: 1rem;
  }
}
.header-reserve {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 50;
  transform: translateY(-50%);
}
.header-reserve a {
  width: 60px;
  display: flex;
  padding-inline: 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #0ba95f;
  border-radius: 5px 0 0 5px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  writing-mode: vertical-lr;
  font-feature-settings: normal;
  transition: all 250ms ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.header-reserve a img {
  width: 36px;
  margin-block-start: 8px;
}
.header-reserve a:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 768px) {
  .header-reserve {
    width: 100%;
    padding: 5px;
    top: auto;
    bottom: 0;
    transform: translateY(0);
    box-sizing: border-box;
  }
  .header-reserve a {
    width: 100%;
    height: 48px;
    border-radius: 5px;
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
  }
  .header-reserve a img {
    width: 32px;
    margin-block-start: 0;
  }
}

.ft-con {
  padding: 80px 50px;
  background-color: #7e8277;
}
@media screen and (max-width: 1200px) {
  .ft-con {
    padding: 80px 6vw;
  }
}
@media screen and (max-width: 992px) {
  .ft-con {
    padding: 60px 6vw;
  }
}
.ft-con-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .ft-con-list {
    display: block;
  }
}
.ft-con-list__item {
  max-width: 240px;
  flex-basis: 240px;
  margin-right: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ft-con-list__item {
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.ft-con-list__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .ft-con-list__item:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }
}
.ft-con-list__item:before {
  content: "";
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 1px solid white;
  border-radius: 50%;
  box-sizing: border-box;
}
.ft-con-list__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  color: white;
}
.ft-con-list__title:after {
  content: "";
  width: 40px;
  height: 1px;
  margin: 20px auto;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .ft-con-list__title:after {
    width: 20px;
    margin: 10px auto;
  }
}
.ft-con-list__text {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  color: white;
}
.ft-con-list__btn {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .ft-con-list__btn {
    margin-top: 10px;
  }
}
.ft-con-tel:before {
  background-image: url(../images/common/icon_tel_wt.png);
}
.ft-con-tel__number {
  margin-bottom: 20px;
  display: block;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
  color: white;
  letter-spacing: 0 !important;
}
@media screen and (max-width: 768px) {
  .ft-con-tel__number {
    margin-bottom: 10px;
    font-size: 2.5rem;
  }
}
.ft-con-tel__number a {
  text-decoration: none;
  color: white;
}
.ft-con-access:before {
  background-image: url(../images/common/icon_pin_wt.png);
}
.ft-con-contact:before {
  background-image: url(../images/common/icon_comment_wt.png);
}

.footer {
  padding: 80px 100px;
  background-color: #5f5f5c;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 80px 6vw;
  }
}
@media screen and (max-width: 992px) {
  .footer {
    padding: 60px 6vw;
  }
}
.footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer__wrap {
    display: block;
  }
}
.footer-prof {
  max-width: 200px;
  flex-basis: 200px;
}
@media screen and (max-width: 992px) {
  .footer-prof {
    max-width: none;
  }
}
.footer-prof__logo {
  max-width: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .footer-prof__logo {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.footer-prof p {
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}
.footer-prof p span {
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 992px) {
  .footer-prof p {
    text-align: center;
  }
}
.footer-prof p a {
  color: white;
}
.footer-prof ul {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 992px) {
  .footer-prof ul {
    max-width: 300px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.footer-prof ul li {
  margin: 5px 0;
}
.footer-prof ul a {
  font-size: 1.2rem;
  line-height: 1.8;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer-prof ul a:hover {
  text-decoration: underline;
}
.footer-nav {
  max-width: calc(60% - 200px);
  flex-basis: calc(60% - 200px);
}
@media screen and (max-width: 992px) {
  .footer-nav {
    max-width: none;
  }
}
.footer-nav__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer-nav__wrap {
    display: none;
  }
}
.footer-nav-category {
  min-width: 90px;
  margin-right: 1vw;
}
.footer-nav-category:last-child {
  margin-right: 0;
}
.footer-nav-category a {
  line-height: 1.6;
  text-decoration: none;
}
.footer-nav-category dt {
  margin-top: 40px;
  font-size: 1.4rem;
  font-weight: bold;
}
.footer-nav-category dt:first-child {
  margin-top: 0;
}
.footer-nav-category dt a {
  color: white;
}
.footer-nav-category dt a:hover {
  text-decoration: underline;
}
.footer-nav-category dt:after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  margin: 20px 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-nav-category dd {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.footer-nav-category dd a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-nav-category dd a:hover {
  text-decoration: underline;
}
.footer-copyright {
  height: 80px;
  display: flex;
  font-size: 1rem;
  line-height: 1.6;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .footer-copyright {
    height: auto;
    margin-top: 40px;
    justify-content: center;
  }
}
.footer-time {
  max-width: 25%;
  flex-basis: 25%;
}
@media screen and (max-width: 992px) {
  .footer-time {
    max-width: 400px;
    margin: 30px auto;
  }
}
.footer-time__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  color: rgb(255, 255, 255);
}
.footer-time table {
  width: 100%;
}
.footer-time table th,
.footer-time table td {
  padding: 10px 5px;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  color: rgb(255, 255, 255);
}
.footer-time table th:first-child,
.footer-time table td:first-child {
  width: 30%;
  text-align: left;
}
.footer-time table th {
  padding-top: 0;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.footer-time table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* breakpoint ------------------------------*/
/* menu --------------------------------------*/
.menu {
  width: 60px;
  height: 60px;
  display: none;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 11;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 600ms ease;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .menu {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .menu {
    top: 10px;
    right: calc(6vw - 20px);
  }
}
.completed .menu {
  opacity: 1;
  pointer-events: inherit;
}

.scroll .menu {
  top: 0;
}

@media screen and (max-width: 576px) {
  .menu {
    top: 0;
    right: 0;
  }
  .menu:before {
    content: "";
    width: 1px;
    height: 40px;
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 10px;
  }
  .gnav_open .menu:before {
    display: none;
  }
}
.menu div {
  width: 25px;
  height: 1px;
  display: block;
  overflow: hidden;
  transition: all 250ms ease;
  transform-origin: center;
}
@media screen and (max-width: 576px) {
  .menu div {
    width: 20px;
  }
}
.menu div span {
  width: 200%;
  height: 1px;
  background-color: black;
  display: block;
}
.menu div:first-child {
  transform: translateY(-5px);
  animation: close_line_1 350ms ease 0ms forwards;
}
.menu div:nth-child(2) {
  opacity: 1;
}
.menu div:nth-child(3) {
  transform: translateY(5px);
  animation: close_line_2 350ms ease 0ms forwards;
}
.gnav_open .menu div:first-child {
  animation: open_line_1 350ms ease 0ms forwards;
}
.gnav_open .menu div:nth-child(2) {
  opacity: 0;
}
.gnav_open .menu div:nth-child(3) {
  animation: open_line_2 350ms ease 0ms forwards;
}
.gnav_open .menu div span {
  transform: translateX(0) !important;
  visibility: visible !important;
}

@keyframes open_line_1 {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(1px);
  }
  51% {
    transform: translateY(1px) rotate3d(0, 0, 1, 0);
  }
  100% {
    transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
  }
}
@keyframes open_line_2 {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-1px);
  }
  51% {
    transform: translateY(-1px) rotate3d(0, 0, 1, 0);
  }
  100% {
    transform: translateY(-1px) rotate3d(0, 0, 1, -45deg);
  }
}
@keyframes close_line_1 {
  0% {
    transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
  }
  50% {
    transform: translateY(1px) rotate3d(0, 0, 1, 0);
  }
  51% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes close_line_2 {
  0% {
    transform: translateY(-1px) rotate3d(0, 0, 1, -45deg);
  }
  50% {
    transform: translateY(-1px) rotate3d(0, 0, 1, 0);
  }
  51% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(5px);
  }
}
/* navigation --------------------------------*/
.spnav {
  width: 450px;
  height: 100vh;
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 0;
  padding-top: 100px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translateX(100%);
  transition: all 300ms ease;
}
.spnav:before {
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  top: -1px;
  left: 50px;
}
@media screen and (max-width: 768px) {
  .spnav {
    padding-top: 80px;
  }
  .spnav:before {
    width: calc(100% - 12vw);
    left: 6vw;
  }
}
@media screen and (max-width: 576px) {
  .spnav {
    width: 100%;
    padding-top: 60px;
  }
  .spnav:before {
    width: 100%;
    left: 0;
  }
}
.gnav_open .spnav {
  transform: translateX(0);
}

.spnav__logo {
  width: 160px;
  display: none;
  position: absolute;
  top: 20px;
  left: calc(50% - 80px);
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .spnav__logo {
    display: block;
  }
}
.spnav__wrap {
  width: 100%;
  height: calc(100vh - 100px);
  margin-top: 30px;
  padding: 0 50px;
  position: relative;
  z-index: 0;
  overflow-y: scroll;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .spnav__wrap {
    height: calc(100vh - 80px);
    margin-top: 20px;
    padding: 0 6vw;
  }
}
@media screen and (max-width: 576px) {
  .spnav__wrap {
    height: calc(100vh - 60px);
    padding-right: 0;
  }
}
.spnav-list__item {
  margin: 20px 0;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.spnav-list__item:first-child {
  margin-top: 0;
}
.spnav__title {
  width: calc(100% - 30px);
  height: 40px;
  padding-right: 15px;
  display: flex;
  position: relative;
  z-index: 0;
  font-size: 1.8rem;
  line-height: 1.6;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
.acd_open .spnav__title {
  color: rgb(0, 0, 0);
}

@media screen and (max-width: 768px) {
  .spnav__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .spnav__title {
    width: calc(100% - 55px);
    font-size: 1.6rem;
  }
}
.spnav__title:before {
  content: "";
  width: 1px;
  height: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 10px;
  right: 0;
}
.spnav__title:after {
  content: "";
  width: 14px;
  height: 4px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 250ms ease;
}
.spnav__title:hover {
  color: rgb(0, 0, 0);
}
.spnav__title:hover:after {
  transform: translateX(5px);
}
.spnav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 0;
  right: -10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .spnav-btn {
    right: 10px;
  }
}
.spnav-btn:before, .spnav-btn:after {
  content: "";
  width: 16px;
  height: 1px;
  display: block;
  background-color: rgb(0, 0, 0);
}
.spnav-btn:before {
  transform: translateY(-2px);
  animation: spnav_close_line_1 250ms ease 0ms forwards;
}
.spnav-btn:after {
  transform: translateY(2px);
  animation: spnav_close_line_2 250ms ease 0ms forwards;
}
.acd_open .spnav-btn:before {
  animation: spnav_open_line_1 250ms ease 0ms forwards;
}
.acd_open .spnav-btn:after {
  animation: spnav_open_line_2 250ms ease 0ms forwards;
}

.spnav-child {
  width: 100%;
  height: 0;
  background-color: white;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 300ms ease;
}
@media screen and (max-width: 576px) {
  .spnav-child {
    padding-right: 20px;
  }
}
.spnav-child dt {
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.spnav-child dt a {
  font-size: 1.2rem;
  font-weight: bold;
}
.spnav-child li,
.spnav-child dd {
  margin: 5px 0;
  padding-left: 20px;
}
.spnav-child li a,
.spnav-child dd a {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
}
.spnav-child li a:after,
.spnav-child dd a:after {
  content: "";
  width: 14px;
  height: 4px;
  margin-right: 2px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 250ms ease;
}
.spnav-child li a:hover,
.spnav-child dd a:hover {
  color: rgb(0, 0, 0);
  transform: translateX(5px);
}
.spnav-child dd {
  padding-left: 40px;
}
.spnav-child a {
  height: 40px;
  display: flex;
  line-height: 1.6;
  text-decoration: none;
  justify-content: space-between;
  align-items: center;
}
.spnav-sub:before {
  content: "";
  width: 100%;
  height: 1px;
  margin: 30px 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 576px) {
  .spnav-sub:before {
    margin: 20px 0;
  }
}
@media screen and (max-width: 576px) {
  .spnav-sub {
    padding-right: 20px;
  }
}
.spnav-sub li {
  margin-bottom: 10px;
}
.spnav-sub li:first-child {
  margin-top: 0;
}
.spnav-sub li:last-child {
  margin-bottom: 0;
}
.spnav-sub li a {
  height: 30px;
  display: flex;
  font-size: 1.3rem;
  line-height: 1.8;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  justify-content: space-between;
  align-items: center;
}
.spnav-sub li a:after {
  content: "";
  width: 14px;
  height: 4px;
  margin-right: 2px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 250ms ease;
}
.spnav-sub li a:hover {
  color: rgb(0, 0, 0);
}
.spnav-sub li a:hover:after {
  transform: translateX(5px);
}

@keyframes spnav_open_line_1 {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(0);
  }
  51% {
    transform: translateY(0) rotate3d(0, 0, 1, 0);
  }
  100% {
    transform: translateY(0) rotate3d(0, 0, 1, 45deg);
  }
}
@keyframes spnav_open_line_2 {
  0% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-1px);
  }
  51% {
    transform: translateY(-1px) rotate3d(0, 0, 1, 0);
  }
  100% {
    transform: translateY(-1px) rotate3d(0, 0, 1, -45deg);
  }
}
@keyframes spnav_close_line_1 {
  0% {
    transform: translateY(0) rotate3d(0, 0, 1, 45deg);
  }
  50% {
    transform: translateY(0) rotate3d(0, 0, 1, 0);
  }
  51% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes spnav_close_line_2 {
  0% {
    transform: translateY(-1px) rotate3d(0, 0, 1, -45deg);
  }
  50% {
    transform: translateY(-1px) rotate3d(0, 0, 1, 0);
  }
  51% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(2px);
  }
}
/* overlay ------------------------------------*/
.overlay {
  width: 100%;
  height: 100vh;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}
.gnav_open .overlay,
.shopnav_open .overlay {
  opacity: 1;
  pointer-events: visible;
}

/* main -------------------------------------- */
.main {
  display: block;
  padding-top: 100px;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  .main {
    padding-top: 60px;
  }
}
.completed .main {
  opacity: 1;
  pointer-events: inherit;
}

.main-wrap {
  padding: 100px 50px;
}
@media screen and (max-width: 768px) {
  .main-wrap {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 576px) {
  .main-wrap {
    padding: 60px 20px;
  }
}
.main-wrap.bg-white {
  background-color: rgb(255, 255, 255);
}

/* index parts ------------------------------- */
.index {
  padding: 0 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index {
    padding: 0 20px;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 576px) {
  .index {
    padding: 0;
  }
}
.index-head {
  height: 200px;
  display: flex;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
}
.index-head:before {
  content: "";
  max-width: 200px;
  flex-basis: 200px;
}
@media screen and (max-width: 768px) {
  .index-head {
    height: auto;
    margin-top: -40px;
    display: block;
    order: 0;
  }
}
.index-head__title {
  font-size: 2.4rem;
  line-height: 1.6;
  display: flex;
  color: rgb(0, 0, 0);
  order: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .index-head__title {
    font-size: 2rem;
  }
}
.index-head__title:before {
  content: "";
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  background-color: rgb(255, 255, 255);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
.endoscope .index-head__title:before {
  background-image: url(../images/common/icon_disease.png);
}

.gastroendoscopy .index-head__title:before {
  background-color: #8fc43d;
  background-image: url(../images/common/icon_gastroendoscopy.png);
}

.colonoscopy .index-head__title:before {
  background-color: #0ba95f;
  background-image: url(../images/common/icon_colonoscopy.png);
}

.ultrasonography .index-head__title:before {
  background-image: url(../images/common/icon_ultrasonography.png);
}

.about .index-head__title:before {
  background-image: url(../images/common/icon_about.png);
}

.information .index-head__title:before {
  background-image: url(../images/common/icon_information.png);
}

.checkup .index-head__title:before {
  background-image: url(../images/common/icon_checkup.png);
}

.index-head__en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 2.5;
  max-width: 200px;
  flex-basis: 200px;
  display: block;
  text-align: right;
  order: 2;
}
@media screen and (max-width: 768px) {
  .index-head__en {
    font-size: 1.1rem;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .index-head__en {
    max-width: none;
    margin-top: 5px;
    text-align: center;
  }
}
.index__image {
  width: 100%;
  height: calc(100px + 30vw);
  max-height: 600px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.index__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .index__image {
    border-radius: 20px;
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .index__image {
    border-radius: 0;
  }
}
.index .breadcrumb {
  position: absolute;
  top: 80px;
  left: 50px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index .breadcrumb {
    position: static;
    transform: translateY(0);
    order: 2;
  }
}
@media screen and (max-width: 576px) {
  .index .breadcrumb {
    padding: 0 20px;
  }
}

/* child parts ------------------------------- */
.child {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .child {
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .child {
    padding: 0;
  }
  .child .breadcrumb {
    margin: 0 20px;
  }
}
.child-head {
  height: 320px;
  display: flex;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.child-head.endoscope {
  background-image: url(../images/endoscope/common/img_head.jpg);
}
.child-head.gastroendoscopy {
  background-image: url(../images/endoscope/gastroendoscopy/img_head_other.jpg);
}
.child-head.colonoscopy {
  background-image: url(../images/endoscope/colonoscopy/img_head_other.jpg);
}
@media screen and (max-width: 768px) {
  .child-head {
    height: 240px;
  }
}
@media screen and (max-width: 576px) {
  .child-head {
    border-radius: 0;
  }
}
.child-head__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-size: 2.8rem;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .child-head__title {
    font-size: 2.2rem;
  }
}
.gastroendoscopy .child-head__title {
  color: rgb(0, 0, 0);
}

.child-head__en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 2.5;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .child-head__en {
    font-size: 1.1rem;
    line-height: 2;
  }
}
.gastroendoscopy .child-head__en {
  color: rgb(0, 0, 0);
}

/* common parts ------------------------------ */
.breadcrumb {
  height: 40px;
  display: flex;
  order: 0;
  align-items: center;
}
.breadcrumb li {
  font-size: 1.2rem;
  line-height: 2.5;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .breadcrumb li {
    font-size: 1.1rem;
    line-height: 2;
  }
}
.breadcrumb li:after {
  content: "";
  width: 10px;
  height: 1px;
  margin: 0 5px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cmn-sect {
  margin: 100px auto;
}
.cmn-sect.max-m {
  max-width: 900px;
}
.cmn-sect.max-l {
  max-width: 1400px;
}
.cmn-sect:first-child {
  margin-top: 0;
}
.cmn-sect:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cmn-sect {
    margin: 80px 0;
  }
}
.cmn-sect__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  color: rgb(0, 0, 0);
}
.cmn-sect__title:after {
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .cmn-sect__title {
    font-size: 1.8rem;
  }
}

.btn-list {
  max-width: 1400px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}
.btn-list.vartical {
  max-width: 900px;
  display: block;
}
@media screen and (max-width: 768px) {
  .btn-list {
    display: block;
  }
}
.btn-list__item {
  max-width: calc(50% - 40px);
  flex-basis: calc(50% - 40px);
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .btn-list__item {
    max-width: none;
    margin-bottom: 10px !important;
  }
}
.vartical .btn-list__item {
  max-width: none;
  margin-bottom: 20px;
}

.btn-list__item a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  height: 80px;
  display: flex;
  padding: 0 40px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-decoration: none;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  transition: all 300ms ease;
}
@media screen and (max-width: 768px) {
  .btn-list__item a {
    border-radius: 5px;
  }
}
.btn-list__item a:after {
  content: "";
  width: 18px;
  height: 4px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 300ms ease;
}
.btn-list__item a:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.btn-list__item a:hover:after {
  transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  .btn-list__item a {
    height: 60px;
    padding: 0 20px;
    font-size: 1.5rem;
  }
}

.desc-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .desc-list {
    display: block;
  }
}
.desc-list dt,
.desc-list dd {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .desc-list dt,
  .desc-list dd {
    padding: 20px 0;
  }
}
.desc-list dt {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  max-width: 200px;
  flex-basis: 200px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .desc-list dt {
    max-width: none;
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
  .desc-list dt br {
    display: none;
  }
}
.desc-list dd {
  font-size: 1.5rem;
  line-height: 2.5;
  max-width: calc(100% - 200px);
  flex-basis: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .desc-list dd {
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .desc-list dd {
    max-width: none;
    padding-top: 0;
    border-top: 0;
  }
}

.table {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .table {
    width: calc(100% + 40px);
    display: flex;
    position: relative;
    left: -20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
  }
  .table:before, .table:after {
    content: "";
    min-width: 20px;
    display: block;
  }
}
.table__title {
  margin-top: 20px;
}
.table table {
  width: 100%;
  min-width: 640px;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  box-sizing: border-box;
}
.table table th,
.table table td {
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.table table th:last-child,
.table table td:last-child {
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .table table th,
  .table table td {
    padding: 10px;
  }
}
.table table th {
  font-size: 1.2rem;
  line-height: 2.5;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  font-weight: 600;
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .table table th {
    font-size: 1.1rem;
    line-height: 2;
  }
}
.table table th:first-child, .table table th:last-child {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .table table th:first-child, .table table th:last-child {
    width: 120px;
  }
}
.table table td {
  font-size: 1.5rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .table table td {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.table table td.serif {
  font-size: 1.6rem;
  letter-spacing: normal;
  color: rgb(0, 0, 0);
}
.table table td.serif span {
  font-size: 2rem;
}
.table table td ol {
  display: flex;
  flex-wrap: wrap;
}
.table table td ol li {
  margin-left: 18px;
  margin-right: 20px;
  list-style-type: decimal;
}
.table table td ol li:last-child:after {
  display: none;
}
.table table td dl {
  display: flex;
  flex-wrap: wrap;
}
.table table td dl dt {
  max-width: 100px;
  flex-basis: 100px;
}
.table table td dl dd {
  max-width: calc(100% - 100px);
  flex-basis: calc(100% - 100px);
}

.other-head {
  width: 100%;
  height: 240px;
  display: flex;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .other-head {
    border-radius: 10px;
  }
}
@media screen and (max-width: 576px) {
  .other-head {
    width: calc(100% + 12vw);
    border-radius: 0;
    left: -6vw;
  }
}
.other-head__title {
  margin-bottom: 10px;
  font-size: 2.8rem;
  line-height: 1.6;
  color: white;
}
@media screen and (max-width: 1200px) {
  .other-head__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .other-head__title {
    font-size: 2rem;
  }
}
.other-head__en {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

.head-sub {
  width: 100%;
  height: 60px;
  display: flex;
  padding-right: 10px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .head-sub {
    height: 40px;
    padding-right: 0;
  }
}
.head-sub-blead {
  display: flex;
  font-size: 1.1rem;
  line-height: 1.6;
}
.head-sub-blead dd {
  display: flex;
  align-items: center;
}
.head-sub-blead dd:before {
  content: "";
  width: 10px;
  height: 1px;
  display: block;
  margin: 0 10px;
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .head-sub-blead dd:before {
    width: 5px;
    margin: 0 6px;
  }
}
.head-sub-nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .head-sub-nav {
    display: none;
  }
}
.head-sub-nav li {
  margin-left: 2vw;
}
.head-sub-nav li:first-child {
  margin-left: 0;
}
.head-sub-nav li a {
  height: 40px;
  display: flex;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.6;
  text-decoration: none;
  align-items: center;
}
.head-sub-nav li a:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: black;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 250ms ease;
  transform: scaleX(0);
  transform-origin: left;
}
.head-sub-nav li a:hover:after, .head-sub-nav li a.current:after {
  transform: scaleX(1);
}

.parts-sec {
  margin: 100px 0;
}
@media screen and (max-width: 1200px) {
  .parts-sec {
    margin: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .parts-sec {
    margin: 60px 0;
  }
}
.parts-sec:last-child {
  margin-bottom: 0;
}
.parts-sec.max {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.parts-sec__catch {
  margin-bottom: 60px;
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
  color: black;
}
@media screen and (max-width: 768px) {
  .parts-sec__catch {
    font-size: 2rem;
  }
}
.parts-sec__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2;
}
.parts-sec__text.line:after {
  content: "";
  width: 80px;
  height: 1px;
  display: block;
  margin: 60px auto;
  background-color: black;
}
@media screen and (max-width: 768px) {
  .parts-sec__text.line:after {
    margin: 40px auto;
  }
}
.parts-sec__text.center {
  text-align: center;
}

.subtitle {
  margin-bottom: 60px;
  font-size: 2.2rem;
  line-height: 1.6;
  text-align: center;
  color: black;
}
@media screen and (max-width: 1200px) {
  .subtitle {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .subtitle {
    font-size: 2rem;
  }
}
.subtitle:after {
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.1);
}
.subtitle.icon-title:before {
  content: "";
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 30px;
  display: block;
  background-color: white;
  background-position: center;
  background-size: 100% auto;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .subtitle.icon-title:before {
    width: 80px;
    height: 80px;
  }
}
.subtitle.icon-title.gray:before {
  background-color: rgba(0, 0, 0, 0.05);
}
.subtitle.icon-title.outpatient:before {
  background-image: url(../images/common/icon_outpatient.png);
}
.subtitle.icon-title.calendar:before {
  background-image: url(../images/common/icon_calendar.png);
}
.subtitle.icon-title.examination:before {
  background-image: url(../images/common/icon_examination.png);
}

.m-b-text {
  font-size: 1.4rem;
  line-height: 2;
}

.notice {
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.6;
}
.notice li {
  margin: 5px 0;
  padding-left: 1em;
  text-indent: -1em;
}
.notice li:before {
  content: "※";
}
.notice.max-w {
  max-width: 1200px;
  margin: 20px auto;
}

/* ui ---------------------------------------- */
.btn {
  min-width: 140px;
  padding-right: 30px;
  height: 40px;
  display: flex;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
.btn.wt {
  color: white;
}
.btn:before, .btn:after {
  content: "";
  display: block;
  position: absolute;
}
.btn:before {
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  transition: all 300ms ease;
}
a:hover .btn:before {
  width: calc(100% + 5px);
}

.btn.wt:before {
  border-bottom-color: white;
}
.btn:hover:before {
  width: calc(100% + 5px);
}
.btn:after {
  width: 18px;
  height: 4px;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  top: calc(50% - 2px);
  right: 0;
  transition: all 300ms ease;
}
a:hover .btn:after {
  transform: translateX(5px);
}

.btn.wt:after {
  background-image: url(../images/common/icon_arrow_r_wt.svg);
}
.btn:hover:after {
  transform: translateX(5px);
}

.boxbtn {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .boxbtn {
    margin: 40px 0;
  }
}
.boxbtn:last-child {
  margin-bottom: 0;
}
.boxbtn a {
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.6;
  text-decoration: none;
  color: rgb(0, 0, 0);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .boxbtn a {
    height: 60px;
    padding: 0 20px;
    font-size: 1.5rem;
  }
}
.boxbtn a:after {
  content: "";
  width: 18px;
  height: 4px;
  margin-left: auto;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: calc(50% - 2px);
  right: 40px;
  transition: all 250ms ease;
}
@media screen and (max-width: 768px) {
  .boxbtn a:after {
    right: 20px;
  }
}
.boxbtn a:hover {
  border-color: rgb(0, 0, 0);
}
.boxbtn a:hover:after {
  transform: translateX(5px);
}

.arrow_r {
  position: relative;
}
.arrow_r:after {
  content: "";
  width: 18px;
  height: 4px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transition: all 250ms ease;
}
a:hover .arrow_r:after {
  transform: translateX(5px);
}

.arrow_r:hover:after {
  transform: translateX(5px);
}

/* index --------------------------------------*/
.pagehead {
  width: 100%;
  height: calc(150px + 50vw);
  max-height: 680px;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .pagehead {
    border-radius: 25px;
  }
}
@media screen and (max-width: 768px) {
  .pagehead {
    border-radius: 15px;
  }
}
.pagehead:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.gastroendoscopy .pagehead:before {
  background-image: url(../images/endoscope/gastroendoscopy/img_pagehead.jpg);
}

.colonoscopy .pagehead:before {
  background-image: url(../images/endoscope/colonoscopy/img_pagehead.jpg);
}

.pagehead__wrap {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pagehead__wrap {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.pagehead__title {
  margin-bottom: 30px;
  font-size: 3.2rem;
  line-height: 1.6;
  color: black;
}
.pagehead__title.white {
  color: white;
}
@media screen and (max-width: 992px) {
  .pagehead__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 576px) {
  .pagehead__title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.pagehead__title:before {
  content: "";
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: block;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 992px) {
  .pagehead__title:before {
    width: 80px;
    height: 80px;
    background-size: 80% auto;
  }
}
@media screen and (max-width: 576px) {
  .pagehead__title:before {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}
.gastroendoscopy .pagehead__title:before {
  background-color: #8fc43d;
  background-image: url(../images/common/icon_gastroendoscopy.png);
}

.colonoscopy .pagehead__title:before {
  background-color: #0ba95f;
  background-image: url(../images/common/icon_colonoscopy.png);
}

.checkup .pagehead__title:before {
  background-color: white;
  background-image: url(../images/common/icon_checkup.png);
}

.pagehead__en {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
}
.pagehead__en.white {
  color: white;
}
.pagehead__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pagehead__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-contents {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .index-contents {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .index-contents {
    padding: 40px 0;
  }
}
.index-contents__catch {
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
  color: black;
}
@media screen and (max-width: 768px) {
  .index-contents__catch {
    font-size: 2rem;
  }
  .index-contents__catch br {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .index-contents__catch {
    font-size: 1.8rem;
  }
}
.index-contents__catch:after {
  content: "";
  width: 40px;
  height: 1px;
  margin: 30px auto;
  display: block;
  background-color: black;
}
.index-contents__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.5);
}
.index-nav {
  display: flex;
}
@media screen and (max-width: 992px) {
  .index-nav {
    display: block;
  }
}
.index-nav__title, .index-nav-list {
  padding-top: 100px;
  position: relative;
}
.index-nav__title {
  max-width: 250px;
  flex-basis: 250px;
  border-top: 1px solid black;
  font-size: 1.6rem;
  line-height: 1.6;
  color: black;
}
@media screen and (max-width: 992px) {
  .index-nav__title {
    max-width: none;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .index-nav__title {
    max-width: none;
    padding-top: 20px;
  }
}
.index-nav-list {
  max-width: calc(100% - 250px);
  flex-basis: calc(100% - 250px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .index-nav-list {
    max-width: none;
    margin-top: 40px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .index-nav-list {
    display: block;
    margin-top: 20px;
    padding-top: 40px;
  }
}
.index-nav-list__item {
  max-width: calc((100% - 120px) / 3);
  flex-basis: calc((100% - 120px) / 3);
  display: flex;
  margin-right: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .index-nav-list__item {
    margin-bottom: 40px;
  }
}
.index-nav-list__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 992px) {
  .index-nav-list__item {
    max-width: calc((100% - 60px) / 2);
    flex-basis: calc((100% - 60px) / 2);
  }
  .index-nav-list__item:nth-child(3n) {
    margin-right: 60px;
  }
  .index-nav-list__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .index-nav-list__item {
    max-width: none;
    margin-right: 0 !important;
  }
}
.index-nav-list__item a {
  text-decoration: none;
}
.index-nav-list__en {
  height: 40px;
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid black;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.4);
  justify-content: space-between;
  align-items: center;
}
.index-nav-list__title {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.6;
  color: black;
}
@media screen and (max-width: 768px) {
  .index-nav-list__title {
    font-size: 1.8rem;
  }
}
.index-nav-list__text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.5);
}
.index-foot-nav {
  width: calc(100% - 250px);
  margin-left: auto;
  display: flex;
  margin-top: 40px;
  padding-top: 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .index-foot-nav {
    display: block;
    padding-top: 60px;
  }
}
@media screen and (max-width: 992px) {
  .index-foot-nav {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .index-foot-nav {
    padding-top: 40px;
  }
}
.index-foot-nav__item {
  max-width: calc((100% - 60px) / 2);
  flex-basis: calc((100% - 60px) / 2);
}
@media screen and (max-width: 1200px) {
  .index-foot-nav__item {
    max-width: none;
    margin-top: 20px;
  }
}
.index-foot-nav__item a {
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: none;
  color: black;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  transition: all 250ms ease;
}
@media screen and (max-width: 768px) {
  .index-foot-nav__item a {
    height: 60px;
    padding: 0 20px;
    font-size: 1.5rem;
  }
}
.index-foot-nav__item a:after {
  position: static;
}
.index-foot-nav__item a:hover {
  border-color: black;
}

/* common text ------------------------------- */
.serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catch-text {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .catch-text {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.catch-text span {
  display: inline-block;
  text-decoration: underline;
}

.main-body-text {
  font-size: 1.5rem;
  line-height: 2.5;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .main-body-text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.main-body-text b {
  font-weight: normal;
  text-decoration: underline;
}
.main-body-text.center {
  text-align: center;
}

/* other ------------------------------------- */
.line-top {
  margin-top: 100px;
  padding-top: 100px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .line-top {
    margin-top: 80px;
    padding-top: 80px;
  }
}