@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap");
html,
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0;
  color: #232323;
  background: #04082d;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  word-break: break-all;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  color: inherit;
}

a {
  color: #232323;
  text-decoration: none;
  word-break: break-all;
}

.link_txt {
  color: #4d6ef5;
}

.bold {
  font-weight: 600;
}

/*--------------------
共通コンテナ
--------------------*/
.container {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container2 {
  width: 1600px;
  max-width: 100%;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.m_box {
  padding: 1rem;
}

.m_box2 {
  padding: 2rem;
}

.hr_line {
  margin: 1rem 0;
  border-top: 1px solid #ccc;
}

.relative {
  position: relative;
  z-index: 1;
}

.box_r {
  border-radius: 1rem;
}

.border {
  border: 4px solid #232323;
}

.gmap {
  width: 100%;
  padding-top: 33.3333333333%;
  position: relative;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

main,
footer,
section {
  position: relative;
}

.scrollbar {
  max-height: 210px;
  padding: 0 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
}
.scrollbar::-webkit-scrollbar {
  overflow: hidden;
  width: 1px;
  background: #f4f4f4;
}
.scrollbar::-webkit-scrollbar:horizontal {
  height: 3px;
}
.scrollbar::-webkit-scrollbar-button {
  display: none;
}
.scrollbar::-webkit-scrollbar-piece {
  background: #dfdfdf;
}
.scrollbar::-webkit-scrollbar-piece:start {
  background: #dfdfdf;
}
.scrollbar::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-corner {
  background: #bd2c34;
}

/*--------------------
背景デザイン
--------------------*/
.bg_base {
  background: #bd2c34;
}

.bg_sub {
  background: #04082d;
}

.bg_white {
  background: #fff;
}

.bg_gray {
  background: #f4f4f4;
}

.bg_beige {
  background: #ddd0b2;
}

.bg_grad {
  background: linear-gradient(135deg, white 0%, rgb(12.3265306122, 24.6530612245, 138.6734693878) 100%);
}

.bg_half_l {
  position: relative;
}
.bg_half_l::before {
  content: "";
  display: block;
  width: 85%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, white 0%, rgb(12.3265306122, 24.6530612245, 138.6734693878) 100%);
}

.bg_border {
  border: 2px solid #bd2c34;
}

.sdw {
  box-shadow: 0 5px 15px -5px rgba(35, 35, 35, 0.2);
}

.bg_img {
  background: linear-gradient(0deg, rgba(35, 35, 35, 0.2), rgba(35, 35, 35, 0.2)), url(../img/bg_black.jpg) no-repeat center/cover;
}

.bg_img2 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(221, 208, 178, 0.4)), url(../img/bg_gold.jpg) no-repeat center/cover;
}

/*--------------------
liデザイン
--------------------*/
.list_check li {
  padding-left: 1rem;
  position: relative;
}
.list_check li::before {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f00c";
  font-weight: 900;
  font-size: 1rem;
  font-weight: 600;
  color: #bd2c34;
  position: absolute;
  top: 5px;
  left: 0;
}
.list_check li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.list_check.large li {
  font-size: 1.25rem;
}

.list_dot li {
  padding: 0.25rem 0;
  padding-left: 0.75rem;
  position: relative;
}
.list_dot li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #cbbd53;
  position: absolute;
  top: 14px;
  left: 0;
}
.list_dot.small li {
  font-size: 0.75rem;
  border-bottom: 1px solid #f4f4f4;
}
.list_dot.small li::before {
  top: 12px;
}

.list_dot2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.list_dot2 li {
  padding: 0.25rem 0.5rem;
  padding-left: 1.125rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  background: #ddd0b2;
  position: relative;
}
.list_dot2 li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #04082d;
  position: absolute;
  top: 13px;
  left: 0.5rem;
}
.list_dot2.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.num_list {
  counter-reset: list-counter;
}
.num_list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: calc(1rem + 8px);
  font-size: 1rem;
}
.num_list li:not(:last-of-type) {
  margin-bottom: 0.25rem;
}
.num_list li::before {
  content: counter(list-counter) ".";
  width: 1rem;
  position: absolute;
  left: 0;
  color: #bd2c34;
  font-weight: 600;
  text-align: right;
}

/*--------------------
カラム共通CSS
--------------------*/
.reverse {
  flex-direction: row-reverse;
}

/*--------------------
共通見出し
--------------------*/
.m_text {
  font-size: 1.5rem;
}

.m_text2 {
  font-size: 1.25rem;
}

.marker_g {
  background: linear-gradient(transparent 65%, rgba(149, 193, 27, 0.5) 65%);
}

