/* assets/css/style.css */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

/* iframeで読み込むヘッダー/フッターの枠 */
.include-frame {
  width: 100%;
  border: 0;
  display: block;
  position: fixed;
  z-index: 9999999;
}
.include-frame2 {
  width: 100%;
  border: 0;
  display: block;
}


/* ===== Header（header.html 内の中身） ===== */
header {
  width: 100%;
  background-color: #001b3b;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ナビゲーション */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  font-size: 14px; /* 最小でも14px */
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  color:#ffffff;
}

.header-nav a:nth-last-child(-n + 2) {
  padding: 8px 16px;          /* ボタンらしく横にゆとり */
  border-radius: 20px;        /* 角丸 */
  background-color: transparent;  /* ボタン背景色 */
  color: #fff;                /* 文字色 白 */
  border: 1px solid #a1cdea;  /* 枠線 */
}

/* ホバー時（PC）の変化（お好みで調整OK） */
.header-nav a:nth-last-child(-n + 2):hover {
  background-color: #a1cdea;
  border-color: #a1cdea;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #a1cdea;
  transition: width 0.2s ease;
  /*width: 100%;*/
  /*background-color: #a1cdea;*/
}
.header-nav a:hover::after {
  width: 100%;
}

.header-nav a:nth-last-child(-n + 2)::after {
  display: none !important;
}

/* ハンバーガー */
.header-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.header-toggle-bar {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  position: relative;
}
.header-toggle-bar::before,
.header-toggle-bar::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.header-toggle-bar::before {
  top: -7px;
}
.header-toggle-bar::after {
  top: 7px;
}
.header-toggle.is-open .header-toggle-bar {
  background-color: transparent;
}
.header-toggle.is-open .header-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}
.header-toggle.is-open .header-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}


/* SP時 - ドロワーメニュー化 */
@media (max-width: 767.98px) {
  .header-inner {
    padding: 8px 12px;
    flex-wrap: wrap; /* ナビが下に来てもOKにするため */
  }

  /* ▼ SPではナビを非表示にしておいて、is-open のときだけ表示 */
  .header-nav {
    width: 100%;
    display: none;                     /* デフォルト非表示 */
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0 8px;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
  }

  .header-nav.is-open {
    display: flex;                     /* 開くと下に展開される */
  }

  .header-toggle {
    display: block;
  }

  .header-nav a {
      color: #303030;
  }

  .header-nav a:nth-last-child(-n + 2) {
      color: #303030;
      border: 1px solid #a1cdea;
  }
}


/* ========= Footer（footer.html 内の中身） ========= */
.site-footer {
  background-color: #001b3b;
  color: #eee;
  padding: 24px 16px;
  font-size: 12px;
}
.footer-inner {
  /* max-width: 1200px; */
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== 上段 ===== */
.footer-upper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 店舗情報 */
.footer-store {
  font-size: 12px;
  line-height: 1.7;
}
.footer-store-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-store-item {
  color: #ffffff;
}

/* 右側ブロック（ナビ＋SNS） */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 上段ナビ */
.footer-nav-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-start;
}
.footer-nav-top a {
  color: #eee;
  font-size: 12px;
  position: relative;
  padding-bottom: 2px;
}
.footer-nav-top a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #eee;
  transition: width 0.2s ease;
}
.footer-nav-top a:hover::after {
  width: 100%;
}

/* SNS */
.footer-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
}
.footer-sns-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #aaa;
}
.footer-sns a {
  color: #eee;
  font-size: 12px;
}
.footer-sns a:hover {
  background-color: #eee;
  color: #111;
}

/* 上段と下段の間の白線 */
.footer-divider {
  border-top: 1px solid #fff;
  opacity: 0.2;
}

/* ===== 下段 ===== */
.footer-lower {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 12px;
}
.footer-copy {
  color: #ffffff;
}

/* 下段ナビ */
.footer-nav-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-nav-bottom a {
  color: #eee;
  font-size: 12px;
}
.footer-nav-bottom a:hover {
  text-decoration: underline;
}


