@charset "UTF-8";

/*===============================================================================

  下層ページ 共通

===============================================================================*/

body {
  background: #F9F8F1;
}


/* ページタイトル
************************************************************/
.page-header {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 420px;
  margin: 0;
  background-image: url('../images/page/page_mv.jpg');
  background-position: center center;
  background-size: cover;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  opacity: 0.3;
}
.page-header h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  bottom: -20px;
  max-width: 800px;
  min-width: 600px;
  padding: 30px 60px;
  font-size: 2rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 3px;
  word-break: break-all;
  border-radius: 0px 20px 20px 0px;
  background: #FFF;
}
.page-header h2 > span {
  display: flex;
  color: #4297CF;
  font-size: 4.8rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 7.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .page-header {
    height: 200px;
    margin: 182px 0 0;
  }
  .page-header h2 {
    bottom: -10px;
    max-width: 80%;
    min-width: 70%;
    padding: 4% 6%;
    font-size: 1.8rem;
  }
  .page-header h2 > span {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

/* パンくずリスト
************************************************************/
.breadcrumb {
  position: relative;
  padding: 30px 0;
  text-align: right;
  border-bottom: none;
}
.breadcrumb ul {
  width: 1050px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: inline-block;
  padding: 0 0 0 0;
  color: #34383A;
  font-size: 1.4rem;
}
.breadcrumb ul li a {
  display: inline-block;
}
.breadcrumb ul li:not(:first-child) {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 0 5px;
  color: #4297CF;
}
.breadcrumb ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 5px;
  height: 5px;
  border-top: solid 1px #34383A;
  border-right: solid 1px #34383A;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 20px 0 20px 20px;
    text-align: left;
  }
  .breadcrumb ul {
    width: 100%;
  }
  .breadcrumb ul li {
    font-size: 1.2rem;
  }
}


/* セクションリンク
************************************************************/
.section-links {
  margin-bottom: 2em;
}
.section-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  margin-bottom: 1em;
  border-radius: 10px;
  background: #fff;
}
.section-links ul li {
  position: relative;
  width: fit-content;
  margin-bottom: 0.5em;
  transition: all 0.3s;
  box-sizing: border-box;
}
.section-links.-column-02 ul li {
  width: calc((100% - 20px) / 2);
}
.section-links.-column-04 ul li {
  width: calc((100% - 60px) / 4);
}
.section-links ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  mask-image: url('../images/common/arrow.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #4297CF;
  transition: all 0.3s;
  z-index: 1;
}
.section-links ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 20px;
  height: 20px;
  border: 1px solid #4297CF;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s;
}
.section-links ul li a {
  display: block;
  position: relative;
  left: 0;
  width: 100%;
  padding: 0 0 15px 32px;
  color: #34383A !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(66, 151, 207, 0.2);
  transition: all 0.3s;
}
.other-main .section-links ul li a {
  display: block;
}
@media screen and (max-width: 768px) {
  .section-links ul {
    padding: 20px;
  }
  .section-links.-column-02 ul li {
    width: 100%;
  }
  .section-links.-column-04 ul li {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .section-links ul li:hover::before {
    background-color: #fff;
  }
  .section-links ul li:hover::after {
    background: #4297CF;
  }
  .section-links ul li:hover a {
    border-bottom: 1px solid rgb(66, 151, 207);
  }
}


/*===============================================================================

	Page テンプレートページ

===============================================================================*/

/* ページセクション
************************************************************/
.page-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-section {
    padding: 10% 0;
  }
}

/* ページインナー
************************************************************/
.page-inner {
  position: relative;
  width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-inner {
    width: 100%;
    padding: 0 4%;
  }
}
.page-section ._width-full {
  position: relative;
}

