@charset "UTF-8";
@font-face {
  font-family: "notoSans";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "notoSansMedium";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
}
@font-face {
  font-family: "hiraMin";
  src: url("../fonts/HiraMinProN-W6-AlphaNum-03.otf") format("opentype");
}
@font-face {
  font-family: "interRegular";
  src: url("../fonts/Inter-Regular.otf") format("opentype");
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  outline: none;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "notoSans";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100dvh;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  padding: 0 15px;
}

/* レスポンシブ */
.view-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .view-pc {
    display: none;
  }
}

.view-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .view-sp {
    display: block;
  }
}

.view-tab {
  display: none;
}
@media screen and (max-width: 991px) {
  .view-tab {
    display: block;
  }
}

/* 幅設定 */
.inner-def {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

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

/* タイトル */
.sec-ttl {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.sec-ttl .en {
  font-size: 1.6rem;
  font-family: "notoSansMedium";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec-ttl .en {
    font-size: 1.4rem;
  }
}
.sec-ttl .ja {
  font-size: 3.6rem;
  color: #0c659e;
}
@media screen and (max-width: 767px) {
  .sec-ttl .ja {
    font-size: 2.5rem;
  }
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px;
  z-index: 100;
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}

.header__logo a span {
  display: block;
}
.header__logo a .ttl {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 2px;
}
@media screen and (max-width: 991px) {
  .header__logo a .ttl {
    font-size: 1rem;
  }
}
.header__logo a .ttl.ttl1 {
  display: block;
}
@media screen and (max-width: 991px) {
  .header__logo a .ttl.ttl1 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__logo a .ttl.ttl1 {
    display: block;
  }
}
.header__logo a .ttl.ttl2 {
  display: none;
}
@media screen and (max-width: 991px) {
  .header__logo a .ttl.ttl2 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header__logo a .ttl.ttl2 {
    display: none;
  }
}
.header__logo a .name {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .header__logo a .name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .header__logo a .name {
    font-size: 1.4rem;
  }
}

.gNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 991px) {
  .gNav ul {
    gap: 15px;
  }
}
.gNav ul li a {
  font-size: 1.4rem;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 991px) {
  .gNav ul li a {
    font-size: 1.3rem;
  }
}
.gNav ul li a:hover {
  color: #0c659e;
}
.gNav ul li a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.gNav ul li a:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0c659e;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
@media screen and (max-width: 767px) {
  .gNav {
    display: none;
  }
}

/* モバイルナビ */
.mNav {
  display: none;
}
@media screen and (max-width: 767px) {
  .mNav {
    display: block;
  }
}
.mNav.is-show .mNav__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mNav.is-show .mNav__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.mNav.is-show .mNav__item:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.mNav.is-show .mNav__item:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.mNav.is-show .mNav__item:nth-child(4) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.mNav.is-show .mNav__item:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.mNav.is-show .mNav__item:nth-child(6) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.mNav.is-show .mNav__item:nth-child(7) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.mNav.is-show .mNav__txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.mNav.is-show .mNav__sns {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.mNav.is-show .mNav__inner {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
}
.mNav.is-show .mNav__menu {
  visibility: visible;
  opacity: 1;
}
.mNav.is-show .nav-toggle {
  background-color: #fff;
}
.mNav.is-show .menu-trigger span {
  background-color: #0c659e;
}
.mNav.is-show .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.mNav.is-show .menu-trigger span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.mNav.is-show .menu-trigger span:nth-of-type(3) {
  opacity: 0;
}
.mNav.is-hide .mNav__menu {
  visibility: hidden;
}

.mNav__inner {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  vertical-align: middle;
  pointer-events: none;
  opacity: 0;
  background: #0c659e;
  -webkit-transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  -webkit-transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, -webkit-transform;
  transition-property: background, opacity, transform;
  transition-property: background, opacity, transform, -webkit-transform;
}

.mNav__menu {
  padding: 12vh 10vw 5vh;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: opacity 0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.mNav__item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.mNav__item:not(:last-child) {
  margin-bottom: 10px;
}
.mNav__item a {
  font-size: 1.5rem;
  color: #fff;
}

.mNav__txt {
  border-top: 0.5px solid #fff;
  border-bottom: 0.5px solid #fff;
  margin-top: 35px;
  padding: 30px 10px 25px;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.mNav__txt .ttl {
  font-size: 1.4rem;
  line-height: 1.4;
}
.mNav__txt .name {
  font-size: 3rem;
  font-weight: bold;
}

.mNav__sns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.mNav__sns img {
  width: 40px;
}

.nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 230;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #0c659e;
  border-radius: 7px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  outline: none;
}

.menu-trigger {
  position: relative;
  width: 18px;
  height: 12px;
  text-decoration: none;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 6px;
}
.menu-trigger span:nth-of-type(3) {
  top: 12px;
}

/* パンくず */
.breadcrumb {
  max-width: 1200px;
  width: 100%;
  margin: 110px auto 0;
  padding: 0 15px;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: 80px auto 0;
    font-size: 1.1rem;
  }
}
.breadcrumb > span {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .breadcrumb > span {
    margin: 0 10px;
  }
}
.breadcrumb > span:first-child {
  margin-left: 0;
}
.breadcrumb > span:last-child {
  margin-right: 0;
}
.breadcrumb .current-item {
  color: #0c659e;
}

/* フェードイン */
.fadeInUp {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fadeInUp {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.fadeInUp.is-invasion {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
  -webkit-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*--------------------------------
	トップページ
--------------------------------*/
.mv {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .mv {
    display: block;
    height: auto;
    padding-top: 70px;
  }
}

.mv__content {
  position: relative;
  width: 55%;
  background-color: #0c659e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .mv__content {
    width: 100%;
    display: block;
    padding: 30px 15px 25px;
  }
}

.mv__txt {
  margin-top: 4.5vw;
}
@media screen and (max-width: 767px) {
  .mv__txt {
    margin-top: 0;
  }
}
.mv__txt .txt {
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 767px) {
  .mv__txt .txt {
    margin-bottom: 15px;
  }
}
.mv__txt .txt .ttl {
  font-size: 1.6vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .mv__txt .txt .ttl {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .mv__txt .txt .ttl {
    font-size: 13px;
  }
}
.mv__txt .txt .name {
  font-size: 3.2vw;
}
@media screen and (max-width: 767px) {
  .mv__txt .txt .name {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .mv__txt .txt .name {
    font-size: 22px;
  }
}
.mv__txt .catch {
  font-size: 7.2vw;
  color: #ecd874;
  line-height: 1.15;
  font-family: "hiraMin";
}
@media screen and (max-width: 767px) {
  .mv__txt .catch {
    font-size: 5rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  .mv__txt .catch {
    font-size: 4rem;
  }
}

.mv__img {
  position: relative;
  width: 45%;
  background: url(../images/mv.webp) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 1199px) {
  .mv__img {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 100%;
    height: 100vw;
    background-size: contain;
  }
}

.marquee {
  position: absolute;
  left: 0;
  bottom: 1.5vw;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .marquee {
    bottom: 0;
    background-color: #0c659e;
    padding-bottom: 1.5vw;
  }
}
.marquee.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .marquee.pc {
    display: none;
  }
}
.marquee.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .marquee.sp {
    display: block;
  }
}

.marquee__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 25s linear infinite;
          animation: marquee 25s linear infinite;
}
.marquee__inner span {
  padding-right: 2vw;
  white-space: nowrap;
  font-size: 8.5vw;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .marquee__inner span {
    padding-right: 4vw;
    font-size: 20vw;
  }
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sns-icons {
  position: fixed;
  top: 100px;
  right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  z-index: 90;
}
@media screen and (max-width: 991px) {
  .sns-icons {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sns-icons {
    display: none;
  }
}
.sns-icons img {
  width: 35px;
}

.news {
  padding: 100px 0 40px;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 60px 0 20px;
  }
}
.news .sec-ttl {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .news .sec-ttl {
    text-align: center;
  }
}
.news .more-btn {
  max-width: 270px;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .news .more-btn {
    display: none;
  }
}
.news .more-btn .arrow {
  width: 0;
}
.news .more-btn .arrow:after {
  width: 9px;
  height: 9px;
}

.news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 140px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .news__head {
    display: block;
    margin-bottom: 20px;
  }
}

.news__item {
  position: relative;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .news__item {
    gap: 4vw;
  }
}
.news__item:first-child {
  border-top: 1px solid #000;
}
.news__item:hover .arrow {
  background-color: #fff;
}
.news__item:hover .arrow:after {
  border-color: #0c659e;
}
.news__item .thumb {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news__item .thumb {
    width: 160px;
  }
}
@media screen and (max-width: 575px) {
  .news__item .thumb {
    width: 130px;
  }
}
.news__item .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 120px;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .news__item .thumb img {
    height: 100px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 575px) {
  .news__item .thumb img {
    height: 80px;
  }
}
.news__item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 100px;
}
@media screen and (max-width: 767px) {
  .news__item .content {
    padding-right: 0;
  }
}
.news__item .content .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .news__item .content .meta {
    gap: 6px;
    margin-bottom: 3px;
  }
}
.news__item .content .meta .date {
  font-family: "notoSansMedium";
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .news__item .content .meta .date {
    font-size: 1.3rem;
  }
}
.news__item .content .ttl {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news__item .content .ttl {
    font-size: 1.3rem;
  }
}
.news__item .arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #0c659e;
  border: 1px solid #0c659e;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .news__item .arrow {
    display: none;
  }
}
.news__item .arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 11px;
  height: 11px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.policy {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .policy {
    padding: 60px 0;
  }
}
.policy .sec-ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .policy .sec-ttl {
    margin-bottom: 20px;
  }
}

