@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
  appearance: none; /* 標準プロパティを追加 */
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  word-break: break-all;
  -webkit-word-break: break-all;
  -moz-word-break: break-all;
  -o-word-break: break-all;
  -ms-word-break: break-all;
  font-size: 10px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #333;
}

/* 767px以下になるとフォントサイズが小さくなる */
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none!important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none!important;
  }
}

img {
  width: 100%;
}

#container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}


/* header */
.header {
  width: 100%;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header__main {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .header {
    padding: 0 2rem;
  }
}

.header__logo {
  width: 18rem;
}

.header__logo_sub {
  width: 60%;
  padding-bottom: 0.5rem;
  padding-left: 0.2rem;
}

.header__logo_name {
  width: 100%;
  padding-bottom: 0.6rem;
}

.header__right {
  display: flex;
  column-gap: 1rem;
  font-size: 1.8rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .header__right {
    padding-right: 0;
  }
}

.header__hb-btn {
  width: 3rem;
  height: 2.5rem;
  position: relative;
}

.header__hb-btn span {
  display: block;
  background-color: #000;
  width: 100%;
  height: 0.2rem;
  position: absolute;
  left: 0;
  border-radius: 1rem;
  transition: all 0.4s;
}

.header__hb-btn span:nth-child(1) {
  top: 0;
}
.header__hb-btn span:nth-child(2) {
  top: 1.25rem;
}
.header__hb-btn span:nth-child(3) {
  bottom: 0;
}

.header__hb-btn.active span:nth-child(1) {
  top: 1.25rem;
  transform: rotate(45deg);
}
.header__hb-btn.active span:nth-child(2) {
  display: none;
}
.header__hb-btn.active span:nth-child(3) {
  top: 1.25rem;
  transform: rotate(-45deg);
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* column-gap: 2rem; */
}

@media (max-width: 767px) {
  .header__nav {
    display: block;
    width: 100%;
    height: calc(100% - 10rem);
    position: fixed;
    top: 10rem;
    left: 120%;
    background-color: rgb(0, 88, 163, 0.9);
    color: #fff;
    padding: 5rem 3rem;
    transition: all 0.8s;
  }
  .header__nav.active {
    left: 0;
  }
}

.header__nav-item a{
  padding: 2rem 1rem;
  font-weight: 500;
}

.header__nav-item a:hover{
  color: #0058A3;
}

@media (max-width: 767px) {
  .header__nav-item a{
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    border-bottom:0.1rem solid #fff;
    font-size: 1.8rem;
  }
  .header__nav li:first-of-type{
    border-top:0.1rem solid #fff;
  }

}

.header__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2rem;
}

.header__icons-item {
  width: 2.5rem;
}

.header__icons-item a {
  padding: 2rem 1rem;
}


/* ハンバーガーメニュー */

/* .header__hb-btn {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: blue;
  z-index: 999;
} */

/* main */

.main {
  width: 100%;
}

.fv {
  width: 100%;
  height: calc( 100vh - 100px ); /* 追加: 親要素の高さを設定 */
  overflow: hidden; /* 追加: オーバーフローを隠す */
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .fv {
    height: 67vw;
  }
}

.slider {
  height: calc( 100vh - 100px );
  overflow: hidden;
}

@media (max-width: 767px) {
  .slider {
    height: 22rem;
    overflow: hidden;
  }
}

.fv__bg-image {
  width: 100%; /* 画像を横幅いっぱいに表示 */
  height: calc( 100vh - 100px );
}

@media (max-width: 767px) {
  .fv__bg-image {
    height: 22rem;
  }
}

.fv__bg-image img {
  width: 100%; /* 画像を横幅いっぱいに表示 */
  height: calc( 100vh - 100px );
  object-fit: cover; /* 追加: 画像を横幅いっぱいに表示 */
  object-position: top; /* 追加: 画像を上下中央寄せで表示 */
}

@media (max-width: 767px) {
  .fv__bg-image img {
    height: 22rem;
    object-position: top; /* 追加: 画像を上下中央寄せで表示 */
  }
}

.message {
  width: 100%;
  background-color: rgba(255, 255, 255);
  padding: calc(50 / 1200 * 100vw) calc(70 / 1200 * 100vw) calc(120 / 1200 * 100vw);
  text-align: center;
}

@media (max-width: 767px) {
  .message {
    padding: 0 calc(70 / 1200 * 100vw) calc(120 / 1200 * 100vw);
  }
}

.message h2 {
  font-size: 5rem;
  font-weight: 700;
  padding-bottom: calc( 70 / 1200 * 100vw);
}

