@charset "UTF-8";
/*****************/
/**** reset *****/
/*****************/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 500px) {
  body.active {
    overflow: hidden;
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.6s ease;
}
a:hover {
  opacity: 0.6;
}

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

img {
  width: 100%;
  height: auto;
}

.wp-block-table td {
  border: none;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

table {
  display: block;
  border-collapse: collapse;
}
table tbody {
  display: block;
}
table tbody tr {
  display: flex;
}
table tbody tr th {
  text-align: left;
}
table tbody tr td {
  line-height: normal;
}
@media screen and (max-width: 768px) {
  table tr,
  table td,
  table th {
    display: block;
  }
}

input[type=submit] {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.desc {
  line-height: 1.6;
}

.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 1.6rem;
}

.wpcf7-response-output {
  display: none !important;
}

.arrow {
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

/* プルダウン：ネイティブ矢印を消して自前アイコンを被せる（form-table 共通） */
.form-table__dd select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='8' viewBox='0 0 7 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.286 7.5L0.000238916 -8.15666e-07L6.57177 -5.85622e-08L3.286 7.5Z' fill='%23C7C7C7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

button {
  display: block;
  border: none;
  cursor: pointer;
}

/*****************/
/**** font   *****/
/*****************/
/* 見出し（和文セリフ） */
.mincho {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

/* 英字・数字アクセント */
.eng {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}

/*****************/
/**** animation   *****/
/*****************/
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time03 {
  animation-delay: 0.3s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.delay-time14 {
  animation-delay: 1.4s;
}

.delay-time18 {
  animation-delay: 1.8s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time22 {
  animation-delay: 2.2s;
}

.delay-time3 {
  animation-delay: 3s;
}

.delay-time35 {
  animation-delay: 3.5s;
}

.delay-time4 {
  animation-delay: 4s;
}

.delay-time45 {
  animation-delay: 4.5s;
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*****************/
/****   parts   *****/
/*****************/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  a[href*=tel] {
    pointer-events: none;
  }
  section {
    position: relative;
    background-color: #eef3fa;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  .desc {
    font-size: 16px;
  }
  #page-header {
    height: 383px;
    background-image: url(../image/header-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 233px;
  }
  #page-header .page-header__container {
    max-width: 1470px;
  }
  #page-header .page-header__ttl {
    font-size: 40px;
    font-weight: 600;
    color: #002156;
  }
  #page-header .page-header__ttl:after {
    margin-top: 24px;
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #002156;
  }
  #page-header .page-header__eng {
    margin-top: 24px;
    color: #f9ce7f;
    font-size: 16px;
  }
  #breadcrumb {
    background-color: #b9c8e1;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  #breadcrumb .breadcrumb-container {
    max-width: 1470px;
  }
  #breadcrumb .breadcrumb-list {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #breadcrumb .breadcrumb-list__item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 16px;
    line-height: 1.4;
  }
  #breadcrumb .breadcrumb-list__item::after {
    flex-shrink: 0;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-top: 2px;
  }
  #breadcrumb .breadcrumb-list__item:last-child {
    margin-right: 0;
  }
  #breadcrumb .breadcrumb-list__item:last-child::after {
    display: none;
  }
  #breadcrumb .breadcrumb-list__item a {
    color: white;
    flex-shrink: 0;
  }
  #breadcrumb .breadcrumb-list__item a img {
    width: 24px;
  }
  .member-ttl {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding: 5px 24px;
    border-left: 4px solid #F9CE7F;
  }
  .cta-button,
  .wpcf7-submit {
    margin: 0 auto;
    width: 360px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  .cta-button::after,
  .wpcf7-submit::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 16px;
  }
  .cta-button.back,
  .wpcf7-submit.back {
    background: #C7C7C7;
  }
  .cta-button.back::before,
  .wpcf7-submit.back::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
    margin-right: 16px;
  }
  .cta-button.back::after,
  .wpcf7-submit.back::after {
    display: none;
  }
  .section-ttl {
    font-size: 16px;
    font-weight: 400;
    color: #F9CE7F;
  }
  .section-ttl span {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
  }
  .section-ttl span:after {
    margin-top: 16px;
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #002156;
  }
  .wp-pagenavi {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }
  .wp-pagenavi .pages {
    display: none;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(#103F89, #002156);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    border-color: #002156;
    margin: 0 4px !important;
  }
  .wp-pagenavi a.current,
  .wp-pagenavi span.current {
    background: white;
    color: #002156;
  }
  .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink,
  .wp-pagenavi span.nextpostslink,
  .wp-pagenavi span.previouspostslink {
    color: transparent;
    position: relative;
  }
  .wp-pagenavi a.nextpostslink::after, .wp-pagenavi a.previouspostslink::after,
  .wp-pagenavi span.nextpostslink::after,
  .wp-pagenavi span.previouspostslink::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: 54%;
    left: 44%;
    transform: rotate(45deg) translate(-50%, -50%);
  }
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi span.previouspostslink {
    background: #E3E3E3;
    border: none;
  }
  .wp-pagenavi a.previouspostslink::after,
  .wp-pagenavi span.previouspostslink::after {
    top: 46%;
    left: 54%;
    border-right: none;
    border-left: 2px solid white;
    transform: rotate(-45deg) translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  section {
    position: relative;
    background-color: #eef3fa;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  .desc {
    font-size: 14px;
  }
  #page-header {
    height: 283px;
    background-image: url(../image/header-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 150px;
  }
  #page-header .page-header__container {
    max-width: 1470px;
  }
  #page-header .page-header__ttl {
    font-size: 30px;
    font-weight: 600;
    color: #002156;
    line-height: 1.4;
  }
  #page-header .page-header__ttl:after {
    margin-top: 15px;
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #002156;
  }
  #page-header .page-header__eng {
    margin-top: 16px;
    color: #f9ce7f;
    font-size: 14px;
  }
  #breadcrumb {
    background-color: #b9c8e1;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  #breadcrumb .breadcrumb-container {
    max-width: 1470px;
  }
  #breadcrumb .breadcrumb-list {
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  #breadcrumb .breadcrumb-list__item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    line-height: 1.4;
  }
  #breadcrumb .breadcrumb-list__item::after {
    flex-shrink: 0;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-top: 2px;
  }
  #breadcrumb .breadcrumb-list__item:last-child {
    margin-right: 0;
  }
  #breadcrumb .breadcrumb-list__item:last-child::after {
    display: none;
  }
  #breadcrumb .breadcrumb-list__item a {
    color: white;
    flex-shrink: 0;
  }
  #breadcrumb .breadcrumb-list__item a img {
    width: 18px;
  }
  .member-ttl {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 5px 15px;
    border-left: 4px solid #F9CE7F;
  }
  .cta-button,
  .wpcf7-submit {
    margin: 0 auto;
    width: 90%;
    max-width: 360px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  .cta-button::after,
  .wpcf7-submit::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 16px;
  }
  .cta-button.back,
  .wpcf7-submit.back {
    background: #C7C7C7;
  }
  .cta-button.back::before,
  .wpcf7-submit.back::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
    margin-right: 16px;
  }
  .cta-button.back::after,
  .wpcf7-submit.back::after {
    display: none;
  }
  .section-ttl {
    font-size: 16px;
    font-weight: 400;
    color: #F9CE7F;
  }
  .section-ttl span {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
  }
  .section-ttl span:after {
    margin-top: 12px;
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #002156;
  }
  .wp-pagenavi {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  .wp-pagenavi .pages {
    display: none;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(#103F89, #002156);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    border-color: #002156;
  }
  .wp-pagenavi a.current,
  .wp-pagenavi span.current {
    background: white;
    color: #002156;
  }
  .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink,
  .wp-pagenavi span.nextpostslink,
  .wp-pagenavi span.previouspostslink {
    color: transparent;
    position: relative;
  }
  .wp-pagenavi a.nextpostslink::after, .wp-pagenavi a.previouspostslink::after,
  .wp-pagenavi span.nextpostslink::after,
  .wp-pagenavi span.previouspostslink::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: 53%;
    left: 38%;
    transform: rotate(45deg) translate(-50%, -50%);
  }
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi span.previouspostslink {
    background: #E3E3E3;
    border: none;
  }
  .wp-pagenavi a.previouspostslink::after,
  .wp-pagenavi span.previouspostslink::after {
    top: 41%;
    left: 59%;
    border-right: none;
    border-left: 2px solid white;
    transform: rotate(-45deg) translate(-50%, -50%);
  }
}
/*------------------------------------------
 *  member-flow
 *----------------------------------------*/
@media screen and (min-width: 769px) {
  #member-flow {
    padding-top: 80px;
  }
  #member-flow .member-flow__list {
    display: flex;
    justify-content: center;
  }
  #member-flow .member-flow__item {
    flex-shrink: 0;
    width: 182px;
    color: #c7c7c7;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #member-flow .member-flow__item:last-child span::after {
    display: none;
  }
  #member-flow .member-flow__item span {
    position: relative;
    flex-direction: 0;
    display: block;
    width: 80px;
    height: 80px;
    background-color: #c7c7c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 16px;
  }
  #member-flow .member-flow__item span:after {
    position: absolute;
    content: "";
    display: block;
    width: 105px;
    height: 5px;
    background-color: #c7c7c7;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
  }
  #member-flow .member-flow__item.active {
    color: #002156;
  }
  #member-flow .member-flow__item.active span {
    background-color: #002156;
  }
  #member-flow .member-flow__item.active span:after {
    background-color: #002156;
  }
}
@media screen and (max-width: 768px) {
  #member-flow {
    padding-top: 40px;
  }
  #member-flow .member-flow__list {
    display: flex;
    justify-content: center;
  }
  #member-flow .member-flow__item {
    flex-shrink: 0;
    width: 90px;
    color: #c7c7c7;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #member-flow .member-flow__item:last-child span::after {
    display: none;
  }
  #member-flow .member-flow__item span {
    position: relative;
    flex-direction: 0;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #c7c7c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
  }
  #member-flow .member-flow__item span:after {
    position: absolute;
    content: "";
    display: block;
    width: 45px;
    height: 5px;
    background-color: #c7c7c7;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
  }
  #member-flow .member-flow__item.active {
    color: #002156;
  }
  #member-flow .member-flow__item.active span {
    background-color: #002156;
  }
  #member-flow .member-flow__item.active span:after {
    background-color: #002156;
  }
}

/*****************/
/*** header  ***/
/*****************/
#header.active {
  background: linear-gradient(white, transparent);
}
@media screen and (min-width: 1300px) {
  #header {
    width: 100%;
    max-width: 1920px;
    position: fixed;
    padding-top: 24px;
    padding-right: 40px;
    padding-left: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    justify-content: space-between;
  }
  #header .header-logo {
    flex-shrink: 0;
    width: 145px;
  }
  #header .header-logo.front {
    width: 97px;
  }
  #header .header-menu {
    display: flex;
  }
  #header .header-menu__item {
    margin-right: 32px;
  }
  #header .header-menu__item:last-child {
    margin-right: 0;
  }
  #header .header-menu__item.register {
    margin-left: 57px;
  }
  #header .header-menu__link {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #header .header-menu__link span {
    display: block;
    color: #f9ce7f;
    font-size: 12px;
    margin-top: 10px;
  }
  #header .header-menu__link.register {
    flex-shrink: 0;
    width: 260px;
    height: 60px;
    background: linear-gradient(#103F89, #002156);
    padding: 18px 40px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    flex-direction: row;
  }
  #header .header-menu__link.register img {
    width: 24px;
  }
  #header .header-menu__link.register span {
    margin-top: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 1299px) {
  #header {
    width: 100%;
    max-width: 1920px;
    position: fixed;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    justify-content: space-between;
  }
  #header .header-logo {
    flex-shrink: 0;
    width: 80px;
  }
  #header .header-menu {
    display: flex;
  }
  #header .header-menu__item {
    margin-right: 32px;
    display: none;
  }
  #header .header-menu__item:last-child {
    margin-right: 0;
  }
  #header .header-menu__item.register {
    margin-left: 57px;
  }
  #header .header-menu__link {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #header .header-menu__link span {
    display: block;
    color: #f9ce7f;
    font-size: 12px;
    margin-top: 10px;
  }
  #header .header-menu__link.register {
    flex-shrink: 0;
    width: 379px;
    height: 60px;
    background: linear-gradient(#103F89, #002156);
    padding: 18px 40px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    flex-direction: row;
  }
  #header .header-menu__link.register img {
    width: 24px;
  }
  #header .header-menu__link.register span {
    margin-top: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
}

