@charset "UTF-8";
#page .contents {
  width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .contents {
    width: 100%;
    padding: 0 4%;
  }
}
#page .colum_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #page .colum_wrap {
    flex-direction: column;
    gap: 30px;
  }
}
#page .colum_wrap #main {
  width: calc(75% - 25px);
}
@media screen and (max-width: 768px) {
  #page .colum_wrap #main {
    width: 100%;
  }
}
#page .colum_wrap #aside {
  width: calc(25% - 25px);
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  #page .colum_wrap #aside {
    width: 100%;
  }
}
#page footer .contents {
  width: 1170px;
}
@media screen and (max-width: 768px) {
  #page footer .contents {
    width: 100%;
  }
}
#page .more_btn_wrap {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#page .more_btn_wrap .more_btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #page .more_btn_wrap .more_btn {
    width: 100%;
  }
}
#page .more_btn_wrap .more_btn a {
  text-decoration: none;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: 1.6rem;
  letter-spacing: 2.4px;
  border: 1px solid #636363;
  padding: 19px 65px 19px 40px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #page .more_btn_wrap .more_btn a {
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 18px 25px 18px 25px;
    width: 100%;
  }
}
#page .more_btn_wrap .more_btn a::before {
  content: "";
  background-size: cover;
  width: 15px;
  height: 8px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-image: url(../images/common/arrow2.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/arrow2.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #636363;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #page .more_btn_wrap .more_btn a::before {
    right: 20px;
  }
}
@media screen and (min-width: 769px) {
  #page .more_btn_wrap .more_btn a:hover {
    background: #636363;
    color: #fff;
  }
  #page .more_btn_wrap .more_btn a:hover::before {
    background-color: #fff;
  }
}
#page .link_mp {
  padding-top: 90px;
  margin-top: -90px;
}
@media screen and (max-width: 768px) {
  #page .link_mp {
    padding-top: 30px;
    margin-top: -30px;
  }
}
#page .page_mv {
  height: 420px;
  width: 100%;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #page .page_mv {
    height: 200px;
    margin: 0;
  }
  #page .page_mv.sp {
    display: block;
  }
}
#page .page_mv .page_mv_box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .page_mv .page_mv_box {
    height: 200px;
  }
}
#page .page_mv .page_mv_box::before {
  content: "";
  background: linear-gradient(96deg, #777 0%, #555 48.73%, #111 90.84%);
  opacity: 0.3;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#page .page_mv .page_mv_box .page_h2 {
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFF;
  text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.38rem;
}
@media screen and (max-width: 768px) {
  #page .page_mv .page_mv_box .page_h2 {
    font-size: 2.3rem;
  }
}
#page .page_mv .page_mv_box .page_h2 .page_h2_span_01 {
  display: block;
  color: #FFF;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 2.2rem;
  line-height: 2.5rem;
  letter-spacing: 0.33rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #page .page_mv .page_mv_box .page_h2 .page_h2_span_01 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
#page .sec_breadcrumb {
  border-bottom: none;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_breadcrumb {
    text-align: left;
  }
}
#page .sec_breadcrumb.post {
  padding: 0;
}
#page .sec_breadcrumb.post .breadcrumb .breadcrumb_ul li:not(:first-child) {
  padding: 0;
}
#page .sec_breadcrumb.post .breadcrumb .breadcrumb_ul li:not(:first-child)::before {
  content: none;
}
#page .sec_breadcrumb .breadcrumb {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #page .sec_breadcrumb .breadcrumb {
    padding: 20px 0 20px 20px;
  }
}
#page .sec_breadcrumb .breadcrumb.breadcrumb_none {
  display: none;
}
#page .sec_breadcrumb .breadcrumb .breadcrumb_ul {
  width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_breadcrumb .breadcrumb .breadcrumb_ul {
    width: 100%;
  }
}
#page .sec_breadcrumb .breadcrumb .breadcrumb_ul li {
  color: #636363;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_breadcrumb .breadcrumb .breadcrumb_ul li {
    font-size: 1.2rem;
  }
}
#page .sec_breadcrumb .breadcrumb .breadcrumb_ul li a {
  display: inline-block;
}
#page .sec_breadcrumb .breadcrumb .breadcrumb_ul li:not(:first-child) {
  padding: 0 0 0 20px;
  color: #8EC320;
  position: relative;
}
#page .sec_breadcrumb .breadcrumb .breadcrumb_ul li:not(:first-child)::before {
  content: "";
  border-top: solid 1px #636363;
  border-right: solid 1px #636363;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