.policy__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .policy__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.policy__item .catch {
  background-color: #0c659e;
  padding: 18px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .policy__item .catch {
    padding: 8px;
    border-radius: 5px;
    gap: 10px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.policy__item .catch span {
  font-size: 3.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy__item .catch span {
    font-size: 1.5rem;
  }
}
.policy__item .list {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .policy__item .list {
    width: 100%;
    padding-left: 18px;
  }
}
.policy__item .list li {
  position: relative;
}
.policy__item .list li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: -20px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #0c659e;
}
@media screen and (max-width: 767px) {
  .policy__item .list li:before {
    left: -18px;
    width: 12px;
    height: 12px;
  }
}

.profile {
  padding: 100px 0;
  background-color: #ededed;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 50px 0;
  }
}
.profile .sec-ttl {
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .profile .sec-ttl {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .profile .sec-ttl.pc {
    display: none;
  }
}
.profile .sec-ttl.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .profile .sec-ttl.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.profile__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 100px;
}
@media screen and (max-width: 991px) {
  .profile__container {
    gap: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .profile__container {
    display: block;
  }
}

.profile__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .profile__img {
    max-width: 240px;
    margin: 0 auto 30px;
  }
}
.profile__img img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .profile__img img {
    border-radius: 15px;
  }
}