/*****************/
/*** hamburger-menu  ***/
/*****************/
@media screen and (min-width: 1300px) {
  .hamburger-menu {
    display: none !important;
  }
  .sp-nav {
    display: none !important;
  }
}
@media screen and (max-width: 1299px) {
  .hamburger-menu {
    display: block !important;
    width: 50px;
    height: 50px;
    position: fixed;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background-color: white;
    border-radius: 50%;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  /*****************/
  /*** sp-nav  ***/
  /*****************/
  .sp-nav {
    display: flex;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    padding: 100px 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: all 0.6s ease;
  }
}
@media screen and (max-width: 1299px) and (max-width: 500px) {
  .sp-nav {
    overflow-y: scroll;
    display: block;
  }
}
@media screen and (max-width: 1299px) {
  .sp-nav.active {
    transform: translateX(0);
  }
  .sp-nav ul {
    border-top: 1px solid #ccc;
    width: 100%;
  }
  .sp-nav ul li.register {
    border-bottom: none;
  }
  .sp-nav ul li a,
  .sp-nav ul li .header-menu__link {
    color: #262629;
    font-size: 16px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
  .sp-nav ul li a span,
  .sp-nav ul li .header-menu__link span {
    color: #F9CE7F;
    font-size: 14px;
  }
  .sp-nav ul li a.register,
  .sp-nav ul li .header-menu__link.register {
    margin: 0 auto;
    flex-shrink: 0;
    width: 350px;
    height: 50px;
    background: linear-gradient(#103F89, #002156);
    padding: 20px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    flex-direction: row;
  }
  .sp-nav ul li a.register img,
  .sp-nav ul li .header-menu__link.register img {
    width: 18px;
  }
  .sp-nav ul li a.register span,
  .sp-nav ul li .header-menu__link.register span {
    margin-top: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
}
/*------------------------------------------
 *   contact
 *----------------------------------------*/
@media screen and (min-width: 769px) {
  #contact {
    background-image: url(../image/footer-contact__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  #contact .contact-wrapper {
    border-radius: 24px;
    background-color: white;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #contact .contact-left {
    width: 48%;
    max-width: 380px;
    padding-top: 40px;
  }
  #contact .contact-ttl span {
    display: block;
  }
  #contact .contact-ttl span.jp {
    font-size: 32px;
    font-weight: 600;
  }
  #contact .contact-ttl span.jp:after {
    margin-top: 16px;
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #002156;
  }
  #contact .contact-ttl span.en {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #F9CE7F;
  }
  #contact .contact-desc {
    margin-top: 40px;
  }
  #contact .contact-link {
    margin-top: 40px;
    background: linear-gradient(#103F89, #002156);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 306px;
    height: 60px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 40px;
  }
  #contact .contact-link img {
    width: 24px;
  }
  #contact .contact-link span {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
  #contact .contact-right {
    max-width: 620px;
    width: 50%;
    margin-left: 2%;
    border-radius: 16px;
  }
}
@media screen and (max-width: 769px) {
  #contact {
    background-image: url(../image/footer-contact__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #contact .contact-wrapper {
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 25px;
  }
  #contact .contact-left {
    padding-top: 20px;
  }
  #contact .contact-ttl span {
    display: block;
  }
  #contact .contact-ttl span.jp {
    font-size: 24px;
    font-weight: 600;
  }
  #contact .contact-ttl span.jp:after {
    margin-top: 10px;
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #002156;
  }
  #contact .contact-ttl span.en {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #F9CE7F;
  }
  #contact .contact-desc {
    margin-top: 20px;
  }
  #contact .contact-link {
    margin-top: 20px;
    background: linear-gradient(#103F89, #002156);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 306px;
    height: 60px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 40px;
  }
  #contact .contact-link img {
    width: 24px;
  }
  #contact .contact-link span {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
  #contact .contact-right {
    margin: 40px auto 0;
    max-width: 620px;
    border-radius: 16px;
  }
}

/*------------------------------------------
 *   footer
 *----------------------------------------*/
#footer {
  /*------------------------------------------
  *   bottom
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #footer #bottom {
    background-image: url(../image/footer-bottom__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 70px;
    padding-bottom: 140px;
  }
  #footer #bottom .bottom-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  #footer #bottom .bottom-left {
    flex-shrink: 0;
    width: 173px;
  }
  #footer #bottom .bottom-menu {
    display: flex;
  }
  #footer #bottom .bottom-menu__item {
    margin-left: 40px;
  }
  #footer #bottom .bottom-menu__link {
    font-size: 16px;
    color: #002156;
    position: relative;
  }
  #footer #bottom .bottom-menu__link:hover {
    opacity: 1;
  }
  #footer #bottom .bottom-menu__link:hover:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #002156;
    left: 0;
    bottom: -10px;
  }
  #footer #bottom .bottom-link {
    margin-top: 40px;
    margin-left: auto;
    margin-right: 0;
    width: 260px;
    height: 60px;
    border-radius: 30px;
    border: 2px solid #002156;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #002156;
    font-weight: bold;
  }
  #footer #bottom .bottom-link img {
    width: 24px;
  }
  #footer #bottom .bottom-link span {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #002156;
    border-right: 2px solid #002156;
    transform: rotate(45deg);
  }
  #footer #bottom .bottom-fb {
    margin-top: 40px;
    width: 32px;
  }
}
@media screen and (max-width: 768px) {
  #footer #bottom {
    background-image: url(../image/footer-bottom__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 70px;
  }
  #footer #bottom .bottom-left {
    margin: 0 auto;
    width: 100px;
  }
  #footer #bottom .bottom-menu {
    margin-top: 30px;
    border-top: 1px solid #002156;
    padding-top: 20px;
  }
  #footer #bottom .bottom-menu__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #002156;
  }
  #footer #bottom .bottom-menu__link {
    font-size: 14px;
    color: #002156;
    position: relative;
    text-align: center;
  }
  #footer #bottom .bottom-link {
    margin: 20px auto 0;
    width: 90%;
    max-width: 379px;
    height: 60px;
    border-radius: 30px;
    border: 2px solid #002156;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #002156;
    font-weight: bold;
  }
  #footer #bottom .bottom-link img {
    width: 24px;
  }
  #footer #bottom .bottom-link span {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #002156;
    border-right: 2px solid #002156;
    transform: rotate(45deg);
  }
  #footer #bottom .bottom-fb {
    margin-top: 30px;
    width: 24px;
  }
}
#footer .footer-copy {
  background-color: #002156;
  padding-top: 15px;
  padding-bottom: 15px;
}
#footer .footer-copy__container {
  max-width: 1470px;
}
#footer .footer-copy__main {
  color: white;
  font-size: 12px;
}

/*------------------------------------------
 *   front
 *----------------------------------------*/