/* ========= フッターのレスポンシブ ========= */
@media (min-width: 768px) {
  .site-footer {
    /* padding: 32px 16px; */
      padding: 32px 80px;
  }

  .footer-upper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-store {
    flex: 0 0 45%;
  }
/* 消してみた */
  /* .footer-right {
    flex: 0 0 55%;
  } */

  .footer-nav-top {
    justify-content: flex-end;
  }

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

  .footer-lower {
    flex-direction: row;
    align-items: center;
  }

  .footer-copy {
    flex: 1;
  }

  .footer-nav-bottom {
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .site-footer {
    padding: 40px 16px;
  }
}


/* ============ Main / Section 共通 ============ */
main {
  width: 100%;
  /* padding: 24px 0 48px; */
    padding: 94px 0 48px;
}

.section {
  padding: 32px 0;
}
.section:nth-of-type(even) {
  background-color: #ffffff;
}
.section:nth-of-type(odd) {
  background-color: #f7f7f7;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.section-lead {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 14px;
  text-align: center;
  color: #666;
}

/* TOP用ヒーローエリア */
.hero {
  background: url("../../img/school_main.jpg") center/cover no-repeat;
  color: #ffffff;
  /* padding: 80px 0; */
  padding: 160px 0 80px;
}
.hero-inner {
 max-width: 800px;
  margin-left: auto;
  /* margin-right: 5vw; 修正*/
  margin-right: 7vw;
  padding: 0 16px;
  text-align: right;
  text-shadow: 2px 3px 5px rgba(7, 56, 94, 0.8);
}
.hero-title {
font-family: "Noto Serif JP", serif;
  /*font-size: 28px;修正*/
  font-size: 34px;
  font-weight: 700;
  /* margin-bottom: 12px;消去修正 */
text-align:right;
}
.hero-text {
  font-size: 18px;
  margin-bottom: 22px;
  text-align:right;
  font-weight: 500;
  /* padding-right: 16px; 追加修正 */
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background-color: #ff8a00;
  border-color: #ff8a00;
  color: #fff;
}
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #ffffff;
  color: #333;
}
.hero-logo-s {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
}
.hero-logo-s img {
  max-width: 170px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 6px 8px 8px 8px;
}

/* カードレイアウト（TOP用） */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-text {
  font-size: 14px;
  color: #666;
}

/* ブログ/お知らせ風リスト */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e5e5;
}
.list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}
.list-meta {
  font-size: 12px;
  color: #999;
}

