@charset "utf-8";
#mv {
  width: 1200px;
  margin: 0 auto;
  padding: 50px;  
	background: url("../images/common/contents_mv.jpg") 0 85% no-repeat;
  background-size: cover;
  border-radius: 10px;
}
#mv h2 {
/*  font-size: clamp(2.8rem, 3vw + 0.3rem, 4.5rem);*/
  font-size: 3.6rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: #000;
}
#mv p {
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  color: var(--base-color);
}
#breadcrumbs {
  width: 1200px;
  margin: 15px auto 0;
}
#breadcrumbs ul {
  display: flex;
}
#breadcrumbs ul > li {
  margin-right: 12px;
  padding-left: 20px;
  font-size: 1.3rem;
  position: relative;
}
#breadcrumbs ul > li::before {
  content: "＞";
  font-size: 1rem;
  font-weight: 700;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#breadcrumbs ul > li:nth-child(1) {
  padding-left: 0;
}
#breadcrumbs ul > li:nth-child(1)::before {
  display: none;
}
#breadcrumbs ul > li a {
  color: #000;
}
#contents {
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0 100px;
}
@media screen and (max-width:768px) {
  #mv {
    width: 100%;
    padding: 30px 20px;
    border-radius: 0;
  }
  #mv h2 {
  /*  font-size: clamp(2.8rem, 3vw + 0.3rem, 4.5rem);*/
    font-size: 2.5rem;
  }
  #mv p {
    font-size: 1.8rem;
  }
  #breadcrumbs {
    width: auto;
    padding: 0 20px;
  }
  #breadcrumbs > li {
    font-size: 1.2rem;
  }
  #contents {
    width: auto;
    padding: 30px 20px;
  }
}

/***** ページリンク *****/
#page_link {
  margin-bottom: 50px;
  display: flex;
}
#page_link li {
  width: 23.5%;
  margin-right: 2%;
}
#page_link li:last-child {
  margin-right: 0;
}
#page_link > li a {  
  padding: 15px 20px;
	font-weight: 700;
  font-family: var(--ttl-font);
	text-decoration: none;
  letter-spacing: 0.1em;
	color: var(--base-color);
	transition: all 0.4s;
	border-radius: 10px;
  background: var(--sub-color1);
  border: var(--base-color) 2px solid;
  display: block;
  position: relative;
}
#page_link > li a:hover {
	color: var(--base-color);
	background-color: #fff;
}
#page_link > li.focus a {
  color: var(--sub-color1);
  background: var(--base-color);
}
#page_link > li.focus a::before {
	background: #fff;
}
#page_link > li.focus a::after {
	border-top: 1px solid var(--base-color);
	border-right: 1px solid var(--base-color);
}
#page_link > li a::before {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--base-color);
}
#page_link > li a::after {
	width: 4px;
	height: 4px;
	right: 21px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#page_link > li.focus a:hover {
  color: var(--base-color);
  background: #fff;
}
#page_link > li.focus a:hover::before {
	background: var(--base-color);
}
#page_link > li.focus a:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
@media screen and (max-width:768px) {
  #page_link {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  #page_link li {
    width: 49%;
    margin-bottom: 2%;
    margin-right: 2%;
  }
  #page_link li:nth-child(2n) {
    margin-right: 0;
  }
  #page_link > li a {
    padding: 10px;
    font-size: 1.6rem;
  }
  #page_link > li a::before {
    width: 20px;
    height: 20px;
  }
  #page_link > li a::after {
    width: 4px;
    height: 4px;
    right: 19px;
  }
}

/***** under *****/
#under {
  margin: 100px 0 200px 100px;
}
@media screen and (max-width:768px) {
  #under {
    margin: 50px 0 100px;
    text-align: center;
  }
}