@media (max-width: 767px) {
  .message h2 {
    font-size: calc( 100 / 1200 * 100vw);
  }
}

.message p {
  font-size: 2.4rem;
  padding-bottom: 1.3rem;
}

@media (max-width: 767px) {
  .message p {
    font-size: calc( 50 / 1200 * 100vw);
  }
}

#policy {
  width: 100%;
  padding-top: 10rem;
}

@media (max-width: 767px) {
  #policy {
    padding-top: calc( 100 / 1200 * 100vw);
  }
}

.policy__pic {
  width: 70%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .policy__pic {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: calc( 50 / 1200 * 100vw);
  }
}

.section {
  width: 100%;
  padding: 10rem;
  text-align: center;
  /* opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease; */
}

/* .section.visible {
  opacity: 1;
  transform: translateY(0);
} */

@media (max-width: 767px) {
  .section {
    padding: calc( 250 / 1200 * 100vw) calc( 30 / 1200 * 100vw);
  }
}

.section__title {
  font-size: 3.5rem;
  font-weight: 700;
  padding-bottom: 7rem;
  color: #0058A3;
  position: relative;
}

@media (max-width: 767px) {
  .section__title {
    font-size: calc( 100 / 1200 * 100vw);
    padding-bottom: calc( 150 / 1200 * 100vw);
  }
}

.section__title::before {
  content: '';
  border-top: 15px solid #0058A3;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #0058A3;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-640%);
}

@media (max-width: 767px) {
  .section__title::before {
    border-top: calc( 40 / 1200 * 100vw) solid #0058A3;
    border-right: calc( 40 / 1200 * 100vw) solid transparent;
    border-bottom: calc( 40 / 1200 * 100vw) solid transparent;
    border-left: calc( 40 / 1200 * 100vw) solid #0058A3;
    top: calc( 35 / 1200 * 100vw);
    transform: translateX(calc( 500 / 1200 * -100vw));
  }
}

.section__title-long::before {
  transform: translateX(-900%);
}

@media (max-width: 767px) {
  .section__title-long {
    font-size: calc( 70 / 1200 * 100vw);
    padding-bottom:calc( 50 / 1200 * 100vw);
  }
  .section__title-long::before {
    border-top: calc( 25 / 1200 * 100vw) solid #0058A3;
    border-right: calc( 25 / 1200 * 100vw) solid transparent;
    border-bottom: calc( 25 / 1200 * 100vw) solid transparent;
    border-left: calc( 25 / 1200 * 100vw) solid #0058A3;
    top: calc( 27 / 1200 * 100vw);
    transform: translateX(calc( 510 / 1200 * -100vw));
  }
}

.section__title::after {
  content: '';
  border-top: 15px solid transparent;
  border-right: 15px solid #0058A3;
  border-bottom: 15px solid #0058A3;
  border-left: 15px solid transparent;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(520%);
}

@media (max-width: 767px) {
  .section__title::after {  
    border-top: calc( 40 / 1200 * 100vw) solid transparent;
    border-right: calc( 40 / 1200 * 100vw) solid #0058A3;
    border-bottom: calc( 40 / 1200 * 100vw) solid #0058A3;
    border-left: calc( 40 / 1200 * 100vw) solid transparent;
    top: calc( 47 / 1200 * 100vw);
    transform: translateX(calc( 410 / 1200 * 100vw));
  }
}

.section__title-long::after {
  transform: translateX(780%);
}

@media (max-width: 767px) {
  .section__title-long::after {
    border-top: calc( 25 / 1200 * 100vw) solid transparent;
    border-right: calc( 25 / 1200 * 100vw) solid #0058A3;
    border-bottom: calc( 25 / 1200 * 100vw) solid #0058A3;
    border-left: calc( 25 / 1200 * 100vw) solid transparent;
    top: calc( 35 / 1200 * 100vw);
    transform: translateX(calc( 450 / 1200 * 100vw));
  }
}

#profile {
  width: 100%;
  text-align: center;
  background-color: #F0F0F0;
}

.profile__contents {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .profile__contents {
    display: block;
    padding-bottom: calc( 50 / 1200 * 100vw);
  }
}

.profile__pic {
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: flex; /* 追加: フレックスボックスを使用 */
  align-items: center; /* 追加: 垂直方向の中央寄せ */
  justify-content: center; /* 追加: 水平方向の中央寄せ */
}

@media (max-width: 767px) {
  .profile__pic {
    width: 70%;
  }
}

.profile__pic-img {
  width: 70%;
  float: right;
  display: block; /* ブロック要素に変更 */
  margin: auto; /* 上下中央寄せ */
}