#page .sec_page {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #page .sec_page {
    padding: 10% 0;
  }
}
#page .sec_page.sec01_bk {
  background: #EDF8F3;
}
#page .sec_page .contents {
  position: relative;
}
#page .sec_page a {
  color: #8EC320;
}
#page .sec_page img {
  vertical-align: bottom;
}
#page .sec_page .float {
  display: block;
  height: auto;
  position: relative;
}
#page .sec_page .float::after {
  content: "";
  display: block;
  clear: both;
}
#page .sec_page .float .img_box {
  float: right;
  width: 420px;
  padding: 0 0 20px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_page .float .img_box {
    width: 100%;
    float: inherit;
    padding: 0 0 20px;
    margin: 0 auto;
  }
}
#page .sec_page .float .text_box {
  width: auto;
  margin: 0;
}
#page .sec_page .contents_full {
  position: relative;
}
#page .sec_page.nav_sec {
  padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
  #page .sec_page.nav_sec {
    padding: 2% 0 8%;
  }
}
#page .sec_page p {
  font-family: YakuHanJP, "Kiwi Maru", serif;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #page .sec_page p {
    line-height: 1.75;
  }
}
#page .sec_page .page_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_nav ul {
    padding: 0;
  }
}
#page .sec_page .page_nav ul li {
  width: 100%;
  margin: 15px 0 0;
  position: relative;
}
#page .sec_page .page_nav ul li a {
  padding: 10px 30px 10px 10px;
  background: none;
  height: 60px;
  display: flex;
  text-decoration: none;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid #d7c9a1;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_nav ul li a {
    height: auto;
    padding: 10px 30px 10px 10px;
  }
}
#page .sec_page .page_nav ul li a::before {
  content: "";
  transform: rotate(0deg);
  width: 0;
  height: 0;
  border-left: 7px solid #B89231;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  pointer-events: none;
  transition: all 0.3s;
}
#page .sec_page .page_nav ul li a::after {
  content: "";
  background: #b89231;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: all 0.3s ease;
  width: 25px;
  height: 1px;
}
@media screen and (min-width: 769px) {
  #page .sec_page .page_nav ul li a:hover {
    color: #8EC320;
  }
  #page .sec_page .page_nav ul li a:hover::before {
    right: 0;
  }
  #page .sec_page .page_nav ul li a:hover::after {
    width: 100%;
  }
}
#page .sec_page .page_nav.page_nav_02 ul li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_nav.page_nav_02 ul li {
    width: 100%;
  }
}
#page .sec_page .page_nav.page_nav_02 ul::after {
  content: "";
  width: calc((100% - 30px) / 2);
}
#page .sec_page .page_nav.page_nav_03 ul li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_nav.page_nav_03 ul li {
    width: 100%;
  }
}
#page .sec_page .page_nav.page_nav_03 ul::after {
  content: "";
  width: calc((100% - 6px) / 3);
}
#page .sec_page .page_nav.page_nav_04 ul li {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_nav.page_nav_04 ul li {
    width: 100%;
  }
}
#page .sec_page .page_nav.page_nav_04 ul::after {
  content: "";
  width: calc((100% - 90px) / 4);
}
#page .sec_page .text_box {
  margin: 30px auto 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  #page .sec_page .text_box {
    margin: 6% auto 0;
  }
}
#page .sec_page .text_box p + P {
  padding: 1em 0 0;
}
#page .sec_page .text_box.text_box_02 {
  background: #efefef;
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .text_box.text_box_02 {
    padding: 5%;
  }
}
#page .sec_page .text_box.center p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .text_box.center p {
    text-align: left;
  }
}
#page .sec_page .list_box_wrap {
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_box_wrap {
    margin: 3% 0 0;
  }
}
#page .sec_page .list_box_wrap:first-child {
  margin: 0;
}
#page .sec_page .list_box_wrap.list_box_wrap_bk {
  background: #FAF9F6;
  padding: 30px 50px 50px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_box_wrap.list_box_wrap_bk {
    margin: 7% 0 0;
    padding: 1% 5% 5%;
  }
}
#page .sec_page .list_box_wrap .list_box_01 {
  display: flex;
  flex-wrap: wrap;
}
#page .sec_page .list_box_wrap .list_box_01.list_box_01_2col {
  justify-content: space-between;
}
#page .sec_page .list_box_wrap .list_box_01.list_box_01_2col li {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_box_wrap .list_box_01.list_box_01_2col li {
    width: 100%;
  }
}
#page .sec_page .list_box_wrap .list_box_01.list_box_01_2col li.li_full {
  width: 100%;
}
#page .sec_page .list_box_wrap .list_box_01 li {
  width: 100%;
  margin: 20px 0 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_box_wrap .list_box_01 li {
    margin: 4% 0 0;
  }
}
#page .sec_page .list_box_wrap .list_box_01 li.list_tit {
  color: #8EC320;
}
#page .sec_page .list_box_wrap .list_box_01 li.list_tit::before {
  content: none;
}
#page .sec_page .list_box_wrap .list_box_01 li::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  position: relative;
  top: -2px;
  background: #8EC320;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  color: #8EC320;
}
#page .sec_page .list_box_wrap .list_box_01 li a {
  color: #8EC320;
}
#page .sec_page .page_h3 {
  text-align: center;
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 3rem;
  letter-spacing: 4.5px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h3 {
    font-size: 2.2rem;
    letter-spacing: 3.2px;
    gap: 20px;
  }
}
#page .sec_page .page_h3::before {
  content: "";
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  flex: 1;
  height: 1px;
  position: relative;
  display: block;
  left: inherit;
  right: inherit;
  transform: none;
}
#page .sec_page .page_h3::after {
  content: "";
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  flex: 1;
  height: 1px;
  position: relative;
  display: block;
  left: inherit;
  right: inherit;
  transform: none;
}
#page .sec_page .page_h3 > span {
  color: #636363;
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 3rem;
  letter-spacing: 4.5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h3 > span {
    font-size: 2.2rem;
    letter-spacing: 3.2px;
  }
}
#page .sec_page .page_h3 > span > span {
  color: #8EC320;
}
#page .sec_page .page_h4 {
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 2rem;
  letter-spacing: 3px;
  border-bottom: 3px solid #8EC320;
  padding: 0 0 15px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4 {
    font-size: 1.7rem;
    padding: 0 0 10px;
  }
}
#page .sec_page .page_h4_future {
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.4rem;
  margin: 80px 0 0;
  padding: 0 0 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_future {
    font-size: 1.8rem;
    margin: 12% 0 0;
    display: flex;
  }
}
#page .sec_page .page_h4_future .h4_num {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.2rem;
  color: #8EC320;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50%;
  background: #8EC320;
  color: #fff;
  margin: 0 10px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_future .h4_num {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
}
#page .sec_page .page_h4_future::before {
  content: "";
  background: #cbcaca;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
}
#page .sec_page .page_h4_future::after {
  content: "";
  background: #8EC320;
  height: 1px;
  width: 180px;
  bottom: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_future::after {
    width: 30%;
  }
}
#page .sec_page .page_h4_step {
  border-left: 3px solid #8EC320;
  padding: 0 0 0 20px;
  margin: 80px 0 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_step {
    font-size: 1.8rem;
    margin: 12% 0 5%;
  }
}
#page .sec_page .page_h4_step .page_h4_step_num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page .sec_page .page_h4_step .page_h4_step_num .page_h4_step_num_01 {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_step .page_h4_step_num .page_h4_step_num_01 {
    font-size: 1.2rem;
  }
}
#page .sec_page .page_h4_step .page_h4_step_num .page_h4_step_num_02 {
  font-size: 3.2rem;
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_step .page_h4_step_num .page_h4_step_num_02 {
    font-size: 2.7rem;
  }
}
#page .sec_page .page_h4_step .page_h4_step_txt {
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.4rem;
  padding: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h4_step .page_h4_step_txt {
    font-size: 2.1rem;
  }
}
#page .sec_page .page_h5 {
  background: rgba(66, 151, 207, 0.2);
  padding: 0 10px 0 23px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 2.7px;
}
#page .sec_page .page_h5.page_h5_02::before {
  content: none;
}
#page .sec_page .page_h5.page_h5_02::after {
  content: "";
  background: #8EC320;
  height: 1px;
  width: calc(100% - 280px);
  right: 0;
  left: inherit;
  position: absolute;
  top: 40%;
  text-align: right;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h5.page_h5_02::after {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h5 {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}
#page .sec_page .page_h5::before {
  content: "";
  background: #8EC320;
  width: 3px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#page .sec_page .page_h6 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #8EC320;
  color: #fff;
  padding: 8px 15px;
  display: block;
  font-size: 1.7rem;
  letter-spacing: 3.4px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h6 {
    font-size: 1.5rem;
  }
}
#page .sec_page .page_h6_02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff !important;
  display: block;
  color: #EDF8F3;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: 1.8rem;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_h6_02 {
    font-size: 1.6rem;
  }
}
#page .sec_page .list_item {
  margin: 20px 0 0;
}
#page .sec_page .list_item li {
  line-height: 2.4;
}
#page .sec_page .list_item li::before {
  content: "・";
  color: #8EC320;
}
#page .sec_page .list_item_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#page .sec_page .list_item_02.list_item_02_02 li {
  width: 100%;
  border-bottom: 1px dotted #E3DCD5;
  padding: 0 0 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_item_02.list_item_02_02 li {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }
}
#page .sec_page .list_item_02.list_item_02_02 li .list_item_02_span_01 {
  width: 160px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_item_02.list_item_02_02 li .list_item_02_span_01 {
    width: 100%;
    padding: 0 0 7px;
  }
}
#page .sec_page .list_item_02.list_item_02_02 li .list_item_02_span_02 {
  width: calc(100% - 160px);
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_item_02.list_item_02_02 li .list_item_02_span_02 {
    width: 100%;
  }
}
#page .sec_page .list_item_02 li {
  width: calc((100% - 50px) / 2);
  display: flex;
  margin: 20px 0 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #page .sec_page .list_item_02 li {
    width: 100%;
    margin: 4% 0 0;
  }
}
#page .sec_page .list_item_02 li .list_item_02_span_01 {
  width: 90px;
}
#page .sec_page .list_item_02 li .list_item_02_span_02 {
  width: calc(100% - 90px);
}
#page .sec_page .bg_box_wrap {
  filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.08));
  background: #fff;
  padding: 40px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap {
    padding: 6%;
    margin: 9% auto 0;
  }
}
#page .sec_page .bg_box_wrap.pd_none {
  padding: 0;
}
#page .sec_page .bg_box_wrap.fi_none {
  filter: none;
}
#page .sec_page .bg_box_wrap .bg_box_01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}
#page .sec_page .bg_box_wrap .bg_box_01 .bg_box_01_item {
  width: calc((100% - 50px) / 2);
}
#page .sec_page .bg_box_wrap .bg_box_01 .bg_box_01_item.bg_box_01_item_full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .bg_box_01 .bg_box_01_item {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap .bg_box_01 h4 {
  color: #8EC320;
  border-bottom: 1px solid #8EC320;
  padding: 0 0 10px;
  margin: 0 0 0;
}
#page .sec_page .bg_box_wrap .page_box_wrap {
  margin: 0 auto 0;
}
#page .sec_page .bg_box_wrap .page_box_wrap .page_box .page_box_l {
  width: 540px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .page_box_wrap .page_box .page_box_l {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap .page_box_wrap .page_box.page_box_s .page_box_l {
  width: 640px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .page_box_wrap .page_box.page_box_s .page_box_l {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap .page_box_wrap .page_box.page_box_s .page_box_r {
  width: 280px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .page_box_wrap .page_box.page_box_s .page_box_r {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .page_box_wrap .page_box.page_box_s .page_box_r.page_box_r_sp_60 {
    width: 60%;
  }
}
#page .sec_page .bg_box_wrap .page_box_wrap .page_box .page_box_r {
  width: 380px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .page_box_wrap .page_box .page_box_r {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap .bg_box_01 {
  padding: 40px;
  background: rgba(223, 237, 248, 0.6);
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .bg_box_01 {
    padding: 6%;
  }
}
#page .sec_page .bg_box_wrap .bg_box_01 .bg_box_01_item {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap .bg_box_01 .bg_box_01_item {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap .bg_box_01 .bg_box_01_item.bg_box_01_item_full {
  width: 100%;
}
#page .sec_page .bg_box_wrap_01 {
  padding: 0;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 {
    margin: 9% auto 0;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 {
  padding: 40px;
  background: #FAF9F6;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 {
    padding: 6%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_box_wrap {
  margin: 0;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_box_wrap .page_box .page_box_l {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .page_box_wrap .page_box .page_box_l {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_box_wrap .page_box .page_box_r {
  width: 42%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .page_box_wrap .page_box .page_box_r {
    margin: 20px 0 0;
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_item {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_item {
    width: 100%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_item.bg_box_01_item_full {
  width: 100%;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 h4 {
  color: #8EC320;
  border-bottom: 1px solid #8EC320;
  padding: 0 0 10px;
  margin: 0 0 0;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .text_box {
  width: 100%;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .clinic_h4 {
  border-bottom: none;
  color: #636363;
  padding: 0;
  position: relative;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .clinic_h4 {
    margin: 0 0 5%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .clinic_h4::before {
  content: "";
  background: url(../images/common/hikari.svg) no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
  display: inline-block;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .clinic_h4::before {
    width: 12px;
    height: 12px;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_flex {
    flex-direction: column;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_flex .bg_box_01_flex_img {
  margin: 0 0 0 60px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_flex .bg_box_01_flex_img {
    margin: 4% auto 0;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .bg_box_01_flex .bg_box_01_flex_img img {
  width: 158px;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap {
  position: relative;
  margin: 0 0 20px;
  width: 100%;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8EC320;
  position: absolute;
  left: 0;
  bottom: 0;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #8EC320;
  position: absolute;
  left: 0;
  bottom: -5px;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap .h4_tit {
  font-size: 2rem;
  position: relative;
  padding: 0 0 0 23px;
  margin: 0 0 5px;
  border-bottom: none;
  color: #636363;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap .h4_tit {
    font-size: 1.7rem;
    padding: 0;
    display: inline-block;
    margin: 0 0 5px;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap .h4_tit::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: #8EC320;
  position: absolute;
  left: 0%;
  bottom: 9px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .h4_tit_wrap .h4_tit::before {
    position: relative;
    left: inherit;
    bottom: inherit;
    display: inline-block;
    margin: 0 10px 0 0;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4 {
  font-size: 2.4rem;
  border-left: none;
  border-bottom: none;
  margin: 0 0 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4 {
    margin: 0 0 5%;
    font-size: 2rem;
    padding: 3%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4.page_h4_full {
  width: 100%;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4 span {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  color: #8EC320;
  display: block;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4 span {
    font-size: 1.1rem;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4_no {
  font-size: 2.4rem;
  border-left: none;
  border-bottom: none;
  margin: 0 0 20px;
  width: 100%;
  color: #636363;
  border-bottom: 1px dotted #8EC320;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4_no {
    margin: 0 0 5%;
    font-size: 2rem;
    padding: 3%;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4_no.page_h4_full {
  width: 100%;
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4_no span {
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  color: #8EC320;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .page_h4_no span {
    font-size: 2rem;
  }
}
#page .sec_page .bg_box_wrap_01 .bg_box_01 .tit_txt {
  border-top: 1px solid #8EC320;
  border-bottom: 1px solid #8EC320;
  background: rgba(242, 240, 232, 0.8);
  text-align: center;
  color: #636363;
  font-size: 2.4rem;
  position: relative;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .bg_box_wrap_01 .bg_box_01 .tit_txt {
    font-size: 2rem;
    margin: 0 0 20px;
  }
}
#page .sec_page .page_box_wrap {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap {
    margin: 10% auto 0;
  }
}
#page .sec_page .page_box_wrap .page_box {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
#page .sec_page .page_box_wrap .page_box.float {
  display: block;
}
#page .sec_page .page_box_wrap .page_box.float .img_box {
  float: right;
  width: 35%;
  padding: 0 0 20px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.float .img_box {
    width: 100%;
    float: inherit;
    padding: 0 0 20px;
    margin: 0 auto;
  }
}
#page .sec_page .page_box_wrap .page_box.float .text_box {
  width: auto;
  margin: 0;
}
#page .sec_page .page_box_wrap .page_box.page_box_s .page_box_l {
  width: 770px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_s .page_box_l {
    width: 100%;
  }
}
#page .sec_page .page_box_wrap .page_box.page_box_s .page_box_r {
  width: 230px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_s .page_box_r {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_s .page_box_r.page_box_r_sp_60 {
    width: 60%;
  }
}
#page .sec_page .page_box_wrap .page_box.page_box_m .page_box_l {
  width: 650px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_m .page_box_l {
    width: 100%;
  }
}
#page .sec_page .page_box_wrap .page_box.page_box_m .page_box_r {
  width: 350px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_m .page_box_r {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_m .page_box_r.page_box_r_sp_60 {
    width: 60%;
  }
}
#page .sec_page .page_box_wrap .page_box:not(:first-child) {
  margin: 90px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box:not(:first-child) {
    margin: 11% 0 0;
  }
}
#page .sec_page .page_box_wrap .page_box.page_box_re {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.page_box_re {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box.sp_r {
    flex-direction: row-reverse;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_l {
  width: 580px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_l {
    width: 100%;
    margin: 0 0 6%;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_l.policy_box_full {
  width: 100%;
}
#page .sec_page .page_box_wrap .page_box .page_box_l .page_h4 {
  margin: 0 0 30px;
}
#page .sec_page .page_box_wrap .page_box .page_box_l .page_h4_step {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_l .page_h4_step {
    margin: 0 0 5%;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_l .text_box {
  margin: 0 auto 0;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_l .text_box {
    line-height: 1.75;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_l .page_box_list li {
  width: 100%;
  background: #FAF9F6;
  border-radius: 5px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 40px;
  position: relative;
  margin: 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_l .page_box_list li {
    padding: 0 15px 0 40px;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_l .page_box_list li:not(:first-child) {
  margin: 10px 0 0;
}
#page .sec_page .page_box_wrap .page_box .page_box_l .page_box_list li::before {
  content: "";
  position: absolute;
  background: #8EC320;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 20px;
}
#page .sec_page .page_box_wrap .page_box .page_box_l .more_btn_wrap {
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_l .more_btn_wrap {
    margin: 6% 0 0;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_l .more_btn_wrap.more_btn_wrap_full .more_btn + .more_btn {
  margin: 20px 0 0;
}
@media screen and (max-width: 330px) {
  #page .sec_page .page_box_wrap .page_box .page_box_l .more_btn_wrap .more_btn a {
    font-size: 1.2rem;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_r {
  width: 420px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_r {
    width: 100%;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_r .img_box {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_r .img_box {
    margin: 0 auto 5%;
  }
}
#page .sec_page .page_box_wrap .page_box .page_box_r .img_box span {
  padding: 10px 0 0;
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box .page_box_r .img_box span {
    font-size: 1.3rem;
  }
}
#page .sec_page .page_box_wrap .page_box_02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box_02 {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
#page .sec_page .page_box_wrap .page_box_02 .page_box_item {
  width: 47%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box_02 .page_box_item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap .page_box_02 .page_box_item + .page_box_item {
    margin: 8% 0 0;
  }
}
#page .sec_page .page_box_wrap_02 {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_02 {
    margin: 5% auto 0;
  }
}
#page .sec_page .page_box_wrap_02 .page_box_02 {
  background: #F5F5F5;
  padding: 40px 50px;
}
#page .sec_page .page_box_wrap_02 .page_box_02 + .page_box_02 {
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_02 .page_box_02 + .page_box_02 {
    margin: 3% 0 0;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_02 .page_box_02 {
    padding: 6% 7%;
  }
}
#page .sec_page .page_box_wrap_02 .page_box_02 .page_h5 {
  margin: 0 auto;
  color: #8EC320;
}
#page .sec_page .page_box_wrap_02 .page_box_02 .page_box_cap {
  font-size: 1.2rem;
  color: #818181;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_02 .page_box_02 .page_box_cap {
    margin: 2% 0 0;
  }
}
#page .sec_page .page_box_wrap_02 .page_box_02 .page_box_cap li {
  margin: 5px 0 0;
}
#page .sec_page .page_box_wrap_03 {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_03 {
    margin: 5% auto 0;
  }
}
#page .sec_page .page_box_wrap_03 .page_box_03 {
  background: #292525;
  padding: 40px 50px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_03 .page_box_03 {
    padding: 6% 7%;
  }
}
#page .sec_page .page_box_wrap_03 .page_box_03 + .page_box_03 {
  margin: 20px 0 0;
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_h5 {
  margin: 0 auto;
  width: 100%;
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_h5::before {
  background: rgba(255, 255, 255, 0.5);
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_h5 span {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  margin: 0 5px 0 0;
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_box_03_l {
  width: 510px;
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_box_03_l.page_box_03_l_full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_03 .page_box_03 .page_box_03_l {
    width: 100%;
  }
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_box_03_r {
  width: 400px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .page_box_wrap_03 .page_box_03 .page_box_03_r {
    width: 100%;
  }
}
#page .sec_page .page_box_wrap_03 .page_box_03 .page_box_03_r .img_box {
  width: 100%;
}
#page .sec_page .img_box_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_box_wrap {
    flex-direction: column;
  }
}
#page .sec_page .img_box_wrap .img_box.img_box_02 {
  width: 500px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_box_wrap .img_box.img_box_02 {
    width: 100%;
  }
}
#page .sec_page .img_box {
  width: 640px;
  margin: 30px auto 0;
  text-align: center;
}
#page .sec_page .img_box img {
  border-radius: 30px;
  outline: 8px solid rgba(255, 255, 255, 0.5);
  outline-offset: -8px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_box img {
    outline: 4px solid rgba(255, 255, 255, 0.5);
    outline-offset: -4px;
  }
}
#page .sec_page .img_box.img_box_full {
  width: 100%;
}
#page .sec_page .img_box.img_w500 {
  width: 500px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_box.img_w500 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_box {
    width: 100%;
    margin: 5% auto 0;
  }
}
#page .sec_page .img_box span {
  padding: 10px 0 0;
  display: block;
  font-size: 1.5rem;
  font-family: YakuHanJP, "Kiwi Maru", serif;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_box span {
    font-size: 1.3rem;
  }
}
#page .sec_page .img_ul_wrap .img_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#page .sec_page .img_ul_wrap .img_ul.img_ul_02 li {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_ul_wrap .img_ul.img_ul_02 li {
    width: 100%;
  }
}
#page .sec_page .img_ul_wrap .img_ul.img_ul_03 li {
  width: 32%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_ul_wrap .img_ul.img_ul_03 li {
    width: 100%;
  }
}
#page .sec_page .img_ul_wrap .img_ul li {
  width: 100%;
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_ul_wrap .img_ul li {
    margin: 4% 0 0;
  }
}
#page .sec_page .img_ul_wrap .img_ul li span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .img_ul_wrap .img_ul li span {
    font-size: 1.4rem;
  }
}
#page .sec_page .flow_box_wrap .flow_box {
  background: #FAF9F6;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box {
    padding: 6%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#page .sec_page .flow_box_wrap .flow_box:not(:first-child) {
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box:not(:first-child) {
    margin: 3% 0 0;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_l {
  width: 220px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_l {
    width: 100%;
    display: flex;
    margin: 0 0 20px;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_l .flow_box_no {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4rem;
  counter-reset: 2px;
  padding: 0 0 10px;
  display: inline-block;
  line-height: 1;
  position: relative;
  color: #8EC320;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_l .flow_box_no {
    font-size: 2.4rem;
    padding: 0;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_l .flow_box_no::before {
  content: "Step";
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  display: inline-block;
  letter-spacing: 0;
  color: #8EC320;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_l .flow_box_no::before {
    font-size: 1.3rem;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_l h4 {
  margin: 15px 0 0;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_l h4 {
    margin: 0;
    font-size: 1.8rem;
    margin: 0 0 0 10px;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r {
  width: calc(100% - 220px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_r {
    width: 100%;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_box_r_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_box_r_flex {
    flex-direction: column;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_box_r_flex .flow_box_r_txt_box {
  width: calc(100% - 340px);
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_box_r_flex .flow_box_r_txt_box {
    width: 100%;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_box_r_img_box {
  width: 300px;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_box_r_img_box {
    width: 100%;
    margin: 5% 0 0;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .text_box {
  margin: 0 auto;
  width: 100%;
  text-align: left;
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_text_box {
  background: #F2F0E8;
  padding: 25px;
  margin: 20px 0 0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_text_box {
    padding: 6%;
  }
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_text_box:first-child {
  margin: 0;
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_text_box h5 {
  padding: 0 0 0 30px;
  color: #8EC320;
  font-size: 1.7rem;
  margin: 0 0 20px;
  position: relative;
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_r .flow_text_box h5::before {
  content: "";
  background: url(../images/common/hikari.svg) no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
#page .sec_page .flow_box_wrap .flow_box .flow_box_morebtn {
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .flow_box_wrap .flow_box .flow_box_morebtn {
    margin: 5% auto 0;
  }
}
#page .sec_page .youtube {
  position: relative;
  padding-bottom: 50%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 40px auto 20px;
}
#page .sec_page .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#page .sec_page .doga_wrap {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .doga_wrap {
    margin: 2% 0 0;
    flex-direction: column;
  }
}
#page .sec_page .doga_wrap .doga_item {
  width: 47%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .doga_wrap .doga_item {
    width: 100%;
    margin: 4% 0 0;
  }
}
#page .sec_page .link_title {
  color: #8EC320;
  border-bottom: 1px solid #8EC320;
  padding: 0 0 10px;
  font-size: 2rem;
  text-align: center;
  display: inline-block;
  width: 100%;
  margin: 0 0 35px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .link_title {
    font-size: 1.8rem;
    margin: 0 0 5%;
  }
}
#page .sec_page .nado {
  width: 100%;
  text-align: right;
  display: block;
  margin: 10px 0 0 auto;
}
#page .sec_page .table_box_wrap {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap {
    position: relative;
    padding: 0;
    margin: 8% auto 0;
  }
}
#page .sec_page .table_box_wrap .table_box_clinic_02 {
  width: 870px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_clinic_02 {
    width: 96%;
    padding: 6% 4%;
    position: relative;
    overflow-x: auto;
  }
}
#page .sec_page .table_box_wrap .table_box_clinic {
  width: 870px;
  background: #fff;
  box-shadow: 0px 0px 14px rgba(21, 83, 102, 0.12);
  border-radius: 5px;
  padding: 30px 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_clinic {
    width: 96%;
    padding: 6% 4%;
    position: relative;
    overflow-x: auto;
  }
}
#page .sec_page .table_box_wrap .table_box_01_bk {
  background: #FAF9F6;
  border-radius: 5px;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_01_bk {
    width: 96%;
    padding: 6% 4%;
    position: relative;
    overflow-x: auto;
  }
}
#page .sec_page .table_box_wrap .table_box_02_bk {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_02_bk {
    position: relative;
    overflow-x: auto;
  }
}
#page .sec_page .table_box_wrap .table_box_01 {
  border-top: 1px solid #636363;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_01 tr {
    display: flex;
    flex-direction: column;
  }
}
#page .sec_page .table_box_wrap .table_box_01 tr td {
  width: calc(100% - 200px);
  border-bottom: 1px solid #636363;
  padding: 15px 0 15px 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_01 tr td {
    border-right: none;
    text-align: left;
    padding: 4%;
    width: 100%;
  }
}
#page .sec_page .table_box_wrap .table_box_01 tr td:first-child {
  width: 200px;
  vertical-align: middle;
  padding: 15px 0;
  text-align: center;
  background: rgba(242, 240, 232, 0.5);
  color: #8EC320;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_01 tr td:first-child {
    width: 100%;
    text-align: center;
    padding: 4%;
  }
}
#page .sec_page .table_box_wrap .table_box_01 tr td:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_01 tr td {
    width: 100%;
  }
}
#page .sec_page .table_box_wrap .table_box_02 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_02 {
    width: 500px;
  }
}
#page .sec_page .table_box_wrap .table_box_02 tr th {
  color: #8EC320;
  border-bottom: 1px solid #636363;
  padding: 22px 0;
  text-align: left;
  background: rgba(242, 240, 232, 0.5);
  text-align: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_02 tr th {
    padding: 15px 0;
  }
}
#page .sec_page .table_box_wrap .table_box_02 tr th:first-child {
  width: 350px;
  vertical-align: middle;
  background: #F2F0E8;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_02 tr th:first-child {
    width: 200px;
  }
}
#page .sec_page .table_box_wrap .table_box_02 tr td {
  border-bottom: 1px solid #636363;
  padding: 22px 0;
  text-align: center;
  background: #FAF9F6;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_02 tr td {
    padding: 15px 0;
  }
}
#page .sec_page .table_box_wrap .table_box_02 tr td:first-child {
  width: 350px;
  vertical-align: middle;
  padding: 22px 0 22px 20px;
  text-align: left;
  background: #F2F0E8;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_02 tr td:first-child {
    width: 200px;
    padding: 15px 0 15px 15px;
  }
}
#page .sec_page .table_box_wrap .table_box_02 tr td:last-child {
  border-right: none;
}
#page .sec_page .table_box_wrap .table_box_03 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 {
    width: 100%;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr:nth-child(2) td {
  padding: 13px 0 13px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr:nth-child(2) td {
    padding: 0;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr th {
  color: #8EC320;
  padding: 13px 0 13px;
  border-bottom: 1px solid #8EC320;
  text-align: center;
  width: 77.1428571429px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr th {
    padding: 10px 5px;
    font-size: 1.3rem;
    width: calc((100% - 90px) / 7);
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr th:first-child {
  width: 230px;
  padding: 13px 0 13px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr th:first-child {
    width: 90px;
    padding: 10px 0;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr th:nth-child(2) {
  width: 77.1428571429px;
  padding: 13px 0 13px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr th:nth-child(2) {
    width: calc((100% - 90px) / 7);
    padding: 10px 0 10px 8px;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr th:last-child {
  width: 77.1428571429px;
  padding: 13px 0 13px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr th:last-child {
    width: calc((100% - 90px) / 7);
    padding: 10px 0;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr td {
  padding: 13px 0 13px;
  text-align: center;
  color: #8EC320;
  border-bottom: 1px solid #C0DEEF;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr td {
    padding: 10px 5px;
    font-size: 1.3rem;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr td:first-child {
  padding: 13px 0 13px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr td:first-child {
    padding: 10px 0;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr td:nth-child(2) {
  padding: 13px 0 13px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr td:nth-child(2) {
    padding: 10px 0 10px 8px;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr td .top_schedule_span_01 {
  text-align: center;
  display: inline-block;
  padding: 5px 0;
  width: 100px;
  background: #8EC320;
  font-size: 1.3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr td .top_schedule_span_01 {
    width: 100%;
    font-size: 1.2rem;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr td .top_schedule_span_02 {
  text-align: center;
  display: inline-block;
  padding: 5px 0;
  width: 100px;
  background: #EDF8F3;
  font-size: 1.3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr td .top_schedule_span_02 {
    width: 100%;
    font-size: 1.2rem;
    margin: 0 0 5px;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr td .top_schedule_span_txt {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_03 tr td .top_schedule_span_txt {
    text-align: center;
    font-size: 1.2rem;
    display: block;
    margin: 0;
    letter-spacing: 0;
    padding: 3px 0 0;
  }
}
#page .sec_page .table_box_wrap .table_box_03 tr:last-child td {
  border-bottom: none;
}
#page .sec_page .table_box_wrap .table_schedule_cap {
  font-size: 1.4rem;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_schedule_cap {
    font-size: 1.1rem;
    margin: 4% 0 0;
  }
}
#page .sec_page .table_box_wrap .table_schedule_cap li {
  margin: 0 0 5px;
  color: #8EC320;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_schedule_cap li {
    font-size: 1.2rem;
  }
}
#page .sec_page .table_box_wrap .table_box_04 {
  width: 100%;
  border-top: 1px solid #636363;
  border-left: 1px solid #636363;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04 {
    width: 600px;
  }
}
#page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr th {
  width: 400px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr th {
    width: calc(100% - 300px);
  }
}
#page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr th:first-child {
  width: calc(100% - 400px);
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr th:first-child {
    width: 300px;
  }
}
#page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr td {
  width: 400px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr td {
    width: calc(100% - 300px);
  }
}
#page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr td:first-child {
  width: calc(100% - 400px);
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04.table_box_04_02 tr td:first-child {
    width: 300px;
  }
}
#page .sec_page .table_box_wrap .table_box_04 tr th {
  border-right: 1px solid #fff;
  padding: 18px 20px;
  background: #59481B;
  color: #fff;
  text-align: center;
}
#page .sec_page .table_box_wrap .table_box_04 tr th:first-child {
  width: 250px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04 tr th:first-child {
    width: 200px;
  }
}
#page .sec_page .table_box_wrap .table_box_04 tr:nth-child(even) td {
  background: rgba(242, 240, 232, 0.5);
}
#page .sec_page .table_box_wrap .table_box_04 tr td {
  border-bottom: 1px solid #636363;
  padding: 18px 20px;
  text-align: left;
  background: #fff;
  border-right: 1px solid #636363;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04 tr td {
    padding: 15px 18px;
  }
}
#page .sec_page .table_box_wrap .table_box_04 tr td:first-child {
  width: 250px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_04 tr td:first-child {
    width: 200px;
  }
}
#page .sec_page .table_box_wrap .table_box_04 tr td p {
  padding: 0;
}
#page .sec_page .table_box_wrap .table_box_05 {
  border-top: 1px solid #636363;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_05 {
    width: 600px;
  }
}
#page .sec_page .table_box_wrap .table_box_05.table_box_05_02 tr td {
  width: calc(100% - 300px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_05.table_box_05_02 tr td {
    width: calc(100% - 200px);
  }
}
#page .sec_page .table_box_wrap .table_box_05.table_box_05_02 tr td:first-child {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_05.table_box_05_02 tr td:first-child {
    width: 200px;
  }
}
#page .sec_page .table_box_wrap .table_box_05 tr td {
  width: calc(100% - 200px);
  border-right: 1px solid #636363;
  border-bottom: 1px solid #636363;
  padding: 22px 20px;
  text-align: left;
  background: #fff;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_05 tr td {
    width: 300px;
    padding: 20px 18px;
  }
}
#page .sec_page .table_box_wrap .table_box_05 tr td:first-child {
  width: 600px;
  vertical-align: middle;
  padding: 22px 20px;
  text-align: left;
  background: rgba(242, 240, 232, 0.8);
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_05 tr td:first-child {
    width: 300px;
    padding: 20px 18px;
  }
}
#page .sec_page .table_box_wrap .table_box_05 tr td:last-child {
  border-right: none;
}
#page .sec_page .table_box_wrap .table_box_06 {
  border-top: 1px solid #8EC320;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_06 {
    width: 600px;
  }
}
#page .sec_page .table_box_wrap .table_box_06 tr td {
  width: calc(100% - 200px);
  border-right: 1px solid #8EC320;
  border-bottom: 1px solid #8EC320;
  padding: 22px 20px;
  text-align: center;
  background: #fff;
  vertical-align: middle;
}
#page .sec_page .table_box_wrap .table_box_06 tr td:first-child {
  width: 600px;
  vertical-align: middle;
  padding: 22px 20px;
  text-align: left;
  background: rgba(223, 237, 248, 0.9);
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_06 tr td:first-child {
    width: 50%;
    padding: 20px 18px;
    border-right: none;
  }
}
#page .sec_page .table_box_wrap .table_box_06 tr td:last-child {
  border-right: none;
}
#page .sec_page .table_box_wrap .table_box_07 {
  border-top: 1px solid #8EC320;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_07 {
    width: 700px;
  }
}
#page .sec_page .table_box_wrap .table_box_07 tr td {
  width: calc(100% - 200px);
  border-right: 1px solid #8EC320;
  border-bottom: 1px solid #8EC320;
  padding: 15px 0 18px 30px;
  text-align: left;
  background: #fff;
}
#page .sec_page .table_box_wrap .table_box_07 tr td:first-child {
  width: 200px;
  vertical-align: middle;
  padding: 15px 0 20px 30px;
  text-align: left;
  background: rgba(223, 237, 248, 0.9);
}
#page .sec_page .table_box_wrap .table_box_07 tr td:last-child {
  border-right: none;
}
#page .sec_page .table_box_wrap .table_box_08 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_08 {
    width: 600px;
  }
}
#page .sec_page .table_box_wrap .table_box_08 tr th {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid #8EC320;
  vertical-align: middle;
  width: 200px;
  color: #8EC320;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_08 tr th {
    padding: 20px 18px;
    width: 200px;
  }
}
#page .sec_page .table_box_wrap .table_box_08 tr td {
  border-bottom: 1px solid #373737;
  padding: 25px 20px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_box_wrap .table_box_08 tr td {
    padding: 20px 18px;
  }
}
#page .sec_page .table_box_wrap .table_box_08 tr:first-child th {
  border-top: 1px solid #8EC320;
}
#page .sec_page .table_box_wrap .table_box_08 tr:first-child td {
  border-top: 1px solid #373737;
}
#page .sec_page .table_cap_txt_wrap {
  padding: 10px 0 0;
}
#page .sec_page .table_cap_txt_wrap p {
  font-size: 1.5rem;
  padding: 0;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #page .sec_page .table_cap_txt_wrap p {
    font-size: 1.4rem;
  }
}
#page .sec_page .qa_box_wrap {
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box_wrap {
    margin: 8% 0 0;
  }
}
#page .sec_page .qa_box {
  margin: 0 0 20px;
  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.05));
  border-radius: 5px;
  background: #FAF9F6;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box {
    margin: 0 0 4%;
  }
}
#page .sec_page .qa_box:last-child {
  margin: 0;
}
#page .sec_page .qa_box .qa_tit {
  position: relative;
  padding: 25px 25px 0 90px;
  pointer-events: all;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box .qa_tit {
    padding: 4% 10% 4% 60px;
  }
  #page .sec_page .qa_box .qa_tit p {
    line-height: 1.5;
    padding: 0;
  }
}
#page .sec_page .qa_box .qa_tit::before {
  content: "";
  background: url(../images/page/icon_q.svg);
  background-size: cover;
  position: absolute;
  text-align: center;
  left: 30px;
  line-height: 1;
  width: 25px;
  height: 28px;
  margin: 3px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box .qa_tit::before {
    left: 15px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
  }
}
#page .sec_page .qa_box .qa_tit .close {
  position: relative;
  padding: 0 2rem 25px 0;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-family: YakuHanJP, "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box .qa_tit .close {
    font-size: 1.6rem;
    padding: 0 2rem 0 0;
  }
}
#page .sec_page .qa_box .qa_tit .close::before {
  position: absolute;
  content: "";
  top: 30%;
  right: 0;
  background: #fff;
  border-radius: 1px;
  width: 30px;
  height: 1px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box .qa_tit .close::before {
    top: 50%;
    right: -15px;
    width: 20px;
  }
}
#page .sec_page .qa_box .qa_tit .close::after {
  position: absolute;
  content: "";
  top: 30%;
  right: 0;
  background: #fff;
  border-radius: 1px;
  width: 30px;
  height: 1px;
  transform: rotate(90deg);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box .qa_tit .close::after {
    top: 50%;
    right: -15px;
    width: 20px;
  }
}
#page .sec_page .qa_box .qa_tit .close.open::after {
  transform: rotate(0);
}
#page .sec_page .qa_box .qa_txt {
  display: none;
  position: relative;
  padding: 30px;
  background: #FAF9F6;
  border-radius: 0 0 5px 5px;
  border-top: 1px solid #373737;
}
@media screen and (max-width: 768px) {
  #page .sec_page .qa_box .qa_txt {
    padding: 6%;
  }
}
#page .sec_page .qa_box .qa_txt .more_btn_wrap {
  text-align: center;
}
#page .sec_page .qa_box .qa_txt .page_txt01 {
  line-height: 2;
  padding: 1em 0 0;
}
#page .sec_page .qa_box .qa_txt .page_txt01:first-child {
  padding: 0;
}
#page .sec_page .qa_box .qa_txt .page_list_box {
  padding: 1em 0 0;
}
#page .sec_page .qa_box .qa_txt .page_list_box:first-child {
  padding: 0;
}
#page .sec_page .qa_box .qa_txt .page_list_box .page_list_box_1column li {
  margin: 1em 0 0;
}
#page .sec_page .qa_box .qa_txt .page_list_box .page_list_box_1column li:first-child {
  margin: 0;
}
#page .sec_page .qa_box .qa_txt .page_list_box .page_list_box_1column li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8EC320;
  display: inline-block;
  margin: 0 15px 0 0;
}
#page .sec_page .qa_box .qa_txt .bg_box_wrap_01 {
  margin: 0;
}
#page .sec_page .qa_box .qa_txt .bg_box_wrap_01 .bg_box_01 {
  background: #F2F0E8;
  border-radius: 5px;
}
#page .sec_page .qa_box .qa_txt .bg_box_wrap_01 .page_h4 {
  padding: 0 0 0 30px;
  font-size: 1.7rem;
  line-height: 1;
  margin: 0 0 20px;
  position: relative;
  background: none;
}
#page .sec_page .qa_box .qa_txt .bg_box_wrap_01 .page_h4::before {
  content: "";
  background: url(../images/common/hikari.svg) no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
