@charset "UTF-8";

/*
    cmn_info
--------------------*/


/*
    drawer
--------------------*/
/* ▼drawer */
.drawer-menu-item,
.level1,
.level1 a,
.level1 p,
.level2,
.level2 a,
.level2 p {
  font-size: inherit;
}

.drawer-menu-item:hover {
  color: inherit;
  text-decoration: none;
}


/*
    cmn-btn_01
--------------------*/
.cmn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  margin: 0 auto;
  border-radius: 30px;
  border: 2px solid #ad6483;
  background-color: #fff;
  box-shadow: 3px 5px 0 #ecd5df;
  font-weight: 700;
  position: relative;
}

.cmn-btn::after {
  content: "";
  width: 18px;
  height: 20px;
  background: url(/images/common/arw_color.png) no-repeat center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}






/*
    cmn-title
--------------------*/
.cmn-title {
  margin-bottom: 30px;
  text-align: center;
}

.cmn-title_en {
  margin-bottom: 5px;
  font-family: "Poppins", system-ui;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
  z-index: 10;
}

.cmn-title_en::before {
  content: "";
  width: 100px;
  height: 24px;
  background: url(/images/common/cmn-title_marker.png) no-repeat bottom / contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  z-index: -1;
}

.cmn-title_jp {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.cmn-title_jp::before {
  content: "";
  width: 30px;
  height: 36px;
  background: url(/images/common/cmn-title_deco_l.png) no-repeat center / contain;
  position: absolute;
  top: -25px;
  left: -35px;
}

.cmn-title_jp::after {
  content: "";
  width: 35px;
  height: 38px;
  background: url(/images/common/cmn-title_deco_r.png) no-repeat center / contain;
  position: absolute;
  top: -25px;
  right: -35px;
}


/*
    cmn-table
---------------------*/
.cmn-table {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.cmn-table:not(:last-child) {
  margin-bottom: 80px;
}

.cmn-table tr,
.cmn-table th,
.cmn-table td {
  display: block;
}


.cmn-table th {
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  background-color: #ad6483;
}

.cmn-table tr:not(:last-child) th {
  border-bottom: 1px solid #fff;
}

.cmn-table td {
  padding: 10px 15px;
  background-color: #fff;
}

.cmn-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(173,100,131,0.3);
}


/*
    breadcrumbs
---------------------*/
.breadcrumbs {
  width: calc(100% - 40px);
  margin: 0 auto;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff;
}

.breadcrumbs .bread_wrap {
  justify-content: flex-start;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li:not(:last-child)::before {
  content: " ";
  display: block;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2px);
}

.breadcrumbs li:last-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs li,
.breadcrumbs a {
  font-size: 1.2rem;
}

.breadcrumbs a {
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs {
  padding: 6px 0;
}

.breadcrumbs::after {
  height: 20px;
  background: url(../images/common/wave01.png) repeat-x bottom/auto 70px;
}

.bread_wrap {
  /*width: calc(100% - 40px);*/
  max-width: unset;
  margin: 0 auto;
  flex-direction: row;
}

.breadcrumbs li:not(:last-child) {
  padding: 0 30px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li:not(:last-child)::before {
  width: 6px;
  height: 6px;
  right: 13px;
}

.breadcrumbs li:last-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*-----------------------------------------------------------------------

    news

-----------------------------------------------------------------------*/
.news_list_item {
  position: relative;
}

.news_list_item a {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(173,100,131,0.1);
}

.news_list_item:not(:last-child) {
  margin-bottom: 15px;
}

.news_content {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: 65%;
}

.news_time {
  font-family: "Poppins", system-ui;
  font-weight: 600;
  margin-right: 15px;
  font-size: 12px;
}

.news_tag_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 5px;
}

.news_tag_list_item {
  margin: 4px 5px 0 0;
  padding-right: 5px;
  font-size: 12px;
  line-height: 1;
  color: #ad6483;
  position: relative;
}

.news_tag_list_item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #ad6483;
  position: absolute;
  top: 1px;
  right: 0;
}

.news_title {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.thumb {
  width: 30vw;
  min-width: 112.5px;
  height: auto;
  aspect-ratio: 4 / 3;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*
select-box
--------------------*/
.category-select {
  overflow: hidden;
  width: 55%;
  margin-left: auto;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
  border-radius: 2px;
  border: 2px solid #ad6483;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ad6483;
  pointer-events: none;
}

.category-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 3px 33px 3px 8px;
  color: #4c372c;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.category-select select::-ms-expand {
  display: none;
}


/*
news-detail
--------------------*/
.post_empty {
  display: block;
  width: 100%;
}

.news_post .c_head {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  padding: 10px 20px;
  background-color: #eee;
  line-height: 1.5;
}

.news_post .c_ofi {
  padding-top: 100%;
}

.post_cnt {
  line-height: 1.5;
}

.news_post a {
  transition: all 0.3s;
}

.news_post a:hover {
  opacity: 0.8;
}

.news_post a:hover .c_ofi img {
  opacity: 1;
  transform: scale(1.1);
}

.story-head {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  color: #ad6483;
  font-weight: 500;
  line-height: 1.3;
}

.post_time {
  text-align: right;
  margin: 5px 0 0;
  color: #ad6483;
}

.news_body {
  border-top: 1px solid #ad6483;
}

.news_post {
  flex-flow: column-reverse;
}

.news_post:not(:last-child) {
  margin: 0 0 30px;
}

.news_post .c_ofi {
  padding-top: 60%;
}

.news_post .c_head {
  font-size: 1.6rem;
  padding: 10px;
}

.post_cnt {
  width: 100%;
}

.post_img {
  width: 100%;
}

.detail_content .story-head {
  font-size: 1.8rem;
}

.news_body {
  margin: 20px 0 0;
  padding: 20px 0 0;
}

/*
  pagenation
--------------------*/
/*▼pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}

.pagenation li {
  width: 30px;
  line-height: 30px;
  color: #333333;
  background-color: #fff;
  font-size: 1.6rem;
  border: 1px solid #ad6483;
}

.pagenation a,
.pagenation span {
  display: block;
  text-align: center;
}

.pagenation li:not(.page_current):hover {
  opacity: 0.8;
}

.pagenation span {
  padding: 0 10px;
}

.pagenation li:not(:last-child) {
  margin: 0 10px 0 0;
}

.pagenation .page_current {
  color: #fff;
  background-color: #ad6483;
}

/*▼page_btn*/
.page_btn {
  max-width: 320px;
  height: 35px;
  margin: auto;
  display: flex;
  flex-flow: row;
  align-items: center;
  position: relative;
}

/* .page_btn li {
  max-width: 30vw;
} */

.page_btn a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  max-width: 30vw;
}

.page_btn li:not(.center) a:after {
  content: " ";
  width: 8px;
  height: 8px;
  margin: auto;
  border-left: 2px solid;
  border-bottom: 2px solid;
  position: absolute;
  top: 2px;
  bottom: 0;
  transition: 0.3s all;
}

.prev {
  margin: 0 auto 0 0;
}

.prev a {
  padding: 0 0 0 20px;
}

.prev a:after {
  left: 8px;
  transform: rotate(45deg);
}

.prev a:hover:after {
  left: 3px;
}

.next {
  margin: 0 0 0 auto;
}

.next a {
  padding: 0 20px 0 0;
}

.next a:after {
  right: 8px;
  transform: rotate(225deg);
}

.next a:hover:after {
  right: 3px;
}

.center {
  width: 120px;
  margin: auto;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.center a {
  min-width: 120px;
  color: #fff;
  background-color: #ad6483;
  line-height: 2.5;
  font-weight: 500;
  box-shadow: inset 0 0 0 2px #ad6483, inset 0 0 0 3px #fff;
}

.page_btn {
  margin: 50px auto;
}

/*
site_map
--------------------*/
.site-list li {
  width: 100%;
  border-bottom: 1px solid;
  transition: 0.2s all;
}

.site-list li a {
  line-height: 2;
}

.site-list li a:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 10px 0 0;
  border-top: 2px solid #ad6483;
  border-right: 2px solid #ad6483;
  transform: rotate(45deg);
}

.site-list li a:hover {
  padding-left: 20px;
}

.site-list li a {
  max-width: 400px;
  margin: 0 auto;
  font-size: 14px;
  padding: 2vh 10px;
}

.site-main .footer-nav {
  width: 100%;
  justify-content: flex-start;
}

.site-main .footer-nav ul {
  font-size: 120%;
}

.site-main .footer-nav-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
}