@media (max-width: 767px) {
  .profile__pic-img {
    width: 100%;
    float:none;
  }
}

.profile__text {
  width: 50%;
}

@media (max-width: 767px) {
  .profile__text {
    width: 100%;
  }
}

.profile__name {
  font-size: 4rem;
  font-weight: 700;
  padding: 2rem 0 3rem;
  text-align: left; 
}

@media (max-width: 767px) {
  .profile__name {
    font-size: 4rem;
    padding: calc( 100 / 1200 * 100vw) 0 calc( 80 / 1200 * 100vw);
    text-align: center; 
  }
}

.profile__history-title {
  width: 100%;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: left;
  line-height: 2;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .profile__history-title {
    font-size: calc( 80 / 1200 * 100vw);
    text-align: left;
    padding-bottom: calc( 50 / 1200 * 100vw);
    padding-left: calc( 50 / 1200 * 100vw);
  }
}

.profile__history-list {
  width: 100%;
  text-align: left;
  line-height: 2;
  padding-bottom: 5rem;
  font-size: 2rem;
}

@media (max-width: 767px) {
  .profile__history-list {
    padding-bottom: calc( 60 / 1200 * 100vw);
    font-size: calc( 50 / 1200 * 100vw);
  }
}

.profile__history-list li{
  margin-left: 2rem;
  padding-left: 1rem;
}

.profile__history-etc {
  width: 100%;
  text-align: left;
  line-height: 2;
  padding-bottom: 4rem;
  font-size: 2rem;
}

@media (max-width: 767px) {
  .profile__history-etc {
    padding-bottom: calc( 60 / 1200 * 100vw);
    font-size: calc( 50 / 1200 * 100vw);
  }
}

.profile__history-etc li{
  margin-left: 2rem;
  padding-left: 1rem;
}

.profile__video-title {
  font-size: 2.6rem;
  font-weight: 600;
  padding-bottom: 2rem;
  text-align: left;
}

@media (max-width: 767px) {
  .profile__video-title {
    font-size: calc( 80 / 1200 * 100vw);
    padding-bottom: calc( 50 / 1200 * 100vw);
    padding-left: calc( 50 / 1200 * 100vw);
  }
}

.profile__video {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

@media (max-width: 767px) {
  .profile__video {
    width: 100%;
  }
}

.profile__video iframe{
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
}

.profile__video-text {
  font-size: 1.4rem;
  padding-bottom: 2rem;
  text-align: right;
}

.report__contents {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5rem;
  column-gap: 5rem;
  row-gap: 3rem;
}

@media (max-width: 767px) {
  .report__contents {
    display: block;
    padding-bottom: calc( 60 / 1200 * 100vw);
  }
}

.report__content {
  width: 100%;
}

@media (max-width: 767px) {
  .report__content {
    width: 100%;
    padding-bottom: calc( 27 / 1200 * 100vw);
  }
}

.report__content >  .report__content_atIndex {
  margin-bottom: 2rem;
}

.report__pic {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .report__pic {
    height: auto;
  }
}

.report__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.report__title {
  width: 100%;
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
  text-align: left;
  font-weight: 700;
  color: #0058A3;
}

@media (max-width: 767px) {
  .report__title {
    font-size: calc( 36 / 1200 * 100vw);
    margin-top: -0.8rem;
    padding-bottom: 0rem;
  }
}

.report__date {
  width: 100%;
  padding-bottom: 1rem;
  text-align: left;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .report__date {
    padding-bottom: 1rem;
    font-size: calc( 36 / 1200 * 100vw);
  }
}

.btn__link {
  padding: 2rem;
  display: flex;
  color: #fff;
  background-color: #0058A3;
  border-radius: 2rem;
  width: 20rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .btn__link {
    width: calc( 500 / 1200 * 100vw);
    height: calc( 70 / 1200 * 100vw);
    padding: calc( 50 / 1200 * 100vw);
    font-size: 1.4rem;
    font-weight: 700;
  }
}

.btn__link:hover {
  background-color: rgba(0, 88, 163, 0.7);
}

.btn__home {
  /* margin-top: calc( 100 / 1200 * 100vw ); */
  margin-top: 0;
}

#news {
  background-color: #F0F0F0;
}

.news__contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .news__contents {  
    grid-template-columns: 1fr 1fr;
    padding-bottom: calc( 100 / 1200 * 100vw);
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .news__content {
    height: calc( 360 / 375 * 100vw);
  }
}

.news__pic {
  width: 100%;
  padding-bottom: 0.8rem;
  position: relative;
}

.news__pic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.3s;
}

.news__pic:hover::before {
  opacity: 1;
}

