@charset "utf-8";
/*共通CSS*/
:root {
  --black: #464646;
  --red: #c25067;
  --primary: #23416E;
  --primary_sub: #325B9A;
  --primary_pix: #18B7CD;
  --primary_bg01: #F9F6F7;
  --primary_bg02: url("../img/common/bg_img.jpg") center / cover no-repeat;
  --notes: #7C7C7C;
  --line: #DBDBDB;
  --sans: "Noto Sans JP", sans-serif;
  --pictx: "Shippori Mincho", serif;
  --entx: "Cormorant Garamond", serif;
  --transition: all .5s;
  --opacity: .5;
}

/*---contents parts---*/
body {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.8;
  font-family: var(--pictx);
  font-weight: 400;
  font-style: normal;
  color: var(--black);
}
.sans {
  font-family: var(--sans);
  font-weight: 300;
}
.pictx {
  font-family: var(--pictx);
  font-weight: 600;
}
.entx {
  font-family: var(--entx);
  font-weight: 600;
}
main {
  position: relative;
  z-index: 1;
  /* overflow-x: hidden; */
  overflow-x: clip;
}
.contents {
  position: relative;
  min-height: 300px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.con {
  display: block;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.title_con {
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.title_con .main_title {
  font-size: clamp(25px, 4vw, 30px);
}
.main_title + .entx {
  margin-top: 1em;
  font-size:  clamp(16px, 2.5vw, 20px);
  letter-spacing: 1px;
}
.title_con.-main {
  position: relative;
  min-height: 400px;
  background: url(../img/common/bg_img.jpg) no-repeat center; 
  background-size: cover; 
  overflow: hidden;
}
.title_con.-main .text_box {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  line-height: 1.5;
  text-align: center;
}
.title_con.-type02 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.title_con.-type02 .entx {
  margin-top: 0;
  margin-left: 1em;
}
.title_con.-type02.small .main_title {
  font-size: clamp(20px, 2.5vw, 25px);
}
.title_con.-type02.small .entx {
  font-size:  clamp(14px, 2vw, 18px);
}
.nav_jump.con {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 120px;
}
.nav_jump .ul_jump {
  display: flex;
  justify-content: space-around;
  gap: 1.25em;
  flex-wrap: wrap;
  font-family: var(--pictx);
  padding: 30px 0;
  /* background-color: var(--primary_bg01); */
  /* border-top: 1px solid var(--line); */
  border-bottom: 2px solid var(--primary_bg01);
}
.nav_jump .ul_jump > li a {
  display: inline-flex;
  -moz-column-gap: 10px;
  column-gap: .5em;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.nav_jump .ul_jump > li a .text {
  position: relative;
  padding-right: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.nav_jump .ul_jump > li a .text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-1px) rotate(90deg);
  transition: var(--transition);
  border: 5px solid transparent;
  border-left: 8px solid;
}
.nav_jump .ul_jump > li a:hover .text::before {
  transform: translateY(1px) rotate(90deg);
}
.title01,.title02 {
  line-height: 1.6;
}
section + section .title01_wrap {
	border-top: 2px solid var(--primary_bg01);
}
.summary_box {
	margin-top: 50px;
}
.summary_box p {
	margin-top: 50px;
	background-color: var(--primary_bg01);
	padding: 30px;
}
.title01 {
  position: relative;
  margin-bottom: 80px;
  font-family: var(--pictx);
  font-size: clamp(25px, 3.5vw, 30px);
  font-weight: 700;
}
.title02 {
  position: relative;
  font-family: var(--pictx);
  margin-bottom: 50px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
.title01_inner .title02 {
  margin-top: 80px;
}
.title01_inner > .title02:first-child {
  margin-top: 0;
}
.title02::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-49%);
  bottom: 0;
  left: 0;
  display: inline-block;
  width: .5rem;
  height: 80%;
  background-color: var(--primary_sub);
}
.link01 {
  border-bottom: 1px solid;
  font-family: var(--entx),var(--pictx);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  padding: 8px 30px 8px 0;
  min-width: 130px;
}
.link01::before{
  content: "";
  position: absolute;
  top: 50%; 
  right: 0;
  transform: translateY(-50%);
  transition: var(--transition);
  border: 5px solid transparent;
  border-left: 8px solid;
}
.link01.-blank::before {
  display: none;
}
.link01:hover{
  padding: 8px 30px 8px 10px;
}
.link01:hover::before,
.link01.-blank:hover::after{
  right: -10px;
  transition: var(--transition);
}
.link02 {
  position: relative;
  /* border: 1px solid var(--primary); */
  background-color: var(--primary_sub);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px 10px 20px;
  font-weight: 600;
  border-radius: 5px;
}
.link02:hover {
  background-color: var(--primary_pix);
  color: #fff;
}
.link {
  display: inline-block;
  color: var(--primary_pix);
  text-decoration: underline;
  padding: 0 2px;
  line-height: 1.5;
}
.link:hover {
  opacity: var(--opacity);
}
a.-blank::after,
a.-download::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
  transition: var(--transition);
}
a.-blank::after {
  background: url(../img/common/ic_blank_w.svg) no-repeat center;
  background-size: contain;
}
a.-download::after {
  background: url(../img/common/ic_download_w.svg) no-repeat center;
  background-size: contain;
}
.link_box {
margin: 20px 0;
}
.link_box a + a {
margin-top: 10px;
}
.ul01 > li {
  line-height: 1.8;
  padding-left: 1.25em;
  position: relative
}
.ul01 > li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary_sub) 0%, var(--line) 100%);
    left: 0;
    top: 9px;
}
.ul01 > li+li {
  margin-top: .25em;
}
.ul02 > li {
  display: inline-block;
}
.ul02 > li:nth-last-of-type {
  margin-right: 5px;
}
.ul02 > li:not(:last-of-type):before {
  content: "/";
  display: block;
  float: right;
  padding: 0 5px;
}
.ol01 {
  list-style: none;
  counter-reset: number;
}
.ol01 > li {
  position: relative;
  padding-left: 1.5em;
}
.ol01 > li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: .5em;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid;
  border-radius: 50%;
  font-size: .8em;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.ol01 > li+li {
  margin-top: .25em;
}
.ul_notice,
.text_notice {
  position: relative;
  display: inline-block;
  margin-left: 1.5em;
  /* color: var(--notes); */
  font-size: .9em;
  line-height: 1.5;
}
.ul_notice > li {
  position: relative;
}
.ul_notice > li:not(:last-of-type) {
  margin-bottom: .25em;
}
.ul_notice > li::before,
.text_notice::before {
  content: "\0203B";
  position: absolute;
  top: 0;
  left: -1.3em;
}
.ul_link .link01 {
  width: 100%;
}
.text_st01 {
  /* font-family: var(--pictx); */
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 600;
  margin-bottom: 30px;
}
.text_st02 {
  color: var(--primary_sub);
  /* background: linear-gradient(transparent 60%, rgb(249 200 206 / 50%) 0%); */
  font-weight: 600;
  display: inline;
  padding: 0 1px 0;
}
* + .text_st03 {
	margin-top: 2em;
}
.text_st03 {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 1px 10px rgb(35 65 110 / 30%);
  padding: 1em 1em 1em 3.5em;
  border-radius: 5px;
  font-weight: 500;
  font-size: .95em;
  margin-bottom: 2em;
}
.text_st03::before {
  content: "!";
  display: inline-block;
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  background: var(--primary_sub);
  width: 1.5em;
  text-align: center;
  height: 1.5em;
  line-height: 1.4em;
  border: solid 1px white;
  border-radius: 50%;
}
.tx_tel {
  color: var(--primary);
  font-weight: bold;
  font-size: 14px;
}
.tx_tel em {
  font-size: 20px;
}
.table01 th,.table01 td {
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--line);
}
.table01 th {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  background-color: var(--primary_bg01);
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.table01 tbody th {
  width: 30%;
}
.table01 td {
  padding: 20px
}
.table_schedule {
  width: 100%;
  border-top: 1px solid;
}
.table_schedule tr {
  border-bottom: 1px solid;
}
.table_schedule th {
  font-weight: 600;
  background-color: var(--primary_bg02);
  text-align: center;
}
.table_schedule th,
.table_schedule td {
  font-size: 15px;
  line-height: 1.3;
  padding: 1em .5em;
  /* border: 1px solid var(--line); */
  vertical-align: middle;
  text-align: center;
}
.table_schedule tbody th {
  width: 25%;
}
.table_schedule tbody td {
  width: calc(75%/7);
}
.timeschedule_con .dl01 {
  margin-top: 30px;
  margin-bottom: 30px;
}
dl > dt {
  line-height: 1.5;
}
.dl01 {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1em;
  align-items: start;
}
.dl01 > dt {
  justify-self: stretch;
  align-self: start;
  border: 1px solid;
  padding: .25em 1em;
  text-align: center;
  font-weight: bold;
}
.dl01 > dd {
  margin: 0;
  /* padding: .25em 0; */
}
.dl02 {
  margin-top: 30px;
  /* display: grid; */
  /* grid-template-columns: max-content 1fr; */
}
.dl02 > dt {
  display: inline-block;
  position:relative;
  /* width: 100px; */
  padding-right: 1em;
  margin-right: .5em;
  font-weight:bold;
  float: inline-start;
}
.dl02 > dt:after{
  content:"：";
  position:absolute;
  right:-.25em;
}
.dl02 > dd {
  /* width: calc( 100% - ( 100px + 1em ) ); */
}
.dl02 > dd:not(:last-of-type) {
  margin-bottom: 1em;
}
.dl03 {
	margin-top: 30px;
	border-bottom: 1px solid;
}
.dl03 > dt {
  /* margin-top: 30px; */
  margin-bottom: 1em;
  padding: 1em;
  font-weight: 800;
  border-top: 1px solid;
  border-bottom: 1px dashed;
}
.dl03 > dd {
  padding: 0 1em 1em;
  margin-bottom: 1em;
}
.box01,.box02 {
  width: 100%;
  padding: 50px;
}
.box01 {
  border: 1px solid var(--line);
}
.box02 {
  background-color: var(--primary_bg01);
}
.box01 .tt, .box02 .tt {
  font-weight: bold;
  font-size: 1.2em;
  padding-bottom: .5em;
  margin-bottom: .75em;
  border-bottom: 1px solid var(--line);
}
/*アコーディオン*/
.accordion {
  border-bottom: 1px solid var(--line);
}
.accordion_title {
  position: relative;
  margin-bottom: 0;
  display: block;
  /* border-bottom: 1px solid var(--line); */
  padding: 1.5em 2em;
  line-height: normal;
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--pictx);
  opacity: 1;
}
.accordion_title::before{
  content: "Q.";
  width: 2em;
  display: inline-block;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: bold;
  font-family: var(--entx);
  color: var(--primary);
}
.accordion_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--line);
  border-radius: 1px;
}
.accordion_title:hover {
  cursor: pointer;
}
.accordion_box {
  margin-bottom: 1em;
  padding: 1em;
  background-color: var(--primary_bg01);
  background-size: cover;
}
.accordion_box .answer {
  position: relative;
  margin-bottom: .8em;
  display: block;
  padding-left: 2em;
  font-size: 1.1em;
  font-weight: 500;
  opacity: 1;
}
.accordion_box .answer::before{
  content: "A.";
  width: 2em;
  display: inline-block;
  position: absolute;
  left: -2px;
  top: 0;
  text-align: center;
  font-weight: bold;
  color: var(--primary);
}
.accordion_title .toggle_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 2em;
  height: 2em;
}
.accordion_title .toggle_btn:before,
.accordion_title .toggle_btn:after {
  display: block;
  content: '';
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  opacity: 1;
}
.accordion_title .toggle_btn:before {
  width: 2px;
  height: .8em;
}
.accordion_title .toggle_btn:after {
  width: .8em;
  height: 2px;
}
.accordion_title.active .toggle_btn::before,
.accordion_title.active .toggle_btn::after {
  background-color: var(--primary);
}
.accordion_title.active .toggle_btn::before {
  top: 50%;
  transform: translate(-50%, -50%)rotate(90deg);
  -webkit-transform: translate(-50%, -50%)rotate(90deg);
}
.accordion_title.active .toggle_btn::after {
  opacity: 0;
}
/*flow*/
.flow {
  display:flex;
  flex-direction:column;
  gap:20px;
  width:100%;
  background: var(--primary_bg02);
  margin:auto;
  padding: 1em;
}
.flow .step_ttl {
  font-weight:bold;
  font-size: 1.1em;
  color: var(--primary);
}
.flow_step {
  background:#fff;
  padding:25px 30px;
  position:relative;
  /* font-size:15px; */
  letter-spacing:1px;
}
.flow_step::before,
.flow_step::after {
  content:"";
  margin:auto;
  position:absolute;
  left:0;
  right:0;
}
.flow_step::before {
  width:16px;
  height:18px;
  background: var(--primary_sub);
  top:-28px;
  z-index:1;
}
.flow_step::after {
  width:0;
  height:0;
  border:17px solid transparent;
  border-top:17px solid var(--primary_sub);
  top: -11px;
  z-index:2;
}
.flow > .flow_step:first-of-type::before,
.flow > .flow_step:first-of-type::after {
  display:none;
}
.flow_branch {
  display:flex;
  gap:2%;
}
.flow_branch .flow_step {
  width:49%;
}
.flow .step_anchor {
  position: relative;
  padding: 10px 40px 10px 20px;
  margin-top: 15px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary_sub);
  border: 1px solid var(--primary_sub);
  border-radius: 5px;
}
.flow .step_anchor::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-1px) rotate(90deg);
  transition: var(--transition);
  border: 5px solid transparent;
  border-left: 8px solid;
}
.flow .step_anchor:hover::before {
  transform: translateY(1px) rotate(90deg);
}
/*tab*/
.ul_tab {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.ul_tab > li a {
  border: 1px solid var(--primary);
  background-color: #fff;
  color: var(--primary);
  font-size: 15px;
  font-family: var(--pictx);
  font-weight: 500;
  padding: .5em .75em;
  border-radius: 50px;
}
.ul_tab > li a:hover,
.ul_tab > li.active a{
  background-color: var(--primary);
  color: #fff;
}
.ul_tab > li a.off {
  color: var(--notes);
  border: 1px solid var(--notes);
}
.ul_tab > li a.off:hover,
.ul_tab > li.active a.off {
  background-color: var(--line);
}
.tab_area_wrap {
  background-color: var(--primary_bg01);
  border-radius: 30px;
  padding: 50px;
}
.tab_area_wrap .area {
  display: none;
  width: 100%;
}
.tab_area_wrap .area.is-show {
  animation: fade 0.5s ease;
}
.tab_area_wrap .area_tt {
  font-size: 1.1em;
  font-family: var(--pictx);
  font-weight: 800;
  text-align: center;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* modaal */
.modaal-inner-wrapper {
  max-width: 800px;
  width: 100% !important;
  margin: 0 auto;
}
.modaal-container {
  height: 100%;
}
/*news-投稿内容はpost.css-*/
.news_list {
  margin-bottom: 30px;
}
.news_list > li:first-of-type {
  border-top: 1px solid var(--line);
}
.news_list > li {
  padding-top: 20px;
  border-bottom: 1px solid var(--line);
}
.news_list > li a {
  padding-top: 10px;
  padding-bottom: 20px;
  display: block;
  opacity: 1;
}
.news_list > li a:hover {
  opacity: var(--opacity);
}
.news_list > li time {
  display: block;
  font-family: var(--entx);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .8px;
}
.news_list > li .category {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
}
.news_list > li .category::before {
  display: block;
  content: "";
  width: 5px;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  left: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
}
/*色、背景*/
.white {
  color: #fff;
}
.black {
  color: var(--black);
}
.red {
  color: var(--red);
}
.primary {
  color: var(--primary);
}
.primary_sub {
  color: var(--primary_sub); 
}
.primary_pix {
  color: var(--primary_pix); 
}
.notes {
  color: var(--notes);
}
.bgcw {
  background-color: #fff;
}
.bgcb {
  background-color: var(--black);
}
.bgcp {
  background-color: var(--primary);
}
.bgcg_sub {
  background-color: var(--primary_sub);
}
.bgcg_pix {
  background-color: var(--primary_pix);
}
.bgcp_bg01 {
  background-color: var(--primary_bg01);
}
.bgcp_bg02 {
  background: var(--primary_bg02);
}

@media (min-width: 1024px) {
.title01_wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 150px 0;
  position: relative;
}

.title01_wrap .title01 {
  width: 30%;
  height: fit-content;
  position: sticky;
  top: 50px;
  margin: 0;
}

.title01_wrap .title01_inner {
  width: calc(70% - 50px);
}
}
@media (min-width: 769px) {
  .con {
    width: 100%;
    padding-left: 90px;
    padding-right: 90px;
  }
  .table_schedule tbody th span {
    word-break: keep-all;
  }
}
@media screen and (max-width:1024px) {
  .title01_wrap {
    /* margin-bottom: 50px; */
    padding-top: 50px;
    padding-bottom: 80px;
  }
	.title01 {
    margin-bottom: 50px;
}
	.title01_inner .title02 {
	margin-top: 50px;
	margin-bottom: 30px;
	}
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .contents {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .con {
    width: 90%;
  }
  .title_con.-main {
    min-height: 300px;
  }
  .title_con.-main .main_title {
    top: 65%;
  }
  .box01,.box02 {
    padding: 30px;
  }
  .ul_tab {
    gap: .75em .5em;
  }
  .ul_tab > li a {
    font-size: 12px;
    padding: 5px 10px;
  }
  .table01 td {
    padding: .5em;
  }
  .tab_area_wrap {
    padding: 30px 15px;
  }
  .tab_area_wrap .box01 {
    border-radius: 15px;
  }
  .table_schedule th,
  .table_schedule td {
    padding: 1em .25em;
	font-size: 14px;
  }
  .table_schedule tbody th {
    width: 10%;
    min-width: 5em;
    letter-spacing: -1px;
  }
  .modaal-inner-wrapper {
    height: 90vh !important;
  }
  /* 横スクロール*/
  .mob_scroll {
    width: 90%;
    margin: auto;
    overflow-x: scroll;
    position: relative;
    z-index: 10;
  }
}
@media screen and (max-width: 480px) {
.nav_jump .ul_jump {
    justify-content: flex-start;
    padding: 15px 0 30px;
}
  .sec_news .ul_link > li .category {
    line-height: 1;
  }
}

/*---menu-------------------------
----------------------------------*/
.ul_info > li a {
  display:flex;
  align-items: center;
  column-gap: .5em;
  font-size: 18px;
}
.ul_info > li a:hover {
  opacity: var(--opacity);
}
/*header*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* font-family: var(--pictx); */
}
.header_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  position: relative;
  width: 300px;
  padding-top: 10px;
}
.header_logo * {
  width: 100%;
}
.header_logo .tt_category {
  position: absolute;
  bottom: 5px;
  right: 2px;
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 600;
  text-align: end;
}
.header .nav_fix {
  color: #fff;
}
.ul_entrance {
  display: flex;
  gap: 10px;
}
.ul_entrance > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 30%);
  color: #fff;
  width: 130px;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  border: 1px solid rgb(255 255 255 / 0%);
}
.ul_entrance > li a:hover {
  border: 1px solid #fff;
}
.header .nav_fix .pickmenu {
  font-weight: 600;
  font-size: clamp(18px, 2vw, 20px);
  white-space: nowrap;
}
.scroll_prevent {
  position: fixed;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.openbtn {
  background-color: var(--primary);
}
.openbtn.is-dark {
  background-color: unset;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  border-radius: 5px;
  width: 60%;
  max-width: 50px;
  background-color: #fff;
  /* mix-blend-mode: color-burn; */
}
.openbtn span:nth-of-type(1) {
  top: 30px;
}
.openbtn span:nth-of-type(2) {
  top: 40px;
}
.openbtn span:nth-of-type(3) {
  top: 50px;
}
.header.active .openbtn {
  background-color: var(--primary);
  top: 0;
  right: 0;
  z-index: 999;
}
.header.active .openbtn span:nth-of-type(1) {
  top: 34px;
  transform: translateY(6px) translateX(-50%) rotate(-30deg);
}
.header.active .openbtn span:nth-of-type(2) {
  opacity: 0;
}
.header.active .openbtn span:nth-of-type(3){
  top: 40px;
  transform: translateX(-50%) rotate(30deg);
}
.openbtn::after {
  content:"MENU";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #fff;
  font-size: calc( 70px / 4 );
  font-family: var(--entx);
  text-transform: uppercase;
  transition: all .3s;
}
.header.active .openbtn::after {
  content: "CLOSE";
}
.header .g_nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header.active .g_nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header.active .g_nav .nav_con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 50px;
}
.header .g_nav::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(61 76 90 / 85%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  top: 0;
  z-index: -1;
}
body .header .g_nav {
  background: 
    url("../img/front/mv01.jpg") center / cover no-repeat;
}
body.gynecology .header .g_nav {
  background: 
    url("../img/gynecology/mv01.jpg") center / cover no-repeat;
}
body.obstetrics .header .g_nav {
  background: 
    url("../img/obstetrics/mv01.jpg") center / cover no-repeat;
}
body.infertility .header .g_nav {
  background: 
    url("../img/infertility/mv01.jpg") center / cover no-repeat;
}
.header .g_nav * {
  color: #fff;
}
.header .nav_top,
.header .nav_bottom {
  width: 85%;
  max-width: 1400px;
  margin: 50px auto 0;
}
.header .nav_top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(50px, 5vw, 100px);
}
.header .nav_top .dl_g_nav > dt {
  font-size: 23px;
  padding-bottom: 20px;
}
.header .nav_top .dl_g_nav .nav_list:first-of-type {
  border-top: 1px solid;
  padding-top: 20px;
}
.header .nav_top .dl_g_nav .nav_list li {
  font-size: clamp(16px, 2vw, 18px);
}
.header .nav_top .dl_g_nav .nav_list li:not(:last-of-type) {
  margin-bottom: .5em;
}
.header .nav_top .dl_g_nav .nav_list li a {
  position: relative;
}
.header .nav_top .dl_g_nav .nav_list li a::before {
  position: absolute;
  content: '';
  width: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
  transition: .4s;
}
.header .nav_top .dl_g_nav .nav_list li a:hover::before {
  width: 100%;
}
.header .nav_top .dl_g_nav .nav_list.-half {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 30px;
}
.header .nav_top .dl_g_nav .nav_list.-half li {
  min-width: max-content;
  flex: 1 0 calc((100% / 2) - 25px);
}
.header .nav_top .dl_g_nav dd .tt {
	margin-top: 1em;
	opacity: .5;
	letter-spacing: 1.5px;
}
.header .nav_top .dl_g_nav .ul_info {
  margin-top: 30px;
}
.header .nav_bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.header .contact_box .address em {
  font-size: 18px;
  margin-bottom: .5em;
  display: block;
}
.header .ul_info > li+li {
  margin-top: 1em;
}
/*footer*/
.footer {
  background-color: var(--primary);
  color: #fff;
  padding-bottom: 50px;
}
.footer_con {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  /* border-bottom: 5px solid rgb(255 255 255 / 10%); */
  /* margin-bottom: 30px; */
}
.footer_con .ul_link .link01 {
  padding-top: 1em;
  padding-bottom: 1em;
}
.footer .ul_info {
  display: flex;
  justify-content: center;
  /* align-content: center; */
  gap: 30px;
  margin-bottom: 30px;
}
.copyright {
  font-size: clamp(10px, 1.5vw, 14px);
}