.marker_o {
  background: linear-gradient(transparent 65%, rgba(247, 138, 92, 0.5) 65%);
}

.marker_y {
  background: linear-gradient(transparent 65%, rgba(255, 236, 92, 0.5) 65%);
}

.eng {
  font-family: "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  letter-spacing: 0;
  letter-spacing: 0.25rem;
  color: #46321d;
}

.h_ttl {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
.h_ttl::before {
  content: "";
  width: 100px;
  height: 4px;
  background: #bd2c34;
  border-radius: 1rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.h_ttl span {
  font-size: 3rem;
  font-weight: 600;
}
.h_ttl p {
  font-size: 1.25rem;
  font-weight: 600;
}
.h_ttl.white span {
  color: #fff;
}
.h_ttl.white p {
  color: #fff;
}

.box_ttl {
  padding: 1rem;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}
.box_ttl span {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  position: relative;
}
.box_ttl span::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 4px;
  background: #bd2c34;
  margin: 0 1rem;
}
.box_ttl b {
  font-size: 1.25rem;
  font-weight: 600;
}

.line_ttl {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 4px solid #bd2c34;
  border-bottom: 4px solid #bd2c34;
}

.dline_ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 65px;
  font-size: 2rem;
  font-weight: 600;
}
.dline_ttl::before, .dline_ttl::after {
  content: "";
  width: 100px;
  height: 0.5rem;
  border-top: solid 1px #232323;
  border-bottom: solid 1px #232323;
}
.dline_ttl::before {
  margin-right: 1rem;
}
.dline_ttl::after {
  margin-left: 1rem;
}
.dline_ttl.white {
  color: #fff;
}
.dline_ttl.white::before, .dline_ttl.white::after {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

.sub_ttl {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  font-weight: 600;
  border-left: 4px solid #bd2c34;
  position: relative;
}
.sub_ttl::before {
  content: "";
  display: block;
  width: 4px;
  height: 50%;
  background: #232323;
  position: absolute;
  bottom: 0;
  left: -4px;
}

.mid_ttl {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #232323;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
}
.mid_ttl::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: #bd2c34;
  position: absolute;
  bottom: -2px;
  left: 0;
}

/*--------------------
header
--------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.head_wrap {
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: ease 0.5s;
}

#logo {
  width: 220px;
}

.nav_wrap {
  width: calc(100% - 240px);
}
.nav_wrap nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.nav_wrap nav ul li + li {
  border-left: 1px solid #fff;
}
.nav_wrap nav ul li a {
  display: inline-block;
  padding: 0 1rem;
  color: #fff;
  font-size: 1.25rem;
}
.nav_wrap nav ul li a::before {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  font-weight: 900;
  margin-right: 0.5rem;
}

.fixed .head_wrap {
  background: #04082d;
}

/*--------------------
メインビジュアル
--------------------*/
#mainvisual {
  width: 100%;
  height: 100vh;
  position: relative;
}
#mainvisual img, #mainvisual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(35, 35, 35, 0.6), rgba(35, 35, 35, 0.6));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#catch {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#catch h2 {
  color: #fff;
}
#catch h2 span {
  font-size: 4rem;
  font-weight: 600;
}
#catch h2 p {
  font-size: 2rem;
  font-weight: 600;
  color: #ddd0b2;
}

/*--------------------
top_news
--------------------*/
#top_news .top_news_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#top_news h2 {
  width: 300px;
  color: #fff;
}
#top_news h2 span {
  font-size: 3rem;
}
#top_news .top_news_box {
  width: calc(100% - 300px);
  padding: 1rem;
  border: 1px solid #fff;
}
#top_news .top_news_box ul li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
#top_news .top_news_box ul li:last-of-type {
  margin-bottom: 0;
}
#top_news .top_news_box ul li span {
  display: inline-block;
  padding: 0.5rem;
  margin-right: 1rem;
  background: #ddd0b2;
  border-radius: 5px;
  font-size: 0.75rem;
  line-height: 1;
}
#top_news .top_news_box ul li a {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
}

/*--------------------
TOP
--------------------*/
#top1 h2 {
  margin-bottom: 2rem;
}
#top1 h2 span {
  font-size: 2rem;
  font-weight: 600;
}
#top1 .about_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top1 .about_wrap .about_img {
  width: 55%;
}
#top1 .about_wrap .about_body {
  width: 40%;
  font-weight: 600;
}
#top1 .about_wrap:nth-of-type(1) {
  margin-bottom: 100px;
}

