@charset "UTF-8";
/*====================================================================================
1. START COMMON ONLY CHILD PAGE.
====================================================================================*/
/*---------- START TITLE PAGE ----------*/
.ttl-page {
  background: url("../common_img/bg-titlepage.webp") no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 16rem;
  color: #fff;
  padding-top: 5%;
}
.ttl-page h1 {
  font-size: 2rem;
}
.ttl-page h1 small {
  display: block;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ttl-page {
    height: 40rem;
    margin-bottom: 1.5rem;
  }
  .ttl-page h1 {
    font-size: 3.6rem;
  }
  .ttl-page h1 small {
    font-size: 2rem;
  }
}

/*---------- START BREADCRUMB ----------*/
.breadcrumb {
  position: relative;
  padding-bottom: 3rem;
  z-index: 3;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  padding-right: 3.5rem;
  position: relative;
}
.breadcrumb ul li:after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  width: 0;
  height: 0;
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.breadcrumb ul li:last-child {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 0;
}
.breadcrumb ul li:last-child:after {
  content: none;
}
.breadcrumb ul li:nth-child(2) {
  white-space: nowrap;
}
.breadcrumb ul li:first-child {
  padding-left: 0;
  white-space: nowrap;
  text-decoration: none;
}
.breadcrumb ul li a {
  line-height: 1.2;
  text-decoration: underline;
  color: var(--blue);
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

/*---------- START main-cont ----------*/
.main-cont {
  padding: 4rem 0 8rem;
}
@media only screen and (min-width: 768px) {
  .main-cont {
    padding: 8rem 0 15rem;
  }
}

/*---------- START list-indent1 ----------*/
.list-indent1 li {
  text-indent: -3.5rem;
  margin-left: 3.5rem;
}
@media only screen and (min-width: 768px) {
  .list-indent1 li {
    text-indent: -4rem;
    margin-left: 4rem;
  }
}

.list-indent2 li {
  text-indent: -2.4rem;
  margin-left: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .list-indent2 li {
    text-indent: -2.8rem;
    margin-left: 2.8rem;
  }
}

/*---------- START list-dot ----------*/
.list-dot li {
  position: relative;
  padding-left: 2rem;
}
.list-dot li:after {
  position: absolute;
  content: "";
  background: #222;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  top: 0.5rem;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .list-dot li:after {
    top: 1rem;
  }
}
.list-dot--sm li {
  padding-left: 1.2rem;
}
.list-dot--sm li:after {
  width: 0.5rem;
  height: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .list-dot--sm li:after {
    top: 1.2rem;
  }
}

/*---------- START list-decimal ----------*/
.list-decimal li {
  list-style-type: decimal;
  margin-left: 2rem;
}