/* 見出し
************************************************************/
.page-section .page-h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 3rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 4.5px;
  text-align: center;
}
.page-section .page-h3::before,
.page-section .page-h3::after {
  content: "";
  flex: 1;
  display: block;
  position: relative;
  left: inherit;
  right: inherit;
  height: 1px;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  transform: none; 
}
.page-section .page-h3 > span {
  width: fit-content;
  color: #34383A;
  font-size: 3rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 4.5px;
}
.page-section .page-h3 > span > span {
  color: #4297CF;
}
.page-section .page-h4 {
  padding: 0 0 15px;
  margin: 50px 0 30px;
  font-size: 2rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 3px;
  border-bottom: 3px solid #4297CF;
}
.page-section .page-h5 {
  position: relative;
  width: fit-content;
  padding: 0 10px 0 23px;
  margin: 30px 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 2.7px;
  background: rgba(66, 151, 207, 0.2);
}
.page-section .page-h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 3px;
  height: 20px;
  background: #4297CF;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .page-section .page-h3 {
    gap: 20px;
    font-size: 2.2rem;
    letter-spacing: 3.2px;
  }
  .page-section .page-h3 > span {
    font-size: 2.2rem;
    letter-spacing: 3.2px;
  }
  .page-section .page-h4 {
    padding: 0 0 10px;
    margin: 35px 0 25px;
    font-size: 1.7rem;
  }
  .page-section .page-h5 {
    margin: 30px 0 20px;
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}

/* テキスト・リンク
************************************************************/
.page-section a {
  color: #4297CF;
}
.page-section img {
  vertical-align: bottom;
}
.page-section p {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-section p {
    line-height: 1.75;
  }
}

/* パーツ
************************************************************/
.page-section ._text-box {
  margin: 30px auto 0;
  letter-spacing: 0.08em;
}
.page-section ._text-box p + p {
  padding: 1em 0 0;
}
.page-section ._text-box.center p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-section ._text-box {
    margin: 6% auto 0;
  }
  .page-section ._text-box.center p {
    text-align: left;
  }
}


/*===============================================================================

	医院紹介ページ

===============================================================================*/

/* クリニック動画
************************************************************/
.clinic-movie .movie-list .item {
  padding: 40px;
  border-radius: 10px;
  background: #Fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
.clinic-movie .movie-list .item .movie {
  width: 560px;
  aspect-ratio: 16/9;
  margin: 30px auto 0;
}
.clinic-movie .movie-list .item .movie iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .clinic-movie .movie-list .item {
    padding: 25px;
  }
  .clinic-movie .movie-list .item .movie {
    width: 100%;
  }
}


/* クリニック情報
************************************************************/
.clinic-information {
  
}

.clinic-information .entrance {
  width: 100%;
  text-align: center;
}
.clinic-information .entrance img {
  border-radius: 30px;
  outline: 8px solid rgba(255, 255, 255, 0.5);
  outline-offset: -8px;
}
@media screen and (max-width: 768px) {
  .clinic-information .entrance {
    margin: 5% auto 0;
  }
  .clinic-information .entrance img {
    outline: 4px solid rgba(255, 255, 255, 0.5);
    outline-offset: -4px;
  }
}

.clinic-information-content {
  display: flex;
  justify-content: space-between;
  gap: 140px;
  position: relative;
  padding: 100px 0;
  background: #fff;
}
.clinic-information-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 100%;
  background: #fff;
  border-radius: 0px 30px 30px 0px;
}
.clinic-information-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1000px;
  width: 1000px;
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .clinic-information-content {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 25px;
    border-radius: 20px;
  }
  .clinic-information-content::before,
  .clinic-information-content::after {
    content: none;
  }
}

