@charset "UTF-8";
/*===========================================
メディアクエリ
===========================================*/
/* ブレイクポイントを指定 */
/*==========================================
共通スタイル
==========================================*/
/* :rootのCSS変数の宣言 */
:root {
  /* font-weight */
  --fw_reg: 400;
  --fw_med: 500;
  --fw_semi: 600;
  --fw_bold: 700;
  --fw_black: 900;
}

html {
  font-size: 16px;
  /* Zen Old Mincho */
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Yu Gothic", "メイリオ", Arial, serif;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.spacing-tate {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/*----- フォント -----*/
.zenmaru {
  font-family: "Zen Maru Gothic";
}

.yu_mincyou {
  font-family: "游明朝体", "Yu Mincho";
}

.sans {
  font-family: "Noto Sans JP", "Yu Gothic" !important;
}

/*----- コンテンツ幅 -----*/
.inner {
  max-width: 1365px;
  margin: 0 auto;
  width: 100%;
}

/*----- 文字色変更 -----*/
.red {
  color: #DB4545;
}

.blue {
  color: #245e98;
}

/*----- aタグホバー時 -----*/
@media screen and (min-width: 481px) {
  a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
/*----- タイトル -----*/
.title_wrap {
  text-align: center;
}
.title_wrap .sec_title_ja {
  font-size: 36px;
  font-weight: var(--fw_med);
  letter-spacing: 0.1em;
  line-height: 52px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .title_wrap .sec_title_ja {
    font-size: 24px;
    line-height: 1.3;
  }
}
.title_wrap .sec_title_en {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: var(--fw_black);
  color: #398EE0;
}
@media screen and (max-width: 480px) {
  .title_wrap .sec_title_en {
    font-size: 17px;
  }
}

/*----- ボタン -----*/
.btn {
  display: block;
  width: 336px;
  font-size: 20px;
  font-weight: var(--fw_bold);
  padding: 13px 0 16px;
  text-align: center;
  margin-left: auto;
  color: #398EE0;
  border: 2px solid #398EE0;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 16px;
    padding: 6px 0;
    width: 240px;
  }
}
.btn::after {
  content: "";
  display: block;
  background-image: url(../images/allow_r.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .btn::after {
    right: 20px;
  }
}

/*----- 診療時間 -----*/
.medical_hours {
  width: 526px;
}
@media screen and (max-width: 480px) {
  .medical_hours {
    width: 100%;
    padding: 0 20px;
  }
}
.medical_hours table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #A29362;
  margin-bottom: 2rem;
  font-size: 17px;
  font-weight: var(--fw_med);
  letter-spacing: 1px;
}
@media screen and (max-width: 480px) {
  .medical_hours table {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.medical_hours table td {
  border-top: 1px solid #A29362;
  text-align: center;
  padding: 0.5rem 0;
}

/*----- 交通アクセス -----*/
.accsess {
  width: 638px;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 480px) {
  .accsess {
    width: 100%;
  }
}
.accsess h2 {
  margin-bottom: 17px;
}
.accsess .txt_wrap {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .accsess .wrap {
    display: flex;
    gap: 20px;
  }
}
.accsess .txt1 {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .accsess .txt1 {
    font-size: 16px;
    margin-left: 20px;
  }
}
.accsess .txt2 {
  font-size: 20px;
  color: #6F580C;
  display: inline-flex;
  margin-right: 38px;
  font-weight: 500;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  .accsess .txt2 {
    font-size: 17px;
    margin-right: 0;
    margin-left: 20px;
  }
}
.accsess .txt2::before {
  content: "";
  display: block;
  background-image: url(../images/icon_train.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 30px;
  margin-right: 15px;
}
.accsess .txt3 {
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .accsess .txt3 {
    line-height: 1.7;
    padding: 0 0.5rem;
    font-size: 15px;
  }
}

/*----- Mapボタン -----*/
.map {
  display: inline-block;
  width: 120px;
  height: 35px;
  background-color: #398EE0;
  color: #fff;
  border-radius: 9px;
  padding-left: 52px;
  position: relative;
  font-weight: 500;
  top: -10px;
  padding-top: 2px;
}
@media screen and (max-width: 480px) {
  .map {
    width: 90px;
    top: 0;
    height: 30px;
    font-size: 14px;
    padding-left: 45px;
    padding-left: 40px;
  }
}
.map::before {
  content: "";
  display: block;
  background-image: url(../images/icon_pin.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 22px;
  position: absolute;
  top: 2px !important;
  left: 15px;
  font-size: 15px;
}

/*==========================================
fv
==========================================*/
.fv {
  height: 470px;
  width: 100%;
  background-image: url(../images/header_img.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 480px) {
  .fv {
    height: 220px;
  }
}
.fv .logo {
  display: block;
  width: 369px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .fv .logo {
    width: 250px;
  }
}

/*==========================================
ポイント
==========================================*/
.point {
  margin: 40px 0 30px;
}
@media screen and (max-width: 480px) {
  .point {
    margin: 20px 15px 15px;
  }
}
.point .top_lead {
  text-align: center;
  font-size: 17px;
  line-height: 36px;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 480px) {
  .point .top_lead {
    font-size: 15px;
    text-align: left;
    letter-spacing: -1px;
    line-height: 32px;
  }
}
.point .point_wrap {
  display: flex;
  gap: 5.5vw;
  text-align: center;
  margin-top: 54px;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .point .point_wrap {
    display: flex;
    flex-flow: column;
    gap: 30px;
    margin-top: 30px;
  }
}
.point .point_wrap .point_item {
  display: flex;
  flex-flow: column;
  gap: 8px;
  width: 32%;
}
@media screen and (max-width: 480px) {
  .point .point_wrap .point_item {
    flex-wrap: nowrap;
    flex-flow: unset;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .point .point_wrap .point_item .txt_wrap {
    width: 50%;
    line-height: 1.8;
  }
}
@media screen and (max-width: 480px) {
  .point .point_wrap .point_item img {
    width: 42vw;
    height: 30%;
  }
}
.point .point_wrap .point_item span {
  color: #155BA2;
  font-weight: bold;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  .point .point_wrap .point_item span {
    display: block;
    width: 56%;
    font-size: 18px;
    text-align: left;
    line-height: 25px;
    margin-bottom: 5px;
  }
}
.point .point_wrap .point_item .txt {
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 480px) {
  .point .point_wrap .point_item .txt {
    font-size: 16px;
    text-align: left;
  }
}

/*==========================================
診療時間・交通アクセス
==========================================*/
.info1 .inner {
  border-top: 2px solid #398EE0;
  padding: 37px 45px 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .info1 .inner {
    flex-flow: column;
    gap: 50px;
    padding: 40px 10px 10px;
  }
}
.info1 h2 {
  font-size: 26px;
  font-weight: var(--fw_med);
  line-height: 37px;
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 480px) {
  .info1 h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

/*==========================================
院長挨拶
==========================================*/
.greeting {
  background-image: url(../images/info_bg.webp);
  background-repeat: repeat;
  background-size: 800px;
}
.greeting .content_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap {
    flex-wrap: wrap;
    padding-top: 35px;
    padding-bottom: 40px;
  }
}
.greeting .content_wrap .txt_wrap {
  margin-top: 40px;
  width: 767px;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap .txt_wrap {
    order: 2;
    width: 87%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.greeting .content_wrap .txt1 {
  display: block;
  border: 2px solid #4C9FDD;
  background-color: #fff;
  border-radius: 23px;
  padding: 27px 45px 30px;
  font-size: 26px;
  font-weight: var(--fw_med);
  line-height: 43px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap .txt1 {
    padding: 0.8rem 1rem;
    font-size: 17px;
    line-height: 1.7;
    border-radius: 15px;
    letter-spacing: inherit;
  }
}
.greeting .content_wrap img {
  width: 565px;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap img {
    width: 75%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: auto;
    margin-right: auto;
  }
}
.greeting .content_wrap .txt2 {
  margin-top: 30px;
  font-size: 17px;
  line-height: 36px;
  width: 728px;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap .txt2 {
    margin-top: 20px;
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
}
.greeting .content_wrap .txt3 {
  display: block;
  font-size: 21px;
  font-weight: var(--fw_med);
  line-height: 30px;
  margin: 28px 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap .txt3 {
    font-size: 14px;
    margin-top: 0;
  }
}
.greeting .content_wrap .txt3 .big {
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 49px;
  margin-left: 45px;
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap .txt3 .big {
    font-size: 22px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .greeting .content_wrap .img_wrap {
    order: 1;
  }
}
.greeting .society {
  padding: 40px 0 65px;
  display: flex;
  align-items: flex-start;
  gap: 76px;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .greeting .society {
    padding: 25px 0 10px;
    flex-wrap: wrap;
    gap: 25px;
  }
}
.greeting .society::after {
  content: "";
  display: block;
  background-color: #FFFAF2;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 230px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .greeting .society::after {
    min-height: 280px;
  }
}
.greeting .society span {
  margin-left: 30px;
  display: block;
  width: 244px;
  border: 1px solid #806829;
  font-size: 21px;
  font-weight: var(--fw_med);
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #806829;
  padding: 7px 0 8px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .greeting .society span {
    font-size: 15px;
    padding: 1px 0;
    width: 180px;
    margin-left: 20px;
  }
}

.society_list {
  display: flex;
  flex-flow: column;
  gap: 22px;
  font-size: 18px;
  font-weight: var(--fw_med);
  line-height: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  .society_list {
    padding: 0 15px;
    font-size: 15px;
    gap: 15px;
  }
}
.society_list li {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-left: 35px;
  background-image: url(../images/hisi.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: left 6px;
}
@media screen and (max-width: 480px) {
  .society_list li {
    gap: 0;
    padding-left: 20px;
    background-size: 14px;
  }
}

/*==========================================
診療案内
==========================================*/
.menu {
  padding: 50px 0 105px;
}
@media screen and (max-width: 480px) {
  .menu {
    padding: 80px 0 40px;
  }
}
.menu .inner {
  position: relative;
}
.menu .inner::before {
  content: "";
  display: block;
  background-image: url(../images/menu_bg1.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 440px;
  height: 210px;
  position: absolute;
  top: -145px;
  left: -210px;
  z-index: -2;
}
@media screen and (max-width: 480px) {
  .menu .inner::before {
    left: 40px;
    top: -120px;
    width: 280px;
    height: 120px;
  }
}
.menu .menu_list {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .menu .menu_list {
    flex-wrap: wrap;
    gap: 15px 1.3vw;
    margin: 20px 0 0;
    padding-bottom: 30px;
  }
}
.menu .menu_list img {
  width: 125px;
}
@media screen and (max-width: 480px) {
  .menu .menu_list img {
    width: 23vw;
    display: block;
    margin: 0 auto;
  }
}
.menu .menu_list .menu_item {
  text-align: center;
}
.menu .menu_list .menu_name {
  margin-top: 10px;
  font-size: 18px;
  color: #000;
  font-weight: var(--fw_med);
}
@media screen and (max-width: 480px) {
  .menu .menu_list .menu_name {
    width: 120px;
    font-size: 16px;
    white-space: nowrap;
  }
}
.menu h3 {
  font-size: 26px;
  font-weight: var(--fw_med);
  background-color: #fff;
  letter-spacing: 0.1em;
  line-height: 37px;
  text-align: center;
  margin: 14.5px auto 0;
  display: block;
  width: 245px;
}
@media screen and (max-width: 480px) {
  .menu h3 {
    font-size: 22px;
    width: 190px;
    margin: 0 auto;
  }
}
.menu .img_wrap {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .menu .img_wrap {
    flex-wrap: wrap;
    gap: 2.5vw;
    margin-top: 20px;
  }
}
.menu .img_wrap img {
  width: 294px;
}
@media screen and (max-width: 480px) {
  .menu .img_wrap img {
    width: 46vw;
  }
}
.menu .img_wrap::before {
  content: "";
  display: block;
  background-image: url(../images/line.webp);
  background-repeat: repeat;
  background-size: contain;
  width: 100%;
  height: 3px;
  position: absolute;
  top: -48px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .menu .img_wrap::before {
    top: -38px;
  }
}

/*==========================================
当院の特徴
==========================================*/
.feature {
  padding-top: 3rem;
}
.feature .feature_img {
  width: 776px;
}
@media screen and (max-width: 480px) {
  .feature .feature_img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.feature .content_wrap {
  display: flex;
  justify-content: right;
  margin: 0 10px 130px calc(50% - 50vw);
  gap: 70px;
}
@media screen and (max-width: 480px) {
  .feature .content_wrap {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 30px;
    margin-bottom: 2rem;
    margin-right: 0;
  }
}
.feature .txt_wrap {
  width: 660px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .feature .txt_wrap {
    width: 100%;
  }
}
.feature .txt_wrap::before {
  content: "";
  display: block;
  background-image: url(../images/feature_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 813px;
  height: 395px;
  position: absolute;
  bottom: -235px;
  right: -300px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .feature .txt_wrap::before {
    width: 300px;
    height: 100px;
    bottom: -50px;
    right: 0;
  }
}
.feature .txt_wrap h2 {
  font-size: 36px;
  font-weight: var(--fw_med);
  line-height: 52px;
  letter-spacing: 0.1em;
  color: #6669BE;
  margin-bottom: 55px;
}
@media screen and (max-width: 480px) {
  .feature .txt_wrap h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
}
.feature .txt_wrap .feature_list {
  display: flex;
  flex-flow: column;
  gap: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .feature .txt_wrap .feature_list {
    gap: 15px;
    margin-bottom: 2rem;
  }
}
.feature .txt_wrap .feature_item {
  font-size: 22px;
  font-weight: var(--fw_med);
  line-height: 32px;
  letter-spacing: 0.1em;
  gap: 20px;
  padding-left: 40px;
  background-image: url(../images/icon_check.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: left 7px;
}
@media screen and (max-width: 480px) {
  .feature .txt_wrap .feature_item {
    font-size: 16px;
    line-height: 26px;
    background-size: 20px;
    background-position: left 5px;
    padding-left: 30px;
  }
}
.feature .feature_img2 {
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.flim {
  position: relative;
  overflow: hidden;
}
.flim::before {
  content: "";
  display: block;
  background-image: url(../images/menu_bg1.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 440px;
  height: 210px;
  position: absolute;
  top: -105px;
  left: 5%;
  z-index: -2;
}

/*==========================================
治療の特徴
==========================================*/
.treatment {
  padding: 70px 0 36px;
  overflow-x: hidden;
}
.treatment .content1 {
  margin: 50px calc(50% - 50vw) 0 0;
  display: flex;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .treatment .content1 {
    flex-flow: column-reverse;
    margin: 20px 0 0;
    gap: 15px;
  }
}
.treatment .content1 .invisalign {
  width: 20vw;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .treatment .content1 .invisalign {
    width: 70vw;
  }
}
.treatment .content1 .treatment_img1 {
  width: calc(42vw + 90px);
  height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .treatment .content1 .treatment_img1 {
    height: 180px;
    width: 100%;
  }
}
.treatment .content1 .txt_wrap {
  width: 728px;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .treatment .content1 .txt_wrap {
    margin-top: 0;
    width: 100%;
    padding: 0 10px 2rem;
  }
}
.treatment .content1 span {
  font-size: 32px;
  display: inline-block;
  letter-spacing: 0.1em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 15px;
  position: relative;
  top: 10px;
}
@media screen and (max-width: 480px) {
  .treatment .content1 span {
    font-size: 26px;
    margin-left: 0;
    position: relative;
    top: 5px;
  }
}
.treatment .content1 h3 {
  font-size: 26px;
  font-weight: var(--fw_med);
  letter-spacing: 0.1em;
  line-height: 37px;
  color: #1E68A1;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .treatment .content1 h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.treatment .content1 .txt {
  font-size: 17px;
  line-height: 36px;
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .treatment .content1 .txt {
    margin-top: 20px;
    font-size: 15px;
    line-height: 28px;
  }
}
.treatment .content1::before {
  content: "";
  display: block;
  background-color: #FFFAF2;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100%;
  margin: 0 0 0 calc(50% - 80vw);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .treatment .content1::before {
    margin: 0;
    height: 100%;
  }
}
.treatment .content2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .treatment .content2 {
    flex-flow: column;
  }
}
.treatment .content2 img {
  height: 145px;
}
@media screen and (max-width: 480px) {
  .treatment .content2 img {
    width: 34%;
    height: 100px;
    margin-left: 5vw;
  }
}
.treatment .content2 .box {
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 480px) {
  .treatment .content2 .box {
    display: block;
    position: relative;
  }
}
.treatment .content2 .txt_wrap {
  width: 430px;
}
@media screen and (max-width: 480px) {
  .treatment .content2 .txt_wrap {
    padding: 0 10px;
    width: 100%;
  }
}
.treatment .content2 h3 {
  color: #1E68A1;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0.1em;
  font-weight: var(--fw_med);
}
@media screen and (max-width: 480px) {
  .treatment .content2 h3 {
    position: absolute;
    top: 0;
    left: 44vw;
    width: 47vw;
    font-size: 17px;
  }
}
.treatment .content2 .txt {
  font-size: 17px;
  line-height: 36px;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .treatment .content2 .txt {
    font-size: 15px;
    line-height: 28px;
  }
}
.treatment .content3 {
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  .treatment .content3 {
    flex-flow: column;
    margin-top: 50px;
    gap: 10px;
  }
}
.treatment .content3 .box {
  background-color: #FFFAF2;
  margin-bottom: 2rem;
  display: flex;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .box {
    max-width: 100%;
    display: block;
    background-color: unset;
  }
}
.treatment .content3 .box img {
  max-width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .box img {
    width: 84vw;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .treatment .content3 .box .txt_wrap {
    background-color: #FFFAF2;
    padding-bottom: 30px;
  }
}
.treatment .content3 .box:last-child .btn {
  margin-top: 37px;
}
.treatment .content3 h3 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 47px;
  margin: 15px 0;
}
@media screen and (max-width: 480px) {
  .treatment .content3 h3 {
    font-size: 24px;
    line-height: 35px;
    margin: 20px 0 0;
    padding: 15px 0;
  }
}
.treatment .content3 .btn {
  padding-top: 7px;
  padding-bottom: 7px;
}
.treatment .content3 .txt {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 36px;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .txt {
    max-width: 100%;
    width: 100%;
    font-size: 15px;
    line-height: 28px;
    padding: 0 3vw;
  }
}
.treatment .content3 .merit_list {
  margin-top: 7px;
  display: flex;
  flex-flow: column;
  gap: 14px;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .merit_list {
    padding: 0 1.5vw;
  }
}
.treatment .content3 .merit_item {
  font-size: 22px;
  font-weight: var(--fw_med);
  line-height: 32px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  margin-left: 42px;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .merit_item {
    padding: 0 1.5vw;
    font-size: 18px;
    line-height: 26px;
    margin-left: 10vw;
    gap: 2vw;
    position: relative;
    width: 83vw;
  }
}
.treatment .content3 .merit_item::before {
  content: "";
  display: block;
  background-image: url(../images/icon_check_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .merit_item::before {
    width: 22px;
    height: 22px;
    background-size: cover;
    position: absolute;
    left: -30px;
  }
}
.treatment .content3 .btn {
  margin: 15px auto;
}
@media screen and (max-width: 480px) {
  .treatment .content3 .btn {
    margin: 30px auto 0;
  }
}
.treatment .content3 .btn::after {
  content: "";
  display: block;
  background-image: url(../images/allow_r.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 36px;
  z-index: 1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .treatment .content3 .btn::after {
    top: 55%;
    right: 36px;
    z-index: 1;
    transform: translateY(-55%);
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
  }
}

/*==========================================
抜歯対応
==========================================*/
.ext {
  padding: 35px 0 30px;
  background-image: url(../images/blue_bgimg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.ext .content {
  max-width: 1240px;
  margin: 0 auto;
  border: 3px solid #7AC2E7;
  border-radius: 0 0 40px 40px;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  .ext .content {
    margin: 0 1.5rem;
    border-radius: 0 0 20px 20px;
  }
}
.ext h2 {
  text-align: center;
  font-size: 32px;
  font-weight: var(--fw_med);
  color: #fff;
  background-color: #7AC2E7;
  padding: 20px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .ext h2 {
    padding: 1rem;
    font-size: 20px;
    gap: 0;
  }
}
.ext h2::before, .ext h2::after {
  content: "";
  display: inline-block;
  background-image: url(../images/teeth_img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 57px;
  height: 59px;
}
@media screen and (max-width: 480px) {
  .ext h2::before, .ext h2::after {
    width: 52px;
    height: 40px;
  }
}
.ext h2::after {
  transform: scale(-1, 1);
}
.ext .wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  padding: 30px 0 36px;
}
.ext .wrap .doctor_img {
  width: 260px;
}
@media screen and (max-width: 480px) {
  .ext .wrap .doctor_img {
    width: 200px;
  }
}
.ext .wrap .txt {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 36px;
  width: 750px;
}
@media screen and (max-width: 480px) {
  .ext .wrap .txt {
    padding: 1rem 1rem 0;
    font-size: 15px;
  }
}

.title-nairan {
  font-size: 36px;
  font-weight: var(--fw_med);
  letter-spacing: 0.1em;
  color: #6669BE;
  margin: 2rem 0 1rem;
}
@media screen and (max-width: 480px) {
  .title-nairan {
    font-size: 26px;
    margin-top: 1rem;
  }
}

.nairan-txt {
  max-width: 700px;
  font-size: 24px;
  font-weight: var(--fw_med);
  line-height: 26px;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .nairan-txt {
    padding: 0.5rem 1rem;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .nairan-txt p {
    font-size: 17px;
  }
}
.nairan-txt dd {
  width: 50%;
  padding: 0.5rem 0;
}
@media screen and (max-width: 480px) {
  .nairan-txt dd {
    width: 100%;
    padding: 0.2rem 0;
    margin-bottom: 1rem;
  }
}
.nairan-txt dt {
  width: 50%;
  padding: 0.5rem 0;
}
@media screen and (max-width: 480px) {
  .nairan-txt dt {
    width: 100%;
    padding: 0.2rem 0;
  }
}

/*==========================================
CTA
==========================================*/
.cta {
  padding: 40px 0 70px;
}
@media screen and (max-width: 480px) {
  .cta {
    padding-bottom: 30px;
  }
}
.cta .call_txt {
  font-size: 26px;
  font-weight: var(--fw_med);
  letter-spacing: 0.1em;
  line-height: 37px;
  color: #F59700;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .cta .call_txt {
    font-size: 19px;
    letter-spacing: 0;
  }
}
.cta .wrap {
  border-top: 2px solid #BCAA88;
  border-bottom: 2px solid #BCAA88;
  padding: 1rem 0;
  display: flex;
  gap: 93px;
  justify-content: center;
  margin-top: 18.5px;
}
@media screen and (max-width: 480px) {
  .cta .box {
    margin: 0.5rem;
    border: 1px solid;
    padding: 1rem;
    border-radius: 15px;
  }
}
.cta .box .hours {
  font-size: 17px;
  font-weight: var(--fw_bold);
  line-height: 24px;
  color: #3B3B3B;
}
.cta .box .hour {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .cta .box .hour {
    font-size: 14px;
    text-align: center;
  }
}
.cta .box .tel_contact {
  font-size: 55px;
  color: #2F2F2F;
  line-height: 68px;
  font-weight: var(--fw_bold);
}
@media screen and (max-width: 480px) {
  .cta .box .tel_contact {
    font-size: 40px;
    line-height: 1.2;
  }
}
.cta .box .tel_contact::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_phone.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 37px;
  height: 37px;
  margin-right: 5px;
}
@media screen and (max-width: 480px) {
  .cta .box .tel_contact::before {
    width: 28px;
    height: 28px;
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) {
  .cta .box .tel_contact:hover {
    pointer-events: none;
    opacity: 1;
  }
}
.cta .online_btn {
  width: 486px;
  height: 97px;
  background-color: #FF9B27;
  color: #fff;
  border-radius: 16px;
  padding: 16px 0 14px;
  text-align: center;
}
.cta .online_btn span {
  font-size: 21px;
  line-height: 25px;
}
.cta .online_btn .txt {
  font-size: 31px;
  font-weight: var(--fw_med);
  letter-spacing: 0.05em;
  line-height: 27px;
  margin-top: 4px;
  position: relative;
  padding-left: 30px;
}
.cta .online_btn .txt::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_calender.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 64px;
  height: 68px;
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: 1;
}

/*==========================================
診療時間・交通アクセス
==========================================*/
.info2 {
  overflow-x: hidden;
  background-color: #EFF7FD;
  margin: 60px 0 0;
}
@media screen and (max-width: 480px) {
  .info2 {
    margin-top: 20px;
  }
}
.info2 .content {
  display: flex;
  gap: 70px;
  margin: 0 calc(50% - 50vw) 0 0;
}
@media screen and (max-width: 480px) {
  .info2 .content {
    flex-wrap: wrap;
    gap: 0;
  }
}
.info2 .content_wrap {
  display: flex;
  flex-flow: column;
  gap: 15px;
  margin-top: 37px;
  margin-left: 35px;
}
@media screen and (max-width: 480px) {
  .info2 .content_wrap {
    margin: 1rem;
  }
}
.info2 .txt_wrap {
  gap: unset;
}
.info2 .txt_wrap .txt1 {
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .info2 .txt_wrap .txt1 {
    margin-bottom: 15px;
  }
}
.info2 .txt_wrap .txt2 {
  margin-bottom: 20px;
}
.info2 .gmap {
  height: 564px;
  width: 100vw;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .info2 .gmap {
    height: 450px;
  }
}
.info2 h2 {
  font-size: 26px;
  font-weight: var(--fw_med);
  line-height: 37px;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  .info2 h2 {
    font-size: 22px;
  }
}
.info2 .accsess {
  width: 526px;
}
@media screen and (max-width: 480px) {
  .info2 .accsess {
    width: 100%;
  }
}

/*==========================================
医院からのお知らせ
==========================================*/
.news {
  padding-bottom: 125px;
  padding-top: 60px;
}
@media screen and (max-width: 480px) {
  .news {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.news .inner {
  display: flex;
  gap: 80px;
  padding-left: 57px;
}
@media screen and (max-width: 480px) {
  .news .inner {
    flex-flow: column;
    padding-left: 0;
    gap: 30px;
  }
}
.news .title_wrap {
  width: 234px;
  height: 234px;
  border-radius: 50%;
  background-color: #398EE0;
  text-align: center;
  padding-top: 26px;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .news .title_wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    padding-top: 10px;
  }
}
.news .title_wrap .teeth_icon {
  display: block;
  margin: 0 auto 12px;
}
@media screen and (max-width: 480px) {
  .news .title_wrap .teeth_icon {
    width: 30px;
    margin: 0 auto 5px;
  }
}
.news .title_wrap h2 {
  color: #fff;
  font-size: 28px;
  font-weight: var(--fw_med);
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .news .title_wrap h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
.news .news_list {
  color: #1A1A1A;
  display: flex;
  flex-flow: column;
  width: 80%;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .news .news_list {
    width: 90%;
    margin: 0 auto;
  }
}
.news .news_list li {
  padding: 3px 0 13px;
  border-bottom: 0.5px dashed #707070;
  max-width: 886px;
  font-size: 16px;
  line-height: 26px;
}
@media screen and (max-width: 480px) {
  .news .news_list li {
    width: 100%;
  }
}
.news .news_list li a {
  display: flex;
  gap: 37px;
  color: inherit;
}
@media screen and (max-width: 480px) {
  .news .news_list li a {
    gap: 3vw;
  }
}
.news .news_list time {
  display: block;
  width: 115px;
  color: #1A1A1A !important;
  font-weight: var(--fw_reg);
}
@media screen and (max-width: 480px) {
  .news .news_list time {
    font-size: 14px;
  }
}
.news .news_list h3 {
  font-weight: var(--fw_reg);
  width: calc(100% - 110px);
}
@media screen and (max-width: 480px) {
  .news .news_list h3 {
    font-size: 14px;
  }
}

/*==========================================
Instagram
==========================================*/
.instagram {
  height: 350px;
}
.instagram h2 {
  color: #6669BE;
  font-size: 32px;
  font-weight: var(--fw_med);
  line-height: 46px;
  position: relative;
  width: 210px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .instagram h2 {
    font-size: 25px;
  }
}
.instagram h2::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_insta.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  position: relative;
  top: 6px;
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .instagram h2::before {
    width: 25px;
    height: 25px;
    top: 4px;
  }
}

/*==========================================
院内コラム
==========================================*/
.column {
  background-image: url(../images/column_bg.webp);
  background-position: center top;
  background-repeat: repeat;
  background-size: cover;
  padding: 26px 0 48px;
}
@media screen and (max-width: 480px) {
  .column {
    background-image: url(../images/column_bg_sp.webp);
    background-position: center top;
  }
}
.column h2 {
  font-size: 30px;
  font-weight: var(--fw_med);
  color: #398EE0;
  letter-spacing: 0.1em;
  line-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .column h2 {
    font-size: 25px;
    padding-left: 3vw;
  }
}
.column h2::after {
  content: "";
  display: block;
  background-image: url(../images/column_line.webp);
  background-repeat: repeat;
  background-size: cover;
  height: 2px;
  width: calc(100% - 180px);
  position: relative;
  top: 3px;
}
.column .column_list {
  padding: 30px 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 28px 70px;
}
@media screen and (max-width: 480px) {
  .column .column_list {
    padding: 10px 3vw 0;
    gap: 15px;
  }
}
.column .column_list img {
  width: 202px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .column .column_list img {
    width: 150px;
  }
}
.column .column_list a {
  display: flex;
  width: 566px;
  background-color: #fff;
  color: inherit;
}
@media screen and (max-width: 480px) {
  .column .column_list a {
    width: 100%;
  }
}
.column .column_list .txt_wrap {
  display: flex;
  flex-flow: column;
  gap: 9px;
  padding: 16px 20px;
}
@media screen and (max-width: 480px) {
  .column .column_list .txt_wrap {
    padding: 10px 5px 10px 10px;
  }
}
.column .column_list time {
  font-style: 14px;
  font-weight: var(--fw_reg);
  line-height: 30px;
  color: #398EE0;
}
@media screen and (max-width: 480px) {
  .column .column_list time {
    font-size: 14px;
    line-height: 20px;
  }
}
.column .column_list h3 {
  font-size: 17px;
  font-weight: var(--fw_med);
  letter-spacing: 0.05em;
  line-height: 29px;
}
@media screen and (max-width: 480px) {
  .column .column_list h3 {
    font-size: 15px;
    line-height: 20px;
  }
}

.medical_care .content .txt_wrap {
  width: 55%;
}
@media screen and (max-width: 480px) {
  .medical_care .content .txt_wrap {
    width: 100%;
  }
}/*# sourceMappingURL=front.css.map */