@charset "UTF-8";
/* outline
--------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.8vw;   /*2.27vw;*/
  box-sizing: border-box;
  color: #333333ea;
}
@media (max-width: 767px) {
  .no__sp {
    display: none;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
  .no__pc {
    display: none;
  }
}
a {
  text-decoration: none;
  color: #336699;
}
/* header__section
--------------------------------*/
.header__section {
  position: relative;
  z-index: 1;
}
.header__container {
  width: 96vw;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 19vw;
  /*position: relative;
  z-index: 100;*/
}
@media (min-width: 768px) {
  .header__container {
    width: 720px;
    height: 87px;
  }
}
.header__title {
  display: none;
  /*font-size: 4vw;*/
}
.hamburger__button {
  /*font-size: 8vw;
  color: #336699;
  font-weight: 700;*/
  position: relative;
  width: 6.67vw;
  height: 5.87vw;
  cursor: pointer;
  z-index: 10;
}
.hamburgerIcon__bar {
  position:absolute;
  left: 0;
  width: 100%;
  height: .53vw;
  background-color: #336699;
  border-radius: .53vw;
}
.hamburger__button,
.hamburgerIcon__bar {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.hamburgerIcon__bar--01 {
  top: 0;
}
.hamburgerIcon__bar--02 {
  top: 2.67vw;
}
.hamburgerIcon__bar--03 {
  bottom: 0;
}
.hamburger__button.hamburger__button--active .hamburgerIcon__bar--01 {
  -webkit-transform: translateY(2.67vw) rotate(-45deg);
  transform: translateY(2.67vw) rotate(-45deg)
}
.hamburger__button.hamburger__button--active .hamburgerIcon__bar--02 {
  opacity: 0;
}
.hamburger__button.hamburger__button--active .hamburgerIcon__bar--03 {
  -webkit-transform: translateY(-2.67vw) rotate(45deg);
  transform: translateY(-2.67vw) rotate(45deg)
}
@media (max-width: 767.9px) {
  .hamburger__button--active {
    position: fixed;
  }
  .hamburgerMenu__list {
    position: fixed;
    top: 0vw;
    left: 100%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .95);
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    padding-left: 65vw;
    padding-top: 20vw;
    list-style: none;
  }
  .hamburgerMenu__list--active {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  .hamburgerMenu__item {
    width: 35vw;
    font-size: 4vw;
    background-color: rgba(240, 248, 255, .95);
    border-bottom: 0.2vw solid #336699;
  }
  .hamburgerMenu__link {
    display: block;
    width: 100%;
    padding-left: 5vw;
  }

}
@media (min-width: 768px) {
  .header__title {
    display: block;
    color: #336699;
    font-size: 20px;
    font-weight: 400;
  }
  .hamburger__button,
  .hamburgerMenu__list {
    display: none;
  }
}
/* mv__section
--------------------------------*/
.mv__section {
  padding-bottom: 20vw;
}
.mv__area {
  padding-top: 10vw;
  background: url(../images/header_1_bg.jpg) no-repeat top center/cover;
  height: 36.27vw;
}
.mv__title {
  font-size: 6vw;
  color: #ffffff;
  font-weight: 600;
  padding-left: 19vw;
}
.mv__contents {
  width: 78.67vw;
  margin: 10vw auto;
  font-size: 3.5vw;
}
@media (min-width: 768px) {
  .mv__section {
    padding-bottom: 70px;
  }
  .mv__area {
    padding-top: 45px;
    background: url(../images/header_1_bg.jpg) no-repeat center/730px 152px;
    margin: 0 auto 0;
    width: 730px;
    height: 152px;
  }
  .mv__title {
    font-size: 32px;
    font-weight: 400;
    padding-left: 150px;
  }
  .mv__contents {
    width: 500px;
    margin: 0 auto;
    font-size: 17px;
  }
}
.contact__area {
  padding-top: 3vw;
  text-align: center;
  font-size: 3.5vw;
  line-height: 2;
}
.notice__area {
  padding-top: 10vw;
  padding-left: 8.67vw;
  padding-right: 9vw;
  color: #336699;
  text-indent: -1em;
}
.notice__text::before {
  content: "・";
}
.notice__text:not(:first-child) {
  padding-top: 2.3vw;
}
@media (min-width: 768px) {
  .contact__area {
    padding-top: 56px;
    font-size: 17px;
  }
  .notice__area {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 0;
    text-indent: 0;
  }
  .notice__text:not(:first-child) {
    padding-top: 10px;
  }
}
.notice__text--modal {
  position: relative;
  cursor: pointer;
  text-decoration: underline;
}
/*.notice__text--modal::after {
  position: absolute;
  content: "";
  background-color: #336699;
  height: 0.07vw;
  left: 2.13vw;
  bottom: -0.07vw;
}*/
.notice__text02 {
  width: 34vw;
}
.notice__text02::after {
  width: 20.4vw;
}
@media (min-width: 768px) {
  /*.notice__text--modal::after {
    height: 0.5px;
    left: 16px;
    bottom: -0.5px;
  }*/
  .notice__text02 {
    width: 170px;
  }
  .notice__text02::after {
    width: 153px;
  }
  .notice__text03 {
    width: 340px;
  }
}
.modal__area {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 2;
  background: rgba(240, 248, 255, 0.95);
}
.modal__content {
  background-color: #fefefe;
  width: 65.33vw;
  margin: 26.67vw auto 0;
  padding: 0 2vw 2vw 2.67vw;
}
.modal__content--03 {
  margin: 26.67vw auto 0;
  padding: 0 2vw 2vw 4vw;
}
.modal__title {
  text-align: center;
  font-weight: 500;
  font-size: 3.67vw;
  padding-bottom: 1.33vw;
}
.modal__text {
  text-indent: 1em;
}
.modal__text--03 {
  /*text-align: center;*/
  text-indent: 0;
}
.modal__close {
  display: inline;
}
.modal__topWrapper {
  text-align: right;
}
.modal__close--icon {
  cursor: pointer;
  font-size: 3.67vw;
  font-weight: 900;
}
.modal__bottomWrapper {
  margin-top: 4vw;
  text-align: center;
}
.modal__close--text {
  cursor: pointer;
  border: 0.13vw solid;
}
@media (min-width: 768px) {
  .modal__content {
    width: 490px;
    margin: 100px auto 0;
    padding: 0 15px 15px 20px;
  }
  .modal__content--03 {
    margin: 200px auto 0;
  }
  .modal__title {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .modal__text--03 {
    padding-left: 30px;
  }
  .modal__close--icon {
    font-size: 20px;
  }
  .modal__bottomWrapper {
    margin-top: 30px;
  }
  .modal__close--text {
    border: 1px solid;
  }
}
.menu__area {
  width: 53.33vw;
  margin: 21vw auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 3.5vw;
  font-size: 4vw;
  font-weight: 700;
}
.menu__list {
  width: 28vw;
  margin: 0;
}
.menu__item {
  letter-spacing: .13vw;
  list-style: none;
  width: 28vw;
  background-color: rgb(234, 246, 255);
}
.menu__item + .menu__item {
  margin-top: 3.5vw;
}
.menu__link {
  display: block;
  width: 100%;
  padding-left: 2.67vw;
  font-size: 4.5vw;
}
@media (min-width: 768px) {
  .menu__area {
    width: 400px;
    height: 200px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    row-gap: 0;
    font-size: 17px;
    font-weight: 500;
  }
  .menu__list {
    width: 150px;
    margin-top: 17px;
  }
  .menu__item {
    letter-spacing: 1px;
    list-style: none;
    width: 180px;
    background-color: rgb(248, 252, 255);
  }
  .menu__item + .menu__item {
    margin-top: 10px;
  }
  .menu__link {
    display: block;
    width: 100%;
    padding-left: 20px;
    font-size: 17px;
  }
}
/* intro__section
--------------------------------*/
.intro__section {
  padding: 26.33vw 0;
  position: relative;
}
.intro__section::before {
  position: absolute;
  content: "西川耳鼻咽喉科";
  top: 5.67vw;
  right: .67vw;
  color: #336699;
  font-size: 3.27vw;
  font-weight: 400;
}
.intro__section::after {
  position: absolute;
  content: "";
  width: 90vw;
  height: .07vw;
  background-color: #333333a7;
  top: 10.67vw;
}
.intro__contentsWidth {
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .intro__section {
    padding: 100px 0;
  }
  .intro__section::before {
    top: 20px;
    right: 5px;
    font-size: 17px;
  }
  .intro__section::after {
    width: 600px;
    height: 0.5px;
    top: 50px;
  }
  .intro__contentsWidth {
    width: 600px;
  }
}
.intro__title {
  font-size: 4vw;
  display: flex;
  justify-content: center;
  font-weight: 400;
}
.intro__text {
  padding-top: 7.67vw;
  line-height: 1.5;
}
.intro__container {
  margin-top: 13vw;
  padding: 1.33vw;
  display: flex;
  flex-direction: column;
  row-gap: 3vw;
}
.intro__boxText {
  padding-left: 1.33vw;
}
.intro__titleList {
  margin-top: 1.33vw;
}
.intro__titleItem,
.intro__schoolItem {
  list-style: none;
}
.intro__school {
  margin-top: 2.67vw;
}
.intro__boxImg {
  width: 45vw;
}
.intro__img {
  width: 100%;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 24px;
    font-weight: 500;
  }
  .intro__text {
    padding-top: 20px;
  }
  .intro__container {
    margin-top: 30px;
    padding: 10px;
    justify-content: space-between;
    flex-direction: row;
    column-gap: 22.5px;
  }
  .intro__boxText {
    padding-left: 10px;
  }
  .intro__titleList {
    margin-top: 10px;
  }
  .intro__school {
    margin-top: 20px;
  }
  .intro__boxImg {
    width: 183px;
  }
}
/* info--section
--------------------------------*/
.info__section {
  padding: 26.33vw 0;
  position: relative;
}
.info__section::before {
  position: absolute;
  content: "西川耳鼻咽喉科";
  top: 5.67vw;
  right: .67vw;
  color: #336699;
  font-size: 3.27vw;
  font-weight: 400;
}
.info__section::after {
  position: absolute;
  content: "";
  width: 90vw;
  height: .07vw;
  background-color: #333333a7;
  top: 10.67vw;
}
.info__contentsWidth {
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .info__section {
    padding: 100px 0;
  }
  .info__section::before {
    top: 20px;
    right: 5px;
    font-size: 17px;
  }
  .info__section::after {
    position: absolute;
    width: 600px;
    height: 0.5px;
    top: 50px;
  }
  .info__contentsWidth {
    width: 600px;
  }
}
.info__title {
  font-size: 4vw;
  display: flex;
  justify-content: center;
  font-weight: 400;
}
.info__table {
  width: 90vw;
  margin: 5.33vw auto 0;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  border: .23vw solid #ffffff;
  border-radius: 2.67vw;
}
.info__tHead,
.info__tBody {
  padding: 1.33vw;
  border: .13vw solid #ffffff;
}
.info__tHead {
  background-color: #e5f6fa;
}
.info__tBody {
  background-color: #eff8fb;
}
.info__tHead--topLeft {
  border-radius: 2.67vw 0 0 0;
}
.info__tHead--topRight {
  border-radius: 0 2.67vw 0 0;
}
.info__tHead--bottomLeft {
  border-radius: 0 0 0 2.67vw;
}
.info__tBody--bottomRight {
  border-radius: 0 0 2.67vw 0;
}
.info__list {
  margin: 14.67vw auto 0;
  padding-left: 4vw;
  width: 82.13vw;
  list-style: none;
  text-indent: -2.13vw;
}
.info__item {
  padding-top: 3vw;
  font-size: 3.9vw;
}
.info__item::before {
  content: "・";
}
@media (min-width: 768px) {
  .info__title {
    font-size: 24px;
  }
  .info__table {
    width: 470px;
    margin: 40px auto 0;
    border: 1px solid #ffffff;
    border-radius: 20px;
  }
  .info__tHead,
  .info__tBody {
    padding: 10px;
    border: 1px solid #ffffff;
  }
  .info__tHead--topLeft {
    border-radius: 20px 0 0 0;
  }
  .info__tHead--topRight {
    border-radius: 0 20px 0 0;
  }
  .info__tHead--bottomLeft {
    border-radius: 0 0 0 20px;
  }
  .info__tBody--bottomRight {
    border-radius: 0 0 20px 0;
  }
  .info__list {
    margin: 50px auto 0;
    padding-left: 30px;
    width: 511px;
    text-indent: -16px;
  }
  .info__item {
    padding-top: 7.5px;
    font-size: 17px;
  }
}
/* access--section
--------------------------------*/
.access__section {
  padding: 30vw 0;
  position: relative;
}
.access__section::before {
  position: absolute;
  content: "西川耳鼻咽喉科";
  top: 5.67vw;
  right: .67vw;
  color: #336699;
  font-size: 3.27vw;
  font-weight: 400;
}
.access__section::after {
  position: absolute;
  content: "";
  width: 90vw;
  height: .07vw;
  background-color: #333333a7;
  top: 10.67vw;
}
.access__contentsWidth {
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .access__section {
    padding: 100px 0;
  }
  .access__section::before {
    top: 20px;
    right: 5px;
    font-size: 17px;
  }
  .access__section::after {
    width: 600px;
    height: 0.5px;
    top: 50px;
  }
  .access__contentsWidth {
    width: 600px;
  }
}
.access__title {
  font-size: 4vw;
  display: flex;
  justify-content: center;
  font-weight: 400;
}
.access__text {
  width: 75.33vw;
  margin: 15vw auto 0;
}
.access__map {
  width: 85vw;
  margin: 7.33vw auto 0;
}
.access__iframe {
  aspect-ratio: 408 / 277;
  max-width: 85vw;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.access__list {
  width: 73.33vw;
  margin: 5.67vw auto 0;
  display: flex;
  justify-content: flex-start;
}
.access__list--first {
  padding-top: 7vw;
}
.access__list
.access__ttl {
  width: 12.67vw;
}
@media (min-width: 768px) {
  .access__title {
    font-size: 24px;
  }
  .access__text {
    width: 400px;
    margin: 50px auto 0;
  }
  .access__map {
    width: 430px;
    margin: 10px auto 0;
  }
  .access__iframe {
    max-width: 430px;
  }
  .access__list {
    width: 430px;
    margin: 5px auto 0;
  }
  .access__list--first {
    padding-top: 10px;
  }
  .access__list
  .access__ttl {
    width: 50px;
  }
}
/* exterior--section
--------------------------------*/
.exterior__section {
  padding: 34.33vw 0 45vw;
  position: relative;
}
.exterior__section::before {
  position: absolute;
  content: "西川耳鼻咽喉科";
  top: 5.67vw;
  right: .67vw;
  color: #336699;
  font-size: 3.27vw;
  font-weight: 400;
}
.exterior__section::after {
  position: absolute;
  content: "";
  width: 90vw;
  height: .07vw;
  background-color: #333333a7;
  top: 10.67vw;
}
.exterior__contentsWidth {
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .exterior__section {
    padding: 100px 0;
  }
  .exterior__section::before {
    top: 20px;
    right: 5px;
    font-size: 17px;
  }
  .exterior__section::after {
    position: absolute;
    width: 600px;
    height: 0.5px;
    top: 50px;
  }
  .exterior__contentsWidth {
    width: 600px;
  }
}
.exterior__title {
  font-size: 4vw;
  display: flex;
  justify-content: center;
  font-weight: 400;
}
.exterior__container {
  width: 57.33vw;
  margin: 15.67vw auto 0;
}
.exterior__box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5vw;
}
.exterior__photo--1 {
  width: 29.47vw;
}
.exterior__photo--2 {
  width: 22.67vw;
}
.exterior__photo--3 {
  width: 30.67vw;
}
.exterior__img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.exterior__text {
  width: 24vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exterior__text--2 {
  width: 27vw;
}
@media (min-width: 768px) {
  .exterior__title {
    font-size: 24px;
  }
  .exterior__container {
    width: 430px;
    margin: 50px auto 0;
  }
  .exterior__box {
    padding-bottom: 0;
  }
  .exterior__photo--1 {
    width: 221px;
  }
  .exterior__photo--2 {
    width: 170px;
  }
  .exterior__photo--3 {
    width: 230px;
  }
  .exterior__text {
    width: 180px;
  }
}
/* link--section
--------------------------------*/
.link__section {
  padding: 33.33vw 0;
  position: relative;
}
.link__section::before {
  position: absolute;
  content: "西川耳鼻咽喉科";
  top: 5.67vw;
  right: .67vw;
  color: #336699;
  font-size: 3.27vw;
  font-weight: 400;
}
.link__section::after {
  position: absolute;
  content: "";
  width: 90vw;
  height: .07vw;
  background-color: #333333a7;
  top: 10.67vw;
}
.link__contentsWidth {
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .link__section {
    padding: 100px 0;
  }
  .link__section::before {
    top: 20px;
    right: 5px;
    font-size: 17px;
  }
  .link__section::after {
    width: 600px;
    height: 0.5px;
    top: 50px;
  }
  .link__contentsWidth {
    width: 600px;
  }
}
.link__title {
  font-size: 4vw;
  display: flex;
  justify-content: center;
  font-weight: 400;
}
.link__list {
  width: 25vw;
  margin: 10.67vw auto;
  list-style: none;
}
.link__item {
  padding-bottom: 4vw;
}
.link__link {
  font-size: 3.4vw;
  font-weight: 400;
  cursor: pointer;
  border-bottom: .13vw solid #336699;
}
@media (min-width: 768px) {
  .link__title {
    font-size: 24px;
  }
  .link__list {
    width: 150px;
    margin: 80px auto;
  }
  .link__item {
    padding-bottom: 15px;
  }
  .link__link {
    font-size: 18px;
    border-bottom: 1px solid #336699;
  }
}
/* return__section
--------------------------------*/
.return__section {
  position: sticky;
  right: 0;
  bottom: 5vw;
  width: 7vw;
  margin: 0 3.33vw 0 auto;
}
/*.return__button {
  position: relative;
  width: 93.33vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
}*/
.return__link {
  display: block;
}
.bi-arrow-up-circle {
  font-size: 7vw;
  color: #336699;
}
@media (min-width: 768px) {
  .return__section {
    bottom: 0;
    width: 30px;
    margin: 0 25px 0 auto;
  }
  /*.return__button {
    width: 700px;
  }*/
  .bi-arrow-up-circle {
    font-size: 30px;
  }
}
/* footer__section
--------------------------------*/
.footer__section {
  padding: 21.33vw 0 35vw;
  position: relative;
  text-align: center;
}
.footer__section::after {
  position: absolute;
  content: "";
  width: 97.33vw;
  height: .07vw;
  background-color: #333333a7;
  top: 6.67vw;
  left: 0;
}
.footer__contentswidth {
  width: 97.33vw;
  margin: 0 auto;
}
.footer__text {
  font-size: 2.5vw;
}
@media (min-width: 768px) {
  .footer__section {
    padding: 100px 0;
  }
  .footer__section::after {
    width: 730px;
    height: 0.5px;
    top: 50px;
  }
  .footer__contentswidth {
    width: 730px;
  }
  .footer__text {
    font-size: 14px;
  }
}