.site-main .footer-nav-item::before {
  content: "";
  width: 23px;
  height: 23px;
  margin: 0 10px 0 0;
  background: url(../images/common/common_head-ico01.png) no-repeat center/contain;
}

.site-main .footer-nav ul {
  font-size: 1.6rem;
}


/*
privacy
--------------------*/
.privacy-main_cnt {
  color: #333333;
  background-color: #fff;
  border: 2px solid #ad6483;
}

.common-head {
  margin-bottom: 10px;
  font-weight: 500;
}

.privacy-main_cnt p:not(:last-of-type) {
  margin: 0 0 15px;
}

.privacy-main_cnt .objective_list {
  margin: 15px 0 0;
  list-style-type: square;
  list-style-position: inside;
}

.privacy-main_cnt .c_head {
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

.privacy-main_cnt {
  padding: 20px;
}

.privacy-main_cnt .c_head {
  margin: 0 0 15px;
}

.privacy-main_cnt:not(:last-child) {
  margin: 0 0 30px;
}


/*
contact
--------------------*/
/* ▼▼▼contact base▼▼▼ */
.contact-form-table select,
.contact-form-table textarea,
.contact-form-table input[type=tel],
.contact-form-table input[type=fax],
.contact-form-table input[type=num],
.contact-form-table input[type=text],
.contact-form-table input[type=email] {
  padding: 4px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  box-sizing: border-box;
}

.contact-form-table textarea {
  resize: none;
}

/* ▼form */
.contact-form-table tr {
  transition: all 0.3s;
}

.contact-form-table td a {
  display: inline-block;
}

/* ▼mark */
.required-mark {
  width: 50px;
  color: #382c23;
  background-color: #fff;
  font-size: 15px;
  text-align: center;
}

.required-mark02 {
  display: inline-block;
  margin: 0 15px 0 0;
}

/* ▼button */
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
  background-color: #ddd;
}