#page .sec_page .qa_box .qa_txt .bg_box_wrap_01 + .bg_box_wrap_01 {
  margin: 20px 0 0;
}
#page .sec_page .map_box {
  margin: 60px auto 0;
}
#page .sec_page .map_box iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .map_box iframe {
    height: 250px;
  }
}
#page .sec_page .cap_box {
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec_page .cap_box {
    margin: 5% 0 0;
  }
}
#page .sec_page .cap_box p {
  padding: 0 0 10px 1em;
  line-height: 1.5;
  text-indent: -1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #page .sec_page .cap_box p {
    font-size: 1.4rem;
  }
}
#page .sec_page .h4_tit_wrap {
  position: relative;
}
#page .sec_page .h4_tit_wrap::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #8EC320;
  position: absolute;
  left: 0;
  bottom: 0;
}
#page .sec_page .h4_tit_wrap::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #8EC320;
  position: absolute;
  left: 0;
  bottom: -5px;
}
#page .sec_page .h4_tit_wrap .h4_tit {
  font-size: 2rem;
  position: relative;
  padding: 0 0 0 23px;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .h4_tit_wrap .h4_tit {
    font-size: 1.7rem;
    padding: 0;
    display: inline-block;
    margin: 0 0 5px;
  }
}
#page .sec_page .h4_tit_wrap .h4_tit::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: #8EC320;
  position: absolute;
  left: 0%;
  bottom: 9px;
}
@media screen and (max-width: 768px) {
  #page .sec_page .h4_tit_wrap .h4_tit::before {
    position: relative;
    left: inherit;
    bottom: inherit;
    display: inline-block;
    margin: 0 10px 0 0;
  }
}
#page .bk_box {
  padding: 30px;
  background: #9F8F53;
}
@media screen and (max-width: 768px) {
  #page .bk_box {
    padding: 20px;
  }
}
#page .flex_01 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #page .flex_01 {
    gap: 10px;
  }
}
#page .flex_01 .page_h6_02 {
  width: 10%;
}
@media screen and (max-width: 768px) {
  #page .flex_01 .page_h6_02 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #page .flex_01 {
    flex-direction: column;
  }
}
#page .link_box_ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 0 15px;
  align-items: inherit;
}
#page .link_box_ul.check_ul li a {
  padding: 0 0 0 50px;
}
#page .link_box_ul.check_ul li a::before {
  content: "";
  background: url(../images/common/icon_check.svg);
  width: 20px;
  height: 20px;
  left: 15px;
}
#page .link_box_ul.check_ul li.no_link {
  padding: 0 0 0 50px;
}
#page .link_box_ul.check_ul li.no_link::before {
  content: "";
  background: url(../images/common/icon_check.svg);
  width: 20px;
  height: 20px;
  left: 15px;
}
#page .link_box_ul.no_ol {
  counter-reset: item;
}
#page .link_box_ul.no_ol li {
  padding: 15px 10px 15px 20px;
  background: #fff;
  border-radius: 5px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul.no_ol li {
    padding: 15px 10px 15px 3em;
    background: #fff;
    border-radius: 5px;
    font-size: 1.4rem;
    text-indent: -1.8em;
  }
}
#page .link_box_ul.no_ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  color: #8EC320;
  padding: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul.no_ol li::before {
    counter-increment: item;
    content: counter(item) ".";
    color: #8EC320;
    padding: 0 10px 0 0;
  }
}
#page .link_box_ul.no_ol li a {
  width: auto;
  display: inline;
  align-items: center;
  padding: 0 0 0;
  background: #fff;
  border-radius: none;
  font-size: inherit;
  height: auto;
  width: auto;
  position: relative;
  transition: 0.3s;
  -webkit-text-decoration-color: #897b70;
  text-decoration-color: #897b70;
  text-decoration-thickness: 1px;
}
#page .link_box_ul.no_ol li a::before {
  content: none;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul.no_ol li a {
    font-size: 1.4rem;
    text-indent: 0;
    display: inline;
  }
}
#page .link_box_ul.colum_01 li {
  width: 100%;
}
#page .link_box_ul.colum_04 li {
  width: calc((100% - 45px) / 4);
}
@media screen and (max-width: 768px) {
  #page .link_box_ul.colum_04 li {
    width: calc((100% - 15px) / 2);
  }
}
#page .link_box_ul.colum_03 li {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 768px) {
  #page .link_box_ul.colum_03 li {
    width: 100%;
  }
}
#page .link_box_ul.colum_02 li {
  width: calc((100% - 15px) / 2);
}
@media screen and (max-width: 768px) {
  #page .link_box_ul.colum_02 li {
    width: 100%;
  }
}
#page .link_box_ul li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul li {
    width: 100%;
  }
}
#page .link_box_ul li.no_link {
  padding: 12px 0 12px 26px;
  position: relative;
  transition: all 0.3s;
  font-size: 1.5rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul li.no_link {
    padding: 11px 10px 11px 26px;
    font-size: 1.4rem;
  }
}
#page .link_box_ul li.no_link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EDF8F3;
  position: absolute;
  left: 10px;
  top: 22px;
}
#page .link_box_ul li.no_link a {
  padding: 0;
  color: #636363;
  border-bottom: none;
}
#page .link_box_ul li.no_link a::before {
  content: none;
}
#page .link_box_ul li a {
  display: block;
  width: 100%;
  padding: 12px 0 12px 26px;
  width: 100%;
  position: relative;
  transition: 0.3s;
  font-size: 1.5rem;
  color: #8EC320;
  text-decoration: underline;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul li a {
    padding: 11px 10px 11px 36px;
    font-size: 1.4rem;
  }
}
#page .link_box_ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EDF8F3;
  position: absolute;
  left: 10px;
  top: 22px;
}
#page .link_box_ul li a .link_box_ul_span_01 {
  text-decoration: underline;
  width: 220px;
}
@media screen and (max-width: 768px) {
  #page .link_box_ul li a .link_box_ul_span_01 {
    width: auto;
    display: block;
    margin: 0 0 3px;
  }
}
#page .link_box_ul li a.no_link {
  text-decoration: none;
  pointer-events: none;
  color: #636363;
  border-bottom: none;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 769px) {
  #page .link_box_ul li a:hover {
    color: #8EC320;
  }
}
#page .movie_box {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: #Fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #page .movie_box {
    padding: 25px;
  }
}
#page .movie_item {
  margin: 30px auto 0;
  width: 560px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  #page .movie_item {
    width: 100%;
  }
}
#page .movie_item iframe {
  width: 100%;
  height: 100%;
}