#front {
  /*------------------------------------------
  *   hero
  *----------------------------------------*/
  /*------------------------------------------
  *   news
  *----------------------------------------*/
  /*------------------------------------------
  *   about
  *----------------------------------------*/
  /*------------------------------------------
  *   lecture
  *----------------------------------------*/
  /*------------------------------------------
  *   contact
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #front #hero {
    height: 650px;
    background-image: url(../image/header-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #front #hero .hero-slider {
    width: 90%;
    max-width: 1679px;
    position: absolute;
    left: 0;
    bottom: -150px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 24px 24px 0;
    z-index: 10;
    overflow: hidden;
  }
  #front #hero .hero-slider__item {
    height: 620px;
    position: relative;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    padding-top: 210px;
    padding-right: 186px;
    padding-left: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front #hero .hero-slider__main {
    max-width: 486px;
    position: relative;
    margin-left: auto;
    margin-right: 0;
  }
  #front #hero .hero-slider__desc {
    margin-top: 40px;
    font-size: 18px;
  }
  #front #hero .hero-slider .slick-dots {
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #front #hero .hero-slider .slick-dots li {
    margin: 0 8px;
    width: 12px;
    height: 12px;
  }
  #front #hero .hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
  }
  #front #hero .hero-slider .slick-dots li button::before {
    content: "";
    background-color: white;
    width: 12px;
    height: 12px;
    display: block;
    counter-reset: 50%;
    border-radius: 50%;
    opacity: 1;
  }
  #front #hero .hero-slider .slick-dots li.slick-active button::before {
    background-color: #002156;
  }
}
@media screen and (max-width: 768px) {
  #front #hero {
    height: 350px;
    background-image: url(../image/header-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #front #hero .hero-slider {
    width: 97%;
    max-width: 1679px;
    position: absolute;
    left: 0;
    bottom: -120px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 18px 18px 0;
    z-index: 10;
    overflow: hidden;
  }
  #front #hero .hero-slider__item {
    height: 320px;
    position: relative;
    border-radius: 0 18px 18px 0;
    overflow: hidden;
    padding-top: 30px;
    padding-right: 20px;
    padding-left: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front #hero .hero-slider__main {
    max-width: 759px;
    position: relative;
    margin-left: auto;
    margin-right: 0;
  }
  #front #hero .hero-slider__desc {
    margin-top: 20px;
    padding-left: 20px;
    font-size: 16px;
  }
  #front #hero .hero-slider .slick-dots {
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #front #hero .hero-slider .slick-dots li {
    margin: 0 5px;
    width: 8px;
    height: 8px;
  }
  #front #hero .hero-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  #front #hero .hero-slider .slick-dots li button::before {
    content: "";
    background-color: white;
    width: 8px;
    height: 8px;
    display: block;
    counter-reset: 50%;
    border-radius: 50%;
    opacity: 1;
  }
  #front #hero .hero-slider .slick-dots li.slick-active button::before {
    background-color: #002156;
  }
}
@media screen and (min-width: 769px) {
  #front #news {
    padding-top: 200px;
    padding-bottom: 120px;
  }
  #front #news .news-list {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  #front #news {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  #front #news .news-list {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  #front #about {
    padding-top: 80px;
    padding-bottom: 120px;
    background-color: #002156;
    min-height: 720px;
  }
  #front #about .about-container {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  #front #about .about-ttl span {
    color: white;
  }
  #front #about .about-ttl span:after {
    background-color: white;
  }
  #front #about .about-desc {
    margin-top: 80px;
    color: white;
    font-size: 18px;
    width: 50%;
  }
  #front #about .about-cta {
    margin: 40px 0 0;
    background: white;
    color: #002156;
  }
  #front #about .about-cta:after {
    border-color: #002156;
  }
  #front #about .about-img {
    width: 46%;
    margin-left: auto;
    margin-right: 0;
    border-radius: 24px 0 0 24px;
  }
}
@media screen and (max-width: 768px) {
  #front #about {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #002156;
    min-height: 720px;
  }
  #front #about .about-ttl span {
    color: white;
  }
  #front #about .about-ttl span:after {
    background-color: white;
  }
  #front #about .about-desc {
    margin-top: 30px;
    color: white;
    font-size: 16px;
  }
  #front #about .about-cta {
    margin-top: 40px;
    background: white;
    color: #002156;
  }
  #front #about .about-cta:after {
    border-color: #002156;
  }
  #front #about .about-img {
    margin-top: 20px;
    border-radius: 16px;
  }
}
#front .front-bottom {
  background-image: url(../image/front-bottom__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 769px) {
  #front #lecture {
    padding-top: 80px;
    background-color: transparent;
  }
  #front #lecture .lecture-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #front #lecture .lecture-ttl span:after {
    margin: 16px auto 0;
  }
  #front #lecture .lecture-list {
    margin-top: 80px;
  }
  #front #lecture .lecture-list__item {
    border-right: 1px solid #E3E3E3;
  }
  #front #lecture .lecture-cta {
    margin-top: 50px;
    width: 191px;
  }
}
@media screen and (max-width: 768px) {
  #front #lecture {
    padding-top: 40px;
    background-color: transparent;
  }
  #front #lecture .lecture-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #front #lecture .lecture-ttl span:after {
    margin: 16px auto 0;
  }
  #front #lecture .lecture-list {
    margin-top: 40px;
  }
  #front #lecture .lecture-cta {
    margin-top: 50px;
    width: 191px;
  }
}
@media screen and (min-width: 769px) {
  #front #contact {
    background: none;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #front #contact {
    background: none;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

#register {
  /*------------------------------------------
  *  description
  *----------------------------------------*/
  /*------------------------------------------
  *  form
  *----------------------------------------*/
  /*------------------------------------------
  *   note
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #register #description {
    padding-top: 98px;
  }
  #register #description .description-container {
    max-width: 1030px;
  }
  #register #description .description-desc {
    margin-top: 40px;
  }
  #register #description .description-privacy {
    margin-top: 42px;
    background-color: white;
    border-radius: 1px solid #E3E3E3;
    height: 460px;
    overflow-y: scroll;
    padding: 32px 40px;
  }
  #register #description .description-privacy__ttl {
    font-size: 24px;
    margin-bottom: 45px;
    line-height: 1.4;
  }
  #register #description .description-privacy__desc {
    margin-bottom: 30px;
  }
  #register #description .description-privacy__h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #register #description .description-privacy__list {
    margin-bottom: 30px;
    padding-left: 20px;
  }
  #register #description .description-privacy__item {
    list-style: disc;
    font-size: 16px;
    margin-bottom: 10px;
  }
  #register #description .cta-wrapper {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  #register #description {
    padding-top: 50px;
  }
  #register #description .description-container {
    max-width: 1030px;
  }
  #register #description .description-desc {
    margin-top: 20px;
  }
  #register #description .description-privacy {
    margin-top: 22px;
    background-color: white;
    border-radius: 1px solid #E3E3E3;
    height: 460px;
    overflow-y: scroll;
    padding: 20px;
  }
  #register #description .description-privacy__ttl {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  #register #description .description-privacy__desc {
    margin-bottom: 20px;
  }
  #register #description .description-privacy__h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #register #description .description-privacy__list {
    margin-bottom: 20px;
    padding-left: 15px;
  }
  #register #description .description-privacy__item {
    list-style: disc;
    font-size: 14px;
    margin-bottom: 10px;
  }
  #register #description .cta-wrapper {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 769px) {
  #register #form {
    padding-top: 80px;
  }
  #register #form .form-container {
    max-width: 1030px;
  }
  #register #form .form-wrapper {
    font-size: 16px;
  }
  #register #form .form-ttl {
    color: #DA1013;
    display: none;
  }
  #register #form .form-ttl.active {
    display: block;
  }
  #register #form .um-register {
    max-width: 580px;
    margin-bottom: 0 !important;
  }
  #register #form .um-register.active {
    max-width: none;
  }
  #register #form .um-register .um-field-label {
    margin-bottom: 16px;
  }
  #register #form .um-register .um-field-label label {
    font-size: 16px !important;
    color: black;
    font-weight: 400;
  }
  #register #form .um-register .um-field-area input {
    border-radius: 4px;
    border: none !important;
    padding: 22px 16px !important;
    font-size: 16px !important;
    height: 56px !important;
  }
  #register #form .um-register .um-field {
    padding-top: 32px;
  }
  #register #form .um-register input[type=submit].um-button {
    border-radius: 30px !important;
    width: 360px !important;
    height: 60px !important;
    display: block;
    background: linear-gradient(#103F89, #002156);
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #register #form .um-register .um-col-alt {
    margin-top: 75px !important;
    margin-bottom: 0 !important;
  }
  #register #form .um-register .um-field-error {
    background-color: transparent !important;
    padding: 0 !important;
    color: #DA1013;
  }
  #register #form .um-register .um-field-error .um-field-arrow {
    display: none !important;
  }
  #register #form .um-register .um-postmessage {
    margin-top: 40px;
    font-size: 20px !important;
    color: #333 !important;
    line-height: 1.6;
    color: #DA1013 !important;
  }
}
@media screen and (max-width: 768px) {
  #register #form {
    padding-top: 40px;
  }
  #register #form .form-container {
    max-width: 1030px;
  }
  #register #form .form-wrapper {
    font-size: 14px;
  }
  #register #form .form-ttl {
    color: #DA1013;
    display: none;
  }
  #register #form .form-ttl.active {
    display: block;
  }
  #register #form .um-register {
    max-width: 580px;
    margin-bottom: 0 !important;
  }
  #register #form .um-register.active {
    max-width: none;
  }
  #register #form .um-register .um-field-label {
    margin-bottom: 16px;
  }
  #register #form .um-register .um-field-label label {
    font-size: 14px !important;
    color: black;
    font-weight: 400;
  }
  #register #form .um-register .um-field-area input {
    border-radius: 4px;
    border: none !important;
    padding: 16px !important;
    font-size: 14px !important;
  }
  #register #form .um-register .um-field {
    padding-top: 22px;
  }
  #register #form .um-register input[type=submit].um-button {
    width: 90% !important;
    border-radius: 30px !important;
    max-width: 360px !important;
    height: 60px !important;
    display: block;
    background: linear-gradient(#103F89, #002156);
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #register #form .um-register .um-col-alt {
    margin-top: 35px !important;
    margin-bottom: 0 !important;
  }
  #register #form .um-register .um-field-error {
    background-color: transparent !important;
    padding: 0 !important;
    color: #DA1013;
  }
  #register #form .um-register .um-field-error .um-field-arrow {
    display: none !important;
  }
  #register #form .um-register .um-postmessage {
    margin-top: 20px;
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.6;
    color: #DA1013 !important;
  }
}
@media screen and (min-width: 769px) {
  #register #note {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  #register #note .note-container {
    max-width: 1030px;
  }
  #register #note .note-wrapper {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
    display: none;
  }
  #register #note .note-wrapper.active {
    display: block !important;
  }
  #register #note .note-ttl {
    line-height: 1.6;
    font-size: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #002156;
  }
  #register #note .note-h3 {
    line-height: 1.6;
    margin-top: 40px;
    font-size: 16px;
  }
  #register #note .note-desc {
    margin-top: 16px;
    font-size: 14px;
  }
  #register #note .note-list {
    margin-top: 16px;
    padding-left: 20px;
  }
  #register #note .note-list__item {
    list-style: disc;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #register #note {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #register #note .note-container {
    max-width: 1030px;
  }
  #register #note .note-wrapper {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
    display: none;
  }
  #register #note .note-wrapper.active {
    display: block !important;
  }
  #register #note .note-ttl {
    font-size: 18px;
    padding-bottom: 7px;
    border-bottom: 1px solid #002156;
    line-height: 1.6;
  }
  #register #note .note-h3 {
    line-height: 1.6;
    margin-top: 20px;
    font-size: 16px;
  }
  #register #note .note-desc {
    margin-top: 16px;
    font-size: 14px;
  }
  #register #note .note-list {
    margin-top: 16px;
    padding-left: 20px;
  }
  #register #note .note-list__item {
    list-style: disc;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.page-profile {
  /*------------------------------------------
  *  success
  *----------------------------------------*/
  /*------------------------------------------
  *  form
  *----------------------------------------*/
}
.page-profile #success {
  padding-top: 40px;
}
.page-profile #success .success-container {
  max-width: 1030px;
}
.page-profile #success .success-desc {
  border: 1px solid #E3E3E3;
  background-color: white;
  padding: 20px;
}
@media screen and (min-width: 881px) {
  .page-profile #form {
    padding-top: 14px;
    padding-bottom: 120px;
  }
  .page-profile #form .form-container {
    max-width: 1030px;
  }
  .page-profile #form .form-group {
    margin-top: 80px;
  }
  .page-profile #form .form-desc {
    margin-top: 24px;
  }
  .page-profile #form .form-table {
    margin-top: 24px;
    border-top: 1px solid #C7C7C7;
  }
  .page-profile #form .form-table * {
    position: relative;
  }
  .page-profile #form .form-table__row {
    border-bottom: 1px solid #C7C7C7;
    display: flex;
    /* 住所行：左右の罫線高さを揃える（subgrid） */
  }
  .page-profile #form .form-table__row--address {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-rows: auto auto auto;
  }
  .page-profile #form .form-table__row--address .form-table__dt {
    grid-column: 1;
    grid-row: 1/-1;
    display: grid;
    grid-template-columns: 165px 200px;
    grid-template-rows: subgrid;
    padding-left: 15px;
    align-items: stretch;
    max-width: 380px;
    min-width: 0;
    overflow: hidden;
  }
  .page-profile #form .form-table__row--address .form-table__dt .dt-left {
    grid-column: 1;
    grid-row: 1/-1;
    align-self: center;
  }
  .page-profile #form .form-table__row--address .form-table__dt .dt-right {
    grid-column: 2;
    grid-row: 1/-1;
    display: grid;
    grid-template-rows: subgrid;
    width: auto;
  }
  .page-profile #form .form-table__row--address .form-table__dt .dt-right__item {
    grid-row: span 1;
    min-height: 0;
    height: auto;
  }
  .page-profile #form .form-table__row--address .form-table__dt .dt-right__item.country {
    grid-row: 1;
    /* 右側の input 分の高さを確保して罫線を揃える */
    min-height: 115px;
  }
  .page-profile #form .form-table__row--address .form-table__dt .dt-right__item.zip {
    grid-row: 2;
    /* 右側の注釈分の高さを確保して罫線を揃える */
    min-height: 170px;
  }
  .page-profile #form .form-table__row--address .form-table__dt .dt-right__item.address {
    grid-row: 3;
    /* 右側の長い注釈分の高さを確保 */
    min-height: 200px;
  }
  .page-profile #form .form-table__row--address .form-table__dd {
    grid-column: 2;
    grid-row: 1/-1;
    display: grid;
    grid-template-rows: subgrid;
  }
  .page-profile #form .form-table__row--address .form-table__dd .dd-row {
    display: contents;
  }
  .page-profile #form .form-table__row--address .form-table__dd .dd-row__item {
    min-height: 0;
  }
  .page-profile #form .form-table__row--address .form-table__dd .dd-row__item:nth-child(1) {
    grid-row: 1;
  }
  .page-profile #form .form-table__row--address .form-table__dd .dd-row__item:nth-child(2) {
    grid-row: 2;
  }
  .page-profile #form .form-table__row--address .form-table__dd .dd-row__item:nth-child(3) {
    grid-row: 3;
  }
  .page-profile #form .form-table__row.grade {
    display: none;
  }
  .page-profile #form .form-table__row.grade.active {
    display: flex;
  }
  .page-profile #form .form-table label {
    font-size: 16px;
    display: block;
  }
  .page-profile #form .form-table .label-wrapper {
    display: flex;
    align-items: center;
  }
  .page-profile #form .form-table .label-wrapper.is-sp {
    display: none !important;
  }
  .page-profile #form .form-table .label-wrapper span {
    flex-shrink: 0;
    width: 41px;
    height: 21px;
    background-color: #DA1013;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
  }
  .page-profile #form .form-table p.note {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }
  .page-profile #form .form-table .form-cell {
    position: relative;
    padding: 23px 10px;
  }
  .page-profile #form .form-table__dt {
    flex-shrink: 0;
    width: 380px;
    background-color: #e6eefa;
    display: flex;
    padding-left: 15px;
    align-items: center;
    justify-content: space-between;
  }
  .page-profile #form .form-table__dt .dt-right {
    flex-shrink: 0;
    width: 200px;
  }
  .page-profile #form .form-table__dt .dt-right__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #C7C7C7;
    font-size: 16px;
  }
  .page-profile #form .form-table__dt .dt-right__item:last-child {
    border: none;
  }
  .page-profile #form .form-table__dt .dt-right__item.nihongo {
    height: 146px;
  }
  .page-profile #form .form-table__dt .dt-right__item.hiragana {
    height: 146px;
  }
  .page-profile #form .form-table__dt .dt-right__item.eigo {
    height: 140px;
  }
  .page-profile #form .form-table__dt .dt-right__item.company {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.faculty {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.department {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.country {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.zip {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.address {
    min-height: 191.17px;
    height: 100%;
  }
  .page-profile #form .form-table__dt .dt-right__item.grad_faculty {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.grad_dept {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.graduation {
    height: 110px;
  }
  .page-profile #form .form-table__dt .dt-right__item.key_degree {
    height: 109px;
  }
  .page-profile #form .form-table__dt .dt-right__item.key_year {
    height: 109px;
  }
  .page-profile #form .form-table__dd {
    width: 100%;
    font-size: 16px;
  }
  .page-profile #form .form-table__dd input[type=text],
  .page-profile #form .form-table__dd input[type=date],
  .page-profile #form .form-table__dd input[type=tel],
  .page-profile #form .form-table__dd select {
    border: none;
    display: block;
    border-radius: 4px;
    padding: 22px 11px;
    font-size: 16px;
  }
  .page-profile #form .form-table__dd input[type=text]::placeholder,
  .page-profile #form .form-table__dd input[type=date]::placeholder,
  .page-profile #form .form-table__dd input[type=tel]::placeholder,
  .page-profile #form .form-table__dd select::placeholder {
    color: #888888;
  }
  .page-profile #form .form-table__dd input[type=text].is-error,
  .page-profile #form .form-table__dd input[type=date].is-error,
  .page-profile #form .form-table__dd input[type=tel].is-error,
  .page-profile #form .form-table__dd select.is-error {
    border: 2px solid #DA1013;
  }
  .page-profile #form .form-table__dd select {
    padding-right: 52px;
    background-position: right 16px center;
  }
  .page-profile #form .form-table__dd input[type=text] {
    width: 100%;
  }
  .page-profile #form .form-table__dd .radio-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
  }
  .page-profile #form .form-table__dd .radio-wrapper .error-tip {
    position: relative;
  }
  .page-profile #form .form-table__dd .redio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
  }
  .page-profile #form .form-table__dd .redio-label:last-child {
    margin-right: 0;
  }
  .page-profile #form .form-table__dd .redio-label input {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    bottom: 50%;
    border: 3px solid #E3E3E3;
    margin-right: 8px;
  }
  .page-profile #form .form-table__dd .dd-row__item {
    border-bottom: 1px solid #C7C7C7;
  }
  .page-profile #form .form-table__dd .dd-row__item:last-child {
    border: none;
  }
  .page-profile #form .form-table__dd .dd-row.flex {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #C7C7C7;
    gap: 15px;
  }
  .page-profile #form .form-table__dd .dd-row.flex:last-child {
    border: none;
  }
  .page-profile #form .form-table__dd .dd-row.flex .dd-row__item {
    flex: 1;
    border: none;
  }
  .page-profile #form .form-table__dd .dd-row.flex .dd-row__item input {
    margin-top: 16px;
  }
  .page-profile #form .form-table .degree-add {
    cursor: pointer;
    background-color: white;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  .page-profile #form .form-table .degree-add img {
    flex-shrink: 0;
    width: 54px;
    margin-right: 18px;
  }
  .page-profile #form .button-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .page-profile #form button,
  .page-profile #form .button {
    flex-shrink: 0;
    width: 360px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  .page-profile #form button::after,
  .page-profile #form .button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 16px;
  }
  .page-profile #form button.back,
  .page-profile #form .button.back {
    background: #C7C7C7;
  }
  .page-profile #form button.back::before,
  .page-profile #form .button.back::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
    margin-right: 16px;
  }
  .page-profile #form button.back::after,
  .page-profile #form .button.back::after {
    display: none;
  }
  .page-profile #form .error-tip {
    position: absolute;
    color: #DA1013;
    left: 15px;
    bottom: 5px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.nihongo {
    height: 103px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.hiragana {
    height: 103px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.eigo {
    height: 102px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.company {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.faculty {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.department {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.country {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.zip {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.address {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.grad_faculty {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.grad_dept {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.graduation {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.key_degree {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dt .dt-right__item.key_year {
    height: 63px;
  }
  .page-profile #form .form-confirm .form-table__dd .dd-row.flex label {
    color: #888888;
  }
  .page-profile #form .form-confirm .form-table__dd .dd-row.flex .data {
    margin-top: 24px;
  }
}
@media screen and (max-width: 880px) {
  .page-profile #form {
    padding-top: 14px;
    padding-bottom: 60px;
  }
  .page-profile #form .form-container {
    max-width: 1030px;
  }
  .page-profile #form .form-group {
    margin-top: 40px;
  }
  .page-profile #form .form-desc {
    margin-top: 15px;
  }
  .page-profile #form .form-table {
    margin-top: 15px;
    border-top: 1px solid #C7C7C7;
  }
  .page-profile #form .form-table__row {
    border-bottom: 1px solid #C7C7C7;
  }
  .page-profile #form .form-table__row.grade {
    display: none;
  }
  .page-profile #form .form-table__row.grade.active {
    display: block;
  }
  .page-profile #form .form-table label {
    font-size: 14px;
    display: block;
  }
  .page-profile #form .form-table .label-wrapper {
    display: flex;
    align-items: center;
  }
  .page-profile #form .form-table .label-wrapper span {
    flex-shrink: 0;
    width: 41px;
    height: 21px;
    background-color: #DA1013;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
  }
  .page-profile #form .form-table p.note {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.6;
  }
  .page-profile #form .form-table .form-cell {
    padding: 15px;
  }
  .page-profile #form .form-table__dt {
    background-color: #e6eefa;
    display: flex;
    padding-left: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }
  .page-profile #form .form-table__dt .dt-right {
    display: none;
  }
  .page-profile #form .form-table__dd {
    width: 100%;
    font-size: 14px;
  }
  .page-profile #form .form-table__dd input[type=text],
  .page-profile #form .form-table__dd input[type=date],
  .page-profile #form .form-table__dd input[type=tel],
  .page-profile #form .form-table__dd select {
    border: none;
    display: block;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
  }
  .page-profile #form .form-table__dd input[type=text]::placeholder,
  .page-profile #form .form-table__dd input[type=date]::placeholder,
  .page-profile #form .form-table__dd input[type=tel]::placeholder,
  .page-profile #form .form-table__dd select::placeholder {
    color: #888888;
  }
  .page-profile #form .form-table__dd input[type=text].is-error,
  .page-profile #form .form-table__dd input[type=date].is-error,
  .page-profile #form .form-table__dd input[type=tel].is-error,
  .page-profile #form .form-table__dd select.is-error {
    border: 2px solid #DA1013;
  }
  .page-profile #form .form-table__dd select {
    padding-right: 44px;
    background-position: right 12px center;
  }
  .page-profile #form .form-table__dd input[type=text] {
    width: 100%;
  }
  .page-profile #form .form-table__dd .radio-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .page-profile #form .form-table__dd .radio-wrapper .error-tip {
    margin-top: 0;
  }
  .page-profile #form .form-table__dd .redio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
  }
  .page-profile #form .form-table__dd .redio-label:last-child {
    margin-right: 0;
  }
  .page-profile #form .form-table__dd .redio-label input {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    bottom: 50%;
    border: 3px solid #E3E3E3;
    margin-right: 10px;
  }
  .page-profile #form .form-table__dd .dd-row__item {
    border-bottom: 1px solid #C7C7C7;
  }
  .page-profile #form .form-table__dd .dd-row__item:last-child {
    border: none;
  }
  .page-profile #form .form-table__dd .dd-row input {
    margin-top: 16px;
  }
  .page-profile #form .form-table__dd .dd-row.flex {
    display: flex;
    border-bottom: 1px solid #C7C7C7;
    flex-direction: column;
    gap: 15px;
  }
  .page-profile #form .form-table__dd .dd-row.flex:last-child {
    border: none;
  }
  .page-profile #form .form-table__dd .dd-row.flex .dd-row__item {
    flex: 1;
    border: none;
  }
  .page-profile #form .form-table__dd .dd-row.flex .dd-row__item input {
    margin-top: 16px;
  }
  .page-profile #form .form-table .degree-add {
    cursor: pointer;
    background-color: white;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .page-profile #form .form-table .degree-add img {
    flex-shrink: 0;
    width: 32px;
    margin-right: 18px;
  }
  .page-profile #form .button-wrapper {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .page-profile #form button,
  .page-profile #form .button {
    flex-shrink: 0;
    width: 90%;
    max-width: 360px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  .page-profile #form button::after,
  .page-profile #form .button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 16px;
  }
  .page-profile #form button.back,
  .page-profile #form .button.back {
    background: #C7C7C7;
  }
  .page-profile #form button.back::before,
  .page-profile #form .button.back::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
    margin-right: 16px;
  }
  .page-profile #form button.back::after,
  .page-profile #form .button.back::after {
    display: none;
  }
  .page-profile #form .error-tip {
    display: block;
    margin-top: 10px;
    color: #DA1013;
  }
  .page-profile #form .data {
    margin-top: 15px;
  }
  .page-profile #form .form-confirm .form-table__dd .dd-row.flex label {
    color: #888888;
  }
  .page-profile #form .form-confirm .form-table__dd .dd-row.flex .data {
    margin-top: 24px;
  }
}