/* CTAエリア */
.cta {
  text-align: center;
  padding: 40px 16px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cta-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
.cta-text {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}

/* プライバシーポリシー用 */
.page-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.policy-section {
  margin-bottom: 32px;
}
.policy-section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.policy-text {
  font-size: 14px;
  color: #555;
}
.policy-list {
  margin: 8px 0 0 1.2em;
  padding: 0;
  font-size: 14px;
  color: #555;
}
.policy-list li {
  margin-bottom: 4px;
}
.policy-small {
  font-size: 12px;
  color: #777;
  margin-top: 24px;
}

/* ======== Breakpoints：768 / 991 / 1200 ======== */
@media (min-width: 768px) {
  main {
    padding: 32px 0 56px;
  }
  .hero {
    padding: 100px 0;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-text {
    font-size: 22px;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .list-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
  .list-meta {
    min-width: 140px;
  }
  .page-title {
    font-size: 26px;
  }
}

@media (min-width: 991px) {
  .header-nav a {
    font-size: 15px;
  }
  .hero-title {
    font-size: 46px;
  }
  .page-title {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  main {
    /* padding: 0 0 64px 0; */
    padding: 64px 0 64px 0;
  }
  .section {
    padding: 48px 0;
  }
  .hero {
    padding: 250px 0;
  }
}

.inner h2{
font-size:28px;
text-align:center;
}

/*========== COMPANY.html ==========*/
table {
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

.shop_address {
  padding: 20px 0 80px;
}

.shop_about_content .shop_address table tr:first-child th, .shop_about_content .shop_address table tr:first-child td {
  border-top: 1px solid #DDD;
}

.shop_about_content .shop_address table tr th {
  background: #EDEEEF;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #DDD;
  font-weight: normal;
  font-size: 16px;
  white-space: nowrap;
  vertical-align: top;
}

.shop_about_content .shop_address table tr td {
  padding: 1px 20px;
  border-bottom: 1px solid #DDD;
  font-size: 16px;
}

.company_inner02 h2 {
  font-size:32px;
  text-align:center;
}

@media screen and (max-width: 991px) and (min-width: 769px) {
  .company_inner02 {
    max-width: 100%;
    width: 100%;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}

@media screen and (max-width: 768px) {
  .shop_about_content {
    padding-bottom: 60px;
  }

  .company_inner02 {
    max-width: 100%;
    width: 100%;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}
/* } */


/*========== PRIVACY.html ==========*/
.privacy p {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 200%;
}

.privacy ul {
  padding: 10px 0;
}

.privacy ul li {
  font-size: 14px;
  padding: 2px 0;
  line-height: 180%;
  display: flex;
  display: -webkit-flex;
}

.privacy div {
  padding: 50px 0;
}

.txt-right {
  text-align: right;
}



/*========== access.html ==========*/

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

.three_column, .two_column, .four_column, .five_column {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.shop_about_content {
	padding-bottom: 100px;
  margin-top: 100px;
}

.shop_about_content .map iframe {
	width: 100%;
}

.shop_about_content .border-bottom-gray02 {
	padding-bottom: 60px;
}

.shop_about_content div.two_column {	
	align-items: flex-start;
	-webkit-align-items: flex-start;
}

.shop_about_content div.two_column div {
	width: 88%;
}

.shop_about_content div table tr th,
.shop_about_content div table tr td {
	font-size: 18px;
	padding-bottom: 25px;
}

.shop_about_content div table tr th {
	width: 15%;
	text-align: left;
	font-weight: bold;
}

.shop_about_content div table tr td {
	width: 80%;
}

.shop_about_content div div.two_column {
  align-items: center;
  -webkit-align-items: center;
  align-content: center;
  -webkit-align-content: center;
}
	
.shop_about_content .bg_liteBlue {
  padding: 20px 30px;
  margin-top: 50px;
}
.bg_liteBlue {
  background: #F6F6F6;
}

.shop_about_content .two_column .shop_about_txt {
  width: 43%;
  margin-bottom: 0;
}

.shop_about_content div.two_column h2 {
  display: inline-block;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 24px;
  line-height: 140%;
}

.ttl_leftRed {
  font-weight: bold;
  font-size: 26px;
  padding: 5px 0 5px 5px !important;
  border-left: 5px solid #F80302;
  text-align: left !important;
}

p {
  overflow-wrap: break-word;
}

.shop_about_txt > p {
  padding: 10px 0;
  font-size: 16px;
  line-height: 160%;
}

.shop_about_content .two_column .shop_about_img {
  width: 55%;
  margin-bottom: 0;
}

.shop_about_content .two_column .two_column > div:first-child {
  width: 63%;
  margin-bottom: 0;
}

.content img .three_column img, .two_column img, .four_column img, .five_column img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.shop_about_content .two_column .two_column > div:last-child {
  width: 35%;
  margin-bottom: 0;
}

.shop_about_content .two_column .two_column > div > div:first-child {
  margin-bottom: 10px;
}
.shop_about_content div.two_column div {
  width: 88%;
}

.texl {
  text-align:left;
}

.texd {
  text-decoration:underline;
}

.ttl05 {
  font-size: 24px!important;
  margin-top: 50px!important;
}

.ttl_border_blue {
  padding: 5px 0;
  font-size: 16px;
  border-bottom: 1px solid #DDD;
  color: #3D84BE;
  margin-top: 60px;
}

.shop_about_access_content h4 {
  font-size: 16px;
  font-weight: bold;
  padding-top: 25px;
}

.shop_about_access_content p {
  padding: 5px 0 35px;
  font-size: 14px;
  line-height: 180%;
}

.shop_about_access_content ul{
  padding-left: 0;
}

.shop_about_access_content ul li {
  padding-bottom: 35px;
  font-size: 14px;
  list-style-type: none;
}

.shop_about_content .shop_about_access_content .two_column > div {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .shop_about_content {
    padding-bottom: 30px;
  }        
  .inner, .inner02, .inner03, .inner04 {
    max-width: 100%;
    width: 100%;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  .shop_about_content .bg_liteBlue {
    padding: 20px 15px;
  }

  .shop_about_content .two_column .shop_about_txt, .shop_about_content .two_column .shop_about_img {
    width: 100%;
  }

  .shop_about_access_content p {
    padding: 5px 0 15px;
  }

  .shop_about_content .shop_about_access_content .two_column > div {
    width: 100%;
    margin-bottom: 0;
  }
}

/*========== その他 ==========*/

.ttl_plus2{
  text-align:center;
  margin-bottom:50px;
}

h2.red_under, .h2_blue {
  position: relative;
  display: table;
  margin: 0 auto;
  padding-bottom: 10px;
  line-height: 1.2;
  text-align: center;
  font-size: 26px;
}

h2.red_under::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #d60000;
}

h2.h2_blue::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #1291cb;
}

#pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #005EAB;
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

#pageTop span {
  font-size: 18px;
  line-height: 48px;
  display: block;
  text-align: center;
}

#pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

/*========== スマホ微調整 ==========*/
@media (max-width: 767.98px) {
  #pageTop {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }

  #pageTop span {
    line-height: 44px;
  }
}

.school_main_down {
  padding: 20px 0 0 0;
}
.school_main_down > div {
  width: 49.5%;
  margin-bottom: 0;
  overflow: hidden;
}
/* .school_main_down > div img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
} この部分の代わりに↓↓を記述*/
 .school_main_down > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
}
.school_main_down div.bg_liteBlue {
  padding: 40px 50px;
}

.school_main_down div h3 {
  position: relative;
  font-size: 22px;
  /* line-height: 150%; */
  line-height: 200%;
  font-family: "Noto Serif JP", serif;   /* 追加修正 */
  color: #093669; 
}

.about_chatch .company_inner02 h2 {  
  font-family: "Noto Serif JP", serif;  /* 追加修正 */
  line-height: 200%;  /* 追加修正 */
  color: #093669;
  font-size: 26px;
}
.school_main_down div p {
  padding-top: 30px;
  font-size: 16px;
  line-height: 180%;
}

.about_chatch {
  /* padding: 130px 0 80px; スマホ修正 */
  padding: 80px 0 60px;
  background: url(../../img/about_bg01.jpg) no-repeat center;
  background-size: cover;
}

.about_chatch2 {
  padding: 130px 0 80px;
  background: url(../../img/about_bg01.jpg) no-repeat center;
  background-size: cover;
}

.txt-center {
  text-align: center;
}

.about_chatch h2 {
  /* padding-bottom: 40px; */
  font-size: 24px;
  line-height: 120%;
}

/* .school_main_down div h3::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  display: inline-block;
  width: 95px;
  height: 2px;
  border-bottom: 2px solid #DDDDDD;
  content: "";
} */

.top_pad {
  padding-left: 0!important;
  padding-right: 0!important;
}

.ttl01 {
  color: #000;
  font-family: "Noto Serif JP", "awarabi Mincho", "游明朝体", "YuMincho", "yumin", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif !important;
  font-size: 24px!important;
  position: relative;
  padding: 1em 0;
  text-align: center;
  line-height: 120%;
}

.ttl01::before {
  top: 0;
  border-top: 2px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.ttl01::before, .ttl01::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}

.ttl01::after {
  bottom: 0;
  border-top: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.ttl01::before, .ttl01::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}

.jukou_box02 ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: stretch;
  -webkit-align-items: stretch;
  align-content: stretch;
  -webkit-align-content: stretch;
}

.jukou_box02 ul li {
  position: relative;
  width: 32%;
}

.jukou_box01 > div h3, .jukou_box02 ul li h3 {
  display: block;
  width: 100%;
  font-size: 16px;
  margin:0;
}

.impact {
  font-weight: bold;
}


.jukou_box01 > div, .jukou_box02 ul li {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  align-content: center;
  -webkit-align-content: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  border-radius: 15px;
}
.bg_blue {
  background: #005EAB;
  padding: 20px 0; /* 追加修正 */
}
.bg_blue2 {
  background: #005EAB;
}

.jukou_box01 > div h4, .jukou_box02 ul li h4 {
  font-size: 16px;
  /* line-height: 100%;修正 */
  line-height: 150%;
  margin:10px;
}

.jukou_box01 p, .jukou_box02 p {
  padding: 35px 0;
  font-size: 16px;
  line-height: 180%;
}


.jukou_content {
  padding: 70px 0 30px;
}
.bg_gray03 {
  background: linear-gradient(180deg, #FFFFFF, #EEEEEE);
}

.jukou_box03 {
  padding: 25px 40px;
  font-size: 15px;
  line-height: 200%;
}

/* .bg_white {
    background: #fffff;
} */

.jukou_box02 ul li::after {
  position: absolute;
  right: -21px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 30px solid #005EAB;
}

.school_course_content {
  padding: 140px 0 160px;
  background: url(../../img/school_bg01.jpg) no-repeat center;
  background-size: cover;
}

.school_course_content ul li {
  padding: 40px 30px 35px;
  margin-bottom: 0;
  color: #FFF;
  list-style:none;
}

.three_column > div, ul.three_column > li, .three_column_center > * {
  width: 31%;
  margin-bottom: 35px;
}

.school_course_content ul li h3 {
  font-size: 20px;
  line-height: 120%;
}

.school_course_content ul li h4 {
  position: relative;
  font-size: 20px;
}

.ttl02 {
  padding: 20px 30px;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;/*追加修正*/
}


.ttl02::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  background: url(../../img/icon_logo.png) no-repeat center;
  background-size: contain;
  content: "";
}


.school_course_content ul li h4::before {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  bottom: -80px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.school_course_content ul li:first-child h4::before {
  width: 25px;
  height: 25px;
  bottom: -50px;
}

.school_course_content ul li p {
  padding: 30px 0 20px;
  font-size: 14px;
  line-height: 180%;
}


.btn01, .btn03, .btn04 {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  background: #005EAB;
  border: 1px solid #005EAB;
  padding: 15px;
  color: #FFF;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  z-index: 2;
  font-size: 17px;
  font-weight: 600; /* 追加修正 */
}

.btn04 {
  background: #FFF;
  color: #005EAB;
  border: 1px solid #005EAB;
}
.btn04:hover {
  background: #6ec5e0;
  color: #ffffff;
}


.btn01::before, .btn03::before, .btn04::before {
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 101%;
  height: 101%;
  -webkit-transform: scale(.1);
  transform: scale(.1);
  content: "";
  transition: 0.2s;
  -webkit-transition: 0.2s;
  z-index: -1;
  border: 1px solid #005EAB;
  border-bottom: none;
}


.btn03::after, .btn04::after {
  position: absolute;
  right: 3%;
  font-family: FontAwesome;
  content: "\f054";
}

.ttl02_02::before {
  width: 40px;
  height: 30px;
  background: url(../../img/icon_logo02.png) no-repeat center;
  background-size: contain;
}

.ttl02_03::before {
  width: 40px;
  height: 30px;
  background: url(../../img/icon_logo03.png) no-repeat center;
  background-size: contain;
}

.school_about_course_box {
  padding-bottom: 80px;
}

.school_course_box_in01 h4 {
  line-height: 120%;
  padding-bottom: 15px;
  font-size: 18px;
}

.txt_red {
  color: #C64355;
}

.school_course_box_in01 p {
  font-size: 16px;
  line-height: 180%;
}

.school_about_course_box .border-top-gray {
  padding: 20px;
  font-size: 16px;
  line-height: 180%;
}
.border-top-gray {
  border-top: 1px solid #DDD;
}

.border-gray {
  border: 5px solid #DDD;
  padding: 15px;/* 追加修正 */
}

.school_about_course_box .border-gray table tr th {
  /* width: 15%; 修正*/
  width: 10%;
  font-weight: bold;
  text-align: left;
  vertical-align: text-top;/* 追加修正 */
}

.school_about_course_box .border-gray table tr td, .school_about_course_box .border-gray table tr th {
  padding: 10px;
  font-size: 15px;
  vertical-align: text-top;/* 追加修正 */
}
a.border-gray_schedule {
  color: #C64355;
  text-decoration: underline;/* 追加修正 */
  font-weight: 600;
}

a.border-gray_schedule:hover {/* 追加修正 */
  text-decoration: none;/* 追加修正 */
}

.school_course_box_in01_mark {
  background-color: #ff8c9c;
}
.school_about_course_box .border-gray table tr td {
  width: 85%;
}

.school_course_box_in .btn01 {
  margin: 30px 30px 0;
  max-width: 580px;
  background:#56a9ef;
  border:none;
}

.school_course_box_in .btn01:hover {
  background-color: #11afc7;
}


.btn_box {
  /* margin: 50px 0; 修正*/
  margin: 30px 0 50px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.school_course_box_in {
  padding-top: 80px;
}

.school_schedule_caution {
  padding: 70px 0 85px;
}
.bg_gray02 {
  background: #EEE;
  padding-top: 15px;    /* 追加修正 */

}

.school_schedule_caution > div.bg_white {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px;
}

.bg_white {
  background: #FFF;
}

.school_schedule_caution ul {
  padding-top: 65px;
}

.school_schedule_caution ul li {
  display: flex;
  display: -webkit-flex;
  padding: 30px 0;
  font-size: 16px;
  line-height: 200%;
  border-bottom: 1px solid #EEE;
}

.school_schedule_caution ul li:first-child::before {
  content: "1.";
}

.school_schedule_caution ul li:nth-child(2)::before {
  content: "2.";
}

.school_schedule_caution ul li:nth-child(3)::before {
  content: "3.";
}

.school_schedule_caution ul li:nth-child(4)::before {
  content: "4.";
}

.school_schedule_caution ul li:nth-child(5)::before {
  content: "5.";
}

.school_schedule_caution ul li::before {
  margin-right: 20px;
  color: #005EAB;
  font-size: 35px;
  font-weight: bold;
  content: "";
}

.school_schedule_caution ul li div > p {
  padding-bottom: 20px;
  margin-top: 0;
}

.txt_blue {
  color: #001933;
}

.taiken_contact_content {
  padding: 60px 0 70px;
  background: url(../../img/sub_bg01.jpg) no-repeat center;
  background-size: cover;
}

.taiken_contact_content h2 {
  font-size: 24px;
  line-height: 120%;
}

.taiken_contact_content ul {
  padding-top: 40px;
  align-items: center;
max-width: 1050px;
  margin: 0 auto;

}

.txt_white {
  color: #FFF;
}

.taiken_contact_content ul li {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 0;
  width:500px;
}

.taiken_contact_content ul li:first-child a {
  color: #000;
  padding: 20px 0;
}

.taiken_contact_content ul li a {
  display: block;
  width: 100%;
  padding: 53px 0;
  font-size: 24px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  font-weight: bold;
}

.taiken_contact_content ul li:first-child a p:first-child {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  padding-bottom: 10px;
  color: #005EAB;
  font-size: 26px;
  font-weight: bold;
  padding: 0;
  margin:0;
}

.taiken_contact_content ul li:first-child a p:first-child span {
  font-size: 14px;
  color: #000;
  margin-right: 10px;
}

.taiken_contact_content ul li:first-child a p {
  font-size: 16px;
}

.dummy-last ul{
  list-style:none;
  margin-top:100px;
}


.dummy-access img{
  margin:100px auto;
  max-width:750px;
}

/* 追加 */
.dummy-bnronline {
  margin:40px auto;
  max-width:750px;
}

.second{
  margin-bottom:80px;
}

.jukou_content {
  margin-bottom:80px;
}

.jukou_box_none::after {
  border-top: none!important;
  border-bottom:none!important;
  border-left:none!important;
}

.jukou_box02{
  max-width: 1000px;
  margin: 0 auto;
}

.ttl_plus{
  color:#C64355;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  .dummy-access img {
    width:100%;
  }

  .hero-inner {
    width: 100%;
    margin-right: 0;
  }

  .hero {
    background-position: 30% 20%;
  }

  .three_column > div, ul.three_column > li, .three_column_center > * {
    width: 100%;
  }



  .jukou_box02 ul {
    display: block;
    padding: 0;
  }

  .jukou_box02 ul li {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0;
    border-radius: 15px 15px 15px 15px;
  }

  .jukou_box02 ul li::after {
    bottom: -30%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-top: 25px solid #005EAB;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-bottom: none;
    z-index: 10;
    }

  .jukou_box_none{
    border-radius: 15px!important;
  }

  .school_main_down {
    padding: 10px 0 0;
  }
  .school_main_down > div {
    width: 100%;
    margin-bottom: 0;
  }

  .school_main_down > div img {
    width: 100%;
    height: auto;
  }

  .school_course_content ul li {
    padding: 30px 20px 35px;
    margin-bottom: 30px;
    width: 100%;
  }

  .school_about_course_box .border-gray table tr td, .school_about_course_box .border-gray table tr th {
    display: block;
    width: 100%;
    line-height: 180%;
    padding: 0 10px;
  }

  .school_schedule_caution ul li::before {
    font-size: 30px;
  }

  .school_schedule_caution ul li {
    font-size: 14px;
  }

}



.school_schedule_caution {
  padding: 70px 5%;
}

.school_schedule_caution > div.bg_white {
  /* padding: 40px 3% 10px; 修正*/
  padding: 40px 60px 40px;
}

.school_schedule_caution ul {
  padding: 45px 0 0 0 ;
}

.three_column{
  padding:0;
}

.school_course_content{
  padding:40px 0;
}

.school_course_content ul li h4{
  padding:0;
  font-size: 24px;
}

/* } */

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

  .school_main_down div.bg_liteBlue {
    /* padding: 20px 5%; 修正*/
    padding: 5%;
  }
}

@media screen and (max-width: 991px) and (min-width: 769px) {
  .school_main_down div h3 {
    font-size: 20	px;
  }

  .school_main_down div p {
    font-size: 14px;
  }

  .about_chatch h2 {
    font-size: 20px;
  }
  .about_chatch p {
    font-size: 14px;
  }

  .jukou_box01 p, .jukou_box02 p {
    font-size: 14px;
  }

  .three_column {
    padding:20px;
  }

  .jukou_box01 > div, .jukou_box02 ul li {
    max-width: 200px;
  }

  .hero-inner {
    max-width: 600px;
  }
}

.school_course_content div ul{
  padding:20px;
}

/* ============= PCスマホで出し分け河﨑追加 =============*/
.sp_only {
  display: none;
}
.pc_only {
  display: block;
}
@media screen and (max-width: 768px){
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}

/*============= 追加修正 =============*/
.midashi {
  margin-top: 50px !important;
  margin-bottom: 30px !important;
  font-size: 28px !important;
}
.contact-text {
  margin: 50px auto;
}
.link-blue {
  color: #11afc7;
  text-decoration: underline;
}
.link-blue:hover {
  text-decoration: none;
}

.second-yachtimg { 
  object-position : 50% 50%;
}
.two_column2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 4%;
  padding: 0;
  margin-top: 50px!important;
  margin-bottom: 60px;
}
.mds-bold {
  font-weight: 800;
  padding: 10px 0 10px !important;
  color: #4e7fa7;
}
.school_course_box_in01 {
  padding: 0 20px;
}


/*===================== スマホ調整 =====================*/
@media screen and (max-width: 768px){
/* スクール概要部分 */
  .about_chatch div.bg_liteBlue {
      padding: 35px 25px;
  }
  .school_main_down div h3 {
  font-size: 26px;
  text-align: center;
  line-height: 1.7;
  }
  .school_main_down div p {
    padding-top: 30px;
    font-size: 16px;
    line-height: 180%;
  }
  .school_main_down div.bg_liteBlue {
    padding: 40px 30px;
  }

/* カリキュラムの流れ部分 */
  .about_chatch {
    padding: 50px 0 40px;
    background: url(../../img/about_bg01.jpg) 45% center;
    background-size: cover;
  }
  .jukou_content {
    padding: 50px 0 30px;
  }
  .jukou_box01 p, .jukou_box02 p {
    padding: 0 0 30px;
    line-height: 180%;
    text-align: left;
  }
  .jukou_box03 {
    padding: 25px 25px;
    font-size: 15px;
    line-height: 180%;
  }

  .school_course_content {
    padding: 20px 0 20px;
  }
  .school_course_content ul li {
    padding: 15px 20px 35px;
  }

/* スクール詳細 */
  .school_course_box_in {
    padding-top: 35px;
  }

  .school_course_box_in .btn01 {
    margin: 10px 30px 0;
    max-width: 580px;
    background: #56a9ef;
    border: none;
  }

  .school_about_course_box .border-gray table tr td {
    padding: 0 0 5px;
  }

  .btn_box {
    margin: 20px 0 40px;
  }
  .school_about_course_box {
    padding-bottom: 20px;
  }

/* お申し込みの前に */
  .school_schedule_caution > div.bg_white {
    padding: 3%;
  }
  .school_schedule_caution {
    padding: 40px 16px;
  }

  .bg_gray02 {
    padding: 20px 15px;
  }

  .ttl01 { 
    padding: 0.7em 0;
    line-height: 190%;
  }
  .school_schedule_caution ul li {
    padding: 15px 0 15px;
  }
  .school_schedule_caution ul li {
    font-size: 16px;
  }
  .school_schedule_caution ul li::before {
    margin-right: 10px;
    font-size: 33px;
  }
  .bg_white > ul {
    padding-top: 10px; 
  }
  .school_course_box_in01 {
  padding: 0;
}


/* 下部バナー部分 */
  .two_column2 {
    display: block;
    margin-bottom: 30px;
  }
  .two_column2 li{ 
    margin-bottom: 20px;
  }
  .three_column {
    margin-top: 60px !important;
  }
  .three_column > div, ul.three_column > li {
    margin-bottom: 20px;
  }

/* 店舗情報 */
  .shop_about_content {
      margin-top: 40px;
  }
  .shop_about_access_content p {
        padding: 5px 0 15px;
        font-size: 16px;
  }
  .shop_about_access_content ul li {
    padding-bottom: 30px;
    font-size: 16px;
  }
  /* プライバシーポリシー */
  .privacy {
    margin-top: -15px;
  }

  /* topのロゴ部分 */
.hero-logo-s img {
  max-width: 130px;
}

}

.notfund {
  text-align: center;
}

.txtbox_h4 {
  font-size: 24px;
  text-align: center;
}
.txtbox_txt {
  text-decoration: underline;
}
.foot-logo {
  max-width: 30%;
}

/* お知らせ追加 */
.oshirase {
  margin: 110px auto 80px;
  background-color: #eff8fc;
  max-width: 1200px;
  width: 100%;
  padding: 20px 15px;
  font-size: 16px;
  line-height: 200%;
}
.oshirase-link {
  padding-bottom: 4px;
  border-bottom: 1px solid #1291cb;
}
.oshirase-p {
  padding: 25px 40px;
  font-size: 16px;
  line-height: 180%;
  background-color: #ffffff;
}
.omachi {
  color: #C64355;
  font-weight: bold;
}
.oshirase-pdf {
  font-size: 11px;
  display: inline-block;
  border-radius: 20px;
  background-color: #ddd; 
  padding: 3px 8px;
  height: auto;
  line-height: 140%;
}
.txt-caution {
  text-align: center;
  margin: 30px auto -30px;
}

@media screen and (max-width: 768px){
  .oshirase {
    margin: 0 auto 80px;
    width: 92%;
    padding: 10px ;
  }
  .oshirase-p {
    padding: 10px 5px;
    line-height: 200%;
    background-color: #ffffff;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .oshirase-link {
  padding-bottom: 3px;
  }
  .txt-caution {
  margin: 30px auto 20px;
}

}