#top2 h2 {
  margin-bottom: 1rem;
}
#top2 h2 span {
  font-size: 1.5rem;
  font-weight: 600;
}
#top2 .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
#top2 .inner {
  width: 48%;
  background: #fff;
}
#top2 .inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top2 .inner .list_dot {
  margin-bottom: 2rem;
}
#top2 .box {
  padding: 1rem;
}

#top3 .separate_img {
  height: 400px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/top_reason.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
}
#top3 .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top3 .wrap .inner {
  width: 50%;
}
#top3 .wrap .inner.right p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}
#top3 .reason_ico ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#top3 .reason_ico ul li {
  text-align: center;
  margin: 0.5rem 1rem;
}
#top3 .reason_ico ul li:nth-of-type(1) {
  width: 100%;
  margin: 0;
}
#top3 .reason_ico ul li span {
  width: 160px;
  height: 160px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  background: #cbbd53;
  border-radius: 50%;
}

#top4 .separate_img {
  height: 400px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/top_misson.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
}
#top4 .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top4 .wrap .inner {
  width: 50%;
}
#top4 .wrap .inner.right {
  padding: 2rem;
}

/*--------------------
下層共通
--------------------*/
.u_hero {
  padding: 200px 0 100px;
  position: relative;
  z-index: 1;
}
.u_hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(35, 35, 35, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.u_hero figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.u_hero figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.u_hero .u_head_ttl_wrap {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
  position: relative;
}
.u_hero .u_head_ttl_wrap .u_head_ttl {
  color: #fff;
}
.u_hero .u_head_ttl_wrap .u_head_ttl span {
  font-size: 2.5rem;
  font-weight: 600;
}
.u_hero .u_head_ttl_wrap .u_head_ttl p {
  font-size: 1.5rem;
}
.u_hero .u_head_ttl_wrap .u_sub_txt {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.u_hero .u_head_ttl_wrap .u_sub_txt2 {
  font-weight: 600;
}

/*--------------------
クリニックページ
--------------------*/
#clinic1 h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic1 .wrapper {
  margin-top: 2rem;
  position: relative;
}
#clinic1 .wrapper figure {
  width: 60%;
  margin-left: auto;
}
#clinic1 .wrapper .box {
  width: 50%;
  padding: 4rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#clinic1 .wrapper .box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic1 .wrapper .box ul {
  margin-bottom: 1rem;
}
#clinic1 .wrapper .box p {
  font-weight: 600;
}
#clinic1 .list_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
#clinic1 .list_btn li {
  width: 200px;
  margin: 0 1rem;
}
#clinic1 .list_btn li a {
  display: block;
  padding: 1rem;
  background: #04082d;
  color: #fff;
  text-align: center;
}
#clinic1 .list_btn li a::after {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  font-weight: 900;
  margin-left: 1rem;
}

#clinic2 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic2 .wrapper {
  margin-bottom: 2rem;
}
#clinic2 .wrapper figure {
  width: 100%;
  height: 400px;
}
#clinic2 .wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#clinic2 .wrapper .box {
  width: 80%;
  margin: -10rem auto 0;
  padding: 2rem;
  position: relative;
}
#clinic2 .wrapper .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic2 .wrapper .box ul {
  margin-bottom: 1rem;
}
#clinic2 .wrapper .box p {
  font-weight: 600;
}

#clinic3 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic3 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#clinic3 .wrapper figure {
  width: 50%;
}
#clinic3 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}
#clinic3 .wrapper .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic3 .wrapper .box ul {
  margin-bottom: 1rem;
}
#clinic3 .wrapper .box p {
  font-weight: 600;
}
#clinic3 .link_btn {
  text-align: center;
  margin-top: 1rem;
}
#clinic3 .link_btn a {
  width: 200px;
  display: inline-block;
  padding: 1rem;
  background: #bd2c34;
  color: #fff;
}
#clinic3 .link_btn a::after {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  font-weight: 900;
  margin-left: 1rem;
}

#clinic4 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic4 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#clinic4 .wrapper figure {
  width: 50%;
}
#clinic4 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
  color: #fff;
}
#clinic4 .wrapper .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic4 .wrapper .box ul {
  margin-bottom: 1rem;
}
#clinic4 .wrapper .box p {
  font-weight: 600;
}
#clinic4 .sub_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
#clinic4 .sub_box .sub_inner {
  width: 48%;
}

#clinic5 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#clinic5 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#clinic5 .wrapper figure {
  width: 50%;
}
#clinic5 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}