/*------------------------------------------
 *  Account (マイページ)
 *----------------------------------------*/
#account #form.account-section {
  padding-top: 80px;
  padding-bottom: 120px;
  margin-top: 0;
}
@media screen and (max-width: 880px) {
  #account #form.account-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

#account #form.account-section .form-group:first-child {
  margin-top: 0;
}

#account .account-container {
  max-width: 1230px;
}

#account .account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
@media screen and (max-width: 880px) {
  #account .account-layout {
    grid-template-columns: 1fr; /* パンくず直下にメニュー、その下にメインコンテンツ */
  }
}

/* 左サイドバー（PC時はstickyで右側コンテンツスクロールに追従） */
#account .account-sidebar {
  flex-shrink: 0;
  width: 280px;
  min-height: 513px;
  background: #002156;
  padding: 8px 40px;
  border-radius: 16px;
  position: sticky;
  top: 200px; /* 固定ヘッダー下に表示 */
  align-self: start;
}
@media screen and (max-width: 880px) {
  #account .account-sidebar {
    position: static;
    width: 100%;
    padding: 16px;
    height: fit-content;
    min-height: auto;
  }
}

#account .account-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#account .account-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
#account .account-nav__item:last-child {
  border-bottom: none;
}

#account .account-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 32px 0px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  text-decoration: none;
}
#account .account-nav__link:hover {
  color: #F9CE7F;
  opacity: 1;
}
@media screen and (max-width: 880px) {
  #account .account-nav__link {
    padding: 12px 16px;
    font-size: 14px;
  }
}

