/* ----- common ----- */
/* title */
.sub_title {
  height: 280px;
  background: #ffffff;
  display: flex;
  align-items: center;
  background: #ffffff url("../images/lower/subttl_bg.jpg") no-repeat top center;
  background-size: cover;
}
.sub_title .ttl_cotns {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.sub_title h2 {
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  font-size: 170%;
  font-weight: bold;
  line-height: 1.4;
  background-color: #ffffffcc;
  border-top: 8px solid #ffffff;
  border-bottom: 8px solid #ffffff;
  position: relative;
}
.sub_title h2::before,
.sub_title h2::after {
  content: "";
  display: block;
  height: 8px;
  width: 20%;
  background: #beda44;
}
.sub_title h2::before {
  position: absolute;
  top: -4px;
  left: 0;
}
.sub_title h2::after {
  position: absolute;
  bottom: -4px;
  right: 0;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .sub_title h2 {
    font-size: calc(100vw / 32);
    border-top: 6px solid #ffffff;
    border-bottom: 6px solid #ffffff;
  }
  .sub_title h2::before,
  .sub_title h2::after {
    height: 6px;
  }
  .sub_title {
    height: 32vw;
  }
}
/* スマホ用のスタイル */
@media screen and (max-width: 768px) {
  .sub_title {
    height: 44vw;
  }
  .sub_title h2 {
    padding: 2vw 3vw;
    font-size: calc(100vw / 18);
  }
}

/* 概要枠 */
#about .aboutus_txt dl {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px dotted #636260;
}
#about .aboutus_txt dt {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  position: relative;
}
#about .aboutus_txt dt::before {
  content: "▼";
  display: inline-block;
  padding-right: 5px;
  font-size: 75%;
  transform: rotate(-90deg);
}
#about .aboutus_txt dd {
  font-size: 90%;
  padding-left: 20px;
  line-height: 1.4;
}
#about .aboutus_txt dd p {
  font-weight: bold;
  line-height: 1.4;
}
#about .aboutus_txt dd.storeinfo {
  background: #ffffff;
  margin: 15px 20px;
  padding: 15px;
  border: 1px solid #513832;
}
#about .aboutus_txt dd.storeinfo dl {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 5px;
  padding: 0;
  border: none;
}
#about .aboutus_txt dd.storeinfo dt {
  margin-bottom: 0;
  width: 30%;
  max-width: 100px;
}
#about .aboutus_txt dd.storeinfo dt::before {
  display: none;
}
#about .aboutus_txt dd.storeinfo dd::before {
  content: "：";
  display: inline-block;
  vertical-align: top;
}
#about .aboutus_txt dd.storeinfo dd {
  padding: 0;
  line-height: 1.4;
}
#about .aboutus_txt address {
  display: inline-block;
  line-height: 1.4;
}
#about .aboutus_txt dd span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
#about .aboutus_txt dd span.txt_adjust {
  display: inline !important;
  padding: 0;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .aboutus_txt dd.storeinfo {
    margin: 2vw 3vw;
    padding: 3vw;
  }
  #about .aboutus_txt dd.storeinfo dt {
    width: 100%;
    max-width: none;
    padding-top: 2vw;
    border-top: 1px dotted #513832;
  }
  #about .aboutus_txt dd.storeinfo dl:first-of-type dt {
    padding-top: 0;
    border-top: none;
  }
  #about .aboutus_txt dd.storeinfo dd::before {
    content: none;
  }
  #about .aboutus_txt dd.storeinfo dd {
    padding-left: 1em;
  }
}

/* ----- about.php #about ----- */

#about .introduction {
  padding: 100px 0 120px;
  position: relative;
  z-index: 0;
  background: url(../images/index/top_aboutsu_bg.png) no-repeat center center;
  background-size: 100%;
}
#about .introduction .intro_txt p {
  text-align: center;
  letter-spacing: 1px;
  line-height: 2;
  font-size: 140%;
  font-weight: bold;
  color: #af86d1;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #about .introduction {
    background-position: top center;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .introduction {
    padding: 10vw 0 22vw;
    background: url(../images/index/top_aboutsu_bg_sp.png) no-repeat bottom center;
    background-size: 100%;
  }
  #about .introduction .intro_txt p {
    font-size: 120%;
  }
}