.clinic-information-content .content-left {
  display: block;
  position: relative;
  width: 460px;
}
.clinic-information-content .content-left dl {
  display: flex;
  flex-wrap: wrap;
  width: 460px;
}
.clinic-information-content .content-left dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 27px 0;
  color: #4297CF;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 2.55px;
  text-align: center;
  border-bottom: 2px solid #4297CF;
}
.clinic-information-content .content-left dl dt:first-child {
  border-top: 2px solid #4297CF;
}
.clinic-information-content .content-left dl dd {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
  padding: 27px 25px;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 2.55px;
  border-bottom: 2px solid rgba(66, 151, 207, 0.3);
}
.clinic-information-content .content-left dl dd:nth-child(2) {
  border-top: 2px solid rgba(66, 151, 207, 0.3);
}
@media screen and (max-width: 768px) {
  .clinic-information-content .content-left {
    width: 100%;
  }
  .clinic-information-content .content-left dl {
    width: 100%;
  }
  .clinic-information-content .content-left dl dt {
    width: 80px;
    padding: 15px 0;
    font-size: 1.3rem;
    letter-spacing: 1.7px;
  }
  .clinic-information-content .content-left dl dd {
    width: calc(100% - 80px);
    padding: 15px 10px;
    font-size: 1.3rem;
    letter-spacing: 1.7px;
  }
}

.clinic-information-content .content-right {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .clinic-information-content .content-right {
    width: 100%;
  }
}


/* 施設紹介
************************************************************/
.clinic-facility .slider-container {
  height: 800px;
}
@media screen and (max-width: 768px) {
  .clinic-facility .slider-container {
    height: auto;
    margin: 0 auto 40px;
  }
}

.clinic-facility-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2400px;
  margin: 0 auto;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .clinic-facility-slider {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    padding: 0 4%;
    transform: none;
  }
}

.clinic-facility-slider .slider {
  width: 100%;
  height: auto;
}
.clinic-facility-slider .slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.clinic-facility-slider .slider .swiper-slide {
  position: relative;
  width: 750px;
  height: 100%;
  text-align: center;
  border-radius: 30px;
  opacity: 1;
  transition: all 0.3s;
}
.clinic-facility-slider .slider .swiper-slide img {
  border: 8px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
}
.clinic-facility-slider .slider .swiper-slide.swiper-slide-prev {
  opacity: 0.5;
}
.clinic-facility-slider .slider .swiper-slide.swiper-slide-next {
  opacity: 0.5;
}
.clinic-facility-slider .slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .clinic-facility-slider .slider .swiper-slide {
    width: 100%;
    line-height: 1;
  }
}
@media screen and (min-width: 769px) {
  .clinic-facility-slider .slider .swiper-wrapper {
    pointer-events: none;
  }
}

.clinic-facility-slider .slider-thumbnail {
  width: 1050px;
  padding: 10px 0;
  box-sizing: border-box;
}
.clinic-facility-slider .slider-thumbnail .swiper-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  transform: none !important;
}
.clinic-facility-slider .slider-thumbnail .swiper-slide {
  width: calc((100% - 30px) / 7) !important;
  height: auto;
  line-height: 80px;
  border-radius: 10px;
  opacity: 1;
}
.clinic-facility-slider .slider-thumbnail .swiper-slide img {
  border: 2px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.3s;
}
.clinic-facility-slider .slider-thumbnail .swiper-slide.swiper-slide-thumb-active img {
  border: 2px solid #4297CF;
  border-radius: 10px;
}
.clinic-facility-slider .slider-thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .clinic-facility-slider .slider-thumbnail {
    width: 100%;
    height: auto;
  }
  .clinic-facility-slider .slider-thumbnail .swiper-wrapper {
    justify-content: flex-start;
    gap: 5px;
  }
  .clinic-facility-slider .slider-thumbnail .swiper-slide {
    width: calc((100% - 15px) / 4) !important;
    height: auto;
    margin-right: 0 !important;
    line-height: 1;
  }
}
@media screen and (min-width: 769px) {
  .clinic-facility-slider .slider-thumbnail .swiper-slide:hover img {
    border: 2px solid #4297CF;
    border-radius: 10px;
  }
}