/*--------------------
エージェンシー
--------------------*/
#agency1 h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency1 .wrapper {
  margin-top: 2rem;
  position: relative;
}
#agency1 .wrapper figure {
  width: 60%;
  margin-left: auto;
}
#agency1 .wrapper .box {
  width: 50%;
  padding: 4rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#agency1 .wrapper .box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency1 .wrapper .box ul {
  margin-bottom: 1rem;
}
#agency1 .wrapper .box p {
  font-weight: 600;
}

#agency2 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency2 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 2rem;
}
#agency2 .wrapper figure {
  width: 50%;
}
#agency2 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}
#agency2 .wrapper .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency2 .wrapper .box ul {
  margin-bottom: 1rem;
}
#agency2 .wrapper .box p {
  font-weight: 600;
}

#agency3 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency3 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#agency3 .wrapper figure {
  width: 50%;
}
#agency3 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}
#agency3 .wrapper .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency3 .wrapper .box ul {
  margin-bottom: 1rem;
}
#agency3 .wrapper .box p {
  font-weight: 600;
}

#agency4 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency4 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 2rem;
}
#agency4 .wrapper figure {
  width: 50%;
}
#agency4 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}
#agency4 .wrapper .box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#agency4 .wrapper .box ul {
  margin-bottom: 1rem;
}
#agency4 .wrapper .box p {
  font-weight: 600;
}

#agency5 h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
#agency5 .wrapper .box {
  padding: 2rem;
  background: #fff;
}
#agency5 .wrapper .box .table {
  width: 100%;
  line-height: 1;
}
#agency5 .wrapper .box .table th, #agency5 .wrapper .box .table td {
  padding: 1rem;
  border: 1px solid #ccc;
}
#agency5 .wrapper .box .table th {
  width: 25%;
  background: #ddd0b2;
}
#agency5 .wrapper .box .table .list_dot li::before {
  top: 10px;
}

/*--------------------
サポート
--------------------*/
#support_top {
  background: #f4f4f4;
}
#support_top .support_link_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#support_top .support_link_btn li {
  width: calc(50% - 0.5rem);
}
#support_top .support_link_btn li a {
  display: block;
  padding: 1rem;
  text-align: center;
  background: #04082d;
  color: #fff;
  font-weight: 600;
}
#support_top .support_link_btn li.current a {
  background: #ddd0b2;
  color: #232323;
}

#support1 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#support1 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#support1 .wrapper figure {
  width: 50%;
}
#support1 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}
#support1 .wrapper .box p + p {
  margin-top: 1rem;
}
#support1 .sub_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#support1 .sub_box .sub_inner {
  width: 48%;
}

/*--------------------
サポート2
--------------------*/
#support2_1 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#support2_1 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#support2_1 .wrapper figure {
  width: 50%;
}
#support2_1 .wrapper .box {
  width: 50%;
  padding: 0 4rem;
}
#support2_1 .wrapper .box p + p {
  margin-top: 1rem;
}
#support2_1 .sub_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#support2_1 .sub_box .sub_inner {
  width: 48%;
}

#support2_2 .contact_btn a {
  display: inline-block;
  width: 240px;
  padding: 1rem 0;
  text-align: center;
  background: #bd2c34;
  color: #fff;
}
#support2_2 .contact_btn a::after {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  font-weight: 900;
  margin-left: 1rem;
}

#support2_6 .sub_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}
#support2_6 .sub_box .sub_inner {
  width: 48%;
}

/*--------------------
お問い合わせ
--------------------*/
#contact1 h2 {
  margin-bottom: 2rem;
}
#contact1 h2 span {
  font-size: 3rem;
  font-weight: 600;
}
#contact1 h2 p {
  font-weight: 600;
}

#contact2 .form_box {
  margin-bottom: 2rem;
}
#contact2 .form_box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #f4f4f4;
}
#contact2 .form_box dl dt, #contact2 .form_box dl dd {
  padding: 1rem;
}
#contact2 .form_box dl dt {
  width: 400px;
  background: #ddd0b2;
}
#contact2 .form_box dl dd {
  width: calc(100% - 400px);
}
#contact2 .form_box dl dd span {
  display: block;
  width: 100%;
}
#contact2 .form_box input, #contact2 .form_box textarea {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
#contact2 .form_box .submit_btn {
  text-align: center;
  margin-top: 2rem;
}
#contact2 .form_box .submit_btn input {
  display: inline-block;
  width: 200px;
  padding: 1rem;
  background: #bd2c34;
  color: #fff;
}
#contact2 .wpcf7-spinner {
  display: none;
}

/*--------------------
single
--------------------*/
.single_column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.single_article {
  width: calc(100% - 340px);
  padding: 2rem;
  background: #fff;
}
.single_article time {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}
.single_article .line_ttl {
  font-size: 1.5rem;
}
.single_article .single-content p label input {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border: 1px solid #f4f4f4;
}
.single_article .single-content p input[type=submit] {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #bd2c34;
  color: #fff;
}