@media (max-width: 767px) {
  .news__pic {
    padding-bottom: 0.2rem;
  }
}

.text-nav__backread {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 500;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.text-nav__backread:hover {
  opacity: 1;
}

.news__title {
  width: 100%;
  padding-bottom: 0.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.8rem;
  color: #0058A3;
}

@media (max-width: 767px) {
  .news__title {
    padding-bottom: 0.2rem;
    font-size: calc( 36 / 1200 * 100vw);
  }
}

.news__date {
  width: 100%;
  padding-bottom: 1rem;
  text-align: left;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .news__date {
    padding-bottom: 1rem;
    font-size: calc( 36 / 1200 * 100vw);
  }
}

.text-nav__backread-btn.btn__link {
  padding: 1.5rem 0;
  display: flex;
  color: #fff;
  background-color: #0058A3;
  border-radius: 1rem;
  width: 50%;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .text-nav__backread-btn.btn__link {
    width: 12rem;
    font-size: calc( 36 / 1200 * 100vw);
    padding: calc( 40 / 1200 * 100vw) 0;
  }
}

.text-nav__backread-btn.btn__link:hover {
  background-color: rgba(0, 88, 163, 0.7);
}

.cosmos__contents {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .cosmos__contents {
    display: block;
    padding-bottom: calc( 80 / 1200 * 100vw);;
  }
}

.cosmos__pic {
  width: 50%;
  height: auto;
  margin: 0 auto;
  display: flex; /* 追加: フレックスボックスを使用 */
  align-items: center; /* 追加: 垂直方向の中央寄せ */
  justify-content: center; /* 追加: 水平方向の中央寄せ */
}

@media (max-width: 767px) {
  .cosmos__pic {
    width: 80%;
    display: block; /* 追加: フレックスボックスを使用 */
  }
}

.cosmos__pic-img {
  width: 100%;
  float: none;
}

.cosmos__text {
  width: 50%;
}

@media (max-width: 767px) {
  .cosmos__text {
    width: 100%;
  }
}

.cosmos__name {
  font-size: 4rem;
  font-weight: 700;
  padding: 2rem 0 3rem;
  text-align: left; 
}

@media (max-width: 767px) {
  .cosmos__name {
    font-size: calc( 90 / 1200 * 100vw);
    padding: calc( 70 / 1200 * 100vw) calc( 20 / 1200 * 100vw);
  }
}

.cosmos__policy-title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 2;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .cosmos__policy-title {
    font-size: calc( 70 / 1200 * 100vw);
    padding-left: calc( 30 / 1200 * 100vw);
    padding-bottom: calc( 70 / 1200 * 100vw);
  }
}

.cosmos__policy {
  text-align: left;
  padding-bottom: 4rem;
}

@media (max-width: 767px) {
  .cosmos__policy {
    padding-left: calc( 80 / 1200 * 100vw);
    padding-right: calc( 80 / 1200 * 100vw);
    padding-bottom: calc( 80 / 1200 * 100vw);
    font-size: calc( 50 / 1200 * 100vw);
  }
}

.cosmos__history-list {
  width: 100%;
  text-align: left;
  line-height: 2;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .cosmos__history-list {
    font-size: calc( 70 / 1200 * 100vw);
    padding-bottom: 5rem;
  }
}

.cosmos__activity-title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 2;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .cosmos__activity-title {
    font-size: calc( 70 / 1200 * 100vw);
    padding-left: calc( 30 / 1200 * 100vw);
    padding-bottom: calc( 70 / 1200 * 100vw);
  }
}

.cosmos__activity-etc li{
  margin-left: 2rem;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .cosmos__activity-etc li{
    font-size: calc( 50 / 1200 * 100vw);
  }
}

.cosmos__activity-etc {
  width: 100%;
  text-align: left;
  line-height: 2;
  padding-bottom: 4rem;
}

.cosmos__history-etc li{
  margin-left: 2rem;
  padding-left: 1rem;
}

.cosmos__member-title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 2;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .cosmos__member-title {
    font-size: calc( 70 / 1200 * 100vw);
    padding-left: calc( 30 / 1200 * 100vw);
    padding-bottom: calc( 70 / 1200 * 100vw);
  }
}

.cosmos__member {
  text-align: left;
  padding-bottom: 4rem;
    margin-left: 2rem;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .cosmos__member {
    font-size: calc( 50 / 1200 * 100vw);
  }
}

.footer__main {
  background-color: #0058A3;
  padding: 3rem 4rem;
  color: #fff;

}

.footer__contents {
  display: flex;
  align-items:start;
}

@media (max-width: 767px) {
  .footer__contents {
    display: block;
  }
}

.footer__logo p{
  font-size: 1.8rem;
}

.footer__logo h2{
  font-size: 3.2rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  .footer__logo h2{
    line-height: 1.5;
  }
}

.footer__forum{
  font-size: 1.2rem;
  padding-top: 5rem;
  padding-left: 0.8rem;
}

@media (max-width: 767px) {
  .footer__forum{
    font-size: 1.2rem;
    padding-top: 0rem;
    padding-left: 0rem;
    margin-top: -0.5rem;
  }
}

.footer__access {
  padding-left: 3rem;
}

@media (max-width: 767px) {
  .footer__access {
    padding-left: 0rem;
    padding-top: 2rem;
  }
}

.footer__copyright {
  height: 4rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 活動報告ページ */

.breadlist {
  padding-top: 5rem;
  display: flex;
  padding: 2rem 4rem;
}

.report__top-pic {
  margin-top: 10rem;
  height: 30rem;
}

@media (max-width: 767px) {
  .report__top-pic {
    margin-top: 10rem;
    height: 20rem;
  }
}

.report__top-pic img{
  height: 30rem;
  object-fit: cover;
  object-position: 30% 30%;
}

@media (max-width: 767px) {
  .report__top-pic img{
    height: 20rem;
    object-fit: cover;
    object-position: 30% 30%;
  }
}

.report__page {
  background-color: #F0F0F0;
  padding-bottom: calc( 100 / 1200 * 100vw);
}

.report__page-title {
  padding: 2rem 4rem 0 4rem;
}


.report__page-contents {
  padding: 0 4rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .report__page-contents {
    padding: 0 calc( 100 / 1200 * 100vw) calc( 200 / 1200 * 100vw);
    grid-template-columns: 1fr 1fr;
    padding-bottom: calc( 60 / 1200 * 100vw);
  }
}

.report__page-contents > div {
  /* height: 40rem; */
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

/* @media (max-width: 767px) {
  .report__page-contents > div {
    height: 22rem;
  }
} */

.report__pic {
  flex: 1;
  overflow: hidden;
  width: 100%;
  height: 30rem;
  padding-bottom: 1rem;
}

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

@media (max-width: 767px) {
  .report__only {
    height: 12rem;
  }
}

/* report-page */

.inner__report-page {
  padding: 2rem 15rem;
}

@media (max-width: 767px) {
  .inner__report-page {
    padding: 2rem 2rem;
  }

}

.report-page__top {
  margin-top: 10rem;
  height: 15rem;
  background-color: #0058A3;
  display: flex;
  align-items: center;

}

@media (max-width: 767px) {
  .report-page__top {
    height: 10rem;
  }
}

.report-page__top p {
  color: #fff;
  font-size: calc(50 / 1200 * 100vw);
  padding-left: calc(120 / 1200 * 100vw);
}

@media (max-width: 767px) {
  .report-page__top p {
    font-size: calc(130 / 1200 * 100vw);
  }
}

.report-page.breadlist {
  padding: 0;
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .report-page.breadlist {
    padding: 0;
    padding-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}

.report-page__title-title {
  font-size: calc(22 / 1200 * 100vw);
  color: #0058A3;
  font-weight: 700;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
.report-page__title-title {
  font-size: calc(50 / 1200 * 100vw);
  color: #0058A3;
  font-weight: 700;
  padding-bottom: 2rem;
}
}

.report-page__line {
  padding-top: 3rem;
  width: 100%;
}

.report-page__content {
  width: 100%;
}

.report-page__content {
  width: 100%;
}

.report-page__pictures {
  width: 100%;
  display: grid;
  /* grid-template-columns: 1fr 1fr 1fr; */
  gap: 1rem;
  padding-bottom: 3rem;
}

.report-page__content-pic {
  width: 70%;
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .report-page__content-pic {
    width: 100%;
    padding-bottom: 2rem;
  }
}

.report-page__textarea-text {
  font-size: 2.2rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .report-page__textarea-text {
    font-size: calc(50 / 1200 * 100vw);
    padding-bottom: 5rem;
  }
}

.news__page-content > .report__page-content > .report__pic {
  height: calc( 330 / 1200 * 100vw );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.news__page-content > .report__page-content > .report__pic img {
  object-fit: cover;
  object-position: top;
}

@media (min-width: 1200px) {
  .news__page-content > .report__page-content > .report__pic {
    height: 33rem;
  }
}

.btn__home.btn__link.btn__news__home {
  margin-top: 0;
}

/* @media (max-width: 767px) {
  .news__page-content {
    height: 25rem!important;
  }
} */