#account .account-nav__item.is-current .account-nav__link {
  color: #F9CE7F;
}

#account .account-nav__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#account .account-nav__icon svg {
  display: block;
}

/* 右メインコンテンツ */
#account .account-main {
  min-width: 0; /* グリッド内でのオーバーフロー防止 */
}
#account .account-block {
  margin-top: 48px;
}
#account .account-block:first-child {
  margin-top: 0;
}
@media screen and (max-width: 880px) {
  #account .account-block {
    margin-top: 32px;
  }
}

#account .account-block__desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
@media screen and (max-width: 880px) {
  #account .account-block__desc {
    margin-top: 12px;
    font-size: 13px;
  }
}

/* お知らせボックス */
#account .account-notice-box {
  margin-top: 20px;
  padding: 40px;
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 880px) {
  #account .account-notice-box {
    margin-top: 16px;
    padding: 32px 16px;
  }
}

#account .account-notice-box__empty {
  font-size: 15px;
  color: #888888;
}

/* 再会応援プロジェクト 説明文（.account-main .form-group 内の form-desc のみ対象） */
#account .account-main .form-group .form-desc.desc {
  margin-top: 24px;
  margin-bottom: 32px;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
#account .account-main .form-group .form-desc.desc p {
  margin-top: 1em;
}
#account .account-main .form-group .form-desc.desc p:first-child {
  margin-top: 0;
}
#account .account-main .form-group .form-desc.desc .form-desc__lead {
  font-weight: bold;
  font-size: 16px;
}
#account .account-main .form-group .form-desc.desc .form-desc__h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 15px;
  font-weight: bold;
}
#account .account-main .form-group .form-desc.desc .form-desc__list {
  margin: 0.5em 0 0 1.5em;
  padding: 0;
  list-style: disc;
}
#account .account-main .form-group .form-desc.desc .form-desc__list li {
  margin-top: 0.5em;
}
#account .account-main .form-group .form-desc.desc .form-desc__ex {
  margin-left: 1em;
  font-size: 15px;
  color: #888888;
}

/* 会費申請・確認 ボタン */
#account .account-block.button-wrapper,
#account .account-block .button-wrapper {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* 会費申請ボタン：矢印をテキストで表示、他ボタンと同じ16px間隔 */
#account .fee-form .button.button-no-arrow::after {
  display: none;
}

#account .fee-form .button.button-no-arrow .button-arrow {
  margin-left: 16px;
}

/* 会員情報テーブル（既存 form-table を継承） */
#account .account-info-table {
  margin-top: 24px;
}
@media screen and (max-width: 880px) {
  #account .account-info-table {
    margin-top: 16px;
  }
}

/* 再会応援フォーム：チェックボックス（radio-wrapper / radio-label で他ページに合わせる） */
#account .fee-form .radio-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

#account .fee-form .radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#account .fee-form .radio-label input[type=checkbox] {
  position: relative;
  top: 5px;
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
}
#account .fee-form .radio-label .radio-label__text {
  line-height: 22px;
  display: inline-flex;
  align-items: center;
}

#login {
  /*------------------------------------------
  *  form
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #login #form {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #login #form .form-container {
    max-width: 1030px;
  }
  #login #form .form-wrapper {
    font-size: 16px;
  }
  #login #form .form-ttl {
    color: #DA1013;
    display: none;
  }
  #login #form .form-ttl.active {
    display: block;
  }
  #login #form .um-login {
    max-width: 580px;
    margin-bottom: 0 !important;
  }
  #login #form .um-login.active {
    max-width: none;
  }
  #login #form .um-login .um-field-label {
    margin-bottom: 16px;
  }
  #login #form .um-login .um-field-label label {
    font-size: 16px !important;
    color: black;
    font-weight: 400;
  }
  #login #form .um-login .um-field-area input {
    border-radius: 4px;
    border: none !important;
    padding: 22px 16px !important;
    font-size: 16px !important;
    height: 56px !important;
  }
  #login #form .um-login .um-field {
    padding-top: 32px;
  }
  #login #form .um-login input[type=submit].um-button {
    border-radius: 30px !important;
    width: 280px !important;
    height: 60px !important;
    display: block;
    background: linear-gradient(#103F89, #002156);
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #login #form .um-login .um-col-alt {
    margin-top: 75px !important;
    margin-bottom: 0 !important;
  }
  #login #form .um-login .um-field-error {
    background-color: transparent !important;
    padding: 0 !important;
    color: #DA1013;
  }
  #login #form .um-login .um-field-error .um-field-arrow {
    display: none !important;
  }
  #login #form .um-login .um-field-checkbox-option {
    color: #002156 !important;
    margin-left: 25px !important;
  }
  #login #form .um-login .um-link-alt {
    color: #002156 !important;
    text-decoration: underline !important;
  }
  #login #form .um-login .um-button.um-alt {
    border-radius: 30px !important;
    width: 280px !important;
    height: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C7C7C7;
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #login #form .um-login .um-misc-with-img {
    display: none;
  }
  #login #form .um-login .um-misc-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
  }
  #login #form .um-login .um-misc-ul li {
    width: 360px;
    flex-shrink: 0;
  }
  #login #form .um-login .um-misc-ul li a {
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  #login #form .um-login .um-misc-ul li:last-child a {
    background: #E3E3E3;
  }
}
@media screen and (max-width: 768px) {
  #login #form {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #login #form .form-container {
    max-width: 1030px;
  }
  #login #form .form-wrapper {
    font-size: 14px;
  }
  #login #form .form-ttl {
    color: #DA1013;
    display: none;
  }
  #login #form .form-ttl.active {
    display: block;
  }
  #login #form .um-login {
    max-width: 580px;
    margin-bottom: 0 !important;
  }
  #login #form .um-login.active {
    max-width: none;
  }
  #login #form .um-login .um-field-label {
    margin-bottom: 16px;
  }
  #login #form .um-login .um-field-label label {
    font-size: 14px !important;
    color: black;
    font-weight: 400;
  }
  #login #form .um-login .um-field-area input {
    border-radius: 4px;
    border: none !important;
    padding: 16px !important;
    font-size: 14px !important;
  }
  #login #form .um-login .um-field {
    padding-top: 22px;
  }
  #login #form .um-login input[type=submit].um-button {
    width: 90% !important;
    border-radius: 30px !important;
    max-width: 360px !important;
    height: 60px !important;
    display: block;
    background: linear-gradient(#103F89, #002156);
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #login #form .um-login .um-col-alt {
    margin-top: 35px !important;
    margin-bottom: 0 !important;
  }
  #login #form .um-login .um-field-error {
    background-color: transparent !important;
    padding: 0 !important;
    color: #DA1013;
  }
  #login #form .um-login .um-field-error .um-field-arrow {
    display: none !important;
  }
  #login #form .um-login .um-field.um-field-c {
    margin-bottom: 30px;
  }
  #login #form .um-login .um-field-checkbox-option {
    color: #002156 !important;
    margin-left: 25px !important;
  }
  #login #form .um-login .um-link-alt {
    color: #002156 !important;
    text-decoration: underline !important;
  }
  #login #form .um-login .um-button.um-alt {
    width: 90% !important;
    border-radius: 30px !important;
    max-width: 240px !important;
    height: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C7C7C7;
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #login #form .um-login .um-misc-with-img {
    display: none;
  }
  #login #form .um-login .um-misc-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
  }
  #login #form .um-login .um-misc-ul li {
    flex-shrink: 0;
    max-width: 360px;
    width: 90%;
  }
  #login #form .um-login .um-misc-ul li a {
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  #login #form .um-login .um-misc-ul li:last-child a {
    background: #E3E3E3;
  }
}

/* password-reset/ 専用：セクションの余白 */
@media screen and (min-width: 769px) {
  #password-reset #form {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #password-reset #form {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* password-reset/ と member-password-reset/ の両方に適用 */
#password-reset #form,
#account .member-password-reset-block .form-wrapper {
  /*------------------------------------------
  *  form
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #password-reset #form .form-container,
  #account .member-password-reset-block .form-wrapper .form-container {
    max-width: 1030px;
  }
  #password-reset #form .form-wrapper,
  #account .member-password-reset-block .form-wrapper .form-wrapper {
    font-size: 16px;
  }
  #password-reset #form .form-ttl,
  #account .member-password-reset-block .form-wrapper .form-ttl {
    color: #da1013;
    display: none;
  }
  #password-reset #form .form-ttl.active,
  #account .member-password-reset-block .form-wrapper .form-ttl.active {
    display: block;
  }
  #password-reset #form .um-password,
  #account .member-password-reset-block .form-wrapper .um-password {
    max-width: 580px;
    margin-bottom: 0 !important;
  }
  #password-reset #form .um-password.active,
  #account .member-password-reset-block .form-wrapper .um-password.active {
    max-width: none;
  }
  #password-reset #form .um-password .um-field-label,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-label {
    margin-bottom: 16px;
  }
  #password-reset #form .um-password .um-field-label label,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-label label {
    font-size: 16px !important;
    color: black;
    font-weight: 400;
  }
  #password-reset #form .um-password .um-field-area input,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-area input {
    border-radius: 4px;
    border: none !important;
    padding: 22px 16px !important;
    font-size: 16px !important;
    height: 56px !important;
  }
  #password-reset #form .um-password .um-field,
  #account .member-password-reset-block .form-wrapper .um-password .um-field {
    padding-top: 32px;
  }
  #password-reset #form .um-password .um-col-alt,
  #password-reset #form .um-password .um-col-alt-b,
  #account .member-password-reset-block .form-wrapper .um-password .um-col-alt,
  #account .member-password-reset-block .form-wrapper .um-password .um-col-alt-b {
    margin-top: 75px !important;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
  }
  #password-reset #form .um-password .um-center,
  #account .member-password-reset-block .form-wrapper .um-password .um-center {
    display: flex;
    justify-content: center;
  }
  #password-reset #form .um-password input[type=submit].um-button,
  #account .member-password-reset-block .form-wrapper .um-password input[type=submit].um-button {
    border-radius: 30px !important;
    width: 360px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#103F89, #002156);
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
    border: none !important;
  }
  #password-reset #form .um-password input[type=submit].um-button::after,
  #account .member-password-reset-block .form-wrapper .um-password input[type=submit].um-button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 16px;
  }
  #password-reset #form .um-password .um-field-error,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-error {
    background-color: transparent !important;
    padding: 0 !important;
    color: #da1013;
  }
  #password-reset #form .um-password .um-field-error .um-field-arrow,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-error .um-field-arrow {
    display: none !important;
  }
  #password-reset #form .um-password .um-field-checkbox-option,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-checkbox-option {
    color: #002156 !important;
    margin-left: 25px !important;
  }
  #password-reset #form .um-password .um-link-alt,
  #account .member-password-reset-block .form-wrapper .um-password .um-link-alt {
    color: #002156 !important;
    text-decoration: underline !important;
  }
  #password-reset #form .um-password .um-button.um-alt,
  #account .member-password-reset-block .form-wrapper .um-password .um-button.um-alt {
    border-radius: 30px !important;
    width: 280px !important;
    height: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C7C7C7;
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #password-reset #form .um-password .um-misc-with-img,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-with-img {
    display: none;
  }
  #password-reset #form .um-password .um-misc-ul,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
  }
  #password-reset #form .um-password .um-misc-ul li,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul li {
    width: 360px;
    flex-shrink: 0;
  }
  #password-reset #form .um-password .um-misc-ul li a,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul li a {
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  #password-reset #form .um-password .um-misc-ul li:last-child a,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul li:last-child a {
    background: #E3E3E3;
  }
  #password-reset #form .um-password .um-field-block div,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-block div {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  #password-reset #form .form-container,
  #account .member-password-reset-block .form-wrapper .form-container {
    max-width: 1030px;
  }
  #password-reset #form .form-wrapper,
  #account .member-password-reset-block .form-wrapper .form-wrapper {
    font-size: 14px;
  }
  #password-reset #form .form-ttl,
  #account .member-password-reset-block .form-wrapper .form-ttl {
    color: #da1013;
    display: none;
  }
  #password-reset #form .form-ttl.active,
  #account .member-password-reset-block .form-wrapper .form-ttl.active {
    display: block;
  }
  #password-reset #form .um-password,
  #account .member-password-reset-block .form-wrapper .um-password {
    max-width: 580px;
    margin-bottom: 0 !important;
  }
  #password-reset #form .um-password.active,
  #account .member-password-reset-block .form-wrapper .um-password.active {
    max-width: none;
  }
  #password-reset #form .um-password .um-field-label,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-label {
    margin-bottom: 16px;
  }
  #password-reset #form .um-password .um-field-label label,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-label label {
    font-size: 14px !important;
    color: black;
    font-weight: 400;
  }
  #password-reset #form .um-password .um-field-area input,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-area input {
    border-radius: 4px;
    border: none !important;
    padding: 16px !important;
    font-size: 14px !important;
  }
  #password-reset #form .um-password .um-field,
  #account .member-password-reset-block .form-wrapper .um-password .um-field {
    padding-top: 22px;
  }
  #password-reset #form .um-password .um-col-alt,
  #password-reset #form .um-password .um-col-alt-b,
  #account .member-password-reset-block .form-wrapper .um-password .um-col-alt,
  #account .member-password-reset-block .form-wrapper .um-password .um-col-alt-b {
    margin-top: 35px !important;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
  }
  #password-reset #form .um-password .um-center,
  #account .member-password-reset-block .form-wrapper .um-password .um-center {
    display: flex;
    justify-content: center;
  }
  #password-reset #form .um-password input[type=submit].um-button,
  #account .member-password-reset-block .form-wrapper .um-password input[type=submit].um-button {
    width: 90% !important;
    max-width: 360px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 30px !important;
    background: linear-gradient(#103F89, #002156);
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
    border: none !important;
  }
  #password-reset #form .um-password input[type=submit].um-button::after,
  #account .member-password-reset-block .form-wrapper .um-password input[type=submit].um-button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 16px;
  }
  #password-reset #form .um-password .um-field-error,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-error {
    background-color: transparent !important;
    padding: 0 !important;
    color: #da1013;
  }
  #password-reset #form .um-password .um-field-error .um-field-arrow,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-error .um-field-arrow {
    display: none !important;
  }
  #password-reset #form .um-password .um-field.um-field-c,
  #account .member-password-reset-block .form-wrapper .um-password .um-field.um-field-c {
    margin-bottom: 30px;
  }
  #password-reset #form .um-password .um-field-checkbox-option,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-checkbox-option {
    color: #002156 !important;
    margin-left: 25px !important;
  }
  #password-reset #form .um-password .um-link-alt,
  #account .member-password-reset-block .form-wrapper .um-password .um-link-alt {
    color: #002156 !important;
    text-decoration: underline !important;
  }
  #password-reset #form .um-password .um-button.um-alt,
  #account .member-password-reset-block .form-wrapper .um-password .um-button.um-alt {
    width: 90% !important;
    border-radius: 30px !important;
    max-width: 240px !important;
    height: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C7C7C7;
    color: white;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  #password-reset #form .um-password .um-misc-with-img,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-with-img {
    display: none;
  }
  #password-reset #form .um-password .um-misc-ul,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
  }
  #password-reset #form .um-password .um-misc-ul li,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul li {
    flex-shrink: 0;
    max-width: 360px;
    width: 90%;
  }
  #password-reset #form .um-password .um-misc-ul li a,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul li a {
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    background: linear-gradient(#103F89, #002156);
  }
  #password-reset #form .um-password .um-misc-ul li:last-child a,
  #account .member-password-reset-block .form-wrapper .um-password .um-misc-ul li:last-child a {
    background: #E3E3E3;
  }
  #password-reset #form .um-password .um-field-block div,
  #account .member-password-reset-block .form-wrapper .um-password .um-field-block div {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
  }
}

/* 会員パスワード変更：情報変更フォーム（form-table）・ボタン（次へ）と同じスタイルを流用 */
#account .member-password-reset-block .form-wrapper .um.um-password.um-um_password_id.uimob800 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#account .member-password-reset-block .form-wrapper .um-field-block > div {
  text-align: left !important;
}