.clinic-facility-slider .slider-button {
  position: relative;
  width: 1050px;
  margin: 0 auto;
}
.clinic-facility-slider .swiper-button-prev,
.clinic-facility-slider .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -270px;
  width: 60px;
  height: 60px;
  margin: auto;
  color: #4297CF;
  border-radius: 50%;
  background: rgba(52, 56, 58, 0.8);
  cursor: pointer;
  z-index: 10;
}
.clinic-facility-slider .swiper-button-prev {
  left: -30px;
  padding: 0 0 0 4px;
}
.clinic-facility-slider .swiper-button-next {
  right: -30px;
  padding: 0 4px 0 0;
}
.clinic-facility-slider .swiper-button-prev::after,
.clinic-facility-slider .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 1px #fff;
  border-left: none;
  border-right: solid 1px #fff;
  border-bottom: none;  
}
.clinic-facility-slider .swiper-button-prev::after {
  left: 25px;
  transform: rotate(-135deg);
}
.clinic-facility-slider .swiper-button-next::after {
  right: 25px;
  transform: rotate(45deg);
}
.clinic-facility-slider .swiper-button-prev.swiper-button-disabled,
.clinic-facility-slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  cursor: auto;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .clinic-facility-slider .slider-button {
    width: 100%;
  }
  .clinic-facility-slider .swiper-button-prev,
  .clinic-facility-slider .swiper-button-next {
    top: -120px;
    width: 30px;
    height: 30px;
  }
  .clinic-facility-slider .swiper-button-prev {
    left: -10px;
  }
  .clinic-facility-slider .swiper-button-next {
    right: -10px;
  }
  .clinic-facility-slider .swiper-button-prev::after,
  .clinic-facility-slider .swiper-button-next::after {
    width: 6px;
    height: 6px;
  }
}

.clinic-facility .facility-view .view {
  width: 100%;
  height: 400px;
  margin: 40px auto 0;
}
.clinic-facility .facility-view .view iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .clinic-facility .facility-view .view {
    height: 300px;
    margin: 30px auto 0;
  }
  .clinic-facility .facility-view .view iframe {
    height: 300px;
  }
}

.clinic-facility .facility-view .banner {
  width: 600px;
  margin: 40px auto 0;
}
.clinic-facility .facility-view .banner a {
  opacity: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .clinic-facility .facility-view .banner {
    width: 100%;
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 769px) {
  .clinic-facility .facility-view .banner a:hover {
    opacity: 0.7;
  }
}

/* クリニックページ アクセス
************************************************************/
.clinic-access .googlemap {
  width: 100%;
  height: 450px;
  margin: 40px auto 0;
}
.clinic-access .googlemap iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .clinic-access .googlemap {
    height: 300px;
    margin: 30px auto 0;
  }
  .clinic-access .googlemap iframe {
    height: 300px;
  }
}

.clinic-access .access-content {
  padding: 40px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .clinic-access .access-content {
    padding: 25px;
  }
}

.clinic-access .access-content .map {
  width: 650px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .clinic-access .access-content .map {
    width: 100%;
    margin: 0 auto 30px;
  }
}

.clinic-access .access-flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.clinic-access .access-flow .item {
  display: flex;
  justify-content: space-between;
  padding: 0 0 50px;
  border-bottom: 1px dotted #4297CF;
}
.clinic-access .access-flow .item:last-child {
  padding: 0;
  border-bottom: none;
}
.clinic-access .access-flow .item .description {
  width: 620px;
}
.clinic-access .access-flow .item .image {
  width: 300px;
}
.clinic-access .access-flow .item .image img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .clinic-access .access-flow {
    flex-direction: column;
    gap: 20px;
  }
  .clinic-access .access-flow .item {
    flex-direction: column;
    gap: 20px;
    padding: 0 0 30px;
  }
  .clinic-access .access-flow .item .description {
    width: 100%;
  }
  .clinic-access .access-flow .item .image {
    width: 100%;
  }
}


/*===============================================================================

	Other テンプレートページ

===============================================================================*/