/***** 見出し *****/
#contents .ttl:first-child {
  margin-top: 0;
}
#page_link + .ttl {
  margin-top: 0;
}
.ttl {
  margin: 70px 0 35px;
  font-size: 2.8rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: var(--base-color);
  position: relative;
}
.ttl::after {
  content: "";
  width: 200px;
  height: 9px;
  margin-left: 20px;
  background: url("../images/common/wave.svg") 0 30% no-repeat;
  display: inline-block;
}
.sub_ttl {
  margin: 30px 0 20px;
  font-size: 2.3rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  color: var(--base-color);
}
.caption {
  margin: 25px 0 15px;
  padding-left: 12px;
  font-size: 2.1rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  border-left: var(--base-color) 4px solid;
}
@media screen and (max-width:768px) {
  .ttl {
    margin: 30px 0 20px;
    font-size: 2.1rem;
    letter-spacing: 0;
  }
  .ttl::after {
    content: "";
    width: 50px;
    height: 9px;
    margin-left: 10px;
    background: url("../images/common/wave.svg") 0 30% no-repeat;
    display: inline-block;
  }
  .sub_ttl {
    margin: 20px 0 15px;
    font-size: 1.9rem;
    font-weight: 700;
  }
}

/***** box *****/
.box {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
}
.box_gl_bg {
  background: var(--sub-color1);
}
.tel {
  margin-top: 10px;
}
.tel p {  
  padding-left: 47px;
  font-size: 3.2rem;
  font-weight: 500;
  background: url("../images/common/footer_tel_icon.svg") 0 50% no-repeat;
  background-size: 35px;
}
@media screen and (max-width:768px) {
  .box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
  }
  .tel {
    padding: 15px;
    background: var(--sub-color1);
    border-radius: 10px;
  }
  .tel p {
    padding-left: 0;
    font-size: 2.6rem;
    font-weight: 500;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tel p::before {
    content: "";
    width: 35px;
    height: 35px;
    margin-right: 15px;
    display: block;
    background: url("../images/common/footer_tel_icon.svg") 0 0 no-repeat;
    background-size: 35px;
  }
}

/***** figure *****/
.figure {
  margin-top: 20px;
  margin-bottom: 20px;
}
.figure img {
  width: 100%;
}
.figure figcaption {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.figure figcaption:first-child {
  margin-top: 0;
}
.figure figcaption:last-child {
  margin-bottom: 0;
}
.fig_mid {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.flex_box {
  display: flex;
  justify-content: space-between;
}
.flex_box > div {
  flex: 1;
}
.flex_box > figure {
  width: 40%;
  margin-left: 5%;
  order: 2;
  border-radius: 10px;
}
.flex_box > figure img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width:768px) {
  .fig_mid {
    width: 100%;
  }  
  .flex_box {
    display: block;
  }
  .flex_box > figure {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .flex_box > figure img {
    width: 100%;
    border-radius: 10px;
  }
}

/***** table *****/
@media screen and (max-width:768px) {
}

/***** センターについて *****/
#introduction_box {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
}
#introduction_box > div {
  flex: 1;
}
#introduction_box > div > h3 {
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  line-height: 2;
  letter-spacing: 0.1em;
}
#introduction_box > div > p {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 1.8;
}
#introduction_box > figure {
  width: 450px;
  height: 480px;
  margin-left: 80px;
  border-radius: 10px;
  background: url("../images/contents/about/introduction_img.jpg") 50% 0 no-repeat;
  background-size: cover;
}
#role_card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#role_card > div {
  width: 31%;
  margin-bottom: 3.5%;
  padding: 40px;
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
#role_card > div > p {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--ttl-font);
}
@media screen and (max-width:768px) {
  #introduction_box {
    display: block;
  }
  #introduction_box > div {
    flex: 1;
  }
  #introduction_box > div > h3 {
    margin-bottom: 30px;
    font-size: 2.1rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
  #introduction_box > div > p {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  #introduction_box > figure {
    width: 100%;
    height: 300px;
    margin-left: 0;
    margin-top: 20px;
  }
  #role_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #role_card > div {
    width: 48%;
    margin-bottom: 4%;
    padding: 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
  }
  #role_card > div > figure {
    width: 70%;
    margin: 0 auto;
  }
  #role_card > div > figure > img {
    width: 100%;
  }
  #role_card > div > p {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  #role_card > div > p br {
    display: none;
  }
}

/***** 相談できる内容 *****/
#content_card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#content_card > div {
  width: 48%;
  margin-bottom: 4%;
  padding: 40px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
#content_card > div > h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--ttl-font);
}
@media screen and (max-width:768px) {
  #content_card {
    display: block;
  }
  #content_card > div {
    width: 100%;
    margin-bottom: 4%;
    padding: 20px;
  }
  #content_card > div > h4 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