/*------------------------------------------
 *   page-about
 *----------------------------------------*/
#page-about {
  /*------------------------------------------
  *   anchor
  *----------------------------------------*/
  /*------------------------------------------
  *   philosophy
  *----------------------------------------*/
  /*------------------------------------------
  *   message
  *----------------------------------------*/
  /*------------------------------------------
  *   list
  *----------------------------------------*/
  /*------------------------------------------
  *   history
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #page-about #anchor {
    padding-top: 40px;
  }
  #page-about #anchor .anchor-container {
    max-width: 1470px;
  }
  #page-about #anchor .anchor-wrapper {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #page-about #anchor .anchor-list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  #page-about #anchor .anchor-list__item {
    flex: 1;
    min-width: 240px;
  }
  #page-about #anchor .anchor-list__link {
    height: 53px;
    border-radius: 8px;
    background: linear-gradient(#103F89, #002156);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
  }
  #page-about #anchor .anchor-list__link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  #page-about #anchor {
    padding-top: 20px;
  }
  #page-about #anchor .anchor-container {
    max-width: 1470px;
  }
  #page-about #anchor .anchor-wrapper {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #page-about #anchor .anchor-list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  #page-about #anchor .anchor-list__item {
    flex: 1;
    min-width: 240px;
  }
  #page-about #anchor .anchor-list__link {
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(#103F89, #002156);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    position: relative;
  }
  #page-about #anchor .anchor-list__link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
  }
}
@media screen and (min-width: 769px) {
  #page-about #philosophy {
    padding-top: 80px;
    padding-bottom: 146px;
  }
  #page-about #philosophy .philosophy-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #page-about #philosophy .philosophy-ttl span::after {
    margin: 16px auto 0;
  }
  #page-about #philosophy .philosophy-main {
    margin-top: 58px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #page-about #philosophy .philosophy-img {
    flex-shrink: 0;
    width: 320px;
    border-radius: 24px;
  }
  #page-about #philosophy .philosophy-content {
    margin-left: 2%;
    max-width: 780px;
  }
  #page-about #philosophy .philosophy-content__lead {
    font-size: 32px;
    line-height: 1.5;
  }
  #page-about #philosophy .philosophy-content__desc {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #page-about #philosophy {
    padding-top: 40px;
    padding-bottom: 76px;
  }
  #page-about #philosophy .philosophy-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #page-about #philosophy .philosophy-ttl span::after {
    margin: 16px auto 0;
  }
  #page-about #philosophy .philosophy-main {
    margin-top: 38px;
  }
  #page-about #philosophy .philosophy-img {
    margin: 0 auto;
    width: 240px;
    border-radius: 24px;
  }
  #page-about #philosophy .philosophy-content {
    margin-top: 20px;
    max-width: 780px;
  }
  #page-about #philosophy .philosophy-content__lead {
    font-size: 20px;
    line-height: 1.5;
  }
  #page-about #philosophy .philosophy-content__desc {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  #page-about #message {
    background-image: url(../image/message-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 122px;
  }
  #page-about #message .message-inner {
    max-width: 730px;
    margin-left: auto;
    margin-right: 0;
  }
  #page-about #message .message-lead {
    margin-top: 40px;
    color: white;
    line-height: 1.5;
    font-size: 32px;
  }
  #page-about #message .message-desc {
    margin-top: 40px;
    background-color: white;
    border-radius: 24px;
    padding: 40px;
    line-height: 2.4;
  }
  #page-about #message .message-desc p {
    margin-top: 40px;
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
    text-align: end;
  }
}
@media screen and (max-width: 768px) {
  #page-about #message {
    background-image: url(../image/message-bgSP.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 62px;
  }
  #page-about #message .message-inner {
    max-width: 730px;
    margin-left: auto;
    margin-right: 0;
  }
  #page-about #message .message-lead {
    margin-top: 20px;
    color: white;
    line-height: 1.5;
    font-size: 20px;
  }
  #page-about #message .message-desc {
    margin-top: 20px;
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    line-height: 2.4;
  }
  #page-about #message .message-desc p {
    margin-top: 20px;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    text-align: end;
  }
}
#page-about #list {
  background-image: url(../image/list-bg.jpg);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
}
@media screen and (min-width: 769px) {
  #page-about #list {
    padding-top: 103px;
    padding-bottom: 85px;
  }
  #page-about #list .list-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #page-about #list .list-ttl span::after {
    margin: 16px auto 0;
  }
  #page-about #list .list-container {
    max-width: 1030px;
  }
  #page-about #list .list-h3 {
    margin-top: 80px;
    font-size: 20px;
    text-align: center;
  }
  #page-about #list .list-table {
    margin-top: 40px;
    border-top: 1px solid #B9C8E1;
  }
  #page-about #list .list-table.member {
    margin-top: 80px;
  }
  #page-about #list .list-table__row {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    border-bottom: 1px solid #B9C8E1;
    align-items: center;
  }
  #page-about #list .list-table__ttl {
    flex-shrink: 0;
    width: 120px;
    padding-left: 10px;
    font-size: 16px;
  }
  #page-about #list .list-table__dt {
    flex-shrink: 0;
    width: 180px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  #page-about #list .list-table__dt span {
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }
  #page-about #list .list-table__degree {
    flex-shrink: 0;
    width: 100px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  #page-about #list .list-table__degree span.unkown {
    text-decoration: underline;
  }
  #page-about #list .list-table__dd {
    line-height: 1.4;
    padding-left: 10px;
    font-size: 16px;
  }
  #page-about #list .list-desc {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #page-about #list {
    padding-top: 53px;
    padding-bottom: 45px;
  }
  #page-about #list .list-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #page-about #list .list-ttl span::after {
    margin: 16px auto 0;
  }
  #page-about #list .list-container {
    max-width: 1030px;
  }
  #page-about #list .list-h3 {
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
  }
  #page-about #list .list-table {
    margin-top: 20px;
    border-top: 1px solid #B9C8E1;
  }
  #page-about #list .list-table.member {
    margin-top: 40px;
  }
  #page-about #list .list-table__row {
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    border-bottom: 1px solid #B9C8E1;
    align-items: center;
    flex-wrap: wrap;
  }
  #page-about #list .list-table__row:first-child .list-table__ttl {
    margin-bottom: 20px;
  }
  #page-about #list .list-table__ttl {
    flex-shrink: 0;
    width: 100%;
    font-size: 18px;
  }
  #page-about #list .list-table__dt {
    flex-shrink: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
  #page-about #list .list-table__dt span {
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }
  #page-about #list .list-table__degree {
    flex-shrink: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
  #page-about #list .list-table__degree span.unkown {
    text-decoration: underline;
  }
  #page-about #list .list-table__dd {
    margin-top: 10px;
    line-height: 1.4;
    font-size: 14px;
  }
  #page-about #list .list-desc {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  #page-about #history {
    background-color: #002156;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #page-about #history .history-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #page-about #history .history-ttl span {
    color: white;
  }
  #page-about #history .history-ttl span::after {
    background-color: white;
    margin: 16px auto 0;
  }
  #page-about #history .history-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  #page-about #history .history-main {
    width: 580px;
    flex-shrink: 0;
  }
  #page-about #history .history-h3 {
    font-size: 20px;
    color: white;
  }
  #page-about #history .history-img {
    margin-top: 40px;
    border-radius: 24px;
  }
  #page-about #history .history-desc {
    margin-top: 40px;
    color: white;
  }
  #page-about #history .history-table {
    width: 540px;
    flex-shrink: 0;
  }
  #page-about #history .history-table__row {
    border-bottom: 1px solid white;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
  }
  #page-about #history .history-table__row > div {
    font-size: 16px;
    color: white;
    line-height: 1.4;
    padding-left: 10px;
  }
  #page-about #history .history-table__row > div.bold {
    font-weight: bold;
  }
  #page-about #history .history-table__row > div.yellow {
    color: #F9CE7F;
  }
  #page-about #history .history-table__column01 {
    flex-shrink: 0;
    width: 80px;
  }
  #page-about #history .history-table__column02 {
    flex-shrink: 0;
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  #page-about #history {
    background-color: #002156;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #page-about #history .history-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #page-about #history .history-ttl span {
    color: white;
  }
  #page-about #history .history-ttl span::after {
    background-color: white;
    margin: 16px auto 0;
  }
  #page-about #history .history-wrapper {
    margin-top: 40px;
  }
  #page-about #history .history-h3 {
    font-size: 16px;
    color: white;
  }
  #page-about #history .history-img {
    margin: 20px auto 0;
    border-radius: 24px;
    max-width: 580px;
  }
  #page-about #history .history-desc {
    margin-top: 20px;
    color: white;
  }
  #page-about #history .history-table {
    margin-top: 20px;
  }
  #page-about #history .history-table__row {
    border-bottom: 1px solid white;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
  }
  #page-about #history .history-table__row > div {
    font-size: 14px;
    color: white;
    line-height: 1.4;
  }
  #page-about #history .history-table__row > div.bold {
    font-weight: bold;
  }
  #page-about #history .history-table__row > div.yellow {
    color: #F9CE7F;
  }
  #page-about #history .history-table__column01 {
    width: 20%;
  }
  #page-about #history .history-table__column02 {
    width: 40%;
  }
  #page-about #history .history-table__column03 {
    width: 40%;
  }
}

/*------------------------------------------
 *   page-officers-list（会員専用・役員・評議員名簿）
 *----------------------------------------*/