/* 基本設定
************************************************************/
.other-page ._clearfix {
  overflow: hidden;
  zoom: 1;
}
@media screen and (max-width: 768px) {
  .other-page {
    width: 92%;
    margin: 0 auto;
  }
}

.other-inner {
  width: 1050px;
  max-width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-inner {
    width: 100%;
    max-width: inherit;
    overflow: hidden;
  }
}

.other-main.-under {
  padding-bottom: 3em;
}

.other-main a {
  display: inline;
  color: #4297CF;
  text-decoration: underline;
}
.other-main img {
  width: inherit;
  vertical-align: bottom;
}
.other-main p {
  display: block;
  margin: 0 0 1.4em;
  line-height: 2.2;
}
.other-main strong {
  font-weight: bold;
}
.other-main em {
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .other-main img {
    width: 100%;
  }
  .other-main p {
    line-height: 1.8;
  }
}

.other-main ._mb10 {
  margin-bottom: 10px !important;
}

.other-main .aligncenter {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .other-main img.alignright,
  .other-main img.alignleft {
    max-width: 34%;
  }
  .other-main .alignright {
    float: right;
    margin: 0 0 10px 4%;
  }
  .other-main .alignleft {
    float: left;
    margin: 0 4% 10px 0;
  }
  .other-main br._pc {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .other-main .alignright,
  .other-main .alignleft {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}

/* 見出し
************************************************************/
.other-h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  width: 100%;
  margin: 60px 0 40px;
  text-align: center;
}
.other-h3::before,
.other-h3::after {
  content: "";
  flex: 1;
  display: block;
  position: relative;
  left: inherit;
  right: inherit;
  height: 1px;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  transform: none;
}
.other-h3 > h3 {
  width: fit-content;
  color: #34383A;
  font-size: 3rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 4.5px;
}
.other-h3 > h3 > span {
  color: #4297CF;
}
.other-h4 {
  padding: 0 0 15px;
  margin: 50px 0 30px;
  font-size: 2rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 3px;
  border-bottom: 3px solid #4297CF;
}
.other-h5 {
  position: relative;
  width: fit-content;
  padding: 5px 10px 5px 23px;
  margin: 30px 0 20px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2.7px;
  background: rgba(66, 151, 207, 0.2);
}
.other-h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 3px;
  height: 60%;
  background: #4297CF;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .other-h3 {
    gap: 20px;
    margin: 40px 0 25px;
  }
  .other-h3 > h3 {
    font-size: 19px;
    letter-spacing: 3.2px;
  }
  .other-h4 {
    padding: 0 0 10px;
    margin: 35px 0 25px;
    font-size: 1.7rem;
  }
  .other-h5 {
    margin: 30px 0 20px;
    font-size: 17px;
    letter-spacing: 2px;
  }
}

/* リスト
************************************************************/
ul.style-01 {
  margin-bottom: 1em;
}
ul.style-01 li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  box-sizing: border-box;
}
ul.style-01 li::before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #4297CF;
  border-radius: 50%;
  top: 0.58em;
  left: 0.35em;
}

/* ボタン
************************************************************/
.other-main .more-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  text-align: center !important;
}
.other-main .more-button a {
  display: flex;
  width: auto;
  min-width: 250px;
  padding: 0 50px;
  margin: 0 auto 20px;
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .other-main .more-button a {
    width: 90%;
    padding: 0 30px;
    line-height: 1.5;
  }
}

/* パーツ
************************************************************/
/* ボックス */
.other-main ._layout-box {
  padding: 40px;
  margin-bottom: 1.2em;
  border: none;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.other-main ._layout-box h4 {
  margin: 0 0 25px;
}
@media screen and (max-width: 768px) {
  .other-main ._layout-box {
    padding: 25px;
  }
}

/* 画像横並び */
@media screen and (min-width: 768px) {
  .other-main ._image-layout {
    display: flex;
    justify-content: space-between;
  }
  .other-main ._image-layout .item {
    max-width: 48%;
    flex-basis: 48%;
  }
}

/* フロー */
.other-main .flow-list .item:not(:last-of-type) {
  position: relative;
  padding: 0 0 1em;
  margin-bottom: 1em;
}
.other-main .flow-list .item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  margin: 0 -15px -30px 0;
  border: 30px solid transparent;
  border-top: 15px solid #4297CF;
}