#page .sec01 .flow_box {
  margin: 50px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box {
    margin: 8% 0 0;
  }
}
#page .sec01 .flow_box .flow_item {
  display: flex;
  margin: 20px 0 0;
  border-left: 2px solid #8EC320;
  filter: drop-shadow(0px 4px 4px rgba(203, 183, 169, 0.4));
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box .flow_item {
    flex-direction: column;
  }
}
#page .sec01 .flow_box .flow_item .flow_item_l {
  width: 180px;
  padding: 30px 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box .flow_item .flow_item_l {
    width: 100%;
    padding: 5% 0 0;
  }
}
#page .sec01 .flow_box .flow_item .flow_item_l p {
  text-align: center;
  line-height: 1;
  color: #8EC320;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box .flow_item .flow_item_l p {
    font-size: 1.8rem;
  }
}
#page .sec01 .flow_box .flow_item .flow_item_l p span {
  display: block;
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 4.8rem;
  color: #8EC320;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box .flow_item .flow_item_l p span {
    font-size: 3.6rem;
  }
}
#page .sec01 .flow_box .flow_item .flow_item_l p .flow_step {
  display: block;
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.4rem;
  color: #8EC320;
  opacity: 1;
  display: inline-block;
  padding: 0 5px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box .flow_item .flow_item_l p .flow_step {
    font-size: 2rem;
  }
}
#page .sec01 .flow_box .flow_item .flow_item_r {
  background: #fff;
  padding: 50px 40px;
  width: calc(100% - 180px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page .sec01 .flow_box .flow_item .flow_item_r {
    padding: 7% 6%;
    width: 100%;
  }
}
#page .sec01 .flow_box .flow_item .flow_item_r::before {
  content: "";
  width: 1px;
  height: 80%;
  background: #d8cdc4;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#page .sec01 .swiper_conts04 {
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 {
    margin: 6% 0 0;
    position: relative;
  }
}
#page .sec01 .swiper_conts04 .swiper04 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0 0 70px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper04 {
    padding: 0;
  }
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide {
  opacity: 0.2;
  width: 510px;
  background: #292525;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 30px 30px 40px;
  right: 270px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper04 .swiper-slide {
    right: 0;
    width: 90%;
    padding: 4%;
  }
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide.swiper-slide-next {
  opacity: 1;
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit {
  margin: 30px 0 0;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  position: relative;
  padding: 0 0 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit {
    font-size: 1.7rem;
    margin: 7% 0 0;
    padding: 0 0 7%;
  }
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit.slide_tit_02 {
  letter-spacing: 0;
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit::before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit::after {
  content: "";
  background: #8EC320;
  height: 1px;
  width: 180px;
  bottom: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit::after {
    width: 30%;
  }
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_tit span {
  width: 32px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.9rem;
  margin: 0 10px 0 0;
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_txt {
  font-size: 1.5rem;
  margin: 15px 0 0;
  letter-spacing: 0.1em;
  height: 190px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_txt {
    font-size: 1.4rem;
    height: auto;
  }
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_txt.slide_txt_02 {
  height: 160px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_txt.slide_txt_02 {
    height: auto;
  }
}
#page .sec01 .swiper_conts04 .swiper04 .swiper-slide .slide_txt.slide_txt_03 {
  letter-spacing: 0;
}
#page .sec01 .swiper_conts04 .swiper-pagination-bullet {
  opacity: 1;
  background: #2b2b2b;
}
#page .sec01 .swiper_conts04 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #D9D9D9;
}
#page .sec01 .swiper_conts04 .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
#page .sec01 .swiper_conts04 .swiper-pagination-fraction,
#page .sec01 .swiper_conts04 .swiper-pagination-custom,
#page .sec01 .swiper_conts04 .swiper-horizontal > .swiper-pagination-bullets,
#page .sec01 .swiper_conts04 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#page .sec01 .swiper_conts04 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#page .sec01 .swiper_conts04 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
#page .sec01 .swiper_conts04 .swiper-button_wrap {
  position: relative;
  width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper-button_wrap {
    width: 100%;
    padding: 0 4%;
    position: absolute;
    top: 65px;
  }
}
#page .sec01 .swiper_conts04 .swiper-button-prev,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-next {
  left: -110px;
  right: auto;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper-button-prev,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-next {
    left: 2%;
  }
}
#page .sec01 .swiper_conts04 .swiper-button-next,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-prev {
  left: inherit;
  right: -70px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper-button-next,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-prev {
    right: 2%;
  }
}
#page .sec01 .swiper_conts04 .swiper-button-prev,
#page .sec01 .swiper_conts04 .swiper-button-next {
  position: absolute;
  top: inherit;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: block;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  bottom: 300px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper-button-prev,
#page .sec01 .swiper_conts04 .swiper-button-next {
    bottom: inherit;
  }
}
#page .sec01 .swiper_conts04 .swiper-button-prev:after,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-next:after {
  content: url(../images/common/arrow_wh.svg);
  background: rgba(129, 129, 129, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper-button-prev:after,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-next:after {
    transform: scale(0.7, 0.7) rotate(180deg);
    width: 30px;
    height: 30px;
  }
}
#page .sec01 .swiper_conts04 .swiper-button-next:after,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-prev:after {
  content: url(../images/common/arrow_wh.svg);
  background: rgba(129, 129, 129, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts04 .swiper-button-next:after,
#page .sec01 .swiper_conts04 .swiper-rtl .swiper-button-prev:after {
    transform: scale(0.7, 0.7);
    width: 30px;
    height: 30px;
  }
}
#page .sec01 .swiper_conts04 .swiper-button-prev:after,
#page .sec01 .swiper_conts04 .swiper-button-next:after {
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit !important;
  letter-spacing: inherit;
  font-variant: initial;
  line-height: inherit;
}
#page .sec01 .swiper_conts05_wrap {
  position: relative;
  width: 100%;
  background: #292525;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 {
  margin: 0 auto;
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 {
    margin: 6% 0 0;
    position: relative;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 {
  width: 100%;
  margin: 0 0 0 auto;
  position: relative;
  list-style: none;
  padding: 0 50px 40px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 {
    padding: 0 0;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05::before {
  content: "";
  background: #292525;
  width: 50px;
  height: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05::before {
    content: none;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05::after {
  content: "";
  background: linear-gradient(270deg, #272323 0%, rgba(39, 35, 35, 0) 100%);
  width: 200px;
  height: 100%;
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05::after {
    content: none;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide {
  opacity: 1;
  width: 390px;
  background: #292525;
  border: 2px solid rgba(255, 255, 255, 0.1);
  right: 270px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide {
    width: 100%;
    padding: 4% 4% 10%;
    right: inherit;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide.swiper-slide-next {
  opacity: 1;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide.swiper-slide-next + .swiper-slide {
  opacity: 1;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_item_box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  height: 290px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_item_box {
    padding: 2% 3% 4%;
    height: auto;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_tit {
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 0 0 20px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_tit {
    font-size: 1.7rem;
    margin: 3% 0 0;
    padding: 0 0 5%;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_tit.slide_tit_02 {
  letter-spacing: 0;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_tit span {
  width: 32px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: #8EC320;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.9rem;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_tit span {
    width: 28px;
    height: 26px;
    font-size: 1.7rem;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_txt {
  font-size: 1.5rem;
  margin: 15px 0 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_txt {
    font-size: 1.4rem;
    height: 140px;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_txt.slide_txt_02 {
  height: 160px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_txt.slide_txt_02 {
    height: auto;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper05 .swiper-slide .slide_txt.slide_txt_03 {
  letter-spacing: 0;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination-bullet {
  opacity: 1;
  background: #4b4747;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #D9D9D9;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination-fraction,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination-custom,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-horizontal > .swiper-pagination-bullets,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button_wrap {
    width: 100%;
    padding: 0 4%;
    position: absolute;
    top: 65px;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-next {
  left: -10px;
  right: auto;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-next {
    left: 4%;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-prev {
  left: inherit;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-prev {
    right: 10%;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next {
  position: absolute;
  top: inherit;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: block;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  bottom: 270px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next {
    bottom: inherit;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev:after,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-next:after {
  content: url(../images/common/arrow_wh.svg);
  background: rgba(129, 129, 129, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev:after,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-next:after {
    transform: scale(0.7, 0.7) rotate(180deg);
    width: 50px;
    height: 50px;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next:after,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-prev:after {
  content: url(../images/common/arrow_wh.svg);
  background: rgba(129, 129, 129, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next:after,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-rtl .swiper-button-prev:after {
    transform: scale(0.7, 0.7);
    width: 50px;
    height: 50px;
  }
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev:after,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next:after {
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit !important;
  letter-spacing: inherit;
  font-variant: initial;
  line-height: inherit;
}
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-prev.swiper-button-disabled,
#page .sec01 .swiper_conts05_wrap .swiper_conts05 .swiper-button-next.swiper-button-disabled {
  opacity: 0.1;
  cursor: auto;
  pointer-events: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 768px) {
  #page.sitemap .breadcrumb {
    padding: 20px 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  #page.contact .breadcrumb {
    padding: 20px 0 20px 20px;
  }
}
#page .sitemap_box {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sitemap_box {
    margin: 0 auto;
  }
}
#page .sitemap_box .list_sitemap {
  width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .sitemap_box .list_sitemap {
    width: 100%;
    padding: 0 4%;
  }
}
#page .sitemap_box .list_sitemap .menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
}
#page .sitemap_box .list_sitemap .menu li {
  margin: 0 0 20px;
  width: 48%;
}
@media screen and (max-width: 768px) {
  #page .sitemap_box .list_sitemap .menu li {
    width: 100%;
  }
}
#page .sitemap_box .list_sitemap .menu li a {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #636363;
  display: inline-block;
  text-decoration: none;
  color: #636363;
}
@media screen and (min-width: 769px) {
  #page .sitemap_box .list_sitemap .menu li a:hover {
    color: #8EC320;
  }
}

#page .sec01 .box_bg,
#page .sec01 .box_border,
#page .sec01 .box_border-stripe {
  margin-top: 60px;
  padding: 6.6rem;
  padding-top: 5.8rem;
}
@media screen and (max-width: 768px) {
  #page .sec01 .box_bg,
#page .sec01 .box_border,
#page .sec01 .box_border-stripe {
    margin-top: 9%;
    padding: 3.2rem;
    padding-top: 2.4rem;
  }
}
#page .sec01 .box_bg .text_box,
#page .sec01 .box_border .text_box,
#page .sec01 .box_border-stripe .text_box {
  margin: 0;
}
#page .sec01 .columns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#page .sec01 .columns.col_2 .column {
  width: calc((100% - 20px) / 2);
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_2 .column {
    width: 100%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_2::after {
  content: "";
  width: calc((100% - 40px) / 3);
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_2::after {
    width: 100%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_3 .column {
  width: calc((100% - 40px) / 3);
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_3 .column {
    width: 100%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_3::after {
  content: "";
  width: calc((100% - 40px) / 3);
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_3::after {
    width: 100%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_4 {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_4 {
    justify-content: space-between;
  }
}
#page .sec01 .columns.col_4 .column {
  width: calc((100% - 60px) / 4);
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_4 .column {
    width: 48%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_4 .column:nth-child(2n) {
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_4 .column:nth-child(2n) {
    width: 48%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_4 .column:nth-child(3n) {
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_4 .column:nth-child(3n) {
    width: 48%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_4 .column:nth-child(4n) {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_4 .column:nth-child(4n) {
    width: 48%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns.col_4 .column:nth-child(4n+1) {
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns.col_4 .column:nth-child(4n+1) {
    width: 48%;
    margin: 4% 0 0 0;
  }
}
#page .sec01 .columns .column {
  width: 100%;
  background: #373737;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .columns .column {
    margin: 4% 0 0 0;
  }
}
#page .sec01 hr {
  margin: 20px 0;
  border: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted #EDF8F3;
}
@media screen and (max-width: 768px) {
  #page .sec01 hr {
    margin: 3% 0;
  }
}
#page .sec01 .title {
  font-size: 2.4rem;
  border-bottom: 2px solid #8EC320;
  padding: 0 0 5px;
  margin: 0 0 5px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .title {
    padding: 0 0 1%;
    margin: 0 0 1%;
  }
}
#page .sec01 .title .step {
  color: #8EC320;
}
#page .sec01 .title .num {
  color: #8EC320;
  font-size: 2.8rem;
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 500;
  margin: 0 0.7em 0 0;
}
#page .sec01 .table_fee {
  border-top: 1px solid #636363;
  border-left: 1px solid #636363;
  width: 100%;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  #page .sec01 .table_fee {
    margin: 10% auto 0;
  }
}
#page .sec01 .table_fee tr th {
  border-bottom: 1px solid #636363;
  border-right: 1px solid #636363;
  padding: 20px;
  background: #9F8F53;
}
#page .sec01 .table_fee tr td {
  border-bottom: 1px solid #636363;
  border-right: 1px solid #636363;
  padding: 20px;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#pixel-viewer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-animation: fadein 0.2s ease-out both;
          animation: fadein 0.2s ease-out both;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

#pixel-viewer.fadeout {
  -webkit-animation: fadeout 0.2s ease-out both;
          animation: fadeout 0.2s ease-out both;
  pointer-events: none;
}

#pixel-viewer.fadeout #pixel-viewer__img {
  -webkit-animation: scaledown 0.2s ease-out both;
          animation: scaledown 0.2s ease-out both;
}

#pixel-viewer::before,
#pixel-viewer::after {
  content: "";
  dispaly: block;
  width: 24px;
  height: 3px;
  background: #eee;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 12px;
  z-index: 12;
}

#pixel-viewer::before {
  transform: rotate(45deg);
}

#pixel-viewer::after {
  transform: rotate(-45deg);
}

#pixel-viewer__img {
  width: auto;
  height: 500px;
  display: block;
  margin: auto;
  -webkit-animation: scaleup 0.2s ease-out both;
          animation: scaleup 0.2s ease-out both;
}
@media screen and (max-width: 768px) {
  #pixel-viewer__img {
    width: 90%;
    height: auto;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes scaleup {
  0% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleup {
  0% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes scaledown {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.97);
  }
}
@keyframes scaledown {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.97);
  }
}
#page .sec01 .access_item_wrap {
  margin: 50px auto 0;
  background: #fff;
  padding: 0 30px 40px;
  box-shadow: 0px 0px 14px rgba(21, 83, 102, 0.12);
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #page .sec01 .access_item_wrap {
    padding: 0 5% 6%;
  }
}
#page .sec01 .access_item_wrap .access_item {
  position: relative;
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
#page .sec01 .access_item_wrap .access_item .tabs {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#page .sec01 .access_item_wrap .access_item .tab_item {
  cursor: pointer;
  width: 50%;
  text-align: center;
  padding: 30px 0;
  display: block;
  float: left;
  text-align: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  color: rgba(58, 176, 227, 0.5);
}
#page .sec01 .access_item_wrap .access_item .tab_item::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #6BD7DE 0%, #42CADD 51.56%, #169BD5 100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
}
#page .sec01 .access_item_wrap .access_item .tab_item::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #C0DEEF;
  z-index: 4;
  opacity: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #page .sec01 .access_item_wrap .access_item .tab_item {
    font-size: 1.3rem;
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  #page .sec01 .access_item_wrap .access_item .tab_item:hover {
    background: linear-gradient(90.62deg, #10B7DC 0%, #008DBA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
  }
}
#page .sec01 .access_item_wrap .access_item input[name=tab_item] {
  display: none;
}
#page .sec01 .access_item_wrap .access_item .tab_content {
  display: none;
  padding: 40px 0 0;
  clear: both;
}
@media screen and (max-width: 768px) {
  #page .sec01 .access_item_wrap .access_item .tab_content {
    padding: 5% 0 0;
  }
}
#page .sec01 .access_item_wrap .access_item .tab_content .tab_content_item h4 {
  padding: 15px 0 15px 15px;
  margin: 20px 0;
  background: rgba(223, 237, 248, 0.9);
  border-radius: 5px;
  font-size: 2rem;
  color: #8EC320;
}
@media screen and (max-width: 768px) {
  #page .sec01 .access_item_wrap .access_item .tab_content .tab_content_item h4 {
    font-size: 1.7rem;
    padding: 5%;
    margin: 4% 0;
  }
}
#page .sec01 .access_item_wrap .access_item .tab_content .tab_content_item .tab_content_item_txt_box p {
  padding: 0 0 0;
}
#page .sec01 .access_item_wrap .access_item .tab_content .tab_content_item .tab_content_item_txt_box p:not(:last-child) {
  padding: 0 0 1em;
}
#page .sec01 .access_item_wrap .access_item .tab_content .tab_content_item + .tab_content_item {
  margin: 2em 0 0;
}
#page .sec01 .access_item_wrap .access_item #tab01:checked ~ #tab01_content,
#page .sec01 .access_item_wrap .access_item #tab02:checked ~ #tab02_content,
#page .sec01 .access_item_wrap .access_item #tab03:checked ~ #tab03_content {
  display: block;
}
#page .sec01 .access_item_wrap .access_item .tabs input:checked + .tab_item {
  background: linear-gradient(90.62deg, #10B7DC 0%, #008DBA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
}
#page .sec01 .access_item_wrap .access_item .tabs input:checked + .tab_item::before {
  opacity: 1;
}
.page-list {
  width: 950px;
  margin: 10px auto 0;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .page-list {
    padding: 20px;
    width: 100%;
  }
}

.ul_arrow li {
  position: relative;
}
.ul_arrow li a {
  display: block;
  position: relative;
  text-decoration: none !important;
  color: #636363 !important;
  position: relative;
  transition: all 0.3s;
  border-radius: 50px;
  background: #EFF9E2;
  padding: 17px 17px 17px 60px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.09rem;
}
@media screen and (max-width: 768px) {
  .ul_arrow li a {
    font-size: 1.5rem;
    padding: 10px 10px 10px 50px;
  }
}
.ul_arrow li a::before {
  content: "";
  background: #8EC320;
  width: 20px;
  height: 10px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translatey(-50%);
}
@media screen and (max-width: 768px) {
  .ul_arrow li a::before {
    width: 16px;
    height: 8px;
    left: 20px;
  }
}
.ul01 {
  margin-bottom: 1em;
}
.ul01 li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  box-sizing: border-box;
  line-height: 1.5;
}
.ul01 li::before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #8EC320;
  border-radius: 50%;
  top: 0.58em;
  left: 0.35em;
}

#other .float-list a {
  display: inline-block;
  width: 100%;
}