#account.page-officers-list {
  background-image: url(../image/list-bg.jpg);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
}
@media screen and (min-width: 769px) {
  #account.page-officers-list #officers-list.account-section {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  #account.page-officers-list #officers-list.account-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 769px) {
  #account.page-officers-list .officers-list__content {
    padding-top: 0;
    padding-bottom: 85px;
  }
  #account.page-officers-list .officers-list__content .list-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #account.page-officers-list .officers-list__content .list-ttl span::after {
    margin: 16px auto 0;
  }
  #account.page-officers-list .officers-list__content .officers-list__content {
    max-width: 1030px;
  }
  #account.page-officers-list .officers-list__content .list-h3 {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
  }
  #account.page-officers-list .officers-list__content .list-table {
    margin-top: 40px;
    border-top: 1px solid #B9C8E1;
  }
  #account.page-officers-list .officers-list__content .list-table.member {
    margin-top: 80px;
  }
  #account.page-officers-list .officers-list__content .list-table__row {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    border-bottom: 1px solid #B9C8E1;
    align-items: center;
  }
  #account.page-officers-list .officers-list__content .list-table__ttl {
    flex-shrink: 0;
    width: 120px;
    padding-left: 10px;
    font-size: 16px;
  }
  #account.page-officers-list .officers-list__content .list-table__dt {
    flex-shrink: 0;
    width: 180px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  #account.page-officers-list .officers-list__content .list-table__dt span {
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }
  #account.page-officers-list .officers-list__content .list-table__degree {
    flex-shrink: 0;
    width: 100px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  #account.page-officers-list .officers-list__content .list-table__degree span.unkown {
    text-decoration: underline;
  }
  #account.page-officers-list .officers-list__content .list-table__dd {
    line-height: 1.4;
    padding-left: 10px;
    font-size: 16px;
  }
  #account.page-officers-list .officers-list__content .list-desc {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #account.page-officers-list .officers-list__content {
    padding-top: 0;
    padding-bottom: 45px;
  }
  #account.page-officers-list .officers-list__content .list-ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #account.page-officers-list .officers-list__content .list-ttl span::after {
    margin: 16px auto 0;
  }
  #account.page-officers-list .officers-list__content .list-h3 {
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
  }
  #account.page-officers-list .officers-list__content .list-table {
    margin-top: 20px;
    border-top: 1px solid #B9C8E1;
  }
  #account.page-officers-list .officers-list__content .list-table.member {
    margin-top: 40px;
  }
  #account.page-officers-list .officers-list__content .list-table__row {
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    border-bottom: 1px solid #B9C8E1;
    align-items: center;
    flex-wrap: wrap;
  }
  #account.page-officers-list .officers-list__content .list-table__row:first-child .list-table__ttl {
    margin-bottom: 20px;
  }
  #account.page-officers-list .officers-list__content .list-table__ttl {
    flex-shrink: 0;
    width: 100%;
    font-size: 18px;
  }
  #account.page-officers-list .officers-list__content .list-table__dt {
    flex-shrink: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
  #account.page-officers-list .officers-list__content .list-table__dt span {
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }
  #account.page-officers-list .officers-list__content .list-table__degree {
    flex-shrink: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
  #account.page-officers-list .officers-list__content .list-table__degree span.unkown {
    text-decoration: underline;
  }
  #account.page-officers-list .officers-list__content .list-table__dd {
    margin-top: 10px;
    line-height: 1.4;
    font-size: 14px;
  }
  #account.page-officers-list .officers-list__content .list-desc {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}

/*------------------------------------------
*   news
*----------------------------------------*/
@media screen and (min-width: 769px) {
  #news .news-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #news .news-ttl span:after {
    margin: 16px auto 0;
  }
  #news .news-list__item {
    margin-bottom: 8px;
  }
  #news .news-list__item:last-child {
    margin-bottom: 0;
  }
  #news .news-list__link {
    border-radius: 8px;
    background-color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  #news .news-list__main {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
  }
  #news .news-list__info {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #news .news-list__info time {
    font-size: 14px;
    color: #888888;
    min-width: 76px;
  }
  #news .news-list__info span.cat {
    flex-shrink: 0;
    width: 89px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #002156;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #002156;
  }
  #news .news-list__ttl {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
  }
  #news .news-list__ttl span {
    flex-shrink: 0;
    width: 48px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DA1013;
    color: white;
    font-size: 12px;
    border-radius: 13px;
  }
  #news .news-list__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#103F89, #002156);
  }
  #news .news-list__arrow::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-right: 2px;
  }
  #news .news-cta {
    margin-top: 48px;
    width: 207px;
  }
}
@media screen and (max-width: 768px) {
  #news .news-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #news .news-ttl span:after {
    margin: 16px auto 0;
  }
  #news .news-list__item {
    margin-bottom: 8px;
  }
  #news .news-list__item:last-child {
    margin-bottom: 0;
  }
  #news .news-list__link {
    border-radius: 8px;
    background-color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  #news .news-list__main {
    overflow: hidden;
  }
  #news .news-list__info {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #news .news-list__info time {
    min-width: 76px;
    font-size: 14px;
    color: #888888;
  }
  #news .news-list__info span.cat {
    flex-shrink: 0;
    width: 89px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #002156;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #002156;
  }
  #news .news-list__ttl {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    color: #333;
  }
  #news .news-list__ttl span {
    flex-shrink: 0;
    width: 48px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DA1013;
    color: white;
    font-size: 12px;
    border-radius: 13px;
  }
  #news .news-list__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#103F89, #002156);
  }
  #news .news-list__arrow::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-right: 2px;
  }
  #news .news-cta {
    margin-top: 30px;
    width: 207px;
  }
}

/*------------------------------------------
*  page-news
*----------------------------------------*/
#page-news {
  /*------------------------------------------
  *  tab
  *----------------------------------------*/
  /*------------------------------------------
  *  tab
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #page-news #tab {
    padding-top: 80px;
  }
  #page-news #tab .tab-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #page-news #tab .tab-ttl {
    font-size: 16px;
    color: black;
  }
  #page-news #tab .tab-list {
    display: flex;
    gap: 16px;
  }
  #page-news #tab .tab-list__link {
    border-radius: 8px;
    border: 1px solid #002156;
    color: white;
    padding: 16px 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(#103F89, #002156);
  }
  #page-news #tab .tab-list__link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
  #page-news #tab .tab-list__link.active {
    background: white;
    color: #002156;
  }
  #page-news #tab .tab-list__link.active:after {
    border-color: #002156;
  }
}
@media screen and (max-width: 768px) {
  #page-news #tab {
    padding-top: 40px;
  }
  #page-news #tab .tab-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  #page-news #tab .tab-ttl {
    font-size: 14px;
    color: black;
  }
  #page-news #tab .tab-list {
    display: flex;
    gap: 12px;
  }
  #page-news #tab .tab-list__link {
    border-radius: 8px;
    border: 1px solid #002156;
    color: white;
    padding: 12px 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(#103F89, #002156);
  }
  #page-news #tab .tab-list__link::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
  }
  #page-news #tab .tab-list__link.active {
    background: white;
    color: #002156;
  }
  #page-news #tab .tab-list__link.active:after {
    border-color: #002156;
  }
}
@media screen and (min-width: 769px) {
  #page-news #news {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  #page-news #news {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

/*------------------------------------------
 *   page-single
 *----------------------------------------*/
#page-single {
  /*------------------------------------------
  *   content
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #page-single #content {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  #page-single #content .content-info {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #page-single #content .content-info time {
    font-size: 14px;
    color: #888888;
    min-width: 76px;
  }
  #page-single #content .content-info__cat {
    flex-shrink: 0;
    width: 89px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #002156;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #002156;
  }
  #page-single #content .content-info__new {
    flex-shrink: 0;
    width: 48px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DA1013;
    color: white;
    font-size: 12px;
    border-radius: 13px;
  }
  #page-single #content .content-info__date {
    display: flex;
    align-items: center;
    color: #888888;
    font-size: 14px;
  }
  #page-single #content .content-info__date time {
    display: block;
    margin-left: 16px;
  }
  #page-single #content .content-h1 {
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
    font-size: 32px;
    padding-bottom: 28px;
    border-bottom: 2px solid #002156;
    line-height: 1.4;
  }
  #page-single #content .content-thumb {
    margin: 80px auto 0;
    border-radius: 24px;
    max-width: 780px;
  }
  #page-single #content .content-content {
    margin-top: 80px;
  }
  #page-single #content .content-content p {
    font-size: 16px;
    margin-bottom: 64px;
    line-height: 1.6;
    text-align: center;
  }
  #page-single #content .content-content p a {
    display: inline-block;
    color: #002156;
    text-decoration: underline;
  }
  #page-single #content .content-content figure {
    margin: 0 auto 64px;
    max-width: 780px;
  }
  #page-single #content .content-link {
    margin-top: 16px;
    width: 257px;
  }
}
@media screen and (max-width: 768px) {
  #page-single #content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  #page-single #content .content-info {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #page-single #content .content-info time {
    font-size: 14px;
    color: #888888;
    min-width: 76px;
  }
  #page-single #content .content-info__cat {
    flex-shrink: 0;
    width: 89px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #002156;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #002156;
  }
  #page-single #content .content-info__new {
    flex-shrink: 0;
    width: 48px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DA1013;
    color: white;
    font-size: 12px;
    border-radius: 13px;
  }
  #page-single #content .content-info__date {
    display: flex;
    align-items: center;
    color: #888888;
    font-size: 14px;
  }
  #page-single #content .content-info__date time {
    display: block;
    margin-left: 16px;
  }
  #page-single #content .content-h1 {
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
    font-size: 32px;
    padding-bottom: 28px;
    border-bottom: 2px solid #002156;
    line-height: 1.4;
  }
  #page-single #content .content-thumb {
    margin: 80px auto 0;
    border-radius: 24px;
    max-width: 780px;
  }
  #page-single #content .content-content {
    margin-top: 80px;
  }
  #page-single #content .content-content p {
    font-size: 16px;
    margin-bottom: 64px;
    line-height: 1.6;
    text-align: center;
  }
  #page-single #content .content-content p a {
    display: inline-block;
    color: #002156;
    text-decoration: underline;
  }
  #page-single #content .content-content figure {
    margin: 0 auto 64px;
    max-width: 780px;
  }
  #page-single #content .content-link {
    margin-top: 16px;
    width: 257px;
  }
}

/*------------------------------------------
 *   lower-page
 *----------------------------------------*/