/* 費用テーブル */
.other-main .price-table {
  width: 100%;
  margin-bottom: 0.5em;
}
.other-main .price-table th,
.other-main .price-table td {
  text-align: left;
  font-weight: normal;
  padding: 12px 8px;
}
.other-main .price-table thead th {
  background: #2C87C3;
  color: #fff;
  text-align: center;
}
.other-main .price-table thead th:first-child {
  background: #4297CF;
}
.other-main .price-table tbody th {
  background: rgba(66, 151, 207, 0.2);
  border-bottom: 1px solid rgba(52, 56, 58, 0.2);
}
.other-main .price-table tbody td {
  background: #fff;
  text-align: right;
  border-bottom: 1px solid rgba(52, 56, 58, 0.2);
}


/*===============================================================================

	お知らせ・投稿関連ページ

===============================================================================*/

/* 記事一覧
************************************************************/
.single-blog {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .single-blog {
    flex-direction: column;
    gap: 30px;
  }
}
.single-blog .other-main {
  width: calc(75% - 25px);
}
@media screen and (max-width: 768px) {
  .single-blog .other-main {
    width: 100%;
  }
}


/* ページネーション
************************************************************/
.archives-blog .pagination {
  display: flex;
  width: 100%;
  gap: 15px;
  margin: 60px 0;
}
.archives-blog .pagination .page-numbers {
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
}
.archives-blog .pagination .page-numbers.current {
  color: #666;
}
@media screen and (max-width: 768px) {
  .archives-blog .pagination {
    margin: 40px 0;
  }
}


/* サイドバー
************************************************************/
.blog-sidebar {
  width: calc(25% - 25px);
  margin: 0 0 60px;
}
.blog-sidebar .box {
  padding: 20px;
  background: #fff;
}
.blog-sidebar .box .title {
  padding: 0 0 5px;
  margin: 0 0 10px;
  color: #4297CF;
  font-size: 1.7rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 3px;
  border-bottom: 2px solid #4297CF;
}
.blog-sidebar .box > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.blog-sidebar .box > ul li {
  position: relative;
}
.blog-sidebar .box > ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4297CF;
}
.blog-sidebar .box > ul li a {
  display: block;
  position: relative;
  padding: 0 0 0 10px;
  color: #34383A;
  font-size: 1.4rem;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .blog-sidebar {
    width: 100%;
    padding-bottom: 2em;
  }
  .blog-sidebar .box .title {
    padding: 0 0 10px;
    font-size: 1.5rem;
  }
  .blog-sidebar .box > ul li a {
    font-size: 1.2rem;
  }
}


/* 記事詳細ページ
************************************************************/
.post-content {
  margin-bottom: 2em;
}
.post-content .date {
  font-size: 1.4rem;
  padding: 0 0 10px;
}
.post-content h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  border-bottom: 3px solid #4297CF;
  padding: 0 0 15px;
  text-decoration: none;
  margin: 0 0 10px;
  width: 100%;
  display: block;
}
.post-content h3 a {
  text-decoration: none;
}
.post-content .thumbnail_img {
  width: 600px;
  margin: 40px auto;
}
.post-content .entry {
  display: block;
  margin: 0 0 1.4em;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .post-content .date {
    font-size: 1.2rem;
    padding: 0 0 8px;
  }
  .post-content iframe {
    width: 90% !important;
  }
  .post-content h3 {
    font-size: 1.7rem;
    padding: 0 0 10px;
  }
  .post-content .thumbnail_img {
    width: 80%;
    margin: 20px auto;
  }
}