@media (min-width: 1024px) {
}
@media screen and (max-width:1024px) {
  .ul_entrance > li a {
    width: 70px;
    aspect-ratio: 1/1;
  }
  .footer_con {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer_con > :last-child {
    grid-column: 1 / -1;
  }
}
@media (min-width: 769px) {
  .header_con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px 30px 30px;
  }
  .header .nav_fix .pickmenu {
    position: fixed;
    left: -2px;
    top: 50vh;
    transform: translateY(-50%);
    text-align: center;
    border-radius: 0 10px 10px 0;
    border: 2px solid rgb(255 255 255 / 10%);
    background-color: var(--primary);
    letter-spacing: .2em;
    padding: 50px 20px;
    writing-mode: vertical-rl;
  }
  .header .nav_fix .pickmenu:hover {
    background-color: var(--primary_pix);
    transform: translateY(-50%)scale(1.05);
  }
  .openbtn{
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 50px;
  }
  .header .g_nav .header_logo {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .header_con {
    padding: 10px 15px;
    align-items: flex-start;
  }
  .header_logo {
    width: 240px;
    max-width: 100%;
  }
  .ul_entrance {
    width: 70px;
    flex-wrap: wrap;
  }
  .header .nav_fix {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 500;
    width: 100%;
    height: 70px;
    background-color: var(--primary);
    border-top: 2px solid rgb(255 255 255 / 10%);
    display: flex;
    justify-content: end;
  }
  .header .nav_fix .pickmenu {
    width: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .openbtn{
    padding: 35px;
    border-left: 1px solid #fff;
  }
  .openbtn span:nth-of-type(1) {
    top: 25%;
  }
  .openbtn span:nth-of-type(2) {
    top: 37.5%;
  }
  .openbtn span:nth-of-type(3) {
    top: 50%;
  }
  .header.active .openbtn span:nth-of-type(1) {
    top: 29.5%;
  }
  .header.active .openbtn span:nth-of-type(3){
    top: 38%;
  }
  .openbtn::after {
    bottom: 15%;
    font-size: 15px;
  }
  .header .g_nav .header_logo {
    margin-left: 15px;
  }
  .header .nav_bottom {
    padding-bottom: 50px;
  }
  .footer_con {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .copyright {
    width: 100%;
  }
  .footer .copyright {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .dl01 > dd.full {
    grid-column: 1 / -1;
  }

}
/*---.nav_main menu end---*/