/***** 相談の流れ *****/
#flow_card > div {
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: var(--box-shadow);
}
#flow_card > div > dl {
  width: 230px;
  margin-right: 50px;
  border-right: var(--base-color) 1px solid;
}
#flow_card > div > dl dt {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: var(--base-color);
}
#flow_card > div > dl dd {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
}
#flow_card > div > div {
  flex: 1;
}
#flow_card > div > div > p {
  font-size: 1.8rem;
}
.flow_arrow {
  margin: 20px auto;
  text-align: center;
}
.flow_btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.flow_btn.flow_btn_start {
  align-items: flex-start;
}
.flow_btn > li {
  width: 35%;
  margin-right: 20px;
}
.flow_btn > li a,
.flow_btn > li > span {
  padding: 10px;
  font-size: 1.8rem;
}
.flow_btn > li a::before {
	width: 24px;
	height: 24px;
}
.flow_btn > li a::after {
	width: 4px;
	height: 4px;
	right: 21px;
}
@media screen and (max-width:768px){
  #flow_card > div {
    padding: 20px;
    display: block;
  }
  #flow_card > div > dl {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border-right: none;
  }
  #flow_card > div > dl dt {
    font-size: 2rem;
  }
  #flow_card > div > dl dd {
    font-size: 2rem;
  }
  #flow_card > div > div > p {
    font-size: 1.6rem;
  }
  .flow_arrow {
    margin: 15px auto;
  }
  .flow_btn {
    margin-top: 15px;
    display: block;
  }
  .flow_btn > li {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
  .flow_btn > li a,
  .flow_btn > li > span {
    padding: 10px;
    font-size: 1.6rem;
  }
  .flow_btn > li a::before {
    width: 24px;
    height: 24px;
  }
  .flow_btn > li a::after {
    width: 4px;
    height: 4px;
    right: 21px;
  }  
}

/***** イベント *****/
.event_tb {
  width: 100%;
  margin-top: 15px;
}
.event_tb th {
  width: 25%;
  padding: 20px;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: left;
  border: #ddd 1px solid;
  background: var(--sub-color1);
}
.event_tb td {
  padding: 20px;
  border: #ddd 1px solid;
}
.event_thum_card {
  display: flex;
  flex-wrap: wrap;
}
.event_thum_card > div {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 30px;  
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.event_thum_card > div:nth-child(2n) {
  margin-right: 0;
}
.event_thum_card > div > h4 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: var(--base-color);
}
.event_thum_card > div > dl {
  margin-top: 10px;
  display: flex;
}
.event_thum_card > div > dl dt {
  width: 4em;
  margin-right: 15px;
  padding: 3px 0;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
  line-height: 1.5;
  color: #fff;
  background: var(--base-color);
  border-radius: 5px;
}
.event_thum_card > div > dl dd {
  font-size: 1.6rem;
}
.event_thum_btn {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.event_thum_btn a {
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background: var(--base-color);
  border-radius: 5px;
  transition: 0.5s;
  border: var(--base-color) 2px solid;
}
.event_thum_btn a:hover {
  color: var(--base-color);
  background: #fff;
}
@media screen and (max-width:768px){
  .event_tb th {
    width: 25%;
    padding: 5px;
  }
  .event_tb td {
    padding: 5px;
  }
  .event_thum_card {
    display: block;
  }
  .event_thum_card > div {
    width: 100%;
    margin-right: 0%;
    padding: 15px;  
  }
  .event_thum_card > div > h4 {
    font-size: 1.8rem;
  }
  .event_thum_card > div > dl {
    margin-top: 10px;
    align-items: flex-start;
  }
  .event_thum_card > div > dl dt {
    margin-right: 10px;
  }
  .event_thum_btn > div > dl dd {
    font-size: 1.6rem;
  }
  .event_thum_btn {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
  }
  .event_thum_btn a {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/***** 情報 *****/
.information_link {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #ddd 1px solid;
}
.information_link dt {
  font-weight: 700;
}
.information_link dd {
  margin-left: 30px;
}
.information_link dd a {
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background: var(--base-color);
  border-radius: 5px;
  transition: 0.5s;
  border: var(--base-color) 2px solid;
}
.information_link dd a:hover {
  color: var(--base-color);
  background: #fff;
}
@media screen and (max-width:768px){
  .information_link {
    display: block;
  }
  .information_link dd {
    margin-left: 0;
    margin-top: 10px;
  }
}

/***** faq *****/
.faq_box {
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.faq_box dl {
  display: flex;
  align-items: center;
}
.faq_box dl dt {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  font-weight: 700;
  color: #fff;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_box dl dd {
  flex: 1;
}
.faq_box dl:nth-child(1) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: #333 1px dotted;
}
.faq_box dl:nth-child(1) dt {
  background: var(--base-color);
}
.faq_box dl:nth-child(1) dd {
  font-family: var(--ttl-font);
  font-weight: 700;
}
.faq_box dl:nth-child(2) dt {
  background: var(--sub-color2);
}
@media screen and (max-width:768px){
  .faq_box {
    margin-bottom: 25px;
    padding: 20px;
  }
  .faq_box dl {
    align-items: flex-start;
  }
  .faq_box dl dt {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .faq_box dl dd {
    padding-top: 5px;
  }
  .faq_box dl:nth-child(1) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

/***** アクセス *****/
#access_box {
  display: flex;
  justify-content: space-between;
}
#access_box > div:nth-child(1) {
  width: 50%;
  margin-right: 50px;
}
#access_box > div:nth-child(1) iframe {
  width: 100%;
}
#access_box > div:nth-child(2) {
  flex: 1;
}
#access_box > div:nth-child(2) .sub_ttl {
  margin-top: 0;
}
.access_dl1 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
div .access_dl1:last-child {
  margin-bottom: 0;
}
.access_dl1 dt {
  width: 7em;
  margin-right: 15px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
  line-height: 1;
  color: #fff;
  background: var(--base-color);
  border-radius: 5px;
}
.train_box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  border-bottom: #333 1px dotted;
}
.train_box > p {
  width: 20%;
  margin-right: 50px;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--ttl-font);  
}
.train_box > div {
  flex: 1;
}
.train_box > div > ul li {
  margin-bottom: 10px;
}
.train_box > div > ul li:last-child {
  margin-bottom: 0;
}
.bus_box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  border-bottom: #333 1px dotted;
}
.bus_box > ul {
  width: 40%;
  margin-right: 50px;  
}
.bus_box > ul li {
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  position: relative;
}
.bus_box > ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  background: var(--base-color);
  border-radius: 100px;
  position: absolute;
  top: 0.7em;
  left: 0;