.profile__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.profile__content .head {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .profile__content .head {
    text-align: center;
    margin-bottom: 30px;
  }
}
.profile__content .head p {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .profile__content .head p {
    font-size: 1.3rem;
  }
}
.profile__content .head h3 {
  font-size: 2.7rem;
  font-family: "notoSansMedium";
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .profile__content .head h3 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .profile__list {
    max-width: 340px;
    margin: 0 auto;
  }
}

.profile__item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .profile__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.profile__item .ttl {
  max-width: 250px;
  background-color: #add6e7;
  text-align: center;
  padding: 2px;
  border-radius: 5px;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .profile__item .ttl {
    max-width: 340px;
  }
}
.profile__item ul {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .profile__item ul {
    padding-left: 18px;
  }
}
.profile__item ul li {
  position: relative;
}
.profile__item ul li:not(:last-child) {
  margin-bottom: 2px;
}
.profile__item ul li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: -20px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #0c659e;
}
@media screen and (max-width: 767px) {
  .profile__item ul li:before {
    width: 12px;
    height: 12px;
    left: -18px;
  }
}

.support {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 50px 0;
  }
}
.support .sec-ttl {
  text-align: right;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .support .sec-ttl {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .support .sec-ttl.pc {
    display: none;
  }
}
.support .sec-ttl.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .support .sec-ttl.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.support__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .support__container {
    display: block;
  }
}