.float-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.float-list > li {
  box-sizing: border-box;
}

.float-list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.float-list2 > li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .float-list2 > li {
    width: 100%;
  }
}

.float-list3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .float-list3 {
    gap: 20px;
  }
}
.float-list3 > li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .float-list3 > li {
    width: 100%;
  }
}

.float-list4 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.float-list4 > li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .float-list4 > li {
    width: calc((100% - 20px) / 2);
  }
}

.float-list_free {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .float-list_free {
    gap: 20px;
  }
}
.float-list_free > li {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 768px) {
  .float-list_free > li {
    width: 100%;
  }
}

/* ul02 */
.ul02 {
  margin-bottom: 1em;
}
.ul02 li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.7em;
  box-sizing: border-box;
}
.ul02 li::before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 3px solid #8EC320;
  border-radius: 50%;
  top: 0.38em;
  left: 0.38em;
}

/* ul_check チェックのリスト */
.ul_check,
.ul_arrow {
  margin-bottom: 1em;
}

.ul_check li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 2.2em;
}
.ul_check li::before {
  content: "";
  background: url(../images/common/icon_check.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .ul_check li::before {
    width: 20px;
    height: 20px;
  }
}

/*-- OL ------------*/
ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
ol.ol01 li {
  position: relative;
}
ol.ollist li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: ollist;
}
ol.ollist li:before {
  display: marker;
  content: "(" counter(ollist) ") ";
}
ol.ol_decimal {
  counter-reset: li;
  list-style: none;
  padding-left: 0;
}
ol.ol_decimal > li {
  position: relative;
  padding-left: 2.5em;
}
ol.ol_decimal > li:before {
  content: counter(li) "";
  counter-increment: li;
  position: absolute;
  left: 0;
  width: 1.8em;
  height: 1.8em;
  background: #8EC320;
  border-radius: 50px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}