/*  transform: translateY(-50%);*/
}
@media screen and (max-width:768px){
  #access_box {
    display: block;
  }
  #access_box > div:nth-child(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #access_box > div:nth-child(1) iframe {
    height: 70vw;
  }
  .train_box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: block;
  }
  .train_box > p {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .train_box > div > ul li {
    margin-bottom: 0;
  }
  .bus_box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: block;
  }
  .bus_box > ul {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .bus_box > ul li {
    font-size: 1.8rem;
  }
  .bus_box > ul li::before {
    top: 0.8em;
  }
}

/***** form *****/
.form_box {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: #eee 3px solid;  
}
.form_flex > div:nth-child(1) {
  font-weight: 700;
  color: var(--base-color);
}
.form_flex > div:nth-child(1) p,
.form_flex > div:nth-child(1) span {
  font-weight: 400;
  color: #333;
}
.form_flex {
  margin-bottom: 15px;
  display: flex;
}
.form-parts .form_flex:last-child,
.form-parts.form_flex {
  margin-bottom: 0;
}
.form_flex > div:nth-of-type(1) {
  width: 27%;
  margin-right: 5%;
  padding-top: 10px;
}
.form_flex > div:nth-of-type(2) {
  flex: 1;
}
.form_flex > div:nth-of-type(2) > div {
  margin-bottom: 15px;
}
.form_flex > div:nth-of-type(2) > div:last-child {
  margin-bottom: 0;
}
.form_flex > div > .form-parts > div {
  margin-bottom: 10px;
  font-weight: 700;
}
input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: 0.3s;
}
/* フォーカス時 */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--base-color)!important;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}
select {
  padding: 10px;
  border-radius: 6px;
  font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
  border: #ddd 1px solid;
}
option {
  font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  border: #ddd 1px solid;
}
textarea {
  width: calc(100% - 20px);
  height: 200px;
}
.datepicker {
  padding-right: 35px;
  background: url("../images/form/calendar_icon.svg") no-repeat right 10px center;
  background-size: 16px;
  cursor: pointer;
}
.input_s {
  width: 40%;
}
.input_full {
  width: calc(100% - 20px);
}
.form_list {
  display: flex;
  flex-wrap: wrap;
}
.form_list li {
  margin-right: 15px;
  font-weight: 400;
}
.line_bottom {
  padding-bottom: 10px;
  border-bottom: #333 1px dotted;
}
.submit {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
  font-size: 1.8rem;
	font-weight: 700;
  font-family: var(--ttl-font);
	text-decoration: none;
  letter-spacing: 0.1em;
	color: #fff;
	transition: all 0.4s;
	border-radius: 10px;
  background: var(--base-color);
  border: var(--base-color) 2px solid;
  display: block;
  position: relative;
  cursor: pointer;
}
#confirmArea .submit {
  width: 48%;
  display: inline-block;
}
.parts-error-message,
.error-message {
  font-weight: 700;
  color: #cc0000;
}
@media screen and (max-width:768px){
  .form_box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: #eee 2px solid;  
  }
  .form_flex {
    margin-bottom: 15px;
    display: block;
  }
  .form_flex > div:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding-top: 0;
  }
  .submit {
    width: 48%;
    padding: 10px 0;
  }
  .datepicker {
    width: calc(100% - 20px);
  }
}

