/* assets/css/style.css
 * 最小CSS。ハンバーガー（CSS+JS）と fadeInUp をサポート。
 */

/* リセット最小限 */


:root {
  --color-main: #A52125;
  --color-dark: #000;
  --blank: 100px;
}

@media screen and (max-width: 896px) {
  :root {
    --blank: 50px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "minion-pro", "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.125;
  color: #222;
  letter-spacing: 1.5px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  body {
    font-size: clamp(12px, 3.7vw, 16px);
    letter-spacing: 0.9px;
  }
}

@media screen and (max-width: 896px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}

main {
  margin-top: 90px;
  overflow: hidden;
}

@media screen and (max-width: 1100px) {
  main {
    margin-top: 80px;
  }
}

a {
  color: var(--color-dark);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 2.5;
}

/* コンテンツ幅 */
.content {
  max-width: 1100px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1100px) {
  .content {
    padding: 0 20px;
  }
}

.center {
  text-align: center;
}

/* fadeInUp */
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fadeInUp.is_show {
  opacity: 1;
  transform: translateY(0);
}

/* sectionのmargin */
[class$="Sec"] {
  padding: var(--blank) 0;
}


.headLine span {
  font-size: 15px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  color: var(--color-main);
}

.headLine h2 {
  font-size: 40px;
  position: relative;
  padding: 21px 0;
  font-weight: 500;
}

.headLine h2:before {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background: #000;
  left: 0;
  bottom: 0;
}

.headLine.center h2:before {
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .headLine h2 {
    padding: 15px 0;
  }

  .headLine span {
    font-size: 12px;
  }
}

/* ------------------------------
   ヘッダー
------------------------------ */

header {
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}

header .header_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

header .header_logo {
  display: inline-flex;
  align-items: center;
}

header .header_logo img {
  height: 68px;
  object-fit: contain;
}

header nav {
  display: flex;
  align-items: center;
  transition: 0.3s;
  width: 50%;
}

header nav ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

header nav ul li a {
  font-size: 12px;
  font-weight: 600;
}

header .header_trial a img {
  width: 32px;
  margin-right: 14px;
}

header .site_logo img {
  height: 36px;
  width: auto;
  display: block;
}

@media screen and (max-width: 1100px) {
  header {
    height: 80px;
  }

  header .header_logo {
    padding: 16px 20px;
  }
}

.menu {
  width: 80px;
  margin-left: auto;
  transition: 0.3s;
}

.menu .menu_btn {
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  position: relative;
  z-index: 100;
}

.menu .menu_btn label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.menu .menu_btn input {
  display: none;
}

.menu .menu_btn span {
  position: absolute;
  width: 50%;
  height: 2px;
  background: #000;
  left: 50%;
  transform: translate(-50%, 0);
  top: 35%;
  transition: 0.3s;
  opacity: 1;
}

.menu .menu_btn span:nth-child(2) {
  top: 50%;
}

.menu .menu_btn span:nth-child(3) {
  top: 65%;
}

.menu:has(:checked) .menu_btn span:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.menu:has(:checked) .menu_btn span:nth-child(2) {
  opacity: 0;
  left: 60%;
}

.menu:has(:checked) .menu_btn span:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu ul {
  box-sizing: border-box;
  padding: 75px 30px;
  position: fixed;
  right: 0;
  top: 0;
  width: 70%;
  height: 100vh;
  background: #ffffffcc;
  transition: all 0.5s;
  overflow-y: auto;
  transform: translateX(100%);
  transition: 0.5s;
}

.menu:has(:checked) ul {
  transform: translateX(0);
}

.menu ul {
  width: 50%;
  height: 100vh;
  max-width: 100%;
  padding: 75px 30px;
  box-sizing: border-box;
}

.menu ul li {
  margin-bottom: 35px;
}

.menu ul li a {
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

.menu ul li a span {
  display: block;
  font-size: 23.5px;
  margin-top: 8px;
  letter-spacing: 2px;
}

@media screen and (max-width: 1100px) {
  header nav {
    display: none;
  }
}

@media screen and (min-width: 1101px) {
  .menu {
    display: none;
  }
}


/* ------------------------------
   トップページ
------------------------------ */


/* fv */

.fv {
  height: 91vh;
  background: url(../img/fv_bg.jpg)no-repeat center / cover;
  position: relative;
}

.fv h1 {
  position: absolute;
  width: 100%;
  max-width: 1100px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 5%;
}

.fv h1 img {
  width: 70%;
}

.fv .fv_scroll {
  width: auto;
  bottom: 0;
  right: 5%;
  height: 220px;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .fv {
    background-image: url(../img/fv_bg_sp.jpg);
  }

  .fv h1 {
    top: 33%;
    padding: 0 0 0 5%;
  }

  .fv h1 img {
    width: 75%;
  }

  .fv .fv_scroll {
    height: 30%;
  }
}

/* 私たちについて */

.aboutSec {
  margin: 0 auto;
  padding: var(--blank) 0;
  background: url(../img/about_bg.png)no-repeat center / cover;
}

.aboutSec p {
  margin-bottom: 40px;
}

.aboutSec .about_gallery {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
}

.aboutSec .about_gallery img {
  width: calc(100% / 3 - 80px / 3);
}

@media screen and (max-width: 768px) {
  .aboutSec .about_gallery {
    margin-top: 60px;
  }

  .aboutSec .about_gallery img {
    width: 100%;
  }

  .aboutSec .about_gallery img:nth-child(n + 2) {
    display: none;
  }
}



/* TOPブログ一覧 */

.blogSec {
  padding-top: 0;
}

.blogSec .blogLink {
  text-align: center;
}

.blogSec .blogLink a {
	border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    padding: 25px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    font-size: 1.2rem;
    text-decoration: none;
    background: #A52125;
    margin: 60px 0;
    min-width: 300px;
}

.blogSec .post_content .post_list ul li a .post_txt {
	padding: 0!important;
}


/* 私たちの使命 */
.missionSec {
  margin: 0 auto;
  padding: var(--blank) 0;
  background: #F4F3F3;
}

.missionSec .mission_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 50px;
}

.missionSec .mission_wrap .mission_txt {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.missionSec .mission_wrap img {
  width: calc(100% - 450px);
}

@media screen and (max-width: 768px) {

  .missionSec .mission_wrap .mission_txt,
  .missionSec .mission_wrap img {
    width: 100%;
  }
}


/* 私たちの使命 */
.visionSec {
  margin: 0 auto;
  padding: var(--blank) 0;
}

.visionSec .vision_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 50px;
}

.visionSec .vision_wrap .vision_txt {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visionSec .vision_wrap img {
  width: calc(100% - 450px);
}


@media screen and (max-width: 768px) {
  .vision_wrap {
    flex-direction: column-reverse;
  }

  .visionSec .vision_wrap .vision_txt,
  .visionSec .vision_wrap img {
    width: 100%;
  }
}

/* 協会概要 */

.overviewSec {
  background: url(../img/overview_bg.png)no-repeat center / cover;
}

.overviewSec .overview_content_bg {
  background: #fff;
  border-radius: 40px;
  padding: 8%;
}

.overviewSec table {
  width: 100%;
  border-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.5;
}

.overviewSec table th {
  width: 15%;
  font-weight: bold;
  border-bottom: 2px solid #A52125;
  padding: 25px 0;
}

.overviewSec table td {
  width: 70%;
  border-bottom: 1px solid #DDDDDD;
  padding: 25px 0;
  padding-left: 15%;
}


@media screen and (max-width: 768px) {

  .overviewSec table th,
  .overviewSec table td {
    width: 100%;
    display: block;
  }

  .overviewSec table th {
    border-bottom: none;
    padding-bottom: 0;
  }

  .overviewSec table td {
    padding: 0 0 25px;
  }
}

/* お問い合わせ */

.contactSec {
  background: #f2f2f2;
}

.contactSec .form {
  padding: 50px 80px;
}

.contactSec .form .form_item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contactSec .form .form_item label {
  width: 30%;
  text-align: left;
  font-weight: 600;
}

.contactSec .form .form_item input {
  width: 70%;
  background: #fff;
  height: 50px;
  padding: 10px;
}

.contactSec .form .form_item textarea {
  width: 70% !important;
  min-height: 40px;
  background: #fff;
  padding: 10px;
}

.contactSec .form .form_button {
  margin-top: 80px;
}

.contactSec .form .form_button input,
.contactSec .form .form_button button {
  display: block;
  color: #fff;
  max-width: 100%;
  width: 330px;
  height: 70px;
  background: #A52125;
  border: 2px solid #A52125;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 16px;
  border: none;
  letter-spacing: 1px;
  font-weight: bold;
}

.form_button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 50px;
}

.contactSec .form .form_button_wrap .form_button {
  margin-top: 34px;
}


@media screen and (max-width: 768px) {
  .contactSec .form {
    padding: 0;
  }

  .contactSec .form .form_item label {
    margin-bottom: 20px;
  }

  .contactSec .form .form_item label,
  .contactSec .form .form_item input,
  .contactSec .form .form_item textarea {
    width: 100% !important;
  }

  .contactSec .form .form_button {
    margin-top: 34px;
  }
}


/* 投稿一覧 */

.post_content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
}