/*====================================================================================
2. START PAGE eventfoam
====================================================================================*/
/*---------- START form ----------*/
.form {
  display: block;
  width: 100%;
}
.form .form-content {
  background: #fff;
  padding: 1.5rem;
}
.form .form-content__dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray);
  padding: 0.5rem 0;
}
.form .form-content__dl:last-child {
  border-bottom: 1px solid var(--gray);
}
.form .form-content__dt {
  background: var(--light_yellow);
  position: relative;
  display: flex;
  align-items: flex-start;
  font-weight: bold;
}
.form .form-content__dd {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form .form-content__title {
  position: relative;
  width: 100%;
  font-weight: bold;
}
.form .form-content__title:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  width: 4.4rem;
  height: 2.4rem;
  font-size: 1.6rem;
  color: #fff;
}
.form .form-content__title.hissu:after {
  background: var(--green);
  content: "必須";
}
.form .form-content__title.ninni:after {
  background: #3B4043;
  content: "任意";
}
.form .form-content .list-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.form .form-content .list-cont li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 20%;
  gap: 3px;
}
.form .form-content .list-cont li input {
  margin-right: 0 !important;
}
.form .form-content .selectable {
  width: 50%;
}
.form .form-content .error {
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: normal;
}
.form .form-content .ipt-error {
  background: #f9e6db;
}
.form .form-content .p-postal-code {
  width: 25rem;
  margin: 0 1rem;
}
.form .form-content .list-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.form .form-content .sec-address {
  width: 100%;
}
.form .form-content .sec-address__item {
  width: 100%;
}
.form .form-content .sec-address__item.list-input {
  gap: 1rem;
  padding-left: 2.6rem;
  margin-top: 1.5rem;
}
.form .form-content .sec-address__item.list-input input {
  width: 25rem;
}
.form .form-content .list-radio01 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 5rem;
}
.form .form-content .date-input-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.form .form-content .date-input-group__item {
  width: calc((100% - 4rem) / 3);
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .form {
    margin: 2rem auto 0;
  }
  .form .form-content dl {
    position: relative;
  }
  .form .form-content__dt, .form .form-content__dd {
    display: block;
    width: 100% !important;
    padding: 1rem;
  }
  .form .form-content dt:after {
    height: 2px;
  }
  .form .form-content__title {
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
  .form .form-content__title:after {
    width: 5rem;
    height: 2.5rem;
  }
  .form .form-content__dd {
    font-size: 1.6rem;
  }
  .form .form-content .list-input__ttl {
    width: 100% !important;
  }
  .form .form-content .list-input p {
    width: 48%;
  }
  .form #formEnd {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .form {
    margin: 5rem auto 0;
  }
  .form .form-content {
    padding: 3rem;
  }
  .form .form-content__dl {
    padding: 1rem 0;
  }
  .form .form-content__dt {
    width: 32rem;
    padding: 2rem;
  }
  .form .form-content__dd {
    width: calc(100% - 32rem);
    padding: 2rem;
  }
  .form .form-content__title {
    font-size: 1.8rem;
    padding-right: 8rem;
  }
  .form .form-content__title:after {
    width: 5.8rem;
    height: 2.9rem;
  }
  .form .form-content .list-cont {
    gap: 1rem 5rem;
  }
  .form .form-content .list-input {
    gap: 3rem;
  }
  .form .form-content .list-input input {
    min-width: 27rem;
  }
  .form .form-content .sec-address__item.list-input input {
    /*
    width: calc((100% - 2rem) / 3);
    min-width: auto;
     */
      width:100%;
  }
  .form .form-content .sec-address__item.list-input input.p-extended-address {
    width: 100%;
  }
  .form .form-content .date-input-group {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .form .form-content .date-input-group__item {
    width: calc((100% - 8rem) / 3);
  }
  .form #formEnd {
    margin-top: 5rem;
  }
}

/*---------- START contact-group-btn ----------*/
.contact-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem auto 0;
  gap: 2rem;
}
.contact-group-btn .contact-btn {
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  z-index: 3;
}
.contact-group-btn .contact-btn input {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-size: 1.4rem;
}
.contact-group-btn #submitButton.disabled {
  background: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .contact-group-btn .contact-btn {
    min-width: 25rem;
  }
  .contact-group-btn .contact-btn input {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .contact-group-btn .contact-btn .cm-arr {
    right: 1rem;
  }
  .contact-group-btn .cm-btn__link {
    width: 25rem;
  }
}
@media only screen and (min-width: 768px) {
  .contact-group-btn {
    margin: 5rem auto 0;
    gap: 5rem;
  }
  .contact-group-btn .contact-btn {
    width: 30rem;
  }
  .contact-group-btn .contact-btn input {
    font-size: 1.6rem;
  }
  .contact-group-btn .cm-btn__link {
    width: 30rem;
  }
}

/*====================================================================================
3. START PAGE calendar
====================================================================================*/
.calendar-header {
  width: 24rem;
  height: 4rem;
  background: #fff;
  border: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 3rem;
}
.calendar-header button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 4rem;
  border: none;
  cursor: pointer;
}
.calendar-table {
  background: #fff;
  padding: 1rem;
  border: 2px solid #707070;
  border-radius: 10px;
  overflow: hidden;
}
.calendar-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-row.header {
  gap: 0.5rem;
}
.calendar-row.header > div {
  background: #f9cfcf;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  border-radius: 1rem 1rem 0 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-cell {
  position: relative;
  border: 1px solid #ddd;
  min-height: 50px;
  padding: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.day-cell span {
  font-size: 1.4rem;
}
.day-cell .event-tag {
  position: relative;
  display: inline-block;
  background: var(--green);
  width: 100%;
  color: #fff;
  border-radius: 0.5rem;
  padding: 2px;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
}
.day-cell .event-tag:after {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #fff;
  border-bottom: none;
  border-left: none;
  top: -0.1rem;
  bottom: 0;
  right: 0.5rem;
  transform: rotate(135deg);
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .day-cell {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .day-cell .event-tag {
    width: 10rem;
    padding: 2px 8px;
    border-radius: 1.5rem;
    font-size: 1.4rem;
  }
  .day-cell .event-tag:after {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 2px;
    top: -0.3rem;
    right: 1rem;
  }
}

/* Popup */
.event-popup {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-5%);
  background: white;
  border: 2px solid #ccc;
  padding: 1rem;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  min-width: auto;
}
.event-popup ul {
  padding-left: 1.2rem;
}
.event-popup .close-btn {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 1rem auto 0;
  transition: background-color 0.2s;
}
.event-popup .close-btn:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 768px) {
  .event-popup {
    left: 50%;
    transform: translateX(-30%);
    min-width: 15rem;
  }
}

/*---------- event-list ----------*/
.event-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: sans-serif;
  margin-top: 4rem;
}
.event-row {
  display: flex;
}
.event-date {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8d6d6;
  padding: 1rem;
  width: 18rem;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  line-height: 1.2;
}
.event-detail {
  text-decoration: none;
  flex: 1;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-box {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  background: white;
  text-decoration: none;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.event-meta__date {
  width: 15rem;
  font-size: 1.4rem;
}
.event-meta__list-tag {
  width: calc(100% - 15rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.event-meta__tag {
  border: 1px solid #222;
  border-radius: 3rem;
  font-size: 1.4rem;
  padding: 0 1rem;
}
.event-title {
  font-weight: bold;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.event-title.is-highlight {
  color: var(--green);
  font-weight: bold;
}
.event-location {
  font-size: 14px;
  color: #444;
}
.event-label {
  position: absolute;
  top: 16px;
  right: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  width: 11rem;
  height: 2.5rem;
  color: white;
  padding: 0 1rem;
  border-radius: 1.5rem 0 0 1.5rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .event-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .event-detail {
    width: 100%;
    padding-left: 0;
  }
  .event-box {
    flex-wrap: wrap;
  }
  .event-meta {
    padding-top: 4rem;
    gap: 1rem;
  }
  .event-meta__list-tag {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .event-list {
    margin-top: 8rem;
  }
  .event_detail {
    gap: 1.5rem;
  }
  .event-box {
    padding: 1.5rem;
  }
  .event-box:hover {
    box-shadow: 0 0 3px var(--green);
    background: var(--light_yellow);
  }
  .event-meta {
    padding-right: 10rem;
  }
}

/*====================================================================================
4. START PAGE calendar detail
====================================================================================*/
.event_detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.event_detail__label {
  width: 17rem;
  background: var(--green);
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.6rem;
}
.event_detail__tags {
  width: calc(100% - 20rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.event_detail__tags .tag {
  border: 1px solid #222;
  border-radius: 3rem;
  font-size: 1.4rem;
  padding: 0 1rem;
}
.event_detail__date {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.event_detail__title {
  font-size: 1.8rem;
  color: var(--green);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .event_detail__header {
    flex-wrap: wrap;
  }
  .event_detail__tags {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .event_detail__label {
    font-size: 2rem;
  }
  .event_detail__date {
    font-size: 1.8rem;
  }
  .event_detail__title {
    font-size: 2.4rem;
  }
}

/*---------- START list-btn ----------*/
.list-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.list-btn .cm-btn {
  width: calc((100% - 4rem) / 3);
  min-width: 30rem;
  max-width: 100%;
}
.list-btn .cm-btn__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 6rem;
  line-height: 1.4;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 4rem;
}
@media only screen and (min-width: 768px) {
  .list-btn {
    gap: 2rem;
  }
  .list-btn .cm-btn__link {
    height: 6.8rem;
  }
}

/*====================================================================================
5. START PAGE day
====================================================================================*/
@media only screen and (max-width: 767px) {
  .p-day #tab3 .cm-btn,
  .p-kaigo #tab3 .cm-btn,
  .p-koreikyo #tab3 .cm-btn {
    display: flex;
    justify-content: flex-end;
  }
}
/*---------- START tab ----------*/
.tab-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  border-bottom: 5px solid var(--blue);
}
.tab-btn {
  width: calc((100% - 2rem) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--blue);
  border-bottom: none;
  padding: 1rem 0.5rem;
  border-radius: 1rem 1rem 0 0;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--blue);
  cursor: pointer;
  transition: 0.3s;
}
.tab-btn.active {
  background: var(--blue);
  color: #fff;
}
.tab-content {
  display: none;
  background: #fff;
  padding: 2rem 1.5rem;
}
.tab-content.active {
  display: block;
}
@media only screen and (min-width: 768px) {
  .tab-list {
    gap: 4rem;
  }
  .tab-btn {
    width: calc((100% - 8rem) / 3);
    font-size: 1.8rem;
    padding: 1.5rem;
  }
  .tab-content {
    padding: 5rem;
  }
}

/*---------- START box-border ----------*/
.box-border {
  background: #fff;
  border: 2px solid #707070;
  border-radius: 1rem;
  padding: 1rem;
}
.box-border--md {
  margin: 1.5rem auto 0;
}
@media only screen and (min-width: 768px) {
  .box-border {
    padding: 2rem;
  }
  .box-border--md {
    width: 85%;
    padding: 3rem 7rem;
    margin: 3rem auto 0;
  }
  .box-border--md .s-chart {
    text-align: center;
  }
  .box-border--md .s-chart img {
    width: 90%;
  }
  .box-border--sm {
    width: 46%;
  }
}

/*====================================================================================
6. START PAGE shisetsu
====================================================================================*/
.list-anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.list-anchor__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #222;
  border-radius: 3rem;
  padding: 0.5rem 4rem 0.5rem 1.5rem;
}
.list-anchor__link .cm-arr {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
}
.list-anchor__link .cm-arr:after {
  border-color: #222;
}
@media only screen and (min-width: 768px) {
  .list-anchor {
    gap: 1rem 1.5rem;
  }
  .list-anchor__link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }
  .list-anchor__link:hover .cm-arr:after {
    border-color: #fff;
  }
}

/*====================================================================================
7. START PAGE list
====================================================================================*/
.sec-list {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
}
.sec-list__item {
  border-bottom: 2px solid var(--green);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.sec-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sec-list__item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  border-radius: 1rem;
  gap: 1rem;
}
.sec-list__item-area {
  background: #fff;
  border: 1px solid #000;
  border-radius: 3rem;
  font-size: 1.4rem;
  padding: 0 1.5rem;
}
.sec-list__item-name {
  width: 100%;
}
.sec-list__item-name a {
  text-decoration: none;
  color: var(--green);
}
@media only screen and (min-width: 768px) {
  .sec-list {
    padding: 3rem;
  }
  .sec-list__item-head {
    padding: 3rem;
    gap: 1.5rem 2rem;
  }
  .sec-list__item-body {
    padding: 0 3rem 0;
  }
}

/*---------- START pagination ----------*/
.pagination {
  position: relative;
  width: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.pagination a {
  position: relative;
  border: 1px solid var(--gray);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  color: var(--gray);
  font-size: 1.6rem;
}
.pagination a.current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.pagination a.prev, .pagination a.next {
  width: 3rem;
  height: 3rem;
  text-align: center;
  top: 0;
  z-index: 3;
}
.pagination a.prev:before, .pagination a.next:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pagination a.prev:before {
  transform: rotate(-135deg);
}
.pagination a.next:before {
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) {
  .pagination {
    margin-top: 6rem;
  }
  .pagination a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
  }
  .pagination a.prev:hover, .pagination a.next:hover {
    background: var(--green);
    border-color: var(--green);
  }
  .pagination a.prev:hover:before, .pagination a.next:hover:before {
    border-color: #fff;
  }
}

/*====================================================================================
8. START PAGE list detail
====================================================================================*/
.style-box1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.style-box1__img {
  width: 100%;
}
.style-box1__img img {
  width: 100%;
}
.style-box1__txt {
  width: 100%;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .style-box1__img {
    width: 45%;
  }
  .style-box1__txt {
    width: 50%;
  }
}

.gg-map {
  text-decoration: none;
}
.gg-map img {
  width: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .gg-map:hover {
    color: var(--green);
  }
}

/*====================================================================================
9. START PAGE faq
====================================================================================*/
.list-anchor {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.list-anchor .cm-btn {
  width: auto;
  min-width: 30rem;
  max-width: 100%;
}
.list-anchor .cm-btn__link {
  width: 100%;
  text-align: center;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .list-anchor {
    gap: 2rem;
  }
  .list-anchor .cm-btn {
    width: calc((100% - 4rem) / 3);
  }
}

/*---------- START acc-list ----------*/
.acc-list__head {
  cursor: pointer;
}
.acc-list__body {
  display: none;
}
.acc-list__body .list-decimal2 li {
  text-indent: -1.3rem;
  padding-left: 1.3rem;
}
.acc-list__body .list-decimal2 li span {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .acc-list__body .list-decimal2 li {
    text-indent: -1.5rem;
    padding-left: 1.5rem;
  }
  .acc-list__body .list-decimal2 li span {
    font-size: 1.8rem;
  }
}

/*---------- START faq-list  ----------*/
.faq-list__item {
  border-radius: 1rem;
  border: 2px solid #000;
  margin-top: 1.5rem;
  overflow: hidden;
}
.faq-list__item:last-child {
  margin-bottom: 0;
}
.faq-list__question {
  position: relative;
  cursor: pointer;
  background: #fff;
  padding: 1rem 4rem;
  z-index: 2;
}
.faq-list__question:after {
  content: "Q.";
  position: absolute;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--blue);
  left: 1rem;
  top: 1rem;
  line-height: 1;
}
.faq-list__question .title {
  position: relative;
  font-size: 1.6rem;
}
.faq-list__question .title:after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--blue);
  border-bottom: none;
  border-left: none;
  top: 0.5rem;
  right: -2.5rem;
  transform: rotate(135deg);
}
.faq-list__question.active .title:after {
  transform: rotate(-45deg);
}
.faq-list__ans {
  position: relative;
  background: #fff;
  padding: 1rem 1rem 1rem 4rem;
  display: none;
}
.faq-list__ans:after {
  content: "A.";
  position: absolute;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--green);
  left: 1rem;
  top: 0.5rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .faq-list__item {
    margin-top: 3rem;
  }
  .faq-list__question {
    padding: 1.5rem 5rem 1.5rem 8rem;
  }
  .faq-list__question:after {
    top: 1rem;
    left: 2rem;
    font-size: 3.6rem;
  }
  .faq-list__question .title {
    font-size: 2rem;
  }
  .faq-list__question .title:after {
    right: -3rem;
  }
  .faq-list__ans {
    padding: 1.5rem 4rem 1.5rem 8rem;
  }
  .faq-list__ans:after {
    left: 2rem;
    font-size: 3.6rem;
  }
}

/*====================================================================================
10. START PAGE news
====================================================================================*/
.p-news .sec-news .cont-news__link {
  flex-wrap: wrap;
}
.p-news .sec-news .cont-news__txt {
  width: 100%;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/*====================================================================================
11. START PAGE news detail
====================================================================================*/
.news-detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news-detail__main {
  width: 100%;
  background: #fff;
  padding: 1.5rem;
}
.news-detail__head {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.news-detail__head .ttl {
  font-size: 1.6rem;
}
.news-detail__body {
  font-size: 1.4rem;
}
.news-detail__foot {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--gray);
  padding-top: 1rem;
  margin-top: 5rem;
}
.news-detail__foot .cm-btn {
  width: 19rem;
}
.news-detail__foot .cm-btn__link {
  width: 100%;
  min-width: auto;
  text-align: center;
  padding: 1rem 3rem;
}
.news-detail__side {
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
}
.news-detail__side .cm-title02 {
  padding-bottom: 0.5rem;
  border-bottom-color: var(--green);
}
.news-detail__side .list-btn {
  width: 100%;
  gap: 1rem;
}
.news-detail__side .list-btn .cm-btn {
  width: 100%;
  min-width: auto;
}
.news-detail__side .list-btn .cm-btn__link {
  justify-content: center;
  min-width: auto;
  width: 100%;
  text-align: center;
  padding: 1rem 3rem;
  margin-top: 0;
  height: auto;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .news-detail {
    gap: 3rem;
  }
  .news-detail__foot {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .news-detail__main {
    width: calc(100% - 32rem);
    padding: 3rem;
  }
  .news-detail__head .ttl {
    font-size: 2rem;
  }
  .news-detail__side {
    width: 29rem;
  }
}

.single__WYSIWYG h1, .single__WYSIWYG h2, .single__WYSIWYG h3, .single__WYSIWYG h4, .single__WYSIWYG h5, .single__WYSIWYG h6 {
  font-weight: bold;
}
.single__WYSIWYG h2 {
  background: var(--light_yellow);
}
.single__WYSIWYG h3 {
  position: relative;
}
.single__WYSIWYG h3:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 60%;
  background: var(--green);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.single__WYSIWYG h4 {
  position: relative;
  border-bottom: 1px solid var(--gray);
}
.single__WYSIWYG h5 {
  position: relative;
  padding-left: 2rem !important;
}
.single__WYSIWYG h5:after {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.single__WYSIWYG h6 {
  position: relative;
}
.single__WYSIWYG p {
  display: block;
  overflow: hidden;
}
.single__WYSIWYG p img {
  display: block;
}
.single__WYSIWYG p img.size-small {
  width: 40%;
}
.single__WYSIWYG p img.size-medium {
  width: 70%;
}
.single__WYSIWYG p img.size-large {
  width: 100%;
}
.single__WYSIWYG p img.alignleft {
  float: left;
}
.single__WYSIWYG p img.alignright {
  float: right;
}
.single__WYSIWYG p img.aligncenter {
  margin: auto;
  text-align: center;
}
.single__WYSIWYG ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.single__WYSIWYG ul li:after {
  position: absolute;
  content: "";
  top: 1.2rem;
  left: 0;
  background: #383838;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}
.single__WYSIWYG ol {
  list-style-type: decimal-leading-zero;
  counter-reset: section;
}
.single__WYSIWYG ol li {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.single__WYSIWYG ol > li {
  position: relative;
  counter-increment: section;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.single__WYSIWYG ol > li:before {
  content: counter(section) ".";
}
.single__WYSIWYG ol > li > ol {
  counter-reset: subsection;
  list-style-type: none;
  margin-top: 0.5rem;
  margin-left: 2rem;
}
.single__WYSIWYG ol > li > ol > li {
  position: relative;
  counter-increment: subsection;
  font-size: 1.4rem;
  font-weight: normal;
}
.single__WYSIWYG ol > li > ol > li:before {
  content: counter(section) "." counter(subsection) " ";
}
@media only screen and (max-width: 767px) {
  .single__WYSIWYG h1, .single__WYSIWYG h2, .single__WYSIWYG h3, .single__WYSIWYG h4, .single__WYSIWYG h5, .single__WYSIWYG h6 {
    padding: 0.5rem 0;
    margin: 2.5rem 0 1.5rem;
  }
  .single__WYSIWYG h1 {
    font-size: 2rem;
  }
  .single__WYSIWYG h2 {
    font-size: 1.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .single__WYSIWYG h3 {
    font-size: 1.6rem;
  }
  .single__WYSIWYG h4 {
    font-size: 1.7rem;
  }
  .single__WYSIWYG h5 {
    font-size: 1.5rem;
  }
  .single__WYSIWYG h6 {
    font-size: 1.4rem;
  }
  .single__WYSIWYG p {
    margin-bottom: 2rem;
  }
  .single__WYSIWYG p img {
    margin: 1.5rem 0;
  }
  .single__WYSIWYG p img.aligncenter {
    margin: 1.5rem auto 1.5rem;
  }
  .single__WYSIWYG p img.alignleft {
    margin-right: 1.5rem;
  }
  .single__WYSIWYG p img.alignright {
    margin-left: 1.5rem;
  }
  .single__WYSIWYG p iframe {
    height: 25rem;
  }
  .single__WYSIWYG ol, .single__WYSIWYG ul {
    margin-top: 1.5rem;
  }
  .single__WYSIWYG .box-youtube {
    margin-top: 2rem;
  }
  .single__WYSIWYG .box-youtube iframe {
    height: 20rem;
  }
}
@media only screen and (min-width: 768px) {
  .single__WYSIWYG h1, .single__WYSIWYG h2, .single__WYSIWYG h3, .single__WYSIWYG h4, .single__WYSIWYG h5, .single__WYSIWYG h6 {
    padding: 1rem 0;
    margin: 5rem 0 3rem;
  }
  .single__WYSIWYG h1 {
    font-size: 3rem;
  }
  .single__WYSIWYG h2 {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 2.4rem;
  }
  .single__WYSIWYG h3 {
    font-size: 2rem;
    padding-left: 1.5rem;
  }
  .single__WYSIWYG h4 {
    font-size: 1.8rem;
  }
  .single__WYSIWYG h5 {
    font-size: 1.6rem;
  }
  .single__WYSIWYG h6 {
    font-size: 1.4rem;
  }
  .single__WYSIWYG figure {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .single__WYSIWYG p {
    margin-bottom: 4rem;
  }
  .single__WYSIWYG p img {
    margin: 2rem 0;
  }
  .single__WYSIWYG p img.aligncenter {
    margin: 3rem auto 3rem;
  }
  .single__WYSIWYG p img.alignleft {
    margin-right: 2rem;
  }
  .single__WYSIWYG p img.alignright {
    margin-left: 2rem;
  }
  .single__WYSIWYG p iframe {
    width: 100%;
    height: 50rem;
  }
  .single__WYSIWYG ol, .single__WYSIWYG ul {
    margin-top: 3rem;
  }
  .single__WYSIWYG .box-youtube {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
  }
  .single__WYSIWYG .box-youtube iframe {
    width: 100%;
    height: 35rem;
  }
  .single__WYSIWYG .aligncenter {
    text-align: center;
    max-width: 100%;
  }
  .single__WYSIWYG .alignright {
    text-align: right;
    max-width: 100%;
  }
  .single__WYSIWYG .cm-btn.btn-pdf {
    display: flex;
    justify-content: flex-start;
  }
  .single__WYSIWYG .cm-btn.btn-pdf a {
    display: flex;
    align-items: center;
    width: auto;
    font-size: 1.8rem;
    margin-left: 0;
  }
}

/*====================================================================================
12. START PAGE contact
====================================================================================*/
.banner-contact {
  display: flex;
  align-items: center;
  flex-flow: column;
  width: 100%;
  max-width: 68rem;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid var(--green);
  padding: 2rem;
  margin: 3rem auto;
}
.banner-contact .cm-infor__tel {
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .banner-contact {
    padding: 4.5rem;
    margin: 6.5rem auto 5rem;
  }
  .banner-contact .cm-infor__tel {
    gap: 2rem;
  }
}

.box-pp {
  background: #fff;
  padding: 2rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .box-pp {
    padding: 4rem;
  }
}

/*====================================================================================
13. START PAGE join
====================================================================================*/
/*---------- START modal  ----------*/
.open-modal-btn {
  position: relative;
  width: 24rem;
  background-color: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  margin-top: 2rem;
}
.open-modal-btn:after, .open-modal-btn:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 1.2rem;
  height: 2px;
  top: 0;
  bottom: 0;
  left: 2rem;
  margin: auto;
}
.open-modal-btn:before {
  transform: rotate(90deg);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 8px;
  max-width: 112rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-content .close-btn {
  position: sticky;
  top: -2rem;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  background: var(--red);
  color: #fff;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0.7rem;
  z-index: 9;
}
.modal-content .close-btn:after, .modal-content .close-btn:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 1.5rem;
  height: 2px;
  top: 1.3rem;
  left: 0;
  right: 0;
  margin: auto;
}
.modal-content .close-btn:after {
  transform: rotate(45deg);
}
.modal-content .close-btn:before {
  transform: rotate(-45deg);
}
.modal-content .modal-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.modal-content .modal-actions button {
  width: 13rem;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  border: none;
  padding: 1rem;
}
.modal-content .modal-actions button.cancel-btn {
  background: var(--red);
}
.modal-content .modal-actions button.submit-btn {
  background: var(--green);
}
@media only screen and (min-width: 768px) {
  .modal-content {
    padding: 4rem 2rem;
  }
}

/*---------- START confirm-block  ----------*/
.confirm-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid var(--gray);
  font-weight: 500;
  padding: 2rem;
  margin-top: 2rem;
  gap: 2rem;
}
.confirm-block__txt {
  width: 100%;
}
.confirm-block__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.confirm-block__btn button {
  width: 10rem;
  text-align: center;
  border-radius: 3rem;
  color: #fff;
  border: none;
  cursor: pointer;
}
.confirm-block__btn button.btn-green {
  background: var(--green);
}
.confirm-block__btn button.btn-black {
  background: #3B4043;
}
@media only screen and (min-width: 768px) {
  .confirm-block {
    padding: 2rem 4rem;
  }
  .confirm-block__txt {
    width: calc(100% - 25rem);
  }
  .confirm-block__btn {
    width: 20rem;
    justify-content: flex-end;
  }
}

/*====================================================================================
14. START PAGE login
====================================================================================*/
.p-login .cm-infor {
  margin-top: 4rem;
}
.p-login .cm-infor__ttl span {
  background: var(--light_yellow);
}
.p-login .cm-infor__main {
  flex-flow: column;
}
@media only screen and (min-width: 768px) {
  .p-login .cm-infor {
    margin-top: 8rem;
  }
}

.box-login {
  width: 100%;
  max-width: 94rem;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid var(--green);
  padding: 2rem 1.5rem;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .box-login {
    padding: 4rem;
  }
}

.infor-contact {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .infor-contact {
    margin-top: 8rem;
  }
}

/*====================================================================================
15. START PAGE member
====================================================================================*/
.p-member .sec-news .cont-news__link {
  flex-wrap: wrap;
}
.p-member .sec-news .cont-news__txt {
  width: 100%;
}

.ttl-btn {
  position: relative;
}
.ttl-btn__btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .ttl-btn__btn {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .ttl-btn__btn {
    position: absolute;
    top: 0;
    right: 0;
    justify-content: flex-end;
    gap: 2rem;
  }
  .ttl-btn__btn .cm-btn__link {
    margin-top: 0;
  }
}

.box-white {
  background: #fff;
  padding: 2rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .box-white {
    padding: 4rem 3rem;
  }
}

/*====================================================================================
16. START PAGE mypage
====================================================================================*/
.mypage-type {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .mypage-type dt {
    width: 32rem;
  }
  .mypage-type dd {
    width: calc(100% - 32rem);
  }
}

/*---------- START file-input ----------*/
.file-input {
  position: relative;
}
.file-input [type=file] {
  position: absolute;
  width: 19rem;
  height: 4.3rem;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.file-input > .button {
  position: relative;
  width: 19rem;
  height: 4.3rem;
  border: 1px solid var(--gray);
  display: inline-block;
  color: rgba(77, 77, 77, 0.5);
  margin-right: 8px;
  padding: 8px 36px;
}
.file-input > .button:after {
  position: absolute;
  content: "";
  background: url("../images/mypage/ico-up_file.webp") no-repeat;
  width: 1.4rem;
  height: 1.5rem;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
.file-input > .label {
  color: #4d4d4d;
  white-space: nowrap;
}
.file-input.-chosen .button {
  background: var(--red);
  color: #fff;
}
.file-input.-chosen > .label {
  opacity: 1;
}
.file-input:hover > .button {
  background: var(--red);
  color: white;
}
.file-input:hover > .button:after {
  background: url("../images/mypage/ico-up_file_white.webp") no-repeat;
}
@media only screen and (min-width: 768px) {
  .file-input [type=file] {
    height: 4.7rem;
  }
  .file-input > .button {
    height: 4.7rem;
  }
}