.single_side {
  width: 300px;
}
.single_side .side_ttl {
  padding: 0.25rem 0.5rem;
  background: #fff;
}
.single_side .side_post_list li a {
  display: block;
  padding-block: 0.5rem;
}
.single_side .side_post_list li {
  border-bottom: 1px solid #232323;
}
.single_side .side_post_list + .side_ttl {
  margin-top: 2rem;
}
.single_side .side_category_list li a {
  display: block;
  padding-block: 0.5rem;
}
.single_side .side_category_list li {
  border-bottom: 1px solid #232323;
}
.single_side .side_category_list li .children li {
  margin-inline-start: 1em;
  border-top: 1px solid #232323;
  border-bottom: none;
}

#privacy1 .box {
  margin-bottom: 2rem;
}

#privacy2 .box {
  margin-bottom: 2rem;
}

/*--------------------
footer
--------------------*/
#cta {
  background: linear-gradient(0deg, rgba(35, 35, 35, 0.6), rgba(35, 35, 35, 0.6)), url(../img/cta.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
#cta .cta_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
#cta .cta_wrap .cta_ttl_box {
  width: 45%;
}
#cta .cta_wrap .cta_ttl {
  margin-bottom: 2rem;
}
#cta .cta_wrap .cta_ttl span {
  font-size: 3rem;
  font-weight: 600;
}
#cta .cta_wrap .cta_ttl p {
  font-size: 1.25rem;
}
#cta .cta_wrap .cta_num_box {
  width: 45%;
  text-align: center;
}
#cta .cta_wrap .cta_num_box .tel_num a {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
}
#cta .cta_wrap .cta_num_box p:nth-of-type(2) {
  margin-bottom: 1rem;
}
#cta .cta_wrap .cta_num_box span {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: auto;
  padding: 1rem;
  background: #04082d;
}

#disease {
  color: #fff;
}
#disease .disease_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#disease .disease_wrap .disease_list_box {
  width: 30%;
}
#disease .disease_wrap .disease_list_ttl {
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0 0.75rem 0.25rem;
  color: #fff;
  border-left: 4px solid #fff;
  border-bottom: 1px solid #fff;
}

footer {
  background: #232323;
  color: #fff;
}
footer .f_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
footer .f_wrap .f_info {
  width: 40%;
}
footer .f_wrap .f_info .f_logo {
  width: 240px;
  margin-bottom: 1rem;
}
footer .f_wrap .f_info .f_link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .f_wrap .f_info .f_link_list li {
  width: 48%;
  margin: 1rem 0;
}
footer .f_wrap .f_info .f_link_list li a {
  display: block;
  text-align: center;
  padding: 1rem;
  border: 2px solid #fff;
  color: #fff;
}
footer .f_wrap .f_info .f_link_list li a::before {
  margin-right: 1rem;
}
footer .f_wrap .f_info .f_link_list .tel_btn a::before {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f098";
  font-weight: 900;
}
footer .f_wrap .f_info .f_link_list .mail_btn a::before {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f0e0";
  font-weight: 900;
}
footer .f_wrap .f_menu {
  width: 55%;
}
footer .f_wrap .f_menu nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
footer .f_wrap .f_menu nav .nv_inner {
  width: 48%;
}
footer .f_wrap .f_menu .f_menu_list > li a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
}
footer .f_wrap .f_menu .f_menu_list > li a::before {
  font-style: normal;
  font-family: "Font Awesome 6 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  font-weight: 900;
  margin-right: 0.5rem;
}
footer .f_wrap .f_menu .f_menu_list .sub_menu_list li a {
  padding-left: 1rem;
}
footer .f_wrap .f_menu .f_menu_list .sub_menu_list li a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 1px;
  background: #fff;
  transform: translateY(-5px);
  margin-right: 0.5rem;
}

address {
  font-style: normal;
}

.copyright {
  padding: 0 0 1rem;
  text-align: center;
}
.copyright a {
  color: #fff;
}

/*--------------------
separater
--------------------*/
.separate {
  background: linear-gradient(135deg, #ddd0b2, #fff, #ddd0b2);
  padding: 100px 0;
}

.wave_both {
  clip-path: url(#wave_both);
}

/*--------------------
メディアクエリ切り替えクラス
--------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

.grecaptcha-badge {
  z-index: -999999;
}

.gt_switcher_wrapper {
  padding: 0.5rem 1rem;
  background: #ddd0b2;
}