.post_content .post_title {
  width: 250px;
}

.post_content .post_title h2 {
  font-size: 36px;
}

.post_content .post_list {
  flex: 1;
}

.post_content .post_list ul {
  border-bottom: 1px solid #ccc;
}

.post_content .post_list ul li a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 30px 20px;
  border-top: 1px solid #ccc;
}

.post_content .post_list ul li a .post_thumb {
  width: 200px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 10px 0;
  overflow: hidden;
}

.post_content .post_list ul li a .post_thumb.noimg img {
  width: 80%;
}

.post_content .post_list ul li a .post_txt {
  padding: 0px 40px;
  padding-right: 80px;
  flex: 1;
}

.post_content .post_list ul li a .post_txt time {
  display: inline-block;
  color: var(--color-main);
  font-size: 13px;
  margin-bottom: 12px;
}

.post_content .post_list ul li a .post_txt h3 {
  font-weight: bold;
}

.post_content .post_list ul li a .post_txt h3 br {
  display: none;
}

.post_content .post_list ul li a .post_txt p {
  margin-top: 16px;
  font-size: 14px;
}

.post_content .post_list ul li a .post_thumb img {
  object-view-box: inset(0%);
  transition: 0.3s;
}

.post_content .post_list ul li a:hover .post_thumb.noimg img {
  width: 90%;
  object-view-box: inset(0%);
}

.post_content .post_list ul li a:hover .post_thumb img {
  object-view-box: inset(5%);
}

@media screen and (max-width: 896px) {
  .post_content .post_title h2 {
    margin-bottom: 0;
    font-size: 25px;
    width: 100%;
  }

  .post_content .post_list {
    flex: initial;
    width: 100%;
  }

  .post_content .post_list ul li a {
    padding: 20px 0;
  }

  .post_content .post_list ul li a .post_thumb {
    width: 110px;
    aspect-ratio: 1.2 / 1;
  }

  .post_content .post_list ul li a .post_txt {
    width: calc(100% - 130px);
    padding: 0;
    margin-left: 20px;
  }

  .post_content .post_list ul li a:before {
    content: none;
  }

  .post_content a.news_link {
    margin-left: auto;
    padding-left: 74px;
  }

  .post_content a.news_link:before {
    width: 50px;
    height: 50px;
  }
}


/* ------------------------------
   フッター
------------------------------ */

footer {
  color: #fff;
  width: 100%;
  background: #152429;
  letter-spacing: 1.2px;
  line-height: 2;
  padding: 100px 0 60px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 54px;
  font-size: 14px;
  gap: 30px 60px;
}

@media screen and (max-width: 820px) {
  .footer_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer_wrap a {
  margin-right: auto;
}

.footer_wrap a img {
  width: 300px;
}

footer small {
  display: inline-block;
  width: 100%;
  font-size: 14px;
}

@media screen and (max-width: 896px) {
  .footer_content {
    padding: 50px 20px 180px;
  }
}


.privacy_cont {
  margin: var(--blank) 0;
}

.privacy_cont h2 {
  font-weight: bold;
  border-left: 5px solid #A52125;
  line-height: 1.2;
  padding-left: .5em;
  font-size: 154%;
  margin-top: 2em;
  margin-bottom: 1rem;
}

.privacy_cont ol {
  margin: 10px 0 10px 30px;
}

.privacy_cont li {
  line-height: 2.5;
  list-style: auto;
}

.privacy_cont li::marker {
  color: var(--color-main);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

@media screen and (max-width: 896px) {
  .privacy_cont p,
  .privacy_cont li {
    line-height: 2;
  }
}