.support__img {
  width: 50%;
  padding-right: 50px;
}
@media screen and (max-width: 991px) {
  .support__img {
    padding-right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .support__img {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 20px;
    padding-right: 0;
  }
}
.support__img img {
  border-radius: 20px;
}

.support__content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .support__content {
    width: 100%;
  }
}
.support__content .head {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .support__content .head {
    text-align: center;
  }
}
.support__content .head p {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .support__content .head p {
    font-size: 1.3rem;
  }
}
.support__content .head h3 {
  font-size: 2.7rem;
  font-family: "notoSansMedium";
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .support__content .head h3 {
    font-size: 2.5rem;
  }
}
.support__content .ttl {
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  background-color: #ba062c;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .support__content .ttl {
    font-size: 1.4rem;
    padding: 8px;
    border-radius: 5px;
  }
}
.support__content .content {
  background-color: #e8e8e8;
  padding: 25px 15px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .support__content .content {
    padding: 15px;
  }
}
.support__content .content p {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .support__content .content p {
    line-height: 1.8;
  }
}

.recommender {
  padding: 70px 0;
  background-color: #ededed;
}
@media screen and (max-width: 767px) {
  .recommender {
    padding: 50px 0;
  }
}
.recommender .sec-ttl {
  margin-bottom: 20px;
}
.recommender .ttl {
  font-size: 2.8rem;
  font-family: "notoSansMedium";
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .recommender .ttl {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.recommender__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 95px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .recommender__list {
    gap: 0 9.5vw;
  }
}
@media screen and (max-width: 767px) {
  .recommender__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}

@media screen and (max-width: 767px) {
  .recommender__item.last .img {
    max-width: 340px;
    margin: 0 auto 15px;
  }
}
.recommender__item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .recommender__item .img {
    max-width: 200px;
    margin: 0 auto 15px;
  }
}
.recommender__item .img img {
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .recommender__item .img img {
    border-radius: 10px;
  }
}
.recommender__item .name {
  text-align: center;
}
.recommender__item .name p {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .recommender__item .name p {
    font-size: 1.3rem;
  }
}
.recommender__item .name p.txt {
  font-size: 1.5rem;
  margin-top: 8px;
  font-weight: normal;
  font-size: 1.4rem;
}
.recommender__item .name h3 {
  font-size: 2.6rem;
  line-height: 1.5;
  font-family: "notoSansMedium";
}
@media screen and (max-width: 767px) {
  .recommender__item .name h3 {
    font-size: 2.5rem;
  }
}

.office-information {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .office-information {
    padding: 50px 0;
  }
}
.office-information .sec-ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .office-information .sec-ttl {
    margin-bottom: 40px;
  }
}

.office-information__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 100px;
}
@media screen and (max-width: 991px) {
  .office-information__list {
    gap: 50px 10vw;
  }
}
@media screen and (max-width: 767px) {
  .office-information__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
}

.office-information__item .txt {
  text-align: center;
  margin-bottom: 15px;
}
.office-information__item .txt h3 {
  font-size: 2.6rem;
  font-family: "notoSansMedium";
}
@media screen and (max-width: 767px) {
  .office-information__item .txt h3 {
    font-size: 2.2rem;
  }
}
.office-information__item .txt p {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .office-information__item .txt p {
    font-size: 1.3rem;
  }
}