/*==========================
  	リスト
  ==========================*/
#page .clinic_conts {
  position: relative;
  background: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  gap: 140px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts {
    flex-direction: column;
    padding: 25px;
    width: 100%;
    border-radius: 20px;
    gap: 40px;
  }
}
#page .clinic_conts::before {
  content: "";
  background: #fff;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -60px;
  border-radius: 0px 30px 30px 0px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts::before {
    content: none;
  }
}
#page .clinic_conts::after {
  content: "";
  background: #fff;
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1000px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts::after {
    content: none;
  }
}
#page .clinic_conts .clinic_conts_l {
  width: 460px;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_l {
    width: 100%;
  }
}
#page .clinic_conts .clinic_conts_l dl {
  display: flex;
  flex-wrap: wrap;
  width: 460px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_l dl {
    width: 100%;
  }
}
#page .clinic_conts .clinic_conts_l dl dt {
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  color: #8EC320;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 2.55px;
  border-bottom: 2px solid #8EC320;
}
#page .clinic_conts .clinic_conts_l dl dt:first-child {
  border-top: 2px solid #8EC320;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_l dl dt {
    padding: 15px 0;
    width: 80px;
    font-size: 1.3rem;
    letter-spacing: 1.7px;
  }
}
#page .clinic_conts .clinic_conts_l dl dd {
  padding: 27px 25px;
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 2.55px;
  border-bottom: 2px solid rgba(66, 151, 207, 0.3);
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_l dl dd {
    padding: 15px 10px;
    width: calc(100% - 80px);
    font-size: 1.3rem;
    letter-spacing: 1.7px;
  }
}
#page .clinic_conts .clinic_conts_l dl dd:nth-child(2) {
  border-top: 2px solid rgba(66, 151, 207, 0.3);
}
#page .clinic_conts .line_bnr {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .line_bnr {
    margin: 35px 0 0;
  }
}
#page .clinic_conts .line_bnr a {
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  #page .clinic_conts .line_bnr a:hover {
    opacity: 0.7;
  }
}
#page .clinic_conts .sns_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_box_txt_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_icon_box {
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
  }
}
#page .clinic_conts .sns_box .sns_box_txt {
  font-family: "EB Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 74px;
  letter-spacing: 0.85px;
  position: relative;
  padding: 0 30px 0 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_box_txt {
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: 0.6px;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 25px auto 16px;
    padding: 0 30px 0;
    line-height: 1;
  }
}
#page .clinic_conts .sns_box .sns_box_txt::before {
  content: "";
  background: url(../images/top/arrow_double.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_box_txt::before {
    background: url(../images/common/arrow_double_shita.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
  }
}
#page .clinic_conts .sns_box .sns_box_txt::after {
  content: none;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_box_txt::after {
    content: "";
    background: url(../images/common/arrow_double_shita.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
#page .clinic_conts .sns_box .sns_insta a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(66, 151, 207, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_insta a {
    width: 50px;
    height: 50px;
    box-shadow: 0px 0px 12.90322px 0px rgba(0, 0, 0, 0.05);
  }
}
#page .clinic_conts .sns_box .sns_insta a img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_insta a img {
    width: 24px;
    height: 24px;
  }
}
#page .clinic_conts .sns_box .sns_x a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(66, 151, 207, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_x a {
    width: 50px;
    height: 50px;
    box-shadow: 0px 0px 12.90322px 0px rgba(0, 0, 0, 0.05);
  }
}
#page .clinic_conts .sns_box .sns_x a img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_x a img {
    width: 24px;
    height: 24px;
  }
}
#page .clinic_conts .sns_box .sns_tik {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 74px;
  letter-spacing: 0.8px;
  border: 1px solid rgba(66, 151, 207, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.03);
  width: 190px;
  height: 62px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_tik {
    width: 140px;
    height: 50px;
    font-size: 1.2rem;
    letter-spacing: 0.6px;
    border-radius: 26px;
    box-shadow: 0px 0px 12.90322px 0px rgba(0, 0, 0, 0.05);
  }
}
#page .clinic_conts .sns_box .sns_tik span {
  font-family: "EB Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .sns_box .sns_tik span {
    font-size: 1.2rem;
    letter-spacing: 0.6px;
  }
}
#page .clinic_conts .clinic_conts_r {
  width: 500px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r table {
    width: 100%;
  }
}
#page .clinic_conts .clinic_conts_r table tr.tr_01 {
  background: var(--gradation, linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%));
}
#page .clinic_conts .clinic_conts_r table tr th {
  color: #FFF;
  text-align: center;
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 3.4px;
  height: 50px;
  vertical-align: middle;
  width: 51px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r table tr th {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    height: 40px;
    padding: 0 6px;
    width: auto;
  }
}
#page .clinic_conts .clinic_conts_r table tr th:first-child {
  width: 140px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r table tr th:first-child {
    width: 100px;
  }
}
#page .clinic_conts .clinic_conts_r table tr td {
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
  height: 60px;
  vertical-align: middle;
  width: 51px;
  border-bottom: 1px solid rgba(66, 151, 207, 0.5);
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r table tr td {
    width: auto;
    height: 40px;
    font-size: 1.3rem;
    letter-spacing: 1.3px;
  }
}
#page .clinic_conts .clinic_conts_r table tr td:first-child {
  width: 140px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r table tr td:first-child {
    width: 100px;
  }
}
#page .clinic_conts .clinic_conts_r table tr td .kome_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
#page .clinic_conts .clinic_conts_r .maru {
  color: #8EC320;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r .maru {
    font-size: 1.3rem;
    letter-spacing: 2.6px;
  }
}
#page .clinic_conts .clinic_conts_r .hoshi {
  color: #EDF8F3;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r .hoshi {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
  }
}
#page .clinic_conts .clinic_conts_r .sankaku {
  color: #61CDB8;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r .sankaku {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
  }
}
#page .clinic_conts .clinic_conts_r .kome {
  color: #636363;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 3.6px;
  display: inline-block;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 768px) {
  #page .clinic_conts .clinic_conts_r .kome {
    letter-spacing: 1.3px;
    transform: scale(0.8, 0.8);
  }
}
#page .clinic_conts .clinic_conts_r .table_txt {
  margin: 20px 0 0;
}
#page .clinic_conts .clinic_conts_r .table_txt p {
  line-height: 2;
  letter-spacing: 2.4px;
}
#page .clinic_conts .clinic_conts_r .table_txt .table_txt_01 {
  color: #8EC320;
}
#page .view_180 {
  width: 100%;
  height: 400px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #page .view_180 {
    height: 300px;
    margin: 30px auto 0;
  }
}
#page .view_180 iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  #page .view_180 iframe {
    height: 300px;
  }
}
#page .clinic_bnr {
  width: 600px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #page .clinic_bnr {
    margin: 30px auto 0;
    width: 100%;
  }
}
#page .clinic_bnr a {
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  #page .clinic_bnr a:hover {
    opacity: 0.7;
  }
}
#page .clinic_map {
  width: 100%;
  height: 450px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #page .clinic_map {
    height: 300px;
    margin: 30px auto 0;
  }
}
#page .clinic_map iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  #page .clinic_map iframe {
    height: 300px;
  }
}
#page .clinic_access_box {
  border-radius: 10px;
  background: #FFF;
  padding: 40px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  #page .clinic_access_box {
    padding: 25px;
  }
}
#page .clinic_access_box .clinic_access_img {
  width: 650px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  #page .clinic_access_box .clinic_access_img {
    width: 100%;
    margin: 0 auto 30px;
  }
}
#page .clinic_access_box .clinic_access_flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #page .clinic_access_box .clinic_access_flow {
    flex-direction: column;
    gap: 20px;
  }
}
#page .clinic_access_box .clinic_access_flow .clinic_access_item {
  display: flex;
  justify-content: space-between;
  padding: 0 0 50px;
  border-bottom: 1px dotted #8EC320;
}
@media screen and (max-width: 768px) {
  #page .clinic_access_box .clinic_access_flow .clinic_access_item {
    flex-direction: column;
    padding: 0 0 30px;
    gap: 20px;
  }
}
#page .clinic_access_box .clinic_access_flow .clinic_access_item:last-child {
  padding: 0;
  border-bottom: none;
}
#page .clinic_access_box .clinic_access_flow .clinic_access_item .clinic_access_item_l {
  width: 620px;
}
@media screen and (max-width: 768px) {
  #page .clinic_access_box .clinic_access_flow .clinic_access_item .clinic_access_item_l {
    width: 100%;
  }
}
#page .clinic_access_box .clinic_access_flow .clinic_access_item .clinic_access_item_r {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #page .clinic_access_box .clinic_access_flow .clinic_access_item .clinic_access_item_r {
    width: 100%;
  }
}
#page .clinic_access_box .clinic_access_flow .clinic_access_item .clinic_access_item_r .clinic_access_item_img img {
  border-radius: 30px;
}
#page .page_slide {
  position: relative;
}
#page .page_slide .mySwiper2 {
  height: auto;
  width: 100%;
}
#page .page_slide .mySwiper2 .swiper-wrapper {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  #page .page_slide .mySwiper2 .swiper-wrapper {
    pointer-events: none;
  }
}
#page .page_slide .mySwiper2 .swiper-wrapper .swiper-slide {
  position: relative;
  opacity: 1;
  transition: all 0.3s;
  width: 750px;
  height: 100%;
  text-align: center;
  border-radius: 30px;
}
#page .page_slide .mySwiper2 .swiper-wrapper .swiper-slide img {
  border-radius: 30px;
  border: 8px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  #page .page_slide .mySwiper2 .swiper-wrapper .swiper-slide {
    width: 100%;
    line-height: 1;
  }
}
#page .page_slide .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-prev {
  opacity: 0.5;
}
#page .page_slide .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-next {
  opacity: 0.5;
}
#page .page_slide .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#page .page_slide .mySwiper {
  width: 1050px;
  box-sizing: border-box;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #page .page_slide .mySwiper {
    height: auto;
    width: 100%;
  }
}
#page .page_slide .mySwiper .swiper-wrapper {
  transform: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  #page .page_slide .mySwiper .swiper-wrapper {
    gap: 5px;
    justify-content: flex-start;
  }
}
#page .page_slide .mySwiper .swiper-wrapper .swiper-slide {
  width: calc((100% - 30px) / 7) !important;
  height: auto;
  opacity: 1;
  line-height: 80px;
  border-radius: 10px;
}
#page .page_slide .mySwiper .swiper-wrapper .swiper-slide img {
  transition: all 0.3s;
  border-radius: 10px;
  border: 2px solid transparent;
  box-sizing: border-box;
}
#page .page_slide .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  border-radius: 10px;
  border: 2px solid #8EC320;
}
@media screen and (min-width: 769px) {
  #page .page_slide .mySwiper .swiper-wrapper .swiper-slide:hover img {
    border-radius: 10px;
    border: 2px solid #8EC320;
  }
}
@media screen and (max-width: 768px) {
  #page .page_slide .mySwiper .swiper-wrapper .swiper-slide {
    width: calc((100% - 15px) / 4) !important;
    height: auto;
    line-height: 1;
    margin-right: 0 !important;
  }
}
#page .page_slide .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
#page .page_slide .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: auto;
  pointer-events: all;
}
#page .page_slide .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  cursor: auto;
  pointer-events: all;
}
#page .page_slide .arrow_wrap {
  width: 1050px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .page_slide .arrow_wrap {
    width: 100%;
  }
}
#page .page_slide .swiper-button-prev, #page .page_slide .swiper-button-next {
  position: absolute;
  top: -270px;
  margin: auto;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8EC320;
  background: rgba(52, 56, 58, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #page .page_slide .swiper-button-prev, #page .page_slide .swiper-button-next {
    width: 30px;
    height: 30px;
    top: -120px;
  }
}
#page .page_slide .swiper-button-prev {
  padding: 0 0 0 4px;
  left: -30px;
}
@media screen and (max-width: 768px) {
  #page .page_slide .swiper-button-prev {
    left: -10px;
  }
}
#page .page_slide .swiper-button-prev::after {
  content: "";
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(-135deg);
  width: 12px;
  height: 12px;
  left: 25px;
  border-left: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #page .page_slide .swiper-button-prev::after {
    width: 6px;
    height: 6px;
  }
}
#page .page_slide .swiper-button-next {
  padding: 0 4px 0 0;
  right: -30px;
}
@media screen and (max-width: 768px) {
  #page .page_slide .swiper-button-next {
    right: -10px;
  }
}
#page .page_slide .swiper-button-next::after {
  content: "";
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  right: 25px;
  border-left: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #page .page_slide .swiper-button-next::after {
    width: 6px;
    height: 6px;
  }
}
#page .contents_slide {
  width: 2400px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #page .contents_slide {
    width: 100%;
    padding: 0 4%;
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
  }
}
#page .contents_full_slide {
  height: 800px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page .contents_full_slide {
    height: auto;
    margin: 0 auto 40px;
  }
}
#page .doctor_conts_01_wrap {
  margin: 85px auto 0;
  padding: 50px 0;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap {
    margin: 40px auto 0;
    padding: 25px;
    gap: 20px;
    border-radius: 20px;
  }
}
#page .doctor_conts_01_wrap.doctor_conts_01_wrap_02 {
  padding: 50px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap.doctor_conts_01_wrap_02 {
    padding: 25px;
  }
}
#page .doctor_conts_01_wrap.doctor_conts_01_wrap_02::before {
  content: none;
}
#page .doctor_conts_01_wrap.doctor_conts_01_wrap_02::after {
  content: none;
}
#page .doctor_conts_01_wrap::before {
  content: "";
  background: #fff;
  width: 1000px;
  height: 100%;
  position: absolute;
  left: -1000px;
  top: 0;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap::before {
    content: none;
  }
}
#page .doctor_conts_01_wrap::after {
  content: "";
  background: #fff;
  width: 50px;
  height: 100%;
  position: absolute;
  right: -50px;
  top: 0;
  border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap::after {
    content: none;
  }
}
#page .doctor_conts_01_wrap .doctor_prf_logo {
  width: 394px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_prf_logo {
    width: 260px;
  }
}
#page .doctor_conts_01_wrap .doctor_prf_name_box {
  border-bottom: 3px solid #8EC320;
  padding: 10px 0 10px;
  text-align: right;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_prf_name_box {
    border-bottom: 2px solid #8EC320;
    margin: 0;
  }
}
#page .doctor_conts_01_wrap .doctor_prf_name_box.doctor_prf_name_box_02 {
  text-align: left;
}
#page .doctor_conts_01_wrap .doctor_prf_name_box .doctor_prf_name {
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 4.2px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_prf_name_box .doctor_prf_name {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
}
#page .doctor_conts_01_wrap .doctor_prf_name_box .doctor_prf_name span {
  color: #8EC320;
  text-align: right;
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 3px;
  padding: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_prf_name_box .doctor_prf_name span {
    font-size: 1.7rem;
    letter-spacing: 2px;
    padding: 0 10px 0 0;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01.doctor_conts_02 {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01.doctor_conts_02 .doctor_conts_l {
  width: 630px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01.doctor_conts_02 .doctor_conts_l {
    width: 100%;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01.doctor_conts_02 .doctor_conts_r {
  width: 260px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01.doctor_conts_02 .doctor_conts_r {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01 {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_l {
  width: 630px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_l {
    width: 100%;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_l .doctor_prf_01 ul {
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
}
#page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_l .doctor_prf_01 ul li {
  border-bottom: 1px solid rgba(66, 151, 207, 0.3);
  line-height: 2;
  letter-spacing: 2.4px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_l .doctor_prf_01 ul li {
    padding: 5px;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_r {
  width: 360px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_r {
    width: 80%;
    margin: 0 auto;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_01 .doctor_conts_r .doctor_img img {
  border-radius: 20px;
}
#page .doctor_conts_01_wrap .doctor_prf_tit {
  padding: 4px 10px;
  background: linear-gradient(96deg, #4CA7E2 0%, #53D2AC 90.84%);
  color: #FFF;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 1.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_prf_tit {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_02 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_02 {
    flex-direction: column;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 {
  width: 515px;
  padding: 25px;
  background: #F2F6F8;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 {
    width: 100%;
    padding: 18px;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 ul {
    margin: 10px 0 0;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 ul li {
  line-height: 2;
  letter-spacing: 2.4px;
  position: relative;
  padding: 0 0 0 18px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 ul li {
    letter-spacing: 1.8px;
    padding: 0 0 0 15px;
  }
}
#page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 ul li::before {
  content: "";
  background: #8EC320;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 15px;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_conts_02 .doctor_prf_02 ul li::before {
    top: 12px;
  }
}
#page .doctor_conts_01_wrap .doctor_bnr_box {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page .doctor_conts_01_wrap .doctor_bnr_box {
    width: 70%;
  }
}
#page .doctor_conts_01_wrap .doctor_bnr_box a {
  opacity: 1;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  #page .doctor_conts_01_wrap .doctor_bnr_box a:hover {
    opacity: 0.7;
  }
}
#page .docter_mess_box_02 {
  padding: 30px;
  border-radius: 10px;
  background: #9F8F53;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  #page .docter_mess_box_02 {
    padding: 20px;
  }
}
#page .docter_mess_box_02 .docter_mess {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  #page .docter_mess_box_02 .docter_mess {
    font-size: 1.7rem;
    letter-spacing: 1.7px;
    margin: 0 0 12px;
  }
}
#page .docter_mess_box_02 .docter_mess::before {
  content: none;
}
#page .docter_mess_box_01 {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 60px 0 40px;
}
@media screen and (max-width: 768px) {
  #page .docter_mess_box_01 {
    margin: 40px 0 20px;
  }
}
#page .docter_mess_box_01::before {
  content: "";
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  width: 837px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 20px;
}
@media screen and (max-width: 768px) {
  #page .docter_mess_box_01::before {
    width: 837px;
    left: 170px;
    right: inherit;
    top: 15px;
  }
}
#page .docter_mess_box_01 .docter_mess {
  font-family: "EB Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  background: linear-gradient(96deg, #4CA7E2 0%, #63D2B1 48.73%, #ABE490 90.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page .docter_mess_box_01 .docter_mess {
    font-size: 2.6rem;
    letter-spacing: 2.6px;
  }
}
#page .docter_mess_text_box p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 2.55px;
  padding: 0;
}
#page .docter_mess_text_box p + p {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #page .docter_mess_text_box p {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}
#page .docter_mess_text_box p.danraku {
  padding: 0 0 1.5em;
}
@media screen and (max-width: 768px) {
  #other #contents {
    width: 92%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #other .mainblock .img_tyosei_01 img {
    width: auto;
  }
}
#other .mainblock .entry-block .dateBlock {
  font-size: 1.4rem;
  padding: 0 0 10px;
}
@media screen and (max-width: 768px) {
  #other .mainblock .entry-block .dateBlock {
    font-size: 1.2rem;
    padding: 0 0 8px;
  }
}
@media screen and (max-width: 768px) {
  #other .mainblock .entry-block iframe {
    width: 90% !important;
  }
}
#other .mainblock .entry-block h3 {
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 2rem;
  letter-spacing: 3px;
  border-bottom: 3px solid #8EC320;
  padding: 0 0 15px;
  text-decoration: none;
  margin: 0 0 10px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  #other .mainblock .entry-block h3 {
    font-size: 1.7rem;
    padding: 0 0 10px;
  }
}
#other .mainblock .entry-block h3 a {
  text-decoration: none;
}
#other .mainblock .entry-block .thumbnail_img {
  width: 600px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #other .mainblock .entry-block .thumbnail_img {
    width: 80%;
    margin: 20px auto;
  }
}
#other .mainblock .entry-block .ar_txt {
  display: block;
  margin: 0 0 1.4em;
  line-height: 2.2;
}
#other .mainblock .entry-block .entry {
  display: block;
  margin: 0 0 1.4em;
  line-height: 2.2;
}
#other .mainblock .pager {
  display: flex;
  width: 100%;
  gap: 15px;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  #other .mainblock .pager {
    margin: 40px 0;
  }
}
#other .mainblock .pager .page-numbers {
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 768px) {
  #other .mainblock .pager .page-numbers {
    font-size: 1.5rem;
  }
}
#other .mainblock .pager .page-numbers.current {
  color: #666;
}
#page #other #aside .menu-blog .blogwidget {
  background: #fff;
  padding: 20px;
}
#page #other #aside .menu-blog .blogwidget .widgettitle {
  font-family: YakuHanJP, "Kiwi Maru", serif;
  font-size: 1.7rem;
  letter-spacing: 3px;
  border-bottom: 2px solid #8EC320;
  padding: 0 0 5px;
  margin: 0 0 10px;
  color: #8EC320;
}
@media screen and (max-width: 768px) {
  #page #other #aside .menu-blog .blogwidget .widgettitle {
    font-size: 1.5rem;
    padding: 0 0 10px;
  }
}
#page #other #aside .menu-blog .blogwidget > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#page #other #aside .menu-blog .blogwidget > ul li {
  position: relative;
}
#page #other #aside .menu-blog .blogwidget > ul li::before {
  content: "";
  background: #8EC320;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
#page #other #aside .menu-blog .blogwidget > ul li a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #636363;
  position: relative;
  padding: 0 0 0 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  #page #other #aside .menu-blog .blogwidget > ul li a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #page .search_img {
    width: 160px;
  }
}
/*# sourceMappingURL=page.css.map */