/***** カレンダー *****/
/*カレンダー全体*/
.flatpickr-calendar {
  background: var(--sub-color1)!important;
  color: #fff!important;
  border-radius: 10px!important;
  border: none!important;
  box-shadow: var(--box-shadow)!important;
}
/*日付セル*/
.flatpickr-day {
  font-size: 1.8rem!important;
  font-weight: 500!important;
  font-family: var(--ttl-font)!important;
  border-radius: 5px!important;
  border: none!important;
}
.flatpickr-day:hover {
  background: var(--base-color)!important;
  color: #fff!important;
  border: none!important;
}
/*選択された日*/
.flatpickr-day.selected {
  background: var(--sub-color4)!important;
  color: #fff!important;
  border: none!important;
}
/*今日の日*/
.flatpickr-day.today {
  border: 1px solid #4a90e2!important;
}
/*土日カラー変更*/
/* 日曜 */
/*
.flatpickr-day:nth-child(7n+1) {
  color: #ff6b6b!important;
}
*/
/* 土曜 */
/*
.flatpickr-day:nth-child(7n) {
  color: #4a90e2!important;
}
*/
/*無効日（選択不可）*/
.flatpickr-day.disabled {
  color: #999!important;
  background: #eee!important;
  cursor: not-allowed!important;
}
/*ヘッダー（月・年）*/
.flatpickr-months {
  font-weight: 700!important;
  font-family: var(--ttl-font)!important;
  background: var(--base-color)!important;
  color: white!important;
}
.flatpickr-current-month {
  font-size: 2rem!important;
  font-weight: 700!important;
  width: 75%;
  left: 12.5%;
  padding: 0!important;
  line-height: 1;
  height: 34px;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700!important;
  color: white!important;  
}
.flatpickr-current-month {
  font-weight: 700!important;
  font-family: var(--ttl-font)!important;
}
.flatpickr-current-month .numInputWrapper span.arrowUp::after {
  border-bottom-color: rgba(255,255,255,0.9)!important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown::after {
  border-top-color: rgba(255,255,255,0.9)!important;
}
.flatpickr-current-month input.cur-year {
  padding: 0!important;
  margin: 0!important;
  font-weight: 700!important;
  color: #fff!important;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  padding: 7px 10px!important;
}
.flatpickr-months .flatpickr-next-month {
  cursor: pointer;
  color: rgba(255,255,255,0.9)!important;
  fill: rgba(255,255,255,0.9)!important;
}
.flatpickr-months .flatpickr-prev-month {
  cursor: pointer;
  color: rgba(255,255,255,0.9)!important;
  fill: rgba(255,255,255,0.9)!important;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f6ff00!important;
}
.flatpickr-calendar.arrowTop::before {
  border-bottom-color: var(--base-color)!important;
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-bottom-color: var(--base-color)!important;
    border-left-width: medium;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}