.map {
  width: 100%;
  height: 290px;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .map {
    height: 29vw;
  }
}
@media screen and (max-width: 767px) {
  .map {
    max-width: 360px;
    height: 220px;
    margin: 0 auto;
    border-radius: 15px;
  }
}

.footer {
  background-color: #ecd874;
  padding: 70px 0 20px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 45px 0 10px;
  }
}
.footer .copyright {
  -webkit-text-stroke: 1px #707070;
  font-family: "notoSansMedium";
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    -webkit-text-stroke: initial;
    font-size: 1rem;
  }
}

.footer__logo {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 40px;
  }
}
.footer__logo a {
  display: inline-block;
}
.footer__logo p {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .footer__logo p {
    font-size: 1.1rem;
  }
}
.footer__logo h3 {
  font-size: 2rem;
  font-family: "notoSansMedium";
}
@media screen and (max-width: 767px) {
  .footer__logo h3 {
    font-size: 1.8rem;
  }
}

/*--------------------------------
	活動報告一覧ページ
--------------------------------*/
.news-list {
  padding: 120px 0 100px;
}
@media screen and (max-width: 767px) {
  .news-list {
    padding: 60px 0 50px;
  }
}
.news-list .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.news-list .sec-ttl {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-list .sec-ttl {
    margin-bottom: 50px;
  }
}

.cat-nav {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .cat-nav {
    max-width: 400px;
    margin-bottom: 60px;
  }
}
.cat-nav a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 80px;
  border-radius: 10px;
  background-color: #d1d1d1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.7rem;
  font-family: "notoSansMedium";
}
@media screen and (max-width: 767px) {
  .cat-nav a {
    height: 40px;
    font-size: 1.4rem;
  }
}
.cat-nav a.is-active {
  position: relative;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}
.cat-nav a.is-active:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0c659e;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 767px) {
  .cat-nav a.is-active:before {
    height: 6px;
  }
}

.news-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 35px;
}
@media screen and (max-width: 1199px) {
  .news-list__list {
    gap: 4vw 3vw;
  }
}
@media screen and (max-width: 767px) {
  .news-list__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}

