@charset "UTF-8";
@font-face {
  font-family: CenturyGothic-Bold;
  src: url(../font/Century-Gothic-Bold.ttf) format("truetype");
}
html {
  font-size: 16px; !important /* 一般的な基準 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.header {
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.frontview {
  padding-top: 60px; /* ヘッダーの高さ＋余裕分 */
}

.container {
  display: flex;
  align-items: cneter;
  justify-content: space-between;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  max-height: 80px;
  height: auto;
  width: auto;
  display: block;
}

/* タブレットサイズ（iPad）用に調整 */
@media (min-width: 768px) and (max-width: 1024px) {
  .frontview {
    padding-top: 30px; /* 少し狭くする */
  }
}

/* スマホ用にさらに調整 */
@media (max-width: 767px) {
  .frontview {
    padding-top: 40px;

  }
  .hamburger {
    order: -1; /* ← ロゴより前に表示される */
    cursor: pointer;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

 .logo {
   flex-shrink: 0;
   margin-right: auto; /* スマホ時の圧縮防止ここ変える？ロリポップ */
  margin-left: auto;
  }

 .logo img {
    max-height: 28px;
    height: auto;
    width: auto;
  }

  .mobile-buttons {
    display: flex !important;
    margin-left: auto;
    gap: 8px;
  }

  .desktop-buttons {
    display: none !important;
  }

  .mobile-buttons .btn {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 9999px; /* ✅ 丸くする */
  }

  .hamburger {
    font-size: 28px;
    padding: 8px;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .mobile-buttons {
    display: flex;
    margin-left: auto;
  }

  .mobile-buttons .btn {
    display: none !important;
  }

.desktop-buttons .login {
    margin-right: 40px; /* ← この数値で空白量を調整 */
  }
.logo {
  margin-right: auto;
  }

}

@media (min-width: 768px) {
  .mobile-buttons {
    display: none !important;
  }

  .desktop-buttons {
    display: flex !important;
    margin-left: auto;
    gap: 12px;
  }

 .desktop-buttons .btn {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 9999px; /* ✅ 丸くする */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
  }

 .desktop-buttons .login {
    margin-right: 68px; /* ← この数値で空白量を調整 */
  }

 .logo {
    flex-shrink: 0;
    margin: 0 ;
  }

  .logo img {
    max-height: 36px;
    height: auto;
    width: auto;
  }
}



@font-face {
  font-family: CenturyGothic-Bold;
  src: url(../font/Century-Gothic-Bold.ttf) format("truetype");
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.header {
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 6px 12px;
  font-size: 14px; /* ← PC用としてはOK */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.register {
  background-color: #2979ff;
  color: white;
}

.login {
  background-color: #ccc;
  color: #000;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ✅ モバイル対応 */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #fff;
    gap: 20px;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
  }
}

  @media (min-width: 768px) and (max-width: 1024px) {
    .nav-buttons {
      flex-direction: row;
      justify-content: center;
      gap: 20px;
    }
  
    .nav-buttons .btn {
      width: 160px;
      max-width: 100%;
      text-align: center;
    }

  .buttons {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .buttons .btn {
    width: 90%;
    max-width: 400px;
    text-align: center;
      width: 120px; /* 任意で幅を固定する */
      text-align: center;
  }
}

.register {
  background-color: #007bff;
  border: 0.5px solid black;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Adds shadow */
}

.login {
  background-color: rgb(198, 198, 198);
  border: 1px solid black;
  color: black;
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
  visibility: visible;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Adds shadow */
  transition: all 0.3s ease-in-out; /* Smooth effect */
}


/* スマホ共通（縦 + 横） */
@media (max-width: 767px) {
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
  }

  .btn {
    font-size: 16px !important;
    width: 90%;
    max-width: 320px;
    padding: 12px 20px;
    text-align: center;
    display: inline-block;
  }

  .register, .login {
    font-size: 16px !important;
  }
}

/* 横向きスマホ専用に上書き（768未満かつランドスケープ） */
@media screen and (max-width: 767px) and (orientation: landscape) {
  .buttons {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .btn {
    width: 45% !important;
    max-width: 200px !important;
  }
}

@font-face {
  font-family: CenturyGothic-Bold;
  src: url(../font/Century-Gothic-Bold.ttf) format("truetype");
}
html {
  font-size: 1px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}


.header {
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.register {
  background-color: #2979ff;
  color: white;
}

.login {
  background-color: #ccc;
  color: #000;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ✅ モバイル対応 */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #fff;
    gap: 20px;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .buttons .btn {
    width: 90%;
    max-width: 400px;
    text-align: center;
  }
}
.register {
  background-color: #007bff;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login {
  background-color: rgb(198, 198, 198);
  border: 1px solid black;
  color: black;
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
  visibility: visible;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Adds shadow */
  transition: all 0.3s ease-in-out; /* Smooth effect */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  overflow-x: auto;
}


body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  line-height: 1.4;
  font-size: 16px;
  background: #fff;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

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

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_y {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_y.is-animated {
  transform-origin: right;
  animation: scaled_y 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  height: 130rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header.fixed {
  position: fixed;
  height: 100rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
header .logo {
  width: 182rem;
  display: flex;
}

.hamber-menu {
  display: none;
}

.frontview {
  top: -20px; /* Moves the section higher */
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 100rem;
}
.frontview .catchcopy__text {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
.frontview .catchcopy__text .txt {
  font-weight: bold;
  font-size: 72rem;
  line-height: 86.4rem;
  padding: 0 15rem;
  text-align: center;
  color: #fff;
  text-shadow: 0rem 3rem 7rem #000;
  position: relative;
}
.frontview .catchcopy__text .txt:last-child {
  margin-left: 444rem;
}
.frontview .catchcopy__text .txt .bg {
  width: 100%;
  height: 65rem;
  background: rgba(67, 67, 67, 0.6);
  box-shadow: 0rem 3rem 7rem #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  z-index: -1;
}

main {
  max-width: 1516rem;
  width: 95%;
  margin: auto;
}

.title__wrapper.--center .en__txt {
  text-align: center;
}
.title__wrapper.--center .ja__txt {
  text-align: center;
}
.title__wrapper .en__txt {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.03em;
  line-height: 28.8rem;
  margin-bottom: 20rem;
  text-align: left;
  color: #016dff;
}
.title__wrapper .ja__txt {
  font-weight: bold;
  font-size: 60rem;
  letter-spacing: 0.08em;
  line-height: 60rem;
  text-align: left;
  color: #000;
}

.meta__wrapper {
  padding-top: 250rem;
}
.meta__wrapper .d__txt {
  font-weight: 300;
  font-size: 45rem;
  letter-spacing: 0.08em;
  line-height: 60rem;
  margin-top: 85rem;
  text-align: left;
  color: #0e0000;
}
.meta__wrapper .gap__lbl {
  font-weight: 300;
  font-size: 36rem;
  line-height: 72rem;
  margin-top: 160rem;
  text-align: left;
  color: #000;
}
.meta__wrapper .note__txt {
  font-weight: 800;
  font-size: 40rem;
  letter-spacing: 0.08em;
  line-height: 60rem;
  margin-top: 40rem;
  text-align: left;
  color: #000;
}

.concern__wrapper {
  padding-top: 250rem;
}
.concern__wrapper .content__items {
  margin-top: 160rem;
}
.concern__wrapper .content__items .c__item {
  width: 100%;
  margin-bottom: 200rem;
  display: flex;
  justify-content: space-between;
}
.concern__wrapper .content__items .c__item:last-child {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
.concern__wrapper .content__items .c__item:last-child .image__wrapper {
  margin-left: 0;
  margin-right: 20rem;
}
.concern__wrapper .content__items .c__item .text__inner {
  width: 612rem;
  padding-top: 20rem;
}
.concern__wrapper .content__items .c__item .text__inner .lbl__txt {
  font-weight: bold;
  text-decoration: underline;
  font-size: 48rem;
  line-height: 68rem;
  text-align: left;
  color: #000;
}
.concern__wrapper .content__items .c__item .text__inner .d__txt {
  margin-top: 45rem;
  font-weight: 600;
  font-size: 30rem;
  line-height: 1.6;
  text-align: left;
  color: #000;
}
.concern__wrapper .content__items .c__item .image__wrapper {
  width: 820rem;
  margin-left: 20rem;
}

.duty__wrapper {
  padding-top: 250rem;
}
.duty__wrapper .detail__txt {
  font-weight: bold;
  font-size: 36rem;
  letter-spacing: 0.2em;
  line-height: 72rem;
  margin-top: 65rem;
  text-align: left;
  color: #000;
}
.duty__wrapper .content__items {
  margin-top: 85rem;
}
.duty__wrapper .content__items .c__item {
  width: 100%;
  height: auto;
  border-radius: 10rem;
  padding: 33rem;
  margin-bottom: 28rem;
  background: #e9e9e9;
  display: flex;
  align-items: center;
}
.duty__wrapper .content__items .c__item .icon {
  width: 157rem;
  margin-right: 80rem;
  display: flex;
}
.duty__wrapper .content__items .c__item .lbl {
  font-weight: 700;
  font-size: 30rem;
  line-height: 36rem;
  text-align: left;
  color: #000;
}

.at__wrapper {
  padding-top: 250rem;
}
.at__wrapper .text__wrapper {
  padding: 0 30rem;
}
.at__wrapper .text__wrapper .d__txt {
  font-weight: 300;
  font-size: 30rem;
  letter-spacing: 0.02em;
  line-height: 72rem;
  margin-top: 80rem;
  text-align: left;
  color: #000;
}
.at__wrapper .text__wrapper .d__txt.c01 {
  margin-top: 30rem;
}
.at__wrapper .content__items {
  margin-top: 80rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.at__wrapper .content__items .c__item {
  width: 382rem;
  margin-bottom: 40rem;
}
.at__wrapper .content__items .c__item:nth-child(2), .at__wrapper .content__items .c__item:nth-child(5) {
  animation-delay: 0.2s;
}
.at__wrapper .content__items .c__item:nth-child(3), .at__wrapper .content__items .c__item:nth-child(6) {
  animation-delay: 0.4s;
}
.at__wrapper .content__items .c__item .image__wrapper {
  width: 100%;
  display: flex;
}
.at__wrapper .content__items .c__item .t__txt {
  font-weight: 700;
  font-size: 30rem;
  line-height: 48rem;
  margin-top: 20rem;
  text-align: center;
  color: #000;
}
.at__wrapper .content__items .c__item .txt {
  font-weight: 300;
  font-size: 24rem;
  line-height: 48rem;
  text-align: center;
  color: #000;
}


.register-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.register-subtitle {
  color: #1a73e8;
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}

.register-title {
  font-size: 45px;
  margin: 8px 0 32px;
}

.register-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}

.register-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  padding: 20px 40px;
  border-radius: 24px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  min-width: 240px;
  text-align: center;
  transition: transform 0.2s ease;
  color: #000;
  flex: 1; /* 追加：横いっぱいに広げる */
  max-width: 100%;
}

.register-btn.user {
  background-color: #2979ff;
}

.register-btn.trainer {
  background-color: #ccc;
}

.register-btn:hover {
  transform: scale(1.05);
}

.register-note {
  display: inline-block;
  background: #FDE68A;
  color: #000;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 15px;
  margin-top: 20px;
  font-weight: bold;
}

.register-campaign {
  background: #FACC15;
  padding: 16px 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 30px;
}


/* スマホとiPad横向き両方対応：〜1024px */
@media (max-width: 1024px) {
  .register-buttons {
    flex-direction: column;
    align-items: center;
    align-items: stretch; /* stretchでボタンを幅いっぱいに */
    gap: 20px;
    width: 100%;
    padding: 0 16px; /* 左右に少し余白を入れる */
  }

  .register-btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 0;
    max-width: 100%;     /* 念のため制限を外す */
    border-radius: 16px; /* 少し小さめにしてバランスよく */
  }

  .register-title {
    font-size: 30px;
  }

  .register-note {
    font-size: 14px;
  }

  .register-campaign {
    font-size: 18px;
    padding: 12px 0;
  }
}



@media (max-width: 768px) {
  .register-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .register-btn {
    width: 80%;
    font-size: 18px;
    padding: 14px 20px;
  }

  .register-subtitle {
    font-size: 14px;
  }

  .register-note {
    font-size: 13px;
    padding: 6px 16px;
  }
  
  .register-title {
    font-size: 28px;
}
}



.message__wrapper {
  padding-top: 250rem;
}
.message__wrapper .content__inner {
  margin-top: 150rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.message__wrapper .content__inner .image__wrapper {
  width: 485rem;
  display: flex;
}
.message__wrapper .content__inner .content__text {
  width: calc(100% - 545rem);
}
.message__wrapper .content__inner .content__text .name__txt {
  font-weight: bold;
  font-size: 30rem;
  line-height: 48rem;
  text-align: left;
  color: #000;
}
.message__wrapper .content__inner .content__text .c__txt {
  font-weight: bold;
  font-size: 24rem;
  line-height: 48rem;
  margin-top: 90rem;
  text-align: left;
  color: #000;
}

.member__wrapper {
  padding-top: 250rem;
}

.member__items {
  margin-top: 80rem;
  display: flex;
  justify-content: space-between;
}
.member__items .m__item {
  width: 314rem;
}
.member__items .m__item:nth-child(2) {
  animation-delay: 0.2s;
}
.member__items .m__item:nth-child(3) {
  animation-delay: 0.4s;
}
.member__items .m__item:nth-child(4) {
  animation-delay: 0.6s;
}
.member__items .m__item .image {
  width: 100%;
  display: flex;
}
.member__items .m__item .name__txt {
  font-weight: 600;
  font-size: 24rem;
  line-height: 1;
  margin-top: 40rem;
  text-align: center;
  color: #000;
}


.card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
  padding: 40rem 20rem;
  max-width: 100%;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12rem;
  overflow: hidden;
  box-shadow: 0 4rem 12rem rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-5rem);
}

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* モバイルでもバランスが崩れないように */
  object-fit: cover;
}

.card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card p {
  padding: 20rem;
  font-size: 24rem;
  color: #333;
  line-height: 1.6;
  flex-grow: 1;
}

/* PC・タブレット用 3列表示 */
@media screen and (min-width: 768px) {
  .card-wrapper {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200rem; /* ←ここで広めに */
    padding: 40rem;
  }
}


footer {
  margin-top: 120rem;
  background: white;
  padding: 100rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .info__inner .f__logo {
  width: 135rem;
  display: flex;
  margin: auto;
}
footer .info__inner .sns__items {
  margin-top: 30rem;
  display: flex;
  justify-content: center;
}
footer .info__inner .sns__items .item {
  width: 49.08rem;
  height: 49.08rem;
  margin: 0 5rem;
  border-radius: 50%;
  border: 2rem solid #181b39;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .info__inner .sns__items .item.insta span {
  width: 32rem;
}
footer .info__inner .sns__items .item span {
  width: 25rem;
  display: flex;
}
footer .info__inner .sns__items .item span svg {
  width: 100%;
  height: 100%;
}
footer .address__txt {
  margin-left: 200rem;
}
footer .address__txt p {
  font-weight: 300;
  font-size: 18rem;
  line-height: 30rem;
  text-align: left;
  color: #000;
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 0.8px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.6px;
  }
}
@media screen and (max-width: 950px) {
  html {
    font-size: 0.5px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.1333333vw;
  }
  header {
    height: 100rem;
  }
  header .logo {
    width: 170rem;
  }
  .frontview {
    height: 800rem;
    margin-top: 100rem;
  }
  .frontview .catchcopy__text .txt:last-child {
    margin-left: 300rem;
  }
  .frontview .catchcopy__text .txt {
    font-size: 52rem;
    line-height: 1.6;
  }
  .frontview .catchcopy__text .txt .bg {
    width: 100%;
    height: 47rem;
  }
  .meta__wrapper {
    padding-top: 150rem;
  }
  .meta__wrapper .d__txt {
    font-weight: 300;
    font-size: 35rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    margin-top: 62rem;
    text-align: justify;
  }
  .meta__wrapper .gap__lbl {
    font-weight: 300;
    font-size: 32rem;
    margin-top: 60rem;
  }
  .meta__wrapper .note__txt {
    font-size: 32rem;
    line-height: 1.6;
    margin-top: 12rem;
  }
  .title__wrapper .ja__txt {
    font-weight: bold;
    font-size: 52rem;
  }
  .title__wrapper.--center .en__txt {
    text-align: left;
  }
  .title__wrapper.--center .ja__txt {
    text-align: left;
  }
  .concern__wrapper {
    padding-top: 200rem;
  }
  .concern__wrapper .content__items .c__item {
    display: block;
  }
  .concern__wrapper .content__items {
    margin-top: 100rem;
  }
  .concern__wrapper .content__items .c__item .text__inner .lbl__txt {
    font-size: 34rem;
  }
  .concern__wrapper .content__items .c__item .text__inner .d__txt {
    margin-top: 21rem;
    font-weight: 600;
    font-size: 28rem;
  }
  .concern__wrapper .content__items .c__item .image__wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 30rem;
  }
  .concern__wrapper .content__items .c__item {
    margin-bottom: 50rem;
  }
  .duty__wrapper {
    padding-top: 200rem;
  }
  .duty__wrapper .detail__txt {
    font-size: 28rem;
    letter-spacing: 0.2em;
    line-height: 1.7;
  }
  .duty__wrapper .content__items {
    margin-top: 45rem;
  }
  .at__wrapper {
    padding-top: 200rem;
  }
  .at__wrapper .text__wrapper .d__txt {
    font-weight: 300;
    font-size: 28rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin-top: 72rem;
  }
  .at__wrapper .content__items .c__item {
    width: 382rem;
    margin: auto;
    margin-bottom: 50rem;
  }
  .message__wrapper {
    padding-top: 200rem;
  }
  .message__wrapper .content__inner {
    margin-top: 100rem;
  }
  .message__wrapper .content__inner {
    display: block;
  }
  .message__wrapper .content__inner .image__wrapper {
    width: 100%;
  }
  .message__wrapper .content__inner .content__text {
    width: 100%;
    margin-top: 50rem;
  }
  .message__wrapper .content__inner .content__text .name__txt {
    font-size: 35rem;
  }
  .message__wrapper .content__inner .content__text .c__txt {
    font-size: 28rem;
    line-height: 1.8;
    margin-top: 52rem;
    text-align: justify;
  }
  .member__wrapper {
    padding-top: 200rem;
  }
  .member__items {
    flex-wrap: wrap;
  }
  .member__items .m__item {
    width: 48%;
    margin-bottom: 60rem;
  }
  .member__items .m__item .name__txt {
    font-size: 28rem;
  }

  footer {
    margin-top: 60rem;
    padding: 100rem 0;
    display: block;
  }
  footer .info__inner .f__logo {
    width: 200rem;
  }
  footer .info__inner .sns__items .item {
    width: 70rem;
    height: 70rem;
    margin: 0 15rem;
  }
  footer .info__inner .sns__items .item span {
    width: 37rem;
  }
  footer .info__inner .sns__items .item.insta span {
    width: 54rem;
  }
  footer .address__txt {
    width: 600rem;
    margin: auto;
    margin-left: auto;
    margin-top: 40rem;
  }
  footer .address__txt p {
    font-size: 26rem;
    line-height: 1.6;
  }
  .sp-menu {
    width: 100rem;
    height: 100rem;
    background: #181b39;
    position: absolute;
    right: 0;
    top: 0;
  }
  .sp-menu.open span:nth-child(1) {
    top: 48rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    top: 48rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu span {
    width: 49rem;
    height: 0;
    border-bottom: 2rem solid white;
    position: absolute;
    left: 50%;
    top: 30rem;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 48rem;
  }
  .sp-menu span + span + span {
    top: 68rem;
  }
  .hamber-menu {
    width: 100%;
    height: calc(100svh - 100rem);
    background: #b0aeae;
    position: fixed;
    top: 100rem;
    left: 0;
    z-index: 2;
    display: none;
  }
  .hamber-menu ul {
    width: 600rem;
    margin: auto;
    padding-top: 100rem;
  }
  .hamber-menu ul li {
    padding: 30rem 0;
    border-top: 2rem solid #7e837f;
  }
  .hamber-menu ul li:last-child {
    border-bottom: 2rem solid #7e837f;
  }
  .hamber-menu ul li a {
    display: flex;
    align-items: center;
  }
  .hamber-menu ul li a .icon {
    width: 36rem;
    height: 30rem;
    display: flex;
  }
  .hamber-menu ul li a .icon svg {
    width: 100%;
    height: 100%;
  }
  .hamber-menu ul li a .en__txt {
    font-family: CenturyGothic-Bold;
    font-weight: bold;
    font-size: 45rem;
    line-height: 66.11rem;
    margin: 0 45rem 0 25rem;
    text-align: left;
    color: #fefefe;
  }
  .hamber-menu ul li a .ja__txt {
    font-weight: 600;
    font-size: 20.87rem;
    line-height: 1;
    text-align: left;
    color: #bc002d;
  }

@media screen and (max-width: 768px) {
  .buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  .buttons .btn {
    width: 90% !important;
    max-width: 300px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}


}/*# sourceMappingURL=style.css.map */