/* ▼checkbox&radio */
.contact-form-table input[type=radio],
.contact-form-table input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

.contact-form-table input[type=radio]+label,
.contact-form-table input[type=checkbox]+label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}

.contact-form-table input[type=radio],
.contact-form-table input[type=checkbox] {
  display: none;
  margin: 0;
}

.contact-form-table input[type=radio]+label,
.contact-form-table input[type=checkbox]+label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}

.contact-form-table input[type=radio]+label::before,
.contact-form-table input[type=checkbox]+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}

.contact-form-table input[type=radio]+label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

.contact-form-table input[type=checkbox]+label::before {
  border: 2px solid #ccc;
}

.contact-form-table input[type=radio]:checked+label::after,
.contact-form-table input[type=checkbox]:checked+label::after {
  content: "";
  position: absolute;
  top: 50%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

.contact-form-table input[type=radio]:checked+label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}

.contact-form-table input[type=checkbox]:checked+label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.contact_submits {
  line-height: 1.5;
  text-align: center;
}

/* ▼error */
.error-text {
  font-size: 1.4rem;
  color: #d93732;
  margin: 0 0 5px;
}

/* ▼table */
.contact-form-table input[name="items[address]"] {
  margin-top: 8px;
}

.contact-form-table {
  width: 100%;
  margin-bottom: 50px;
}

/*recaptcha*/
.contact-recaptcha {
  width: 307px;
  margin: 0 auto 30px;
}

/*==================================================
画像アップロードフォーム
================================================== */
.upload-item-wrap,
.ancion-btn-wrap {
  width: auto;
  margin: auto;
}

.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type=file] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  float: left;
  margin: 10px;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #e74c3c;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

.upload-item-wrap .thumb {
  width: 180px;
  height: 180px;
}

/*
    contact-custom
--------------------*/
.input_big {
  width: 100%;
}

.input_mid {
  width: 70%;
}

.input_min {
  width: 25%;
  max-width: 85px;
}

.contact-form-table {
  color: #333333;
  line-height: 2;
  letter-spacing: 0;
}

.contact-form-table td,
.contact-form-table th {
  vertical-align: middle;
  font-weight: 500;
}

.contact-form-table th {
  font-weight: bold;
  text-align: left;
}

.contact-form-table td a {
  display: inline;
  text-decoration: underline;
}

/* ▼button */
.contact-privacy {
  width: 100%;
  height: 200px;
  margin: 0 auto 30px;
  border: 1px solid #e0bd80;
}

.contact-privacy iframe {
  width: 100%;
  height: 100%;
}

.upload-notice {
  display: block;
  width: 100%;
  line-height: 1.5;
}


.contact-form-table {
  font-size: 14px;
}

.contact-form-table,
.contact-form-table tbody,
.contact-form-table tr,
.contact-form-table th,
.contact-form-table td {
  width: auto;
  display: block;
}

.contact-form-table tr {
  margin: 0 0 15px;
  border: 1px solid;
}

.contact-form-table th {
  padding: 0 0 0 20px;
  line-height: 40px;
  background-color: #ad6483;
  color: #fff;
}

.contact-form-table td {
  padding: 15px 15px;
  background-color: #fff;
}

.contact-form-table .input_table tr:last-child {
  text-align: center;
}

.required-mark {
  margin: 0 0 0 15px;
  padding: 2px 7px 3px;
  vertical-align: 2px;
}

.contact-form-table input[type=submit]:not(:last-child) {
  margin-bottom: 20px;
}

.contact_submits {
  font-size: 14px;
}

/* ▼file */
.contact-form-table .upload-item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.contact-form-table .upload-item-wrap {
  order: 2;
  width: 48%;
  margin: 0;
  font-size: 85.71429%;
  overflow: hidden;
}

.contact-form-table .upload-item-wrap:nth-child(odd) {
  margin-right: 4%;
}

.contact-form-table .upload-item-wrap:nth-child(n+3) {
  margin-top: 5%;
}

.contact-form-table .upload-item input[type=file] {
  display: none;
}

.contact-form-table .upload-item .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 0 10px;
  position: relative;
  overflow: hidden;
}

.contact-form-table .upload-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-table .upload-item img.thumb {
  width: 32%;
  margin: 0;
}

.contact-form-table .upload-item img.thumb:not(:last-child) {
  margin-right: 2%;
}

.contact-form-table .upload-item .ancion-btn-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-self: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  float: none;
}

.contact-form-table .upload-item .ancion-btn {
  display: block;
  width: 100%;
  margin: 0 0 5px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  border-radius: 4px;
  background: #e6e6e6;
}

.contact-form-table .upload-item .ancion-btn:hover {
  cursor: pointer;
}

.contact-form-table .upload-item .select-file {
  background: #2ecc71;
}

.contact-form-table .upload-item .deselect-file {
  background: #e74c3c;
}

.contact-form-table .upload-item-attention {
  width: 100%;
  margin: 0 0 10px;
  order: 1;
}

.contact-form-table .upload-item-attention_item {
  display: flex;
  align-items: baseline;
}

.contact-form-table .upload-item-attention_item::before {
  content: "※";
  margin-right: 5px;
}

/*# sourceMappingURL=common.css.map */