.lower-page {
  /*------------------------------------------
  *   content
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  .lower-page #content {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .lower-page #content .content-wrapper h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .lower-page #content .content-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .lower-page #content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .lower-page #content .content-wrapper h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .lower-page #content .content-wrapper p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

/*------------------------------------------
*   lecture
*----------------------------------------*/
@media screen and (min-width: 769px) {
  #lecture .lecture-list {
    margin: 0 -30px;
    display: flex;
    flex-wrap: wrap;
  }
  #lecture .lecture-list__item {
    padding-left: 30px;
    padding-right: 30px;
    flex-shrink: 0;
    margin-bottom: 64px;
  }
  #lecture .lecture-list__item:last-child {
    border-right: none;
  }
  #lecture .lecture-list__link {
    width: 359px;
  }
  #lecture .lecture-list__thumb {
    height: 202px;
    border-radius: 16px;
    overflow: hidden;
  }
  #lecture .lecture-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #lecture .lecture-list__time {
    margin-top: 24px;
    display: flex;
    align-items: center;
    color: #888888;
    font-size: 14px;
  }
  #lecture .lecture-list__time time {
    display: block;
    margin-left: 16px;
  }
  #lecture .lecture-list__ttl {
    margin-top: 16px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  #lecture .lecture-list {
    margin-top: 40px;
  }
  #lecture .lecture-list__item {
    margin: 0 auto;
    margin-bottom: 50px;
  }
  #lecture .lecture-list__item:last-child {
    border-right: none;
  }
  #lecture .lecture-list__link {
    max-width: 359px;
  }
  #lecture .lecture-list__thumb {
    height: 202px;
    border-radius: 16px;
    overflow: hidden;
  }
  #lecture .lecture-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #lecture .lecture-list__time {
    margin-top: 24px;
    display: flex;
    align-items: center;
    color: #888888;
    font-size: 14px;
  }
  #lecture .lecture-list__time time {
    display: block;
    margin-left: 16px;
  }
  #lecture .lecture-list__ttl {
    margin-top: 16px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/*------------------------------------------
*   page-lecture
*----------------------------------------*/
@media screen and (min-width: 769px) {
  #page-lecture #lecture {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  #page-lecture #lecture {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/*------------------------------------------
 *   page-contact
 *----------------------------------------*/
#page-contact {
  /*------------------------------------------
  *   content
  *----------------------------------------*/
}
@media screen and (min-width: 769px) {
  #page-contact #content {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  #page-contact #content .content-lead {
    text-align: center;
    font-size: 24px;
    color: black;
  }
  #page-contact #content .content-desc {
    margin-top: 20px;
    color: black;
    text-align: center;
  }
  #page-contact #content .content-desc.desc02 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
  #page-contact #content span.required {
    flex-shrink: 0;
    width: 41px;
    border-radius: 4px;
    background-color: #DA1013;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-right: 5px;
  }
  #page-contact #content .contact-form {
    margin-top: 80px;
  }
  #page-contact #content .contact-form .form-row {
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E3E3E3;
  }
  #page-contact #content .contact-form .form-row br {
    display: none;
  }
  #page-contact #content .contact-form .form-row label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: black;
  }
  #page-contact #content .contact-form .form-row label span {
    display: flex;
    margin-left: 16px;
    margin-bottom: 0;
  }
  #page-contact #content .contact-form .form-row input,
  #page-contact #content .contact-form .form-row textarea {
    margin-top: 16px;
    background-color: white;
    border-radius: 4px;
    border: none;
    padding: 16px;
    line-height: 1.6;
    font-size: 16px;
    width: 100%;
  }
  #page-contact #content .contact-form .form-row input::placeholder,
  #page-contact #content .contact-form .form-row textarea::placeholder {
    color: #888888;
  }
  #page-contact #content .contact-form .form-row textarea {
    height: 200px;
  }
  #page-contact #content .contact-form .form-actions {
    margin-top: 40px;
  }
  #page-contact #content .contact-confirm {
    margin-top: 80px;
  }
  #page-contact #content .contact-confirm .confirm-row {
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E3E3E3;
  }
  #page-contact #content .contact-confirm .confirm-row .confirm-label, #page-contact #content .contact-confirm .confirm-row .confirm-value {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: black;
  }
  #page-contact #content .contact-confirm .confirm-row .confirm-label span, #page-contact #content .contact-confirm .confirm-row .confirm-value span {
    display: flex;
    margin-left: 16px;
    margin-bottom: 0;
  }
  #page-contact #content .contact-confirm .confirm-row .confirm-value {
    margin-top: 20px;
  }
  #page-contact #content .contact-confirm .form-actions {
    margin-top: 40px;
  }
  #page-contact #content .contact-confirm .form-actions .js-back {
    background: #E3E3E3;
  }
  #page-contact #content .contact-confirm .form-actions .js-back::after {
    display: none;
  }
  #page-contact #content .contact-confirm .form-actions .js-back::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  #page-contact #content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  #page-contact #content .content-lead {
    text-align: center;
    font-size: 18px;
    color: black;
  }
  #page-contact #content .content-desc {
    margin-top: 20px;
    color: black;
    text-align: center;
  }
  #page-contact #content .content-desc.desc02 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
  #page-contact #content span.required {
    flex-shrink: 0;
    width: 41px;
    border-radius: 4px;
    background-color: #DA1013;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-right: 5px;
  }
  #page-contact #content .contact-form {
    margin-top: 40px;
  }
  #page-contact #content .contact-form .form-row {
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E3E3E3;
  }
  #page-contact #content .contact-form .form-row br {
    display: none;
  }
  #page-contact #content .contact-form .form-row label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: black;
  }
  #page-contact #content .contact-form .form-row label span {
    display: flex;
    margin-left: 16px;
    margin-bottom: 0;
  }
  #page-contact #content .contact-form .form-row input,
  #page-contact #content .contact-form .form-row textarea {
    margin-top: 16px;
    background-color: white;
    border-radius: 4px;
    border: none;
    padding: 16px;
    line-height: 1.6;
    font-size: 14px;
    width: 100%;
  }
  #page-contact #content .contact-form .form-row input::placeholder,
  #page-contact #content .contact-form .form-row textarea::placeholder {
    color: #888888;
  }
  #page-contact #content .contact-form .form-row textarea {
    height: 200px;
  }
  #page-contact #content .contact-form .form-actions {
    margin-top: 20px;
  }
  #page-contact #content .contact-confirm {
    margin-top: 40px;
  }
  #page-contact #content .contact-confirm .confirm-row {
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E3E3E3;
  }
  #page-contact #content .contact-confirm .confirm-row .confirm-label, #page-contact #content .contact-confirm .confirm-row .confirm-value {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: black;
  }
  #page-contact #content .contact-confirm .confirm-row .confirm-label span, #page-contact #content .contact-confirm .confirm-row .confirm-value span {
    display: flex;
    margin-left: 16px;
    margin-bottom: 0;
  }
  #page-contact #content .contact-confirm .confirm-row .confirm-value {
    margin-top: 10px;
  }
  #page-contact #content .contact-confirm .form-actions {
    margin-top: 20px;
  }
  #page-contact #content .contact-confirm .form-actions .js-back {
    background: #E3E3E3;
  }
  #page-contact #content .contact-confirm .form-actions .js-back::after {
    display: none;
  }
  #page-contact #content .contact-confirm .form-actions .js-back::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
    margin-right: 16px;
  }
}

/*------------------------------------------
 *   page-privacy (Halo デザイン準拠)
 *----------------------------------------*/
#page-privacy {
  /* ページヘッダー（背景画像 + オーバーレイ） */
}
#page-privacy .privacy-page-header {
  padding: 200px 20px 100px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
#page-privacy .privacy-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
@media screen and (max-width: 900px) {
  #page-privacy .privacy-page-header {
    padding: 150px 20px 80px;
  }
}
#page-privacy .privacy-page-header__content {
  position: relative;
  z-index: 2;
}
#page-privacy .privacy-page-header .en-title {
  font-family: "Cinzel", "Noto Serif JP", serif;
  color: #F9CE7F;
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
#page-privacy .privacy-page-header__ttl {
  font-size: 2.4rem;
  color: #002156;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #page-privacy .privacy-page-header__ttl {
    font-size: 1.8rem;
  }
}
#page-privacy .policy-container {
  max-width: 900px;
  margin: -50px auto 100px;
  padding: 80px 60px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(15, 46, 82, 0.05);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #page-privacy .policy-container {
    padding: 40px 20px 60px;
    margin: -30px 15px 60px;
  }
}
#page-privacy .policy-block {
  margin-bottom: 50px;
}
#page-privacy .policy-block:last-child {
  margin-bottom: 0;
}
#page-privacy .policy-block h2 {
  font-size: 1.3rem;
  color: #002156;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B9C8E1;
}
#page-privacy .policy-block p {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
  text-align: justify;
}
#page-privacy .policy-block ul {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
  padding-left: 20px;
  margin-top: 10px;
}
#page-privacy .policy-block li {
  margin-bottom: 8px;
}

/*------------------------------------------
 *   page-rules (会則ページ) - account-sidebar使用
 *----------------------------------------*/
#account.page-rules {
  /* 右メインコンテンツ（account-main内） */
}
@media screen and (min-width: 769px) {
  #account.page-rules #rules-content {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 768px) {
  #account.page-rules #rules-content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
#account.page-rules .rules-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-header {
    flex-direction: column;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
}
#account.page-rules .rules-ttl {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-ttl {
    font-size: 20px;
  }
}
#account.page-rules .rules-dates {
  flex-shrink: 0;
  text-align: right;
  font-size: 12px;
  line-height: 1.8;
  color: #888888;
}
#account.page-rules .rules-dates p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-dates {
    font-size: 11px;
  }
}
#account.page-rules .rules-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
}
#account.page-rules .rules-chapter {
  font-family: serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #333;
}
#account.page-rules .rules-chapter:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-chapter {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}
#account.page-rules .rules-article {
  margin: 0 0 12px 0;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-article {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
#account.page-rules .rules-list {
  margin: 8px 0 16px 1.5em;
  padding: 0;
  list-style: none;
}
#account.page-rules .rules-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 4px;
}
#account.page-rules .rules-list li::before {
  content: none;
}
#account.page-rules .rules-list--nested {
  margin-left: 2.5em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-list {
    margin-left: 1em;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #account.page-rules .rules-list--nested {
    margin-left: 1.5em;
  }
}

/*# sourceMappingURL=main.css.map */