/* 概要 */
#about .aboutus .aboutus_box {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .aboutus .aboutus_box .aboutus_img {
  width: 40%;
}
#about .aboutus .aboutus_box .aboutus_txt {
  width: 57%;
}
#about .aboutus .aboutus_box .aboutus_txt small.hurigana {
  width: fit-content;
  display: block;
  margin: 5px 0 0 auto;
}
#about .aboutus .aboutus_box .aboutus_txt address small {
  vertical-align: top;
}
#about .aboutus .aboutus_box .aboutus_txt dl:last-child {
  border-bottom: none;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
#about .aboutus_txt dd.storeinfo {
  margin: 15px 0 15px 20px;
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .aboutus .aboutus_box .aboutus_img {
    display: none;
  }
  #about .aboutus .aboutus_box .aboutus_txt {
    width: 100%;
  }
  #about .aboutus .aboutus_box .aboutus_txt small.hurigana {
    width: fit-content;
    display: block;
    margin: 0 0 0 0;
  }
}

/* 活動方針 */
#about .aboutus .activities {
  padding: 60px 0;
}
#about .aboutus .activities .activities_h {
  background: #ffffff url(../images/lower/activettl_bg.png) no-repeat center center;
  background-size: contain;
  width: fit-content;
  margin: auto;
  padding: 15px 100px;
  font-family: "Zen Old Mincho";
  font-size: 160%;
  font-weight: bold;
  color: #513832;
  position: relative;
}
#about .aboutus .activities .activities_h:after {
  content: "";
  display: block;
  height: 0;
  width: 300%;
  border-bottom: 6px double;
  margin: auto;
  font-size: 160%;
  font-weight: bold;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 150%);
  z-index: -1;
}
#about .aboutus .activities .activities_list {
  max-width: 980px;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .aboutus .activities .activities_h {
    padding: 2.5vw 16vw;
    font-size: 160%;
  }
}
/* モーダル */
/* モーダルボタン */
#about .aboutus .activities .activities_list .activities_ttl {
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cac5f1;
  font-family: "Zen Old Mincho", serif;
  color: #513832;
  text-align: center;
  line-height: 1.4;
  border-radius: 150px;
  transition: all 0.5s;
  position: relative;
}
#about .aboutus .activities .activities_list .activities_ttl::after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  border: 1px solid #ffffff;
  border-radius: 150px;
  position: absolute;
  transition: all 0.5s;
}
#about .aboutus .activities .activities_list .activities_ttl:hover {
  justify-content: center;
  align-items: center;
  font-size: 110%;
  color: #513832;
  background: #b7aff1;
  font-weight: bold;
  transition: all 0.5s;
}
#about .aboutus .activities .activities_list .activities_ttl:hover::after {
  content: "";
  display: block;
  width: 86%;
  height: 86%;
  border-radius: 150px;
  border: 3px dotted #ffffff;
  position: absolute;
  transition: all 0.5s;
}
/* 表示領域 */
.modal-wrap {
  width: 100%;
  height: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
}
.activities_cont {
  width: 80%;
  max-width: 720px;
  height: 80vh;
  max-height: 720px;
  margin: auto;
  background: #ffffff;
  padding: 60px 40px 30px;
  border: 2px solid #af86d1;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  overflow-y: scroll;
}

/* 表示 */
.modal-wrap:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-wrap:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0s, visibility 0s;
  padding: 0;
}
.modal-wrap::after {
  display: inline-block;
  height: 100%;
  margin-left: 0;
  content: "";
}
.modal-overlay {
  z-index: 10;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00000099;
}
.modal-wrap .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  color: #af86d1;
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}

#about .aboutus .activities .activities_list dl dt {
  padding: 5px 5px 8px 5px;
  background: #af86d1;
  margin-bottom: 20px;
  font-size: 120%;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
#about .aboutus .activities .activities_list dl dd {
  font-size: 90%;
}
#about .aboutus .activities .activities_list dl dd p {
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #ccc 1px, transparent 1px);
  background-size: 8px 100%, 100% 2em;
  line-height: 2em;
  text-indent: 1em;
  padding-bottom: 1px;
}
#about .aboutus .activities .activities_list dl dd ol {
  width: 90%;
  margin: 30px auto 15px;
}
#about .aboutus .activities .activities_list dl dd ol li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  line-height: 1.4;
  border-bottom: 1px solid #af86d1;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .activities_cont {
    height: 70vh;
    padding: 12vw 6vw 3vw;
  }

  #about .aboutus .activities .activities_list {
    justify-content: center;
    gap: 3vw;
  }
  #about .aboutus .activities .activities_list .activities_ttl {
    width: calc((100vw / 4) - 6vw);
    height: calc((100vw / 4) - 6vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #cac5f1;
    font-family: "Zen Old Mincho", serif;
    color: #513832;
    text-align: center;
    line-height: 1.4;
    border-radius: 150px;
    transition: all 0.5s;
    position: relative;
  }
  #about .aboutus .activities .activities_list dl dd ol {
    width: 100%;
    margin: 30px auto 15px;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .aboutus .activities .activities_list {
    justify-content: center;
    width: 80%;
    gap: 5vw 4vw;
  }
  #about .aboutus .activities .activities_list .activities_ttl {
    width: calc((100vw / 3) - 5vw);
    height: calc((100vw / 3) - 5vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #cac5f1;
    font-family: "Zen Old Mincho", serif;
    color: #513832;
    text-align: center;
    line-height: 1.4;
    border-radius: 150px;
    transition: all 0.5s;
    position: relative;
  }
}

/* 活動報告 */
#about .archive_list {
  padding: 60px 0;
  background: url(../images/index/top_active_bg.png) no-repeat top center;
  background-size: 100%;
}
#about .archive_list .ttl {
  background: #ffefef;
  padding: 10px 10px 12px 10px;
  margin-bottom: 10px;
  font-size: 140%;
  font-weight: bold;
  font-family: "Zen Old Mincho";
  text-align: center;
}
#about .archive_list .active_txt p {
  text-align: center;
  margin: 40px auto;
  line-height: 1.8;
  color: #ff5e63;
  font-size: 120%;
  font-weight: bold;
}
#about .archive_list .news_box {
  width: 85%;
  max-width: 810px;
  margin: 40px auto;
}
#about .archive_list .news_box ul {
  width: 100%;
  max-height: 480px;
  padding: 20px 40px;
  overflow-y: scroll;
}
#about .archive_list .news_box li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px 20px 25px 20px;
  background: #f8f8f7;
  border-top: 2px solid #636260;
  border-left: 6px solid #ff5e63;
  border-right: 2px solid #636260;
  border-bottom: 2px solid #636260;
  gap: 10px;
  position: relative;
}
#about .archive_list .news_box li::before {
  content: "";
  width: 96%;
  height: 3px;
  background: #513832;
  position: absolute;
  bottom: 10px;
  left: 3%;
}
#about .archive_list .news_box li::after {
  content: "";
  width: 4em;
  height: 3px;
  background: #ff5e63;
  position: absolute;
  bottom: 10px;
  left: 3%;
}
#about .archive_list .news_box li.title {
  line-height: 1.4;
}
#about .archive_list .news_box li .day {
  width: 6em;
}
#about .archive_list .news_box li .news_link {
  width: 6em;
  color: #ff5e63;
  position: relative;
}
#about .archive_list .news_box li .news_link::after {
  content: "▶";
  font-size: 75%;
}
#about .active .archive {
  width: 85%;
  max-width: 810px;
  margin: auto;
}
#about .active ul.disclosure {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#about .active ul.disclosure li {
  width: calc((100% / 4) - 20px);
}
#about .active ul.disclosure li.whitebox {
  width: calc((100% / 4) - 20px);
  height: 1px;
}
#about .active ul.disclosure li .info_ttl {
  display: block;
  padding: 15px;
  box-sizing: border-box;
  background: #ffffff;
  border: solid 2px #ff5e63;
  border-radius: 5px;
  transition: all 0.5s;
}
#about .active ul.disclosure li a {
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-weight: bold;
  color: #ff5e63;
  transition: all 0.5s;
}
#about .active ul.disclosure li .info_ttl:hover {
  background: #ff5e63;
  transition: all 0.5s;
}
#about .active ul.disclosure li .info_ttl:hover a {
  color: #ffffff;
  transition: all 0.5s;
}
#about .active ul.disclosure li a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  background: url(../images/lower/pdf_icon_off.png) no-repeat center center;
  background-size: contain;
  transition: all 0.5s;
}
#about .active ul.disclosure li .info_ttl:hover a::after {
  background: url(../images/lower/pdf_icon_on.png) no-repeat center center;
  background-size: contain;
  transition: all 0.5s;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .archive_list {
    padding: 6vw 0;
    background: url(../images/index/top_active_bg_sp.png) no-repeat top 61% center;
    background-size: 100%;
  }
  #about .archive_list .active_txt p {
    padding: 0 0 12vw;
  }
  #about .archive_list .news_box {
    margin: 4vw auto 20vw;
  }
  #about .archive_list .news_box ul {
    padding: 2vw 4vw;
    overflow-y: scroll;
  }
  #about .archive_list .news_box li {
    flex-direction: column;
  }
  #about .active ul.disclosure li {
    width: calc((100% / 2) - 10px);
  }
}

/* よいや */
#about .active .yoiya {
  padding: 120px 0;
  background: url(../images/index/top_yoiya_bg.png) no-repeat center center;
  background-size: 100%;
}
#about .active .yoiya .yoiya_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#about .active .yoiya .yoiya_box p {
  width: 70%;
  line-height: 1.8;
}
#about .active .yoiya .yoiya_box .yoiya_img01 {
  width: 30%;
} /* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #about .active .yoiya .yoiya_box {
    width: 90%;
    margin: auto;
  }
  #about .active .yoiya .yoiya_box p {
    width: 60%;
    line-height: 1.8;
  }
  #about .active .yoiya .yoiya_box .yoiya_img01 {
    width: 38%;
  }
  #about .active .yoiya .yoiya_box .main_btn {
    margin: auto;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .active .yoiya {
    padding: 10vw 0;
    background: url(../images/lower/yoiya_yoiya_bg_sp.png) no-repeat top center;
    background-size: 100%;
  }
  #about .active .yoiya .yoiya_box {
    justify-content: center;
    gap: 5vw;
  }
  #about .active .yoiya .yoiya_box p {
    width: 100%;
  }
  #about .active .yoiya .yoiya_box .yoiya_img01 {
    width: 80%;
  }
}

/* メンバー募集中 */
#about .active .active_member {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0 120px;
}
#about .active .active_member .active_member_img {
  width: 30%;
}
#about .active .active_member .active_member_txt {
  width: 65%;
}
#about .active .active_member .active_member_txt .active_member_ttl {
  font-family: "Zen Old Mincho";
  width: fit-content;
  padding: 5px 30px 8px 20px;
  margin-bottom: 15px;
  background: url(../images/lower/memberttl_bg.png) no-repeat bottom left;
  background-size: contain;
  font-size: 160%;
  font-weight: bold;
  border-bottom: 6px #513832 double;
  position: relative;
}
#about .active .active_member .active_member_txt .active_member_ttl small {
  font-weight: 400;
  font-family: "Marck Script", cursive;
  padding-left: 10px;
}
#about .active .active_member .active_member_txt dd {
  line-height: 1.8;
}
#about .active .active_member .aboutus_txt {
  margin: 20px auto 0;
  display: flex;
  gap: 10px;
}
#about .active .active_member .aboutus_txt dl {
  background: #fff4f4;
  font-size: 90%;
  border: 1px solid;
  border-radius: 5px;
  padding: 15px;
}
#about .active .active_member .aboutus_txt dd {
  padding: 0;
  line-height: 1.4;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #about .active .active_member {
    padding: 6vw 0 12vw;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .active .active_member .active_member_txt .active_member_ttl {
    margin: 0 auto 15px;
  }
  #about .active .active_member .active_member_img {
    display: none;
  }
  #about .active .active_member .active_member_txt {
    width: 90%;
    margin: auto;
  }
  #about .active .active_member .aboutus_txt {
    margin: 20px auto 0;
    display: block;
  }
}

/* ----- yoiya.php #yoiya ----- */
/* introduction */
#yoiya .introduction {
  padding: 100px 0 120px;
  position: relative;
  z-index: 0;
  background: url(../images/lower/yoiya_yoiya_bg.png) no-repeat center center;
  background-size: 100%;
}
#yoiya .introduction .intro_txt p {
  text-align: center;
  letter-spacing: 1px;
  line-height: 2;
  font-size: 140%;
  font-weight: bold;
  color: #3e7ac7;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #yoiya .introduction {
    background: url(../images/lower/yoiya_yoiya_bg_sp.png) no-repeat top center;
    background-size: 100%;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #yoiya .introduction {
    padding: 10vw 0 20vw;
    background-position: bottom center;
  }
  #yoiya .introduction .intro_txt p {
    font-size: 120%;
  }
}

#yoiya .project {
  margin: 120px auto 0;
}
#yoiya .project .project_item {
  width: 90%;
  margin: 0 auto 120px;
}
#yoiya .project .project_item .project_name {
  width: 100%;
  padding: 8px 10px 10px 18px;
  background: #f6f6f3;
  font-family: "Zen Old Mincho";
  font-size: 160%;
  font-weight: bold;
  border-left: 6px #3e7ac7 solid;
  border-bottom: 6px #513832 double;
  margin-bottom: 15px;
  position: relative;
}
#yoiya .project .project_item .project_name .txt_adjust {
  vertical-align: text-top;
}
#yoiya .project .project_item .project_cnts {
  width: 96%;
  margin: 30px auto 0;
}
#yoiya .project .project_item .project_cnts p {
  line-height: 1.8;
}
#yoiya .project .project_item .project_cnts strong {
  display: block;
  width: fit-content;
  margin-bottom: 5px;
  color: #3e7ac7;
  font-size: 110%;
  font-weight: bold;
  line-height: 1.4;
}
#yoiya .project .project_item .project_cnts .highlight {
  display: inline-block;
  width: fit-content;
  margin-bottom: 5px;
  padding: 2px 5px 5px 5px;
  margin: 0 2px;
  background: #cce8f6;
  font-weight: bold;
  border-radius: 3px;
}
#yoiya .project .project_item .project_cnts .attention {
  color: #3e7ac7;
  font-size: 90%;
  line-height: 1.6;
}
/* カフェのポイント */
#yoiya .project .project_item .project_cnts .project_txt_point {
  width: 90%;
  margin: 40px auto 50px;
  padding: 20px 30px;
  background: #ffffff;
  font-size: 90%;
  border: 6px #513832 double;
  border-radius: 10px;
}
#yoiya .project .project_item .project_cnts .project_txt_point dt {
  width: fit-content;
  background: #3e7ac7;
  margin: -40px auto 10px 0px;
  padding: 10px 20px;
  font-family: "Yusei Magic", sans-serif;
  font-size: 120%;
  font-weight: bold;
  color: #ffffff;
  border-radius: 5px;
  letter-spacing: 1px;
}
#yoiya .project .project_item .project_cnts .project_txt_point dd {
  line-height: 1.6;
}

/* 運営事業枠 */
#yoiya .project .project_item .project_cnts .project_txt_item {
  line-height: 1.6;
  margin: 30px auto 50px;
}
#yoiya .project .project_item .project_cnts .project_txt_item dt {
  width: 100%;
  margin-bottom: 10px;
  border-left: 6px solid #513832;
  position: relative;
}
#yoiya .project .project_item .project_cnts .project_txt_item dt span {
  display: block;
  width: fit-content;
  min-width: 240px;
  background: #3e7ac7;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: bold;
  font-size: 110%;
}
#yoiya .project .project_item .project_cnts .project_txt_item dt::after {
  content: "";
  display: block;
  width: 0;
  border-bottom: 6px #a1c7f8 solid;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  z-index: -1;
}
#yoiya .project .project_item .project_cnts .project_txt_item.is-active dt::after {
  display: block;
  width: 100%;
  transition: all 1.5s ease 0s;
}
#yoiya .project .project_item .project_cnts .project_txt_item dd {
  padding: 10px 30px;
  line-height: 1.6;
}

#yoiya .project .project_item .project_cnts_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#yoiya .project .project_item .project_cnts .project_cnts_flex .project_img {
  line-height: 0;
  width: calc(38% - 30px);
  max-width: 400px;
  margin-right: 30px;
}
#yoiya .project .project_item .project_cnts .project_cnts_flex .project_txt {
  width: calc(60% - 30px);
  margin-left: 30px;
}

#yoiya .project .project_item .project_cnts .project_txt_item.project_cnts_flex dd {
  padding: 10px 0;
  line-height: 1.6;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #yoiya .project .project_item .project_name {
    padding: 3vw;
    background: #f6f6f3;
    font-size: 140%;
    line-height: 1.4;
  }
  #yoiya .project .project_item .project_cnts .project_txt .project_txt_point dt {
    margin: -6vw auto 3vw 0px;
    padding: 2vw 3vw;
  }
  #yoiya .project .project_item .project_cnts .project_txt_item dt::after {
    border-bottom: 4px #a1c7f8 solid;
  }
  #yoiya .project .project_item .project_cnts .project_txt .project_txt_point {
    width: 90%;
    margin: 40px auto 50px;
    padding: 2vw 3vw;
    border: 4px #513832 double;
  }
  #yoiya .project .project_item .project_cnts .project_txt_item dt span {
    min-width: none;
    padding: 2vw 3vw;
    font-size: 110%;
    line-height: 1.4;
  }
  #yoiya .project .project_item .project_cnts .project_txt_item dd {
    padding: 10px 0;
  }
  #yoiya .project .project_item .project_cnts .project_cnts_flex .project_img {
    line-height: 0;
    width: 90%;
    margin: auto;
  }
  #yoiya .project .project_item .project_cnts .project_cnts_flex .project_txt {
    width: 100%;
    margin: auto;
  }
}