@media screen and (max-width: 767px) {
  .news-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
}
.news-list__item:hover .more-btn {
  color: #0c659e;
  background-color: #fff;
}
.news-list__item:hover .more-btn .arrow {
  background-color: #0c659e;
}
.news-list__item:hover .more-btn .arrow:after {
  border-color: #0c659e;
}
.news-list__item .thumb {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news-list__item .thumb {
    width: 150px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .news-list__item .thumb {
    width: 125px;
  }
}
.news-list__item .thumb img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media screen and (max-width: 1199px) {
  .news-list__item .thumb img {
    height: 17vw;
    border-radius: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  .news-list__item .thumb img {
    height: 90px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 575px) {
  .news-list__item .thumb img {
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .news-list__item .content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.news-list__item .content .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .news-list__item .content .meta {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .news-list__item .content .meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 8px;
    margin-bottom: 3px;
  }
}
.news-list__item .content .meta .date {
  font-family: "notoSansMedium";
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .news-list__item .content .meta .date {
    font-size: 1.3rem;
  }
}
.news-list__item .content .ttl {
  font-size: 1.5rem;
  font-family: "notoSansMedium";
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .news-list__item .content .ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .news-list__item .content .ttl {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .news-list__item .more-btn {
    display: none;
  }
}

.cat-tag {
  font-size: 1rem;
  letter-spacing: 0.05em;
  background-color: #ecd874;
  padding: 1px 20px;
  border-radius: 4px;
  white-space: nowrap;
}
.cat-tag.cat-new {
  background-color: #ecd874;
}
.cat-tag.cat-blog {
  background-color: #add6e7;
}

.more-btn {
  position: relative;
  display: block;
  width: 100%;
  background-color: #0c659e;
  border-radius: 35px;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px;
  border: 1px solid #0c659e;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 991px) {
  .more-btn {
    font-size: 1.4rem;
  }
}
.more-btn:hover {
  color: #0c659e;
  background-color: #fff;
}
.more-btn:hover .arrow {
  background-color: #0c659e;
}
.more-btn:hover .arrow:after {
  border-color: #0c659e;
}
.more-btn .arrow {
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 17px;
  height: 1.5px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.more-btn .arrow:after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* ページネーション */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .pagination {
    max-width: 400px;
    position: relative;
    margin: 120px auto 0;
  }
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers li {
  margin: 0 11px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li {
    margin: 0 10px;
    position: static;
  }
}
.pagination .page-numbers li span,
.pagination .page-numbers li a {
  font-size: 2.1rem;
  font-family: "interRegular";
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li span,
  .pagination .page-numbers li a {
    font-size: 1.8rem;
  }
}
.pagination .page-numbers li .page-numbers.current {
  color: #0c659e;
}
.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 32px;
  border-radius: 50px;
  border: 1px solid #0c659e;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers .prev,
  .pagination .page-numbers .next {
    top: -50px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.pagination .page-numbers .prev:hover,
.pagination .page-numbers .next:hover {
  background-color: #0c659e;
}
.pagination .page-numbers .prev:hover .arrow,
.pagination .page-numbers .next:hover .arrow {
  background-color: #fff;
}
.pagination .page-numbers .prev:hover .arrow:after,
.pagination .page-numbers .next:hover .arrow:after {
  border-color: #fff;
}
.pagination .page-numbers .prev .arrow,
.pagination .page-numbers .next .arrow {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #0c659e;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pagination .page-numbers .prev .arrow:after,
.pagination .page-numbers .next .arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0c659e;
  border-right: 2px solid #0c659e;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pagination .page-numbers .prev {
  right: 30px;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers .prev {
    left: 10px;
    right: auto;
  }
}
.pagination .page-numbers .prev .arrow:after {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.pagination .page-numbers .next {
  left: 30px;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers .next {
    left: auto;
    right: 10px;
  }
}
.pagination .page-numbers .next .arrow:after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/*--------------------------------
	活動報告詳細ページ
--------------------------------*/
.news-detail {
  padding: 120px 0 100px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding: 50px 0 70px;
  }
}
.news-detail .inner {
  max-width: 900px;
  margin: 0 auto;
}
.news-detail .more-btn {
  max-width: 280px;
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 12px;
}
.news-detail .more-btn .arrow {
  width: 13px;
  right: 25px;
}
.news-detail .more-btn .arrow:after {
  width: 8px;
  height: 8px;
}

.news-detail__head {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .news-detail__head {
    margin-bottom: 25px;
  }
}
.news-detail__head .ttl {
  font-size: 3.2rem;
  font-family: "notoSansMedium";
  margin-bottom: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news-detail__head .ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.news-detail__head .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
@media screen and (max-width: 767px) {
  .news-detail__head .meta {
    gap: 12px;
  }
}
.news-detail__head .meta .date {
  font-size: 1.5rem;
  font-family: "notoSansMedium";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .news-detail__head .meta .date {
    font-size: 1.3rem;
  }
}

.news-detail__img {
  margin-bottom: 60px;
}
.news-detail__img img {
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}

.news-detail__content {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-detail__content {
    margin-bottom: 60px;
  }
}
.news-detail__content h2 {
  font-size: 2rem;
  font-family: "notoSansMedium";
  background-color: #ebebeb;
  border-left: 10px solid #ecd874;
  padding: 12px 30px;
}
@media screen and (max-width: 767px) {
  .news-detail__content h2 {
    font-size: 1.8rem;
    padding: 3px 15px;
  }
}
.news-detail__content h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .news-detail__content h3 {
    font-size: 1.6rem;
  }
}
.news-detail__content img {
  width: auto;
  display: block;
}
.news-detail__content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.news-detail__content .alignright {
  margin-left: auto;
}

/*--------------------------------
	404ページ
--------------------------------*/
.sec-404 {
  padding: 100px 0;
}

.sec-404__img {
  